/* ============================================
   Visible Media Co. — Facebook Ads Agency
   Light · Navy trust + bronze premium accent · Single-page funnel
   Space Grotesk (bold display) + Inter (sans) · Max-rounded, soft-shadow system
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700;800&family=Inter:wght@400;500;600;700;800&display=swap');

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

:root {
  --bg:            #F7F8FA;
  --cream:         #EEF1F5;
  --cream2:        #E4E9EF;
  --surface:       #FFFFFF;

  --border:        rgba(21,34,51,.09);
  --border2:       rgba(21,34,51,.16);

  --ink:           #15202E;
  --text:          #44536A;
  --text2:         #5C6C82;
  --text3:         #8695AA;
  --text4:         #B7C0CD;

  /* Bronze — premium accent detail (eyebrows, numerals, small highlights) */
  --accent:        #B8863C;
  --accent2:       #8C6526;
  --accent-dark:   #96702E;
  --accent-light:  #D9AE6C;
  --accent-soft:   #F1E4CC;
  --accent-soft2:  rgba(184,134,60,.16);
  --accent-gradient: linear-gradient(135deg, #C89A52 0%, #8C6526 100%);
  --gold-glow:     rgba(184,134,60,.22);
  --gold-glow-dim: rgba(140,101,38,.13);

  /* Navy — primary action color (buttons, main CTAs) */
  --navy:          #1B3A5C;
  --navy-deep:     #0F2540;
  --cta-gradient:  linear-gradient(135deg, #24486E 0%, #0F2540 100%);
  --cta-ink:       #F5F1E6;

  --shadow-sm:     0 2px 10px rgba(21,34,51,.08);
  --shadow:        0 20px 44px -18px rgba(21,34,51,.14);
  --shadow-lg:     0 40px 90px -24px rgba(21,34,51,.18);
  --glow:          0 0 45px -10px var(--gold-glow);
  --glow-dim:      0 0 50px -12px var(--gold-glow-dim);

  --r-sm:          16px;
  --r:             26px;
  --r-lg:          38px;
  --r-xl:          56px;
  --r-full:        999px;

  --max:           1160px;
  --nav-h:         72px;
  --nav-gap:       14px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: calc(var(--nav-h) + var(--nav-gap) * 2);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--text4); border-radius: var(--r-full); border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: var(--text3); }

/* ---------- Typography ---------- */
h1, h2, h3 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.08;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 5.6vw, 4.6rem); font-weight: 800; text-transform: uppercase; letter-spacing: -.015em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); font-weight: 700; }
h3 { font-size: 1.3rem; font-weight: 700; line-height: 1.3; }
h4 { font-family: 'Space Grotesk', sans-serif; font-size: .98rem; font-weight: 700; color: var(--ink); line-height: 1.35; }
p  { color: var(--text2); font-size: 1rem; line-height: 1.75; }
em {
  font-style: normal;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.accent-text { color: var(--accent); }

/* ---------- Layout ---------- */
.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.text-center { text-align: center; }

/* ---------- Sections ---------- */
.section       { padding: 130px 0; scroll-margin-top: 100px; }
.section-cream { padding: 130px 0; background: var(--cream); position: relative; overflow: hidden; scroll-margin-top: 100px; }
.section-cream > .container { position: relative; z-index: 1; }
.section-cream::before {
  content: ''; position: absolute; top: -180px; left: -160px; width: 460px; height: 460px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  filter: blur(30px); pointer-events: none; z-index: 0; opacity: .55;
}
.section-sm    { padding: 88px 0; }

/* ---------- Eyebrow / badge ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(184,134,60,.08);
  border: 1px solid rgba(184,134,60,.28);
  padding: 8px 18px 8px 13px;
  border-radius: var(--r-full);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
  box-shadow: 0 0 9px 1px rgba(184,134,60,.75);
}

.badge-pill {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--ink);
  font-size: .78rem; font-weight: 700;
  padding: 8px 18px; border-radius: var(--r-full);
  letter-spacing: .01em;
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: var(--nav-gap); left: 50%; transform: translateX(-50%);
  width: calc(100% - 32px); max-width: calc(var(--max) + 32px);
  z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border: 1px solid var(--border2);
  border-radius: var(--r-full);
  box-shadow: var(--shadow-lg);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 14px 0 26px;
}

.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem; font-weight: 700; letter-spacing: -.01em;
  color: var(--ink); flex-shrink: 0;
  display: flex; flex-direction: column; line-height: 1.1;
  text-transform: uppercase;
}
.nav-logo span {
  font-family: 'Inter', sans-serif;
  font-size: .58rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accent); margin-top: 3px;
}

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  padding: 9px 16px; border-radius: var(--r-full);
  font-size: .87rem; font-weight: 600;
  color: var(--text2);
  transition: color .2s, background .2s;
}
.nav-links a:hover  { color: var(--ink); background: var(--cream2); }
.nav-links a.active { color: var(--ink); background: var(--cream2); }

.nav-cta {
  margin-left: 10px;
  background: var(--cta-gradient) !important;
  color: var(--cta-ink) !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: .03em !important;
  padding: 11px 24px !important;
  border-radius: var(--r-full) !important;
  font-size: .82rem !important;
  transition: transform .2s, box-shadow .2s, filter .2s !important;
  box-shadow: 0 0 30px -10px var(--gold-glow) !important;
}
.nav-cta:hover { transform: translateY(-1px); filter: brightness(1.08); box-shadow: 0 0 40px -8px var(--gold-glow) !important; }

.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  width: 44px; height: 44px; /* real tap target, not just the visible icon */
}
.nav-hamburger span {
  display: block; width: 20px; height: 1.5px;
  background: var(--ink); border-radius: 2px; transition: all .3s;
}

