/* ════════════════════════════════════════
   MANTA AI — Shared Stylesheet
   All pages reference this file.
   REPLACE markers are in HTML files only.
════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:        #080F1C;
  --navy:       #0D1F3C;
  --navy-mid:   #162C52;
  --ocean:      #0EA5E9;
  --ocean-dark: #0284C7;
  --ocean-glow: rgba(14,165,233,0.15);
  --go:         #10B981;
  --go-dark:    #059669;
  --paper:      #FFFFFF;
  --section:    #F0F5FB;
  --muted:      #64748B;
  --border:     #E2E8F0;
  --text:       #1E293B;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--paper); -webkit-font-smoothing: antialiased; font-size: 16px; line-height: 1.6; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(8,15,28,0.96); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; color: #fff; letter-spacing: -0.02em; text-decoration: none; }
.nav-logo span { color: var(--ocean); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.58); text-decoration: none; font-size: 14px; font-weight: 400; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-cta { background: var(--go); color: #fff; border: none; cursor: pointer; padding: 10px 22px; border-radius: 6px; font-size: 14px; font-weight: 600; text-decoration: none; transition: background 0.2s; white-space: nowrap; }
.nav-cta:hover { background: var(--go-dark); }
.nav-mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger { width: 22px; height: 2px; background: #fff; position: relative; display: block; }
.hamburger::before, .hamburger::after { content: ''; position: absolute; width: 22px; height: 2px; background: #fff; left: 0; }
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
nav.mobile-nav-open .nav-links { display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: rgba(8,15,28,0.98); padding: 20px 5%; gap: 16px; }

/* ── BUTTONS ── */
.btn-primary { background: var(--go); color: #fff; padding: 15px 32px; border-radius: 8px; font-size: 16px; font-weight: 600; text-decoration: none; transition: all 0.2s; display: inline-block; border: none; cursor: pointer; }
.btn-primary:hover { background: var(--go-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(16,185,129,0.3); }
.btn-ghost { color: rgba(255,255,255,0.7); font-size: 15px; font-weight: 400; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: color 0.2s; }
.btn-ghost:hover { color: #fff; }
.btn-ghost::after { content: '→'; }
.btn-large { padding: 18px 40px; border-radius: 8px; font-size: 17px; font-weight: 600; text-decoration: none; transition: all 0.2s; display: inline-block; }
.btn-large.green { background: var(--go); color: #fff; }
.btn-large.green:hover { background: var(--go-dark); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(16,185,129,0.35); }
.btn-large.ghost { border: 2px solid rgba(255,255,255,0.18); color: rgba(255,255,255,0.7); }
.btn-large.ghost:hover { border-color: rgba(255,255,255,0.45); color: #fff; }

/* ── 3D ICON ── */
.icon-3d {
  width: 58px; height: 58px; border-radius: 15px; flex-shrink: 0;
  background: linear-gradient(145deg, #1a3558 0%, #0d1f3c 100%);
  box-shadow: 4px 4px 10px rgba(0,0,0,0.38), -2px -2px 6px rgba(14,165,233,0.1), inset 0 1px 0 rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; position: relative;
}
.icon-3d::after { content: ''; position: absolute; inset: 0; border-radius: 15px; background: linear-gradient(135deg, rgba(255,255,255,0.07) 0%, transparent 55%); pointer-events: none; }
.icon-3d svg { position: relative; z-index: 1; }
.icon-3d.green { background: linear-gradient(145deg, #0f3d2a, #063320); box-shadow: 4px 4px 10px rgba(0,0,0,0.38), -2px -2px 6px rgba(16,185,129,0.1), inset 0 1px 0 rgba(255,255,255,0.07); }

/* ── SHARED SECTION STYLES ── */
.section { padding: 96px 5%; }
.section-alt { background: var(--section); }
.section-dark { background: var(--navy); }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-eyebrow { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ocean); font-weight: 600; margin-bottom: 12px; }
.section-title { font-family: 'Syne', sans-serif; font-size: 40px; font-weight: 700; color: var(--ink); line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 16px; }
.section-title.light { color: #fff; }
.section-sub { font-size: 17px; color: var(--muted); max-width: 560px; line-height: 1.75; margin-bottom: 56px; }
.section-sub.light { color: rgba(255,255,255,0.52); }
.section-header-row { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; flex-wrap: wrap; gap: 20px; }

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  background: linear-gradient(135deg, #080F1C 0%, #0D1F3C 100%);
  padding: 132px 5% 72px; text-align: center; position: relative; overflow: hidden;
}
.page-header::before { content: ''; position: absolute; top: -20%; right: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(14,165,233,0.12) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.page-header-inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 1; }
.page-header .section-eyebrow { margin-bottom: 16px; }
.page-header h1 { font-family: 'Syne', sans-serif; font-size: 52px; font-weight: 800; color: #fff; line-height: 1.06; letter-spacing: -0.03em; margin-bottom: 20px; }
.page-header h1 em { font-style: normal; color: var(--ocean); }
.page-header p { font-size: 18px; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 560px; margin: 0 auto; }

/* ── HERO (homepage only) ── */
.hero {
  min-height: 100vh; padding: 68px 5% 0;
  background: linear-gradient(135deg, #080F1C 0%, #0D1F3C 55%, #0A2545 100%);
  display: flex; align-items: center; position: relative; overflow: hidden;
}
.hero::before { content: ''; position: absolute; top: -15%; right: -8%; width: 650px; height: 650px; background: radial-gradient(circle, rgba(14,165,233,0.16) 0%, transparent 68%); border-radius: 50%; }
.hero::after { content: ''; position: absolute; bottom: -15%; left: 15%; width: 450px; height: 450px; background: radial-gradient(circle, rgba(16,185,129,0.07) 0%, transparent 68%); border-radius: 50%; }
.hero-inner { max-width: 1200px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; padding: 88px 0; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(14,165,233,0.1); border: 1px solid rgba(14,165,233,0.28); color: var(--ocean); padding: 6px 14px; border-radius: 100px; font-size: 13px; font-weight: 500; margin-bottom: 24px; }
.hero-badge::before { content: '●'; font-size: 8px; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero h1 { font-family: 'Syne', sans-serif; font-size: 54px; font-weight: 800; color: #fff; line-height: 1.06; letter-spacing: -0.03em; margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--ocean); }
.hero-sub { font-size: 18px; color: rgba(255,255,255,0.58); line-height: 1.7; margin-bottom: 36px; max-width: 480px; }
.hero-sub strong { color: rgba(255,255,255,0.85); font-weight: 500; }
.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero-visual { display: flex; flex-direction: column; gap: 14px; }
.hero-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09); border-radius: 14px; padding: 22px 26px; backdrop-filter: blur(8px); }
.hero-card-label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ocean); margin-bottom: 7px; font-weight: 500; }
.hero-card-title { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 5px; }
.hero-card-desc { font-size: 13px; color: rgba(255,255,255,0.48); line-height: 1.6; }
.hero-card.accent { border-color: rgba(16,185,129,0.3); background: rgba(16,185,129,0.07); }
.hero-card.accent .hero-card-label { color: var(--go); }
.hero-chips { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.chip { background: rgba(14,165,233,0.1); border: 1px solid rgba(14,165,233,0.22); color: var(--ocean); padding: 3px 10px; border-radius: 100px; font-size: 11px; font-weight: 500; }

/* ── PROOF BAR ── */
.proof-bar { background: var(--navy); padding: 32px 5%; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }
.proof-bar-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 28px; }
.proof-label { font-size: 12px; color: rgba(255,255,255,0.28); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; }
.proof-stats { display: flex; gap: 48px; flex-wrap: wrap; align-items: center; }
.proof-stat { text-align: center; }
.proof-stat-num { font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 700; color: #fff; line-height: 1; }
.proof-stat-num span { color: var(--ocean); }
.proof-stat-label { font-size: 11px; color: rgba(255,255,255,0.38); margin-top: 3px; }
.proof-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.08); }
.proof-tag { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); padding: 8px 16px; border-radius: 6px; font-size: 13px; color: rgba(255,255,255,0.55); }
.proof-tag strong { color: rgba(255,255,255,0.8); font-weight: 500; }

/* ── DUAL PATH ── */
.dual-path { padding: 80px 5%; }
.dual-path-inner { max-width: 1200px; margin: 0 auto; }
.dual-path-label { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ocean); font-weight: 600; margin-bottom: 12px; text-align: center; }
.dual-path h2 { font-family: 'Syne', sans-serif; font-size: 36px; font-weight: 700; color: var(--ink); line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 10px; text-align: center; }
.dual-path-sub { font-size: 16px; color: var(--muted); text-align: center; max-width: 520px; margin: 0 auto 48px; line-height: 1.7; }
.path-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.path-card { background: var(--paper); border: 2px solid var(--border); border-radius: 16px; padding: 36px 32px; transition: all 0.25s; }
.path-card:hover { border-color: var(--ocean); box-shadow: 0 12px 40px rgba(14,165,233,0.1); transform: translateY(-2px); }
.path-tag { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; margin-bottom: 18px; }
.path-tag.t1 { background: rgba(14,165,233,0.1); color: var(--ocean); }
.path-tag.t2 { background: rgba(16,185,129,0.1); color: var(--go); }
.path-tag.t3 { background: rgba(245,158,11,0.1); color: #f59e0b; }
.path-card h3 { font-family: 'Syne', sans-serif; font-size: 24px; font-weight: 700; color: var(--ink); margin-bottom: 8px; line-height: 1.2; }
.path-card .path-desc { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
.path-points { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.path-points li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text); }
.path-points li::before { content: '→'; color: var(--ocean); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.path-cta { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--ocean); text-decoration: none; transition: gap 0.2s; }
.path-cta:hover { gap: 12px; }
.path-cta::after { content: '→'; }

/* ── VIDEO ── */
.video-section { background: var(--section); }
.video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 14px; box-shadow: 0 24px 80px rgba(0,0,0,0.1); border: 1px solid var(--border); }
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: 14px; }

/* ── HOW IT WORKS ── */
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.step-card { background: var(--paper); border: 1px solid var(--border); border-radius: 14px; padding: 28px 24px; position: relative; transition: all 0.2s; }
.step-card:hover { box-shadow: 0 8px 32px rgba(14,165,233,0.1); transform: translateY(-2px); border-color: rgba(14,165,233,0.3); }
.step-num { position: absolute; top: 20px; right: 20px; font-family: 'Syne', sans-serif; font-size: 30px; font-weight: 800; color: var(--border); line-height: 1; }
.step-card h3 { font-size: 16px; font-weight: 600; color: var(--ink); margin: 18px 0 8px; }
.step-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── DELIVERABLES ── */
.deliverables-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 20px; }
.deliverable-card { background: var(--paper); border: 1px solid var(--border); border-radius: 14px; padding: 28px 20px; text-align: center; transition: all 0.2s; display: flex; flex-direction: column; align-items: center; }
.deliverable-card:hover { border-color: var(--ocean); box-shadow: 0 6px 24px rgba(14,165,233,0.1); }
.deliverable-num { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; color: var(--ocean); margin: 14px 0 6px; letter-spacing: 0.1em; }
.deliverable-title { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 8px; line-height: 1.35; }
.deliverable-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── 2ND BRAIN ── */
.brain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.brain-diagram { background: rgba(14,165,233,0.05); border: 1px solid rgba(14,165,233,0.15); border-radius: 20px; padding: 36px; position: relative; overflow: hidden; }
.brain-diagram::before { content: ''; position: absolute; top: -40%; right: -20%; width: 280px; height: 280px; background: radial-gradient(circle, rgba(14,165,233,0.12) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.brain-center { text-align: center; padding: 24px 0; }
.brain-core { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; color: var(--ocean); margin-bottom: 4px; }
.brain-core-sub { font-size: 13px; color: rgba(14,165,233,0.5); }
.brain-nodes { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px; }
.brain-node { background: var(--paper); border: 1px solid var(--border); border-radius: 10px; padding: 14px 16px; }
.brain-node-type { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ocean); font-weight: 600; margin-bottom: 4px; }
.brain-node-name { font-size: 13px; font-weight: 500; color: var(--text); }
.brain-text h2 { font-family: 'Syne', sans-serif; font-size: 36px; font-weight: 700; color: var(--ink); line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 20px; }
.brain-text p { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.brain-text p strong { color: var(--text); font-weight: 600; }
.brain-quote { margin-top: 28px; padding: 20px 24px; background: rgba(14,165,233,0.06); border-left: 3px solid var(--ocean); border-radius: 0 10px 10px 0; }
.brain-quote p { font-size: 16px; font-style: italic; color: var(--text); margin: 0; line-height: 1.65; }
.brain-quote span { font-size: 13px; color: var(--muted); font-style: normal; display: block; margin-top: 8px; }

/* ── STORY ── */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-main-card { background: var(--navy-mid); border-radius: 18px; padding: 34px; border: 1px solid rgba(255,255,255,0.07); }
.story-card-eyebrow { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ocean); margin-bottom: 14px; font-weight: 600; }
.story-card-quote { font-size: 17px; color: rgba(255,255,255,0.82); line-height: 1.68; font-style: italic; margin-bottom: 22px; }
.story-card-attr { font-size: 13px; color: rgba(255,255,255,0.38); }
.story-card-attr strong { color: rgba(255,255,255,0.62); font-weight: 500; }
.story-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 22px; }
.story-stat-box { background: rgba(14,165,233,0.07); border: 1px solid rgba(14,165,233,0.14); border-radius: 10px; padding: 16px; }
.story-stat-val { font-family: 'Syne', sans-serif; font-size: 26px; font-weight: 700; color: #fff; }
.story-stat-label { font-size: 11px; color: rgba(255,255,255,0.38); margin-top: 2px; }
.story-text h2 { font-family: 'Syne', sans-serif; font-size: 36px; font-weight: 700; color: var(--ink); line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 20px; }
.story-text p { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.story-text p strong { color: var(--text); font-weight: 600; }
.credentials { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; }
.credential { display: flex; align-items: center; gap: 12px; }
.cred-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ocean); flex-shrink: 0; }
.cred-text { font-size: 14px; color: var(--text); }
.cred-text strong { font-weight: 600; }

/* ── FIGURED OUT ── */
.figured-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.figured-card { background: var(--paper); border: 1px solid var(--border); border-radius: 14px; padding: 28px 26px; transition: all 0.2s; }
.figured-card:hover { border-color: rgba(14,165,233,0.3); box-shadow: 0 6px 24px rgba(14,165,233,0.08); }
.figured-pain { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: #EF4444; font-weight: 600; margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.figured-pain::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #EF4444; flex-shrink: 0; }
.figured-card h3 { font-size: 16px; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
.figured-card p { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 14px; }
.figured-fix { font-size: 13px; color: var(--go); font-weight: 500; display: flex; align-items: flex-start; gap: 7px; }
.figured-fix::before { content: '✓'; font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ── PRICING ── */
.pricing-wrap { max-width: 520px; margin: 0 auto; }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 24px; }
.pricing-card { background: var(--navy); border: 2px solid var(--ocean); border-radius: 20px; padding: 40px; position: relative; overflow: hidden; }
.pricing-card::before { content: ''; position: absolute; top: -30%; right: -20%; width: 300px; height: 300px; background: radial-gradient(circle, rgba(14,165,233,0.1) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.pricing-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(16,185,129,0.15); border: 1px solid rgba(16,185,129,0.3); color: var(--go); padding: 5px 14px; border-radius: 100px; font-size: 12px; font-weight: 600; margin-bottom: 20px; }
.pricing-name { font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.pricing-duration { font-size: 14px; color: rgba(255,255,255,0.4); margin-bottom: 24px; }
.pricing-price { font-family: 'Syne', sans-serif; font-size: 64px; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 6px; }
.pricing-price span { font-size: 28px; font-weight: 500; vertical-align: top; margin-top: 10px; display: inline-block; }
.pricing-note { font-size: 13px; color: rgba(255,255,255,0.38); margin-bottom: 28px; }
.pricing-divider { height: 1px; background: rgba(255,255,255,0.08); margin-bottom: 28px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.45; }
.pricing-features li::before { content: '✓'; color: var(--go); font-weight: 700; font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.pricing-cta { display: block; text-align: center; background: var(--go); color: #fff; padding: 16px; border-radius: 10px; font-size: 16px; font-weight: 600; text-decoration: none; transition: all 0.2s; }
.pricing-cta:hover { background: var(--go-dark); box-shadow: 0 8px 28px rgba(16,185,129,0.35); transform: translateY(-1px); }
.pricing-sub { text-align: center; font-size: 13px; color: rgba(255,255,255,0.3); margin-top: 16px; }
.pricing-form-link { display: block; text-align: center; font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 12px; text-decoration: underline; transition: color 0.15s; }
.pricing-form-link:hover { color: rgba(255,255,255,0.75); }
.pricing-outer-note { text-align: center; font-size: 14px; color: var(--muted); margin-top: 28px; }

/* ── CTA BAND ── */
.cta-band { background: linear-gradient(135deg, #0A1F3C 0%, #0D2548 60%, #061830 100%); padding: 96px 5%; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; top: -50%; left: 50%; transform: translateX(-50%); width: 800px; height: 400px; background: radial-gradient(ellipse, rgba(14,165,233,0.1) 0%, transparent 70%); pointer-events: none; }
.cta-band-inner { max-width: 680px; margin: 0 auto; position: relative; z-index: 1; }
.cta-band h2 { font-family: 'Syne', sans-serif; font-size: 44px; font-weight: 800; color: #fff; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 16px; }
.cta-band h2 em { font-style: normal; color: var(--ocean); }
.cta-band p { font-size: 17px; color: rgba(255,255,255,0.52); margin-bottom: 36px; line-height: 1.7; }
.cta-band-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-note { margin-top: 16px; font-size: 13px; color: rgba(255,255,255,0.28); }

/* ── FOOTER ── */
footer { background: var(--ink); padding: 48px 5% 32px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 40px; flex-wrap: wrap; gap: 32px; }
.footer-logo { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.footer-logo span { color: var(--ocean); }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.28); max-width: 260px; line-height: 1.6; }
.footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col h4 { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.28); font-weight: 600; margin-bottom: 14px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.52); text-decoration: none; margin-bottom: 8px; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.22); }
.footer-bottom-tag { font-size: 13px; color: rgba(255,255,255,0.18); font-style: italic; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero h1 { font-size: 44px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .deliverables-grid { grid-template-columns: repeat(3,1fr); }
  .brain-grid, .story-grid { grid-template-columns: 1fr; gap: 48px; }
  .figured-grid { grid-template-columns: 1fr 1fr; }
  .path-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  nav { padding: 0 4%; }
  .nav-links, .nav-cta { display: none; }
  .nav-mobile-toggle { display: block; }
  .hero h1 { font-size: 36px; }
  .hero-sub { font-size: 16px; }
  .section { padding: 64px 4%; }
  .dual-path { padding: 60px 4%; }
  .section-title { font-size: 30px; }
  .page-header h1 { font-size: 36px; }
  .steps-grid { grid-template-columns: 1fr; }
  .deliverables-grid { grid-template-columns: 1fr 1fr; }
  .figured-grid { grid-template-columns: 1fr; }
  .proof-stats { gap: 24px; }
  .cta-band h2 { font-size: 32px; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 30px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .deliverables-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 26px; }
  .pricing-price { font-size: 52px; }
  .pricing-grid { grid-template-columns: 1fr; }
}
