/* ============================================================
   Funnel / campaign landing page — layered on top of styles.css
   ============================================================ */
.lp-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92); backdrop-filter: saturate(160%) blur(14px); border-bottom: 1px solid var(--line); }
.lp-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.lp-header .brand-logo { height: 34px; width: auto; max-width: none; }
.lp-phone { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; color: var(--ink); font-size: .95rem; white-space: nowrap; }
.lp-phone svg { width: 18px; height: 18px; color: var(--gold-600); }
.lp-phone span { color: var(--gold-700); }
.lp-header .brand { transition: opacity .2s; }
.lp-header .brand:hover { opacity: .75; }

/* Breadcrumb nav — used on the plan-document pages so there's always a clear way back */
.plan-crumbs { background: var(--cream); border-bottom: 1px solid var(--line); }
.plan-crumbs .wrap { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; padding: 12px 28px; font-size: .82rem; color: var(--mist); line-height: 1.4; }
.plan-crumbs a { color: var(--gold-700); font-weight: 600; transition: color .2s; white-space: nowrap; }
.plan-crumbs a:hover { color: var(--gold-600); text-decoration: underline; }
.plan-crumbs span.sep { opacity: .55; }
.plan-crumbs span.current { color: var(--slate); }
@media (max-width: 480px) {
  .plan-crumbs .wrap { padding: 10px 18px; font-size: .78rem; gap: 6px; }
}

/* Hero */
.lp-hero { background: radial-gradient(120% 80% at 50% 0%, #fffdf8, var(--cream) 55%, var(--ivory)); text-align: center; padding: 54px 0 66px; border-bottom: 1px solid var(--line); }
.lp-hero .eyebrow { justify-content: center; }
.lp-hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.5rem); max-width: 900px; margin: 18px auto 20px; }
.lp-hero h1 em { font-style: italic; color: var(--gold-600); }
.lp-hero .sub { font-size: 1.15rem; color: var(--slate); max-width: 620px; margin: 0 auto 26px; }
.lp-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px; margin-bottom: 34px; }
.lp-badges span { display: inline-flex; align-items: center; gap: 8px; font-size: .8rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--ink); }
.lp-badges svg { width: 17px; height: 17px; color: var(--gold-600); flex: none; }

/* VSL video */
.vsl { max-width: 720px; margin: 0 auto; }
.vsl-frame { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 16/9; background: var(--navy-900); border: 1px solid var(--line); box-shadow: var(--shadow-lg); }
.vsl-frame video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vsl-cap { text-align: center; font-size: .85rem; color: var(--mist); font-style: italic; margin-top: 12px; }
.scroll-cue { margin-top: 32px; }
.scroll-cue a { display: inline-flex; flex-direction: column; align-items: center; gap: 6px; font-size: .76rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-700); }
.scroll-cue svg { width: 20px; height: 20px; animation: cueBounce 1.8s ease-in-out infinite; }
@keyframes cueBounce { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(6px);} }