.nav-mobile {
  display: none; position: fixed; top: calc(var(--nav-gap) + var(--nav-h) + 10px); left: 16px; right: 16px;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border2);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 10px 18px 20px; flex-direction: column; gap: 2px;
  z-index: 99;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 15px 12px; border-radius: var(--r-sm);
  font-size: .98rem; font-weight: 600; color: var(--text2);
  transition: color .15s;
}
.nav-mobile a:hover { color: var(--ink); }
.nav-mobile .nav-cta { margin-top: 10px; text-align: center; margin-left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 32px; border-radius: var(--r-full);
  font-family: 'Inter', sans-serif;
  font-size: .88rem; font-weight: 800; cursor: pointer;
  text-transform: uppercase; letter-spacing: .04em;
  border: none; transition: all .22s ease;
  white-space: nowrap; line-height: 1;
}
.btn-primary {
  background: var(--cta-gradient);
  color: var(--cta-ink);
  box-shadow: var(--shadow-sm), 0 10px 30px -10px rgba(15,37,64,.45);
}
.btn-primary:hover {
  box-shadow: var(--shadow), 0 14px 40px -8px rgba(15,37,64,.5);
  transform: translateY(-2px) scale(1.015);
  filter: brightness(1.08);
}

.btn-ghost {
  background: var(--surface); color: var(--ink);
  border: 1.5px solid var(--border2);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); box-shadow: 0 0 30px -12px var(--gold-glow); }

.btn-outline {
  background: transparent; color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-outline:hover { background: var(--accent-soft2); }

.btn-text {
  background: none; color: var(--ink); padding: 15px 4px; border: none;
  font-weight: 700; text-transform: none; letter-spacing: normal;
}
.btn-text:hover { color: var(--accent); }
.btn-text::after { content: ' \2192'; transition: transform .2s; display: inline-block; }
.btn-text:hover::after { transform: translateX(3px); }

.btn-lg  { padding: 18px 38px; font-size: .94rem; }
.btn-sm  { padding: 10px 20px; font-size: .78rem; }
.w-full  { width: 100%; }
.btn:disabled { opacity: .4; cursor: not-allowed; transform: none !important; }

/* ---------- Hero ---------- */
.hero {
  padding: 76px 0 120px;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 100px;
}
.hero-blob {
  position: absolute; top: -200px; right: -180px; width: 620px; height: 620px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  border-radius: 50%; filter: blur(30px);
  pointer-events: none; z-index: 0; opacity: .8;
}
.hero-blob::after {
  content: ''; position: absolute; top: 240px; left: -320px; width: 460px; height: 460px;
  background: radial-gradient(circle, var(--gold-glow-dim) 0%, transparent 70%);
  border-radius: 50%; filter: blur(30px);
}
.hero > .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.hero h1 { margin-top: 4px; }
.hero-sub {
  color: var(--text2);
  font-size: clamp(1.02rem, 1.6vw, 1.15rem);
  max-width: 480px; margin: 22px 0 34px;
  line-height: 1.75;
}
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

.hero-photo-wrap { position: relative; }
.hero-photo {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border2);
}
.hero-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }

