/* ═══════════════════════════════════════════════════════
   NORTHBOUND v2 — PREMIUM SAAS STYLESHEET
   Palette: Black · Off-White · Olive/Stone
   Fonts: DM Sans (body) · DM Serif Display (headings)
═══════════════════════════════════════════════════════ */

:root {
  --black:      #0A0A0A;
  --black-2:    #111111;
  --black-3:    #161616;
  --black-card: #1A1A1A;
  --white:      #FFFFFF;
  --off-white:  #F5F2ED;
  --off-white2: #EEEBE4;
  --olive:      #8A8560;
  --olive-lt:   #A8A37C;
  --olive-dim:  rgba(138,133,96,0.15);
  --muted:      #888;
  --muted-lt:   #AAAAAA;
  --border:     rgba(255,255,255,0.07);
  --border-lt:  rgba(0,0,0,0.08);

  --font-sans:    'DM Sans', system-ui, sans-serif;
  --font-display: 'DM Serif Display', Georgia, serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 6px;
  --radius-lg: 12px;
}

/* ── RESET ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  background: var(--black);
  color: var(--off-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── CONTAINER ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ── FADE-UP ANIMATION ─────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* ── EYEBROW ───────────────────────────────────────── */
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 16px;
}
.eyebrow-olive { color: var(--olive); }