/* Qualifying application form */
.apply-wrap { max-width: 640px; margin: 0 auto; }
.apply-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 40px; box-shadow: var(--shadow-md); }
.apply-scarcity { text-align: center; font-size: .9rem; color: var(--gold-700); font-weight: 600; margin-bottom: 22px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.apply-scarcity svg { width: 16px; height: 16px; }
.apply-card .q { margin-bottom: 24px; }
.apply-card .qlabel { display: block; font-weight: 700; font-size: .98rem; margin-bottom: 12px; color: var(--ink); }
.apply-card .qlabel .req { color: #c0392b; }
.radio-cards { display: grid; gap: 10px; }
.radio-cards.cols2 { grid-template-columns: 1fr 1fr; }
.radio-cards.cols3 { grid-template-columns: repeat(3,1fr); }
.radio-card input { position: absolute; opacity: 0; width: 0; height: 0; }
.radio-card label { display: block; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 12px; cursor: pointer; font-weight: 500; font-size: .92rem; transition: border .2s, background .2s, box-shadow .2s; background: #fff; text-align: center; }
.radio-card label:hover { border-color: var(--gold-400); }
.radio-card input:checked + label { border-color: var(--gold-500); background: var(--gold-100); box-shadow: 0 0 0 3px rgba(201,161,90,.16); color: var(--gold-700); font-weight: 600; }
.radio-card input:focus-visible + label { box-shadow: 0 0 0 3px rgba(201,161,90,.35); }
.apply-card input[type=text], .apply-card input[type=email], .apply-card input[type=tel], .apply-card select {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 11px; font-family: inherit; font-size: .97rem; background: var(--ivory); transition: border .2s, box-shadow .2s; }
.apply-card input:focus, .apply-card select:focus { outline: none; border-color: var(--gold-500); box-shadow: 0 0 0 3px rgba(201,161,90,.16); }
.apply-card .grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.apply-card .btn { width: 100%; margin-top: 6px; }
.apply-note { text-align: center; font-size: .82rem; color: var(--mist); margin-top: 14px; display: flex; align-items: center; justify-content: center; gap: 7px; }
.apply-note svg { width: 15px; height: 15px; color: var(--ok); }

/* Paths comparison */
.paths { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 900px; margin: 0 auto; }
.path { border-radius: 20px; padding: 32px; border: 1px solid var(--line); }
.path.delay { background: #fbf5f1; border-color: #ecddd0; }
.path.plan { background: #fff; border-color: var(--gold-200); box-shadow: var(--shadow-md); }
.path .ptag { display: inline-block; font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; margin-bottom: 16px; }
.path.delay .ptag { background: #f3ddd3; color: #a5432a; }
.path.plan .ptag { background: var(--gold-100); color: var(--gold-700); }
.path h3 { font-size: 1.3rem; margin-bottom: 8px; }
.path .big { font-family: var(--serif); font-size: 2.2rem; font-weight: 600; line-height: 1; margin: 6px 0 16px; }
.path.delay .big { color: #a5432a; }
.path.plan .big { color: var(--gold-700); }
.path ul { display: grid; gap: 12px; }
.path ul li { display: flex; gap: 11px; align-items: flex-start; font-size: .93rem; color: var(--slate); }
.path ul li svg { width: 19px; height: 19px; flex: none; margin-top: 1px; }
.path.delay ul li svg { color: #c0563a; }
.path.plan ul li svg { color: var(--ok); }

/* Flow diagram */
.flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; max-width: 900px; margin: 0 auto; align-items: start; }
.flow .node { text-align: center; position: relative; padding: 0 6px; }
.flow .node .ic { width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 16px; display: grid; place-items: center; background: linear-gradient(150deg, var(--navy-700), var(--navy-900)); color: var(--gold-400); border: 1px solid rgba(201,161,90,.3); }
.flow .node .ic svg { width: 27px; height: 27px; }
.flow .node h4 { font-family: var(--sans); font-size: .77rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); margin-bottom: 6px; }
.flow .node p { font-size: .84rem; }
.flow .node:not(:last-child)::after { content: ""; position: absolute; top: 30px; right: -4px; width: 9px; height: 9px; border-top: 2px solid var(--gold-400); border-right: 2px solid var(--gold-400); transform: rotate(45deg); }

/* Pull quote + portrait */
.pullquote { max-width: 760px; margin: 0 auto; text-align: center; }
.pq-portrait { width: 190px; aspect-ratio: 4/5; border-radius: 18px; overflow: hidden; margin: 0 auto 30px; box-shadow: var(--shadow-lg); background: var(--navy-900); }
.pq-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; }
.pullquote blockquote { font-family: var(--serif); font-style: italic; font-size: clamp(1.4rem, 2.6vw, 1.9rem); line-height: 1.42; color: var(--ink); margin-bottom: 24px; }
.pullquote cite { display: inline-flex; align-items: center; gap: 12px; font-style: normal; font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-700); }
.pullquote cite::before, .pullquote cite::after { content: ""; width: 26px; height: 1px; background: var(--gold-500); }

/* Sticky mobile apply bar */
.sticky-apply { position: fixed; bottom: 0; left: 0; right: 0; z-index: 95; display: none;
  background: rgba(16,16,18,.97); backdrop-filter: blur(8px); padding: 12px 16px; border-top: 1px solid rgba(255,255,255,.12); }
.sticky-apply .btn { width: 100%; }

/* Funnel footer */
.lp-footer { background: var(--navy-900); color: #a6a49f; padding: 42px 0; text-align: center; }
.lp-footer .brand-logo-white { height: 34px; margin: 0 auto 18px; display: block; }
.lp-footer p { font-size: .82rem; color: #86847f; max-width: 720px; margin: 0 auto 8px; line-height: 1.6; }
.lp-footer a { color: var(--gold-400); }

@media (max-width: 720px) {
  .paths, .flow { grid-template-columns: 1fr; }
  .flow .node { display: flex; align-items: center; gap: 16px; text-align: left; padding: 0; }
  .flow .node .ic { margin: 0; flex: none; }
  .flow .node:not(:last-child)::after { display: none; }
  .apply-card { padding: 26px; }
  .apply-card .grid2, .radio-cards.cols2, .radio-cards.cols3 { grid-template-columns: 1fr; }
  .sticky-apply { display: block; }
  .lp-hero { padding: 40px 0 52px; }
  body.has-sticky-apply { padding-bottom: 78px; }
}