.floating-card {
  position: absolute; left: -36px; bottom: -32px;
  background: var(--surface);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg), var(--glow);
  border: 1px solid var(--border2);
  padding: 24px 26px;
  max-width: 250px;
}
.floating-card p.fc-label {
  font-size: .66rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px;
}
.floating-card ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.floating-card li { font-size: .84rem; font-weight: 700; color: var(--ink); display: flex; align-items: center; gap: 8px; }
.floating-card li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex-shrink: 0; box-shadow: 0 0 8px 1px rgba(184,134,60,.65); }

/* ---------- Lead feed mockup (hero visual, no video needed) ---------- */
.lead-feed { display: flex; flex-direction: column; gap: 12px; max-width: 400px; }
.lead-feed-label {
  font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: var(--text3); margin-bottom: 2px;
}
.lead-feed-card {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--border2); border-radius: var(--r-lg);
  padding: 18px 20px; box-shadow: var(--shadow);
}
.lead-feed-card.new { border-color: var(--accent); box-shadow: var(--shadow-lg), var(--glow); }
.lead-feed-dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--accent);
  flex-shrink: 0; margin-top: 6px; box-shadow: 0 0 9px 1px var(--gold-glow);
}
.lead-feed-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; color: var(--ink); font-size: .92rem; }
.lead-feed-title span { font-family: 'Inter', sans-serif; font-weight: 600; font-size: .7rem; color: var(--text3); margin-left: 8px; }
.lead-feed-sub { font-size: .82rem; color: var(--text2); margin-top: 3px; }
.lead-feed-note { font-size: .68rem; color: var(--text4); line-height: 1.5; }
.lead-feed-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }

/* ---------- Video spot (VSL / content blocks) ---------- */
.video-spot {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border2);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  background: linear-gradient(155deg, #1c1810 0%, #0c0a08 55%, #08070a 100%);
  cursor: pointer;
  isolation: isolate;
}
.video-spot::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 20%, var(--gold-glow-dim), transparent 55%),
    radial-gradient(circle at 75% 85%, var(--gold-glow-dim), transparent 50%);
  opacity: .8; z-index: 0;
}
.video-spot.wide { aspect-ratio: 16/9; }
.video-spot-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 76px; height: 76px; border-radius: 50%;
  background: var(--accent-gradient);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg), 0 0 40px -6px var(--gold-glow);
  transition: transform .25s ease, box-shadow .25s ease;
  z-index: 2;
}
.video-spot-play svg { margin-left: 4px; }
.video-spot:hover .video-spot-play { transform: translate(-50%,-50%) scale(1.08); box-shadow: var(--shadow-lg), 0 0 60px -4px var(--gold-glow); }
.video-spot-tag {
  position: absolute; top: 22px; left: 22px; z-index: 2;
  font-size: .66rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase;
  color: var(--accent); background: rgba(8,7,10,.6); border: 1px solid rgba(212,175,55,.3);
  padding: 7px 14px; border-radius: var(--r-full);
}
.video-spot-caption {
  position: absolute; left: 22px; right: 22px; bottom: 22px; z-index: 2;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; color: var(--ink);
  font-size: 1rem; line-height: 1.4;
}
.video-spot-caption span { display: block; margin-top: 4px; font-family: 'Inter', sans-serif; font-weight: 500; font-size: .8rem; color: var(--text3); }

/* Hero small (inner pages) */
.hero-sm { padding: 76px 0 88px; text-align: left; position: relative; overflow: hidden; }
.hero-sm::before {
  content: ''; position: absolute; top: -160px; right: -140px; width: 420px; height: 420px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  filter: blur(30px); pointer-events: none; z-index: 0;
}
.hero-sm > .container { max-width: 720px; position: relative; z-index: 1; }
.hero-sm h1 { font-size: clamp(2.3rem, 5vw, 3.4rem); }
.hero-sm .hero-sub { max-width: 560px; margin-left: 0; }

/* ---------- Section heading helper ---------- */
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head.left { margin: 0 0 56px; text-align: left; }

/* ---------- Cards ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.card-soft {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card-soft:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg), var(--glow); border-color: rgba(184,134,60,.32); }

.card-icon {
  width: 46px; height: 46px; border-radius: var(--r-sm);
  background: var(--accent-soft); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-size: 1.2rem; font-weight: 800;
  margin-bottom: 20px;
}

/* ---------- Grid ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }

/* ---------- Numbered process rows ---------- */
.process-row {
  display: flex; gap: 22px; align-items: flex-start;
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
}
.process-row:last-child { border-bottom: none; }
.process-num {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: 50%;
  background: var(--accent-soft); color: var(--ink);
  font-family: 'Space Grotesk', sans-serif; font-size: .95rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

/* ---------- Process cards (grid-4 style) ---------- */
.process-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.process-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(184,134,60,.3); }
.process-card .pc-num {
  font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 800;
  color: var(--accent); margin-bottom: 14px; display: block;
}