/* ── SECTION HEADS ─────────────────────────────────── */
.section-head { margin-bottom: 64px; }
.section-head.center { text-align: center; }
.section-head h2 {
  font-family: var(--font-sans);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  color: var(--black-2);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.head-rule {
  width: 40px;
  height: 2px;
  background: var(--olive);
  margin: 16px auto 0;
}
.head-rule-light { background: var(--olive-lt); }

/* ── BUTTONS ───────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--olive);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 13px 24px;
  border-radius: var(--radius);
  border: 1.5px solid var(--olive);
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--olive-lt);
  border-color: var(--olive-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(138,133,96,0.25);
}
.btn-primary.btn-lg { padding: 16px 36px; font-size: 15px; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--off-white);
  font-size: 13px;
  font-weight: 500;
  padding: 13px 24px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  transition: border-color 0.25s, color 0.25s, transform 0.25s;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,10,10,0.88);
  border-color: var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  gap: 32px;
  transition: padding 0.3s;
}
.nav.scrolled .nav-inner { padding-top: 14px; padding-bottom: 14px; }
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo span {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--off-white);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted-lt);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--off-white); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  background: var(--olive);
  padding: 10px 20px;
  border-radius: var(--radius);
  transition: background 0.25s, transform 0.25s;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--olive-lt); transform: translateY(-1px); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--off-white); transition: all 0.3s; }
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--black-2);
  border-top: 1px solid var(--border);
  padding: 8px 0;
}
.mobile-menu a {
  font-size: 14px;
  padding: 14px 24px;
  color: var(--muted-lt);
  transition: color 0.2s, background 0.2s;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:hover { color: var(--off-white); background: var(--black-3); }
.mobile-menu .mobile-cta {
  color: var(--olive);
  font-weight: 600;
  border-bottom: none;
  margin: 8px 16px;
  background: var(--olive-dim);
  border-radius: var(--radius);
}
@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu.open { display: flex; }
  .nav-inner { padding: 16px 20px; }
}

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
  background: var(--black);
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(138,133,96,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(138,133,96,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 0%, transparent 100%);
}
.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(138,133,96,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 80px;
}
.hero-left { z-index: 2; }
.hero-h1 {
  font-family: var(--font-sans);
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--off-white);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 36px;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-built { }
.built-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 16px;
}
.built-icons {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.built-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  transition: color 0.25s;
}
.built-item:hover { color: var(--olive-lt); }
.built-item span { font-size: 11px; font-weight: 400; }

/* ── PHONE MOCKUPS ─────────────────────────────────── */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}
.phones-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 520px;
}
.phone {
  position: absolute;
  border-radius: 28px;
  border: 1.5px solid rgba(255,255,255,0.1);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
  overflow: hidden;
  background: #111;
  transition: transform 0.6s var(--ease);
}
.phone-screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.phone-back {
  width: 180px;
  height: 360px;
  left: 0;
  top: 40px;
  transform: rotate(-6deg) translateX(-10px);
  z-index: 1;
}
.phone-front {
  width: 200px;
  height: 400px;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  z-index: 3;
}
.phone-right {
  width: 175px;
  height: 340px;
  right: 0;
  top: 60px;
  transform: rotate(5deg) translateX(10px);
  z-index: 2;
}
.phone-glow-ring {
  position: absolute;
  width: 280px;
  height: 280px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(138,133,96,0.18) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.phones-wrap:hover .phone-back  { transform: rotate(-8deg) translateX(-16px) translateY(-4px); }
.phones-wrap:hover .phone-right { transform: rotate(7deg) translateX(16px) translateY(-4px); }

/* ── APP UI MOCKS ──────────────────────────────────── */
.app-ui {
  padding: 16px 14px;
  height: 100%;
  font-size: 11px;
  color: #ccc;
  background: #111;
}
.app-header-sm {
  font-size: 10px;
  color: #666;
  margin-bottom: 10px;
  font-weight: 500;
}
.app-name { font-size: 15px; color: #eee; font-weight: 600; display: block; }
.app-dot { display: inline-block; width: 6px; height: 6px; background: var(--olive); border-radius: 50%; margin-right: 6px; }
.app-title-sm { font-size: 12px; color: #ccc; font-weight: 600; vertical-align: middle; }

/* rewards screen */
.rewards-circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 2px solid var(--olive);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  margin: 6px auto;
}
.rewards-pts { font-size: 18px; font-weight: 700; color: var(--olive); line-height: 1; }
.rewards-label { font-size: 9px; color: #888; }
.tier-badge {
  text-align: center;
  font-size: 9px;
  color: var(--olive);
  background: rgba(138,133,96,0.12);
  padding: 3px 8px;
  border-radius: 20px;
  margin: 6px auto;
  width: fit-content;
}
.rewards-progress { margin: 8px 0; }
.rp-bar { height: 2px; background: #333; border-radius: 2px; overflow: hidden; }
.rp-fill { height: 100%; background: var(--olive); border-radius: 2px; }
.rp-text { font-size: 8px; color: #666; margin-top: 3px; }
.ways-label { font-size: 9px; color: #888; margin: 8px 0 4px; font-weight: 600; }
.earn-row { display: flex; justify-content: space-between; font-size: 9px; color: #aaa; padding: 4px 0; border-bottom: 1px solid #222; }
.ep { color: var(--olive); font-weight: 600; }

/* dash screen */
.pts-row { margin: 6px 0 10px; }
.pts-count { font-size: 13px; font-weight: 600; color: var(--olive); display: block; }
.pts-tier { font-size: 8px; color: #666; }
.vip-drop {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 10px;
}
.vip-tag { font-size: 8px; color: var(--olive); font-weight: 600; letter-spacing: 0.1em; margin-bottom: 3px; }
.vip-title { font-size: 14px; font-weight: 700; color: #eee; }
.vip-sub { font-size: 9px; color: #888; margin-bottom: 8px; }
.vip-btn {
  background: var(--olive);
  color: #000;
  font-size: 9px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 4px;
  display: inline-block;
}
.rewards-row-sm { display: flex; justify-content: space-between; font-size: 9px; margin-bottom: 6px; }
.rr-label { color: #aaa; font-weight: 600; }
.rr-link { color: var(--olive); }
.reward-chip {
  background: rgba(138,133,96,0.12);
  border: 1px solid rgba(138,133,96,0.2);
  border-radius: 4px;
  padding: 6px 8px;
  font-size: 9px;
  color: var(--olive-lt);
}

/* shop screen */
.shop-tabs { display: flex; gap: 6px; margin-bottom: 10px; }
.stab { font-size: 8px; padding: 3px 7px; border-radius: 20px; color: #666; cursor: pointer; }
.stab.active { background: var(--olive); color: #000; font-weight: 600; }
.shop-item { display: flex; gap: 8px; margin-bottom: 10px; align-items: center; }
.shop-img {
  width: 44px; height: 52px;
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
  border-radius: 4px;
  flex-shrink: 0;
}
.shop-img2 { background: linear-gradient(135deg, #1e2a1e, #1a1a1a); }
.shop-name { font-size: 10px; color: #ddd; font-weight: 600; }
.shop-price { font-size: 9px; color: #888; margin-top: 2px; }

/* ══════════════════════════════════════════════════════
   WHY NORTHBOUND
══════════════════════════════════════════════════════ */
.why {
  padding: 100px 0;
  background: var(--off-white);
}
.why .section-head h2 { color: var(--black-2); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--off-white2);
  border: 1px solid var(--off-white2);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.why-card {
  background: var(--off-white);
  padding: 40px 32px;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: default;
}
.why-card:hover {
  background: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  z-index: 1;
  position: relative;
}
.why-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-lt);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--olive);
  transition: border-color 0.3s, background 0.3s;
}
.why-card:hover .why-icon { background: var(--olive-dim); border-color: rgba(138,133,96,0.3); }
.why-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--black-2);
  margin-bottom: 10px;
  line-height: 1.3;
}
.why-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════
   SEE THE EXPERIENCE
══════════════════════════════════════════════════════ */
.experience {
  padding: 100px 0;
  background: var(--black-2);
  border-top: 1px solid var(--border);
}
.exp-grid {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 80px;
  align-items: center;
}
.exp-h2 {
  font-family: var(--font-sans);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 600;
  color: var(--off-white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.exp-list { display: flex; flex-direction: column; gap: 0; }
.exp-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--muted-lt);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.exp-list li:last-child { border-bottom: none; }

/* ── DASHBOARD MOCK ─────────────────────────────────── */
.dashboard-mock {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}
.dash-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--black-3);
  border-bottom: 1px solid var(--border);
}
.dash-dots { display: flex; gap: 6px; }
.dash-dots span { width: 10px; height: 10px; border-radius: 50%; background: #333; }
.dash-dots span:first-child { background: #555; }
.dash-title { font-size: 12px; font-weight: 600; color: var(--muted-lt); margin-left: 8px; }
.dash-range { font-size: 11px; color: var(--muted); margin-left: auto; }
.dash-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-box {
  padding: 16px 14px;
  background: var(--black-card);
}
.stat-num { font-size: 18px; font-weight: 700; color: var(--off-white); letter-spacing: -0.02em; }
.stat-lbl { font-size: 10px; color: var(--muted); margin-top: 2px; }
.stat-delta { font-size: 10px; color: #4ade80; margin-top: 4px; font-weight: 600; }
.dash-chart { padding: 16px 20px 8px; }
.chart-label { font-size: 11px; color: var(--muted); margin-bottom: 8px; font-weight: 500; }
.chart-svg { width: 100%; height: 80px; }
.dash-sidebar {
  padding: 12px 20px 20px;
  border-top: 1px solid var(--border);
}
.sidebar-head { font-size: 11px; font-weight: 600; color: var(--muted-lt); margin-bottom: 10px; letter-spacing: 0.05em; text-transform: uppercase; }
.prod-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
}
.prod-row:last-child { border-bottom: none; }
.prod-name { flex: 1; color: var(--muted-lt); }
.prod-rev { color: var(--off-white); font-weight: 600; }
.prod-delta { font-size: 10px; color: #4ade80; font-weight: 600; min-width: 36px; text-align: right; }
.notif-popup {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  max-width: 220px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.notif-icon { font-size: 18px; line-height: 1; }
.notif-title { font-size: 12px; font-weight: 600; color: var(--off-white); margin-bottom: 2px; }
.notif-sub { font-size: 10px; color: var(--muted); line-height: 1.5; }

/* ══════════════════════════════════════════════════════
   WHAT WE BUILD
══════════════════════════════════════════════════════ */
.build {
  padding: 100px 0;
  background: var(--off-white);
}
.build .section-head h2 { color: var(--black-2); }
.build-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--off-white2);
  border: 1px solid var(--off-white2);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.build-card {
  background: var(--off-white);
  padding: 36px 28px;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.build-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--olive);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
  transform-origin: left;
}
.build-card:hover { background: var(--white); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.07); z-index: 1; }
.build-card:hover::before { transform: scaleX(1); }
.build-icon {
  width: 48px; height: 48px;
  background: var(--off-white2);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--olive);
  margin-bottom: 20px;
  transition: background 0.3s;
}
.build-card:hover .build-icon { background: rgba(138,133,96,0.12); }
.build-card h3 { font-size: 15px; font-weight: 600; color: var(--black-2); margin-bottom: 10px; }
.build-card p { font-size: 13px; color: #666; line-height: 1.65; margin-bottom: 16px; }
.build-list { display: flex; flex-direction: column; gap: 6px; }
.build-list li {
  font-size: 12px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 8px;
}
.build-list li::before {
  content: '';
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--olive);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════
   PROCESS
══════════════════════════════════════════════════════ */
.process {
  padding: 100px 0;
  background: var(--black);
  border-top: 1px solid var(--border);
}
.process .section-head h2 { color: var(--off-white); }
.process-track { position: relative; }
.process-line {
  position: absolute;
  top: 36px;
  left: calc(10% + 20px);
  right: calc(10% + 20px);
  height: 1px;
  background: linear-gradient(to right, transparent, var(--olive), var(--olive), var(--olive), transparent);
  opacity: 0.3;
}
.process-steps {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.ps {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}
.ps-bubble {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--black-card);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  position: relative;
  transition: border-color 0.3s, background 0.3s;
}
.ps:hover .ps-bubble { border-color: var(--olive); background: rgba(138,133,96,0.08); }
.ps-num {
  position: absolute;
  top: -8px;
  right: -4px;
  width: 20px; height: 20px;
  background: var(--olive);
  color: var(--black);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.ps h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 8px;
  letter-spacing: 0;
}
.ps p { font-size: 12px; color: var(--muted); line-height: 1.6; max-width: 140px; }

/* ══════════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════════ */
.about {
  padding: 100px 0;
  background: var(--off-white);
  border-top: 1px solid var(--off-white2);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-left h2 {
  font-family: var(--font-sans);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  color: var(--black-2);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.about-body { font-size: 14px; color: #666; line-height: 1.75; margin-bottom: 36px; }
.trust-points { display: flex; flex-direction: column; gap: 20px; }
.tp {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.tp svg { flex-shrink: 0; margin-top: 2px; }
.tp strong { display: block; font-size: 14px; font-weight: 600; color: var(--black-2); margin-bottom: 2px; }
.tp span { font-size: 13px; color: #777; }
.about-right { }
.about-img-wrap {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}
.about-img-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 30%, rgba(138,133,96,0.08) 0%, transparent 70%),
    linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.4) 100%);
}
.about-img-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

/* ══════════════════════════════════════════════════════
   FINAL CTA
══════════════════════════════════════════════════════ */
.cta-final {
  padding: 140px 0;
  background: var(--black);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}
.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 60%, rgba(138,133,96,0.09) 0%, transparent 65%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-h2 {
  font-family: var(--font-sans);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--off-white);
  margin-bottom: 20px;
}
.cta-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  max-width: 400px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.cta-email {
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
}
.cta-email a { color: var(--olive-lt); border-bottom: 1px solid rgba(168,163,124,0.3); transition: color 0.2s; }
.cta-email a:hover { color: var(--off-white); }

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.footer {
  background: var(--black-2);
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-brand p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
}
.footer-links {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--olive-lt); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .build-grid { grid-template-columns: repeat(2, 1fr); }
  .exp-grid { grid-template-columns: 1fr; gap: 48px; }
  .dash-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; padding-bottom: 60px; }
  .hero-right { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-right { display: none; }
  .process-steps { flex-wrap: wrap; justify-content: center; gap: 32px; }
  .process-line { display: none; }
  .ps { min-width: 120px; flex: 0 0 auto; }
}
@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
  .build-grid { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 36px; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .cta-final { padding: 80px 0; }
}
