/* INTENT Life Group - Recruiting landing (mobile-first, dark premium) */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500;1,600&family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #070707;
  --bg-elev: #111111;
  --bg-card: #151515;
  --ink: #f5f5f5;
  --ink-soft: #e8e8e8;
  --muted: #a3a3a3;
  --line: #262626;
  --line-soft: rgba(255,255,255,.06);
  --gold: #c9a227;
  --gold-bright: #d4af37;
  --gold-soft: rgba(201,162,39,.14);
  --gold-glow: rgba(201,162,39,.45);
  --green-dark: #1f4a34;
  --green: #2d6b4a;
  --white: #ffffff;
  --danger: #c44;
  --maxw: 720px;
  --wide: 1080px;
  --radius: 18px;
  --radius-sm: 14px;
  --ease: .22s ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Inter, -apple-system, system-ui, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  font-size: 16px;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
strong { font-weight: 700; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(7,7,7,.9);
  backdrop-filter: saturate(1.2) blur(14px);
  -webkit-backdrop-filter: saturate(1.2) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header .inner {
  max-width: var(--wide); margin: 0 auto; padding: 14px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}

.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-logo { width: 40px; height: 40px; object-fit: contain; border-radius: 8px; flex-shrink: 0; }
.brand-text {
  font-weight: 800; font-size: 17px; letter-spacing: -0.02em; line-height: 1.15; color: var(--ink);
}
.brand-text small {
  display: block; font-size: 10px; font-weight: 600; letter-spacing: 0.14em;
  color: var(--muted); text-transform: uppercase; margin-top: 3px;
}
.brand-text small .star { color: var(--gold); margin: 0 5px; }
.hero-logo { display: none; }
.apply-logo {
  display: block; width: min(160px, 46vw); height: auto; margin: 0 auto 14px;
}
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px; border-radius: 999px; font-size: 14px; font-weight: 700;
  border: 1px solid transparent; cursor: pointer;
  transition: transform var(--ease), opacity var(--ease), background var(--ease), border-color var(--ease), box-shadow var(--ease);
  text-decoration: none; white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-dark {
  background: var(--ink); color: #0a0a0a; border-color: var(--ink);
}
.btn-dark:hover { box-shadow: 0 8px 24px -10px rgba(255,255,255,.25); }
.btn-gold {
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 100%);
  color: #0a0a0a;
  font-size: 15px;
  padding: 15px 30px;
  border-color: rgba(255,255,255,.08);
  box-shadow:
    0 0 0 1px rgba(201,162,39,.25),
    0 10px 36px -10px var(--gold-glow),
    0 0 48px -16px rgba(201,162,39,.35);
}
.btn-header {
  font-size: 13px !important;
  padding: 11px 18px !important;
  box-shadow: 0 0 28px -10px var(--gold-glow) !important;
}
.btn-gold:hover {
  box-shadow:
    0 0 0 1px rgba(201,162,39,.4),
    0 14px 40px -10px var(--gold-glow),
    0 0 56px -12px rgba(201,162,39,.5);
}
.btn-secondary {
  background: transparent;
  color: var(--ink-soft);
  border-color: var(--line);
  font-size: 14px;
  padding: 13px 24px;
}
.btn-secondary:hover {
  border-color: rgba(201,162,39,.55);
  color: var(--ink);
  background: rgba(201,162,39,.06);
}
.btn-green { background: var(--green-dark); color: var(--white); font-size: 15px; padding: 15px 24px; }
.btn-ghost {
  background: transparent; color: var(--ink); border: 1px solid var(--line); font-size: 15px; padding: 14px 24px;
}
.btn-ghost:hover { border-color: var(--gold); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.wide { max-width: var(--wide); margin: 0 auto; padding: 0 20px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 80px 0 56px;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -20% 10% auto;
  height: 70%;
  background:
    radial-gradient(ellipse 55% 50% at 50% 20%, rgba(201,162,39,.16), transparent 70%),
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,255,255,.04), transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0; height: 80px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none; z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero h1 {
  font-size: clamp(36px, 7.2vw, 68px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.02;
  margin: 0 0 20px;
  color: var(--ink);
}
.hero h1 .gold { color: var(--gold); }
.hero h1 {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.hero-kicker {
  display: block; font-size: clamp(22px, 4.2vw, 34px); font-weight: 700;
  letter-spacing: -0.03em; line-height: 1.2; color: var(--ink-soft);
  max-width: 28ch;
}
.hero-brand {
  display: block; font-size: clamp(36px, 7.5vw, 68px); font-weight: 800;
  letter-spacing: -0.045em; line-height: 1.02; color: var(--ink);
}
.hero p.lede {
  font-size: 17px;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 28px;
  line-height: 1.6;
  letter-spacing: -0.01em;
}
.hero-cta { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.hero-micro {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold);
}

/* ---------- Section chrome ---------- */
.pill {
  display: inline-block; padding: 7px 14px; border-radius: 999px;
  background: var(--gold-soft); color: var(--gold);
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
}
.section { padding: 72px 0; }
.section-tight { padding: 36px 0; }
.section-watch { padding: 28px 0 72px; }
.section .head { text-align: center; margin-bottom: 40px; }
.section h2 {
  font-size: clamp(26px, 4.2vw, 40px);
  font-weight: 800;
  letter-spacing: -0.038em;
  line-height: 1.14;
  margin: 16px 0 14px;
  color: var(--ink);
}
.section p.lede {
  font-size: 16px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
  letter-spacing: -0.01em;
}
.display-accent {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 600;
}

/* ---------- Steps ---------- */
.steps-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 0 auto 20px; max-width: 680px;
}
.step-card {
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 24px 22px;
  text-align: left;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.step-card:hover {
  border-color: rgba(201,162,39,.35);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -24px rgba(0,0,0,.6);
}
.step-card .n {
  display: inline-flex; width: 30px; height: 30px; border-radius: 50%;
  align-items: center; justify-content: center;
  background: var(--gold); color: #0a0a0a; font-weight: 800; font-size: 13px; margin-bottom: 12px;
  box-shadow: 0 0 20px -4px var(--gold-glow);
}
.step-card h3 { margin: 0 0 6px; font-size: 17px; letter-spacing: -0.02em; }
.step-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }
.steps-micro {
  text-align: center; color: var(--muted); font-size: 13px;
  letter-spacing: 0.02em; margin: 0 0 20px;
}

.progress-cue {
  max-width: 480px; margin: 0 auto 32px; padding: 14px 18px; border-radius: 12px;
  background: linear-gradient(180deg, rgba(201,162,39,.08), transparent 80%), var(--bg-elev);
  border: 1px solid rgba(201,162,39,.22);
  text-align: center; font-size: 13px; color: var(--muted);
}
.progress-cue strong { color: var(--gold); font-weight: 700; }

/* ---------- VSL ---------- */
.vsl-section { padding: 0 0 48px; text-align: center; }
.vsl-frame {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 20px;
  text-align: left;
  border: 1px solid rgba(201,162,39,.45);
  box-shadow:
    0 0 0 1px rgba(201,162,39,.12),
    0 0 60px -18px rgba(201,162,39,.35),
    0 32px 80px -28px rgba(0,0,0,.75);
}
.vsl-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
  z-index: 2;
}
.vsl-frame video { position: absolute; inset: 0; width: 100%; height: 100%; }
.vsl-overlay {
  position: absolute; inset: 0; border: 0; padding: 0; background: rgba(0,0,0,.12);
  cursor: pointer; display: grid; place-items: center;
}
.vsl-overlay.hidden { display: none; }
.vsl-play {
  width: 72px; height: 72px; border-radius: 50%; background: rgba(255,255,255,.94);
  display: grid; place-items: center; box-shadow: 0 8px 30px rgba(0,0,0,.4);
}
.vsl-play::after {
  content: ""; display: block; width: 0; height: 0; margin-left: 5px;
  border-left: 22px solid #0a0a0a; border-top: 13px solid transparent; border-bottom: 13px solid transparent;
}
.vsl-frame iframe.vsl-iframe,
.vsl-iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}
.vsl-caption {
  margin: 18px 0 0; color: var(--muted); font-size: 14px; letter-spacing: -0.01em;
}