/* ---------- Stat / proof cards ---------- */
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg), var(--glow); border-color: rgba(184,134,60,.3); }
.stat-card .stat-num {
  font-family: 'Space Grotesk', sans-serif; font-weight: 800;
  font-size: clamp(1.9rem, 3.2vw, 2.4rem);
  background: var(--accent-gradient); -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1; margin-bottom: 12px;
}
.stat-card p { font-size: .88rem; color: var(--text); }
.stat-card .stat-source {
  display: block; margin-top: 14px; font-size: .72rem; color: var(--text4);
  font-weight: 600; letter-spacing: .01em;
}
.proof-disclaimer { font-size: .78rem; color: var(--text4); text-align: center; max-width: 640px; margin: 40px auto 0; line-height: 1.7; }

/* ---------- Data table ---------- */
.data-row {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.data-row:last-child { border-bottom: none; }
.data-label { font-weight: 700; color: var(--text3); font-size: .82rem; text-transform: uppercase; letter-spacing: .05em; flex-shrink: 0; }
.data-value { color: var(--ink); font-size: .96rem; font-weight: 500; text-align: right; }

/* ---------- Quote block ---------- */
.quote-block { max-width: 700px; margin: 0 auto; text-align: center; position: relative; }
.quote-mark {
  font-family: 'Space Grotesk', sans-serif; font-size: 4.5rem; color: var(--accent);
  line-height: 1; margin-bottom: 4px; opacity: .85;
}
.quote-block p.quote-text {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-style: normal;
  color: var(--ink); font-size: clamp(1.2rem, 2.3vw, 1.55rem); line-height: 1.5;
}
.quote-block cite { display: block; margin-top: 20px; font-size: .85rem; font-weight: 700; color: var(--text3); font-style: normal; letter-spacing: .03em; text-transform: uppercase; }

/* ---------- Forms ---------- */
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: .82rem; font-weight: 700; color: var(--ink); letter-spacing: .01em; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 1.5px solid var(--border2);
  border-radius: var(--r-sm);
  /* 16px, not smaller — iOS Safari auto-zooms the viewport on focus for any
     input font-size under 16px, which is jarring mid-form on a phone. */
  font-size: 1rem; font-family: 'Inter', sans-serif;
  color: var(--ink); background: var(--cream2);
  transition: border-color .2s, box-shadow .2s; outline: none; width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text4); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft2);
  background: var(--surface);
}
.form-group select { appearance: none; cursor: pointer; color-scheme: light; }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-stack { display: flex; flex-direction: column; gap: 18px; }
@media(max-width:600px) { .form-row { grid-template-columns: 1fr; } }

/* ---------- Application (multi-step) ---------- */
.apply-card {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg), var(--glow-dim);
  padding: 48px;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.apply-progress { display: flex; gap: 8px; margin-bottom: 36px; }
.apply-progress span { flex: 1; height: 4px; border-radius: var(--r-full); background: var(--border2); transition: background .3s ease; }
.apply-progress span.done, .apply-progress span.active { background: var(--accent-gradient); }
.apply-step { display: none; }
.apply-step.active { display: block; animation: stepIn .35s ease; }
@keyframes stepIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.apply-step-label { font-size: .72rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.apply-step h3 { margin-bottom: 26px; }

.tier-grid { display: flex; flex-direction: column; gap: 12px; }
.tier-btn {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; text-align: left;
  padding: 18px 22px;
  background: var(--cream2);
  border: 1.5px solid var(--border2);
  border-radius: var(--r-sm);
  color: var(--ink);
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.02rem;
  cursor: pointer; transition: all .18s ease;
}
.tier-btn:hover { border-color: var(--accent); background: var(--surface); }
.tier-btn.selected { border-color: var(--accent); background: var(--accent-soft2); box-shadow: 0 0 0 3px var(--accent-soft2); }
.tier-btn .tier-check {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  border: 1.5px solid var(--border2); background: transparent;
  display: flex; align-items: center; justify-content: center;
  transition: all .18s ease;
}
.tier-btn.selected .tier-check { background: var(--accent-gradient); border-color: transparent; }
.tier-btn.selected .tier-check::after { content: '\2713'; color: var(--ink); font-size: .72rem; font-weight: 800; }

.apply-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 32px; gap: 14px; }
.apply-nav .btn-back { background: none; border: none; color: var(--text3); font-weight: 700; font-size: .85rem; cursor: pointer; padding: 14px 10px; min-height: 44px; }
.apply-nav .btn-back:hover { color: var(--ink); }