/* ---------- Featured / video cards ---------- */
.featured-pair {
  display: grid; grid-template-columns: 1.45fr 1fr; gap: 18px; margin: 20px 0; align-items: stretch;
}
.featured-pair > .video-card { margin: 0; }
.featured-stack { display: grid; grid-template-rows: 1fr 1fr; gap: 18px; min-height: 0; }
.featured-stack > .video-card { margin: 0; display: flex; flex-direction: column; min-height: 0; }
.featured-stack > .video-card .thumb { flex: 1 1 auto; min-height: 0; }
.featured-stack > .video-card .thumb img { height: 100%; }
@media (max-width: 900px) {
  .featured-pair { grid-template-columns: 1fr; }
  .featured-stack { grid-template-rows: auto; }
  .featured-stack > .video-card .thumb { flex: 0 0 auto; }
  .steps-row { grid-template-columns: 1fr; max-width: 420px; }
}

.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 16px 0; }
.video-grid > .video-card { margin: 0; }
@media (max-width: 900px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .video-grid { grid-template-columns: 1fr; } }

.video-card {
  display: block;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  cursor: pointer; color: inherit;
}
.video-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201,162,39,.4);
  box-shadow: 0 20px 44px -22px rgba(0,0,0,.6), 0 0 0 1px rgba(201,162,39,.12);
}
.video-card .thumb { position: relative; aspect-ratio: 16/9; background: #000; overflow: hidden; }
.video-card .thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .35s ease;
}
.video-card:hover .thumb img { transform: scale(1.03); }
.video-card .play { position: absolute; inset: 0; display: grid; place-items: center; }
.video-card .play::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.45), transparent 45%);
  pointer-events: none;
}
.video-card .play span {
  position: relative; z-index: 1;
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,.94);
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.4), 0 0 0 1px rgba(201,162,39,.2);
  transition: transform var(--ease), box-shadow var(--ease);
}
.video-card:hover .play span {
  transform: scale(1.06);
  box-shadow: 0 10px 28px rgba(0,0,0,.45), 0 0 0 2px rgba(201,162,39,.35);
}
.video-card .play span::after {
  content: ""; display: block; width: 0; height: 0; margin-left: 3px;
  border-left: 15px solid #0a0a0a; border-top: 9px solid transparent; border-bottom: 9px solid transparent;
}
.video-card .meta { padding: 16px 18px 18px; }
.video-card .eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; color: var(--gold); text-transform: uppercase;
}
.video-card .title {
  margin-top: 7px; font-size: 15px; font-weight: 700; color: var(--ink); letter-spacing: -0.015em; line-height: 1.35;
}

.cta-row { text-align: center; padding: 28px 0 4px; }
.cta-row .btn { min-width: 220px; }

/* ---------- Pillars ---------- */
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) { .pillar-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pillar-grid { grid-template-columns: 1fr; } }
.pillar-card {
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 32px 26px;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.pillar-card:hover {
  border-color: rgba(201,162,39,.4);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -24px rgba(0,0,0,.55);
}
.pillar-icon {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: transparent; color: var(--gold); font-weight: 800; font-size: 12px;
  letter-spacing: 0.04em; margin-bottom: 16px;
  border: 1px solid rgba(201,162,39,.55);
  box-shadow: 0 0 18px -8px rgba(201,162,39,.35);
}
.pillar-card h3 { margin: 0 0 8px; font-size: 17px; letter-spacing: -0.02em; }
.pillar-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }

/* ---------- Offer panels ---------- */
.offer-panel {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px 26px;
  margin-top: 8px;
}
.offer-panel ul { margin: 16px 0 0; padding: 0 0 0 18px; color: var(--muted); }
.offer-panel li { margin: 8px 0; }
.offer-panel .rhythm { list-style: none; padding: 0; }
.offer-panel .rhythm li {
  margin: 10px 0; padding: 14px 16px; border-radius: 12px;
  background: var(--bg-elev); border: 1px solid var(--line);
}
.offer-note {
  margin: 18px 0 0; color: var(--muted); font-size: 15px; line-height: 1.55;
}
.offer-lead {
  margin: 0; color: var(--muted); font-size: 15px; line-height: 1.55;
}
.offer-lead + .deal-steps,
.deal-explain .offer-lead { margin-bottom: 14px; }
.offer-lead strong { color: var(--ink); }