.apply-result { text-align: center; padding: 20px 0; }
.apply-result .result-icon {
  width: 70px; height: 70px; border-radius: 50%; margin: 0 auto 24px;
  background: var(--accent-gradient); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 40px -6px var(--gold-glow);
}
.apply-result.not-yet .result-icon { background: var(--cream2); box-shadow: none; border: 1.5px solid var(--border2); }

/* ---------- Promo card (YouTube / callouts) ---------- */
.promo-card {
  background: var(--accent-gradient);
  border-radius: var(--r-xl);
  padding: 72px 40px;
  text-align: center;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.promo-card::before {
  content: '';
  position: absolute; top: -140px; left: -100px; width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(8,7,10,.35), transparent 70%);
  pointer-events: none;
}
.promo-card::after {
  content: '';
  position: absolute; bottom: -160px; right: -100px; width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(8,7,10,.28), transparent 70%);
  pointer-events: none;
}
.promo-card h2, .promo-card p, .promo-card .eyebrow { color: #14100a; position: relative; z-index: 1; }
.promo-card .eyebrow { background: rgba(20,16,10,.12); border-color: rgba(20,16,10,.24); }
.promo-card .eyebrow::before { background: #14100a; box-shadow: none; }
.promo-card p { color: rgba(20,16,10,.72); }
.promo-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(20,16,10,.88);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  position: relative; z-index: 1;
}
.promo-card .btn-lg { position: relative; z-index: 1; }

/* ---------- Ticker / channel strip ---------- */
.ticker-wrap {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
}
.ticker-wrap::before, .ticker-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none;
}
.ticker-wrap::before { left: 0; background: linear-gradient(90deg, var(--cream), transparent); }
.ticker-wrap::after  { right: 0; background: linear-gradient(-90deg, var(--cream), transparent); }
.ticker-track { display: flex; width: max-content; animation: ticker 32s linear infinite; }
.ticker-track span {
  display: flex; align-items: center; gap: 10px;
  font-size: .92rem; font-weight: 700; color: var(--text3);
  white-space: nowrap; padding: 0 34px;
}
.ticker-track span::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
  background: var(--bg);
  position: relative; overflow: hidden;
}
.footer::before {
  content: ''; position: absolute; top: -220px; right: -180px; width: 440px; height: 440px;
  background: radial-gradient(circle, var(--gold-glow-dim) 0%, transparent 70%);
  filter: blur(30px); pointer-events: none; z-index: 0;
}
.footer > .container { position: relative; z-index: 1; }
.footer-inner {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 48px; margin-bottom: 40px;
}
.footer-logo { font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--ink); text-transform: uppercase; }
.footer-brand p { margin-top: 10px; font-size: .85rem; color: var(--text3); max-width: 280px; line-height: 1.65; }
.footer-links { display: flex; gap: 56px; }
.footer-col h5 {
  font-size: .68rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--text3); margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a  { font-size: .87rem; color: var(--text2); transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: .78rem; color: var(--text3); flex-wrap: wrap; gap: 10px;
}
.footer-bottom a { color: var(--text3); transition: color .2s; }
.footer-bottom a:hover { color: var(--accent); }

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-strip .container {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 10px 16px;
}
.trust-strip span {
  font-size: .82rem; font-weight: 700; color: var(--text2); white-space: nowrap;
}
.trust-strip .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--text4); flex-shrink: 0; }

/* ---------- FAQ / accordion ---------- */
.faq-item { border-bottom: 1px solid var(--border); padding: 24px 0; }
.faq-item:first-child { padding-top: 0; }
.faq-item:last-child { border-bottom: none; }
.faq-item summary {
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; color: var(--ink); font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.5rem; font-weight: 500; color: var(--accent); flex-shrink: 0;
  transition: transform .2s ease; line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: 14px; font-size: .93rem; max-width: 640px; }