.track-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 16px; }
@media (max-width: 640px) { .track-grid { grid-template-columns: 1fr; } }
.track-card {
  background: var(--bg-elev); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px 16px;
  transition: border-color var(--ease);
}
.track-card:hover { border-color: rgba(201,162,39,.35); }
.track-card h3 { margin: 0 0 8px; font-size: 16px; color: var(--gold); letter-spacing: -0.01em; }
.track-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }

.disclaimer {
  margin-top: 18px; padding: 14px 16px; border-radius: 12px; font-size: 13px; line-height: 1.5;
  background: rgba(201,162,39,.08); border: 1px solid rgba(201,162,39,.28); color: #d9c98a;
}
.disclaimer strong { color: var(--gold); }

.deal-box {
  margin-top: 18px; padding: 22px 20px; border-radius: var(--radius-sm);
  background: #0c0c0c; border: 1px dashed rgba(201,162,39,.55);
  text-align: center;
}
.deal-box .eq {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: clamp(14px, 3.4vw, 18px); color: var(--ink); margin: 10px 0;
  word-break: break-word;
}
.deal-box .result { font-size: 26px; font-weight: 800; color: var(--gold); margin: 8px 0 0; letter-spacing: -0.02em; }

.deal-steps {
  margin: 0; padding-left: 22px; color: var(--muted); font-size: 15px; line-height: 1.55;
  display: grid; gap: 14px; text-align: left;
}
.deal-steps li strong { color: var(--ink); }
.deal-explain { text-align: left; }

/* ---------- Qualify panel ---------- */
.dark-panel {
  border-radius: 24px;
  background:
    radial-gradient(55% 65% at 50% 35%, rgba(201,162,39,.18), transparent 70%),
    #0a0a0a;
  color: var(--white);
  padding: 56px 28px 58px;
  text-align: center;
  margin: 12px 0;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px -36px rgba(0,0,0,.7);
}
.dark-panel h2 { color: var(--white); letter-spacing: -0.04em; }
.dark-panel p.lede { color: rgba(255,255,255,.78); max-width: 620px; margin: 0 auto 26px; }
.dark-panel .note { color: rgba(255,255,255,.55); font-size: 14px; margin-top: 16px; }
.qualify-list {
  list-style: none; padding: 0; margin: 0 auto 24px; max-width: 520px; text-align: left; color: rgba(255,255,255,.86);
}
.qualify-list li { padding: 8px 0 8px 26px; position: relative; font-size: 15px; }
.qualify-list li::before {
  content: ""; position: absolute; left: 0; top: 14px; width: 9px; height: 9px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 10px -1px var(--gold-glow);
}
.qualify-who {
  margin: 0 auto 28px; max-width: 520px; text-align: left; color: rgba(255,255,255,.75); font-size: 15px; line-height: 1.55;
}
.qualify-who strong {
  color: #fff; display: block; margin-bottom: 8px; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
}

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 12px; }
.faq-narrow { max-width: 680px; margin: 0 auto; }
.faq-item {
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 0 20px;
  overflow: hidden;
  transition: border-color var(--ease);
}
.faq-item:hover,
.faq-item[open] { border-color: rgba(201,162,39,.35); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 18px 0; font-weight: 700; font-size: 15px;
  letter-spacing: -0.015em;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; color: var(--gold); font-size: 22px; font-weight: 500; line-height: 1; flex-shrink: 0;
}
.faq-item[open] summary::after { content: "-"; }
.faq-item p { margin: 0 0 18px; color: var(--muted); font-size: 14px; line-height: 1.6; }