/* ---------- Qualifier check / cross lists ---------- */
.check-list, .cross-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.check-list li, .cross-list li { display: flex; gap: 14px; align-items: flex-start; font-size: .95rem; color: var(--text); line-height: 1.6; }
.check-list li::before {
  content: '✓'; flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: var(--accent-soft2); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 800; margin-top: 2px;
}
.cross-list li::before {
  content: '✕'; flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: var(--cream2); color: var(--text3);
  display: flex; align-items: center; justify-content: center;
  font-size: .68rem; font-weight: 800; margin-top: 2px;
}
.qualifier-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 36px; }
.qualifier-card h4 { font-size: 1.05rem; margin-bottom: 22px; }

/* ---------- Math comparison (vs cards) ---------- */
.vs-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; align-items: stretch; }
.vs-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 36px 34px;
  box-shadow: var(--shadow);
}
.vs-card.bad  { border: 1px solid var(--border); }
.vs-card.good { border: 1.5px solid var(--accent); box-shadow: var(--shadow-lg), var(--glow); }
.vs-tag {
  font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: var(--text3); margin-bottom: 14px;
}
.vs-card.good .vs-tag { color: var(--accent); }
.vs-amount {
  font-family: 'Space Grotesk', sans-serif; font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.5rem); color: var(--ink);
  line-height: 1.1; margin-bottom: 22px;
}
.vs-amount span { display: block; margin-top: 4px; font-family: 'Inter', sans-serif; font-weight: 600; font-size: .8rem; color: var(--text3); }
.vs-card .check-list li, .vs-card .cross-list li { font-size: .88rem; }
.vs-divider {
  display: flex; align-items: center; justify-content: center;
  width: 64px; margin: 0 -6px;
  font-family: 'Space Grotesk', sans-serif; font-weight: 800; font-size: .82rem;
  color: var(--text4); letter-spacing: .05em;
  position: relative; z-index: 1;
}
@media (max-width: 780px) {
  .vs-grid { grid-template-columns: 1fr; gap: 18px; }
  .vs-divider { width: auto; margin: 0; }
}

/* ---------- Price card ---------- */
.price-card {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--r-lg);
  padding: 44px 38px;
  text-align: center;
  box-shadow: var(--shadow-lg), var(--glow);
}
.price-card .price-label { font-size: .74rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--text3); margin-bottom: 12px; }
.price-card .price-num {
  font-family: 'Space Grotesk', sans-serif; font-weight: 800;
  font-size: clamp(2rem, 5vw, 2.6rem);
  background: var(--accent-gradient); -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1.15;
}
.price-card .price-sub { margin-top: 8px; font-size: .84rem; color: var(--text3); }
.guarantee-badge {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 24px;
  padding: 10px 20px; border-radius: var(--r-full);
  background: var(--accent-soft2); color: var(--accent);
  font-weight: 700; font-size: .8rem;
}
.price-card .price-fine { margin-top: 16px; font-size: .8rem; color: var(--text3); }

input[type="checkbox"] { accent-color: var(--accent); width: 17px; height: 17px; flex-shrink: 0; }
.check-row { display: flex; align-items: flex-start; gap: 12px; }
.check-row label { font-size: .85rem; color: var(--text2); line-height: 1.5; font-weight: 500; }

/* ---------- Utilities ---------- */
.mt-8  { margin-top:  8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* ---------- Reveal (JS toggles opacity/transform inline; this just sets defaults) ---------- */
[data-reveal] { will-change: opacity, transform; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-5 { grid-template-columns: repeat(3,1fr); }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-links { gap: 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-photo, .video-spot:not(.wide) { max-width: 420px; margin: 0 auto; }
  .floating-card { left: 50%; transform: translateX(-50%); bottom: -28px; }
}
@media (max-width: 680px) {
  .container { padding: 0 20px; }
  .section, .section-cream { padding: 88px 0; }
  .hero { padding: 56px 0 96px; }
  .hero-sm { padding: 60px 0 64px; }
  .hero-blob { width: 380px; height: 380px; top: -140px; right: -160px; }
  .grid-2 { grid-template-columns: 1fr; gap: 44px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .grid-5 { grid-template-columns: repeat(2,1fr); }
  .card, .card-soft { padding: 28px; }
  .apply-card { padding: 30px 24px; }
  .promo-card { padding: 52px 26px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-links { flex-direction: column; gap: 24px; }
  .hero-actions { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .nav { width: calc(100% - 20px); }
  .nav-inner { padding: 0 8px 0 20px; }
  .nav-mobile { left: 10px; right: 10px; }
  .floating-card { max-width: 220px; padding: 20px; }
  .apply-nav { flex-direction: column-reverse; align-items: stretch; }
  .apply-nav .btn { width: 100%; }
}