/* ---------- Talk / apply ---------- */
.talk-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 40px 26px;
  text-align: center;
  margin-top: 8px;
}
.talk-card .serif {
  font-family: "Cormorant Garamond", Georgia, serif; font-style: italic; font-size: clamp(24px, 4vw, 30px);
  font-weight: 600; margin: 0 0 12px; letter-spacing: -0.01em;
}
.talk-card p { color: var(--muted); margin: 0 auto 22px; max-width: 460px; line-height: 1.55; }
.talk-card .smallnote { font-size: 13px; margin: 14px 0 0; }

.apply-inline {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px 24px;
  margin-top: 20px;
  text-align: left;
}
.apply-inline h3 {
  font-family: "Cormorant Garamond", Georgia, serif; font-style: italic; font-size: 28px;
  margin: 0 0 6px; text-align: center; letter-spacing: -0.01em;
}
.apply-inline .sub { text-align: center; color: var(--muted); margin: 0 0 24px; font-size: 14px; }
.field { margin: 0 0 14px; }
.field-label {
  display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-soft); margin: 0 0 8px;
}
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 16px; padding: 13px 14px;
  border: 1px solid var(--line); background: #0c0c0c; border-radius: 12px; color: var(--ink); outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.field textarea { min-height: 96px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,39,.15);
}
.field.error input, .field.error select, .field.error textarea { border-color: var(--danger); }
.field .err-msg { display: none; margin-top: 6px; color: #f08888; font-size: 13px; font-weight: 600; }
.field.error .err-msg { display: block; }
.choices { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.choice {
  border: 1px solid var(--line); background: #0c0c0c; border-radius: 12px; padding: 14px; text-align: center; cursor: pointer;
  transition: border-color var(--ease), background var(--ease);
}
.choice:hover { border-color: rgba(201,162,39,.4); }
.choice .main { font-weight: 700; }
.choice.selected { border-color: var(--gold); background: var(--gold-soft); }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.apply-actions { margin-top: 18px; }
.apply-actions .btn { width: 100%; }
.apply-success, .apply-error { display: none; text-align: center; padding: 12px 0; }
.apply-success.show, .apply-error.show { display: block; }
.apply-success h3, .apply-error h3 {
  font-family: "Cormorant Garamond", Georgia, serif; font-style: italic; font-size: 28px; margin: 8px 0;
}
.apply-msg { color: var(--muted); margin: 0; }
.apply-msg-sm { color: var(--muted); font-size: 14px; margin: 10px 0 0; }
.apply-retry { margin-top: 12px; }
.apply-alt {
  text-align: center; color: var(--muted); font-size: 12px; margin: 14px 0 0;
}
.apply-alt a { text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Footer / sticky ---------- */
.site-footer {
  border-top: 1px solid var(--line-soft); margin-top: 48px; padding: 28px 0 110px; color: var(--muted); font-size: 13px;
}
.site-footer .inner {
  max-width: var(--wide); margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.site-footer .brands strong { color: var(--ink); }
.site-footer .sep { opacity: .4; margin: 0 8px; }
.site-footer a { text-decoration: underline; text-underline-offset: 2px; }

.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  padding: 14px 16px calc(24px + env(safe-area-inset-bottom, 0px));
  background: rgba(7,7,7,.97);
  border-top: 2px solid rgba(201,162,39,.6);
  box-shadow: 0 -14px 40px rgba(0,0,0,.5);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  transform: translateY(110%); transition: transform .25s ease;
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .inner { max-width: 420px; margin: 0 auto; display: flex; gap: 10px; }
.sticky-cta .btn { flex: 1; }
.sticky-cta .btn-gold { padding: 13px 18px; font-size: 14px; }
.sticky-cta .btn-secondary { padding: 13px 18px; font-size: 13px; }

/* ---------- Video modal ---------- */
.video-modal {
  position: fixed; inset: 0; z-index: 1000; display: none; align-items: center; justify-content: center; padding: 20px;
}
.video-modal.open { display: flex; }
.video-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.9); cursor: pointer; }
.video-modal-inner { position: relative; width: 100%; max-width: 960px; z-index: 1; }
.video-modal-frame {
  position: relative; aspect-ratio: 16/9; background: #000; border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(201,162,39,.3);
  box-shadow: 0 0 50px -16px rgba(201,162,39,.3);
}
.video-modal-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-modal-close {
  position: absolute; top: -42px; right: 0; background: transparent; color: #fff; border: 0;
  font-size: 32px; cursor: pointer;
}
.video-modal-fallback {
  display: block; text-align: center; color: rgba(255,255,255,.75); font-size: 14px; margin-top: 14px;
  text-decoration: underline; text-underline-offset: 3px;
}

/* ---------- Apply page ---------- */
body.apply { background: #0b0b0b; }
.apply-shell { min-height: 100vh; padding: 48px 16px 80px; display: flex; justify-content: center; }
.apply-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 22px;
  max-width: 560px; width: 100%;
  padding: 40px 26px;
  box-shadow: 0 24px 60px -36px rgba(0,0,0,.55);
}
.apply-card .brand-title {
  font-family: "Cormorant Garamond", Georgia, serif; font-style: italic; font-weight: 600;
  font-size: clamp(28px, 6vw, 34px); text-align: center; margin: 0; letter-spacing: -0.01em;
}
.apply-card .brand-sub {
  text-align: center; font-size: 11px; font-weight: 700; letter-spacing: 0.16em; color: var(--muted);
  text-transform: uppercase; margin: 10px 0 20px;
}
.apply-card .brand-sub .star { color: var(--gold); margin: 0 6px; }
.apply-card .lede { text-align: center; color: var(--muted); margin: 0 0 24px; line-height: 1.55; }
.apply-back { margin-top: 18px; }
.apply-home-link {
  text-align: center; color: var(--muted); font-size: 12px; margin: 16px 0 0;
}
.apply-home-link a { text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Mobile ---------- */
@media (max-width: 640px) {
  .hero { padding: 48px 0 36px; }
  .section { padding: 56px 0; }
  .section-tight { padding: 28px 0; }
  .section-watch { padding: 20px 0 56px; }
  .brand-text { font-size: 15px; }
  .site-header .inner { padding: 12px 16px; }
  .site-header .btn { padding: 10px 14px; font-size: 12px; }
  .cta-row .btn,
  .hero-cta .btn,
  .dark-panel .btn,
  .talk-card .btn { width: 100%; max-width: 360px; }
  .offer-panel { padding: 24px 18px; }
  .dark-panel { padding: 44px 18px 48px; }
  .apply-inline { padding: 24px 16px; }
  .choices { grid-template-columns: 1fr; }
  .sticky-cta .inner { flex-direction: column; }
}


/* Above-the-fold VSL */
.hero-with-video { padding-bottom: 28px; }
.hero-with-video .lede { margin-bottom: 18px; }
.vsl-hero { padding: 8px 20px 0; }
.vsl-hero .vsl-frame { margin-top: 0; }
.vsl-hero .hero-cta { margin-top: 18px; }
.section-watch { padding-top: 36px; }

@media (max-width: 640px) {
  .sticky-cta { padding-bottom: calc(28px + env(safe-area-inset-bottom, 0px)); }
  .site-footer { padding-bottom: 140px; }
}


.field-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
@media (max-width: 520px) {
  .field-row { grid-template-columns: 1fr; }
}


.thanks-hero { padding-top: 40px; padding-bottom: 20px; }
.thanks-mark { width: 64px; height: 64px; margin: 0 auto 16px; display: block; border-radius: 12px; }
.thanks-hero .hero-micro { margin-top: 8px; }
