/* ==========================================================================
   Good Neighbours — "Get Featured" landing page
   ========================================================================== */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
:root{
  --yellow:#FDC42E;
  --yellow-dark:#E6AD1A;
  --yellow-soft:#FFF4D1;
  --ochre:#8A6200;            /* accessible yellow-family text on light bg */
  --paper:#FAF8F3;
  --paper-2:#F3EFE5;
  --white:#FFFFFF;
  --ink:#141414;
  --ink-2:#2A2925;
  --muted:#5E5B53;
  --faint:#8C887E;
  --line:#E6E1D5;
  --night:#121210;
  --night-2:#1C1B18;
  --night-line:rgba(255,255,255,.09);
  --night-muted:rgba(255,255,255,.62);
  --danger:#A3322A;
  --ok:#2D7A47;

  --serif:'Instrument Serif',Georgia,'Times New Roman',serif;
  --sans:'Outfit',system-ui,-apple-system,'Segoe UI',Roboto,sans-serif;

  --r-sm:10px;
  --r-md:16px;
  --r-lg:24px;
  --gutter:clamp(1.15rem,4vw,2.5rem);
  --maxw:1200px;
  --nav-h:68px;
  --thumb-ratio:4/5;
}
body{
  font-family:var(--sans);
  font-size:1.0625rem;
  line-height:1.65;
  color:var(--ink);
  background:var(--paper);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
}
img,svg,video{display:block;max-width:100%}
a{color:inherit}
button{font:inherit;color:inherit;background:none;border:0;cursor:pointer}
:focus-visible{outline:2px solid var(--ink);outline-offset:3px;border-radius:6px}
.on-dark :focus-visible,.section--night :focus-visible{outline-color:var(--yellow)}
[hidden]{display:none!important}
section[id]{scroll-margin-top:var(--nav-h)}
#applyCard{scroll-margin-top:calc(var(--nav-h) + 20px)}

.skip{position:absolute;left:1rem;top:-100px;z-index:1000;background:var(--ink);color:#fff;padding:.6rem 1rem;border-radius:8px;text-decoration:none}
.skip:focus{top:1rem}

.wrap{max-width:var(--maxw);margin:0 auto;padding-inline:var(--gutter)}
.section{padding-block:clamp(4.5rem,10vw,8rem);position:relative}
.section--night{background:var(--night);color:#fff}
.section--yellow{background:var(--yellow);color:var(--ink)}
.section--tint{background:var(--paper-2)}

/* ---------- Type ---------- */
.eyebrow{
  font-size:.75rem;font-weight:600;letter-spacing:.18em;text-transform:uppercase;
  color:var(--ochre);display:inline-flex;align-items:center;gap:.6rem;margin-bottom:1.25rem;
}
.eyebrow::before{content:'';width:22px;height:2px;background:var(--yellow);border-radius:2px}
.section--night .eyebrow{color:var(--yellow)}
.section--yellow .eyebrow{color:var(--ink)}
.section--yellow .eyebrow::before{background:var(--ink)}

.display{
  font-family:var(--serif);font-weight:400;
  font-size:clamp(2.8rem,6vw,5.1rem);
  line-height:.98;letter-spacing:-.02em;
}
.h2{
  font-family:var(--serif);font-weight:400;
  font-size:clamp(2.3rem,5vw,3.9rem);
  line-height:1.02;letter-spacing:-.015em;
}
.h3{font-family:var(--sans);font-weight:600;font-size:1.15rem;line-height:1.3;letter-spacing:-.005em}
.lede{font-size:clamp(1.08rem,1.6vw,1.25rem);line-height:1.6;color:var(--muted);max-width:36rem}
.section--night .lede{color:var(--night-muted)}
.section--yellow .lede{color:rgba(20,20,20,.78)}
.mark{
  background:linear-gradient(transparent 62%,var(--yellow) 62%,var(--yellow) 92%,transparent 92%);
  padding:0 .06em;
}
em.serif-i{font-family:var(--serif);font-style:italic}

.section-head{max-width:46rem;margin-bottom:clamp(2.5rem,5vw,4rem)}
.section-head .lede{margin-top:1.25rem}
.section-head--center{margin-inline:auto;text-align:center}
.section-head--center .lede{margin-inline:auto}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.6rem;
  font-family:var(--sans);font-weight:600;font-size:1rem;letter-spacing:.005em;
  padding:.95rem 1.6rem;border-radius:999px;text-decoration:none;white-space:nowrap;
  transition:background-color .2s,color .2s,transform .2s,box-shadow .2s,border-color .2s;
}
.btn svg{width:18px;height:18px;flex-shrink:0;transition:transform .2s}
.btn:hover svg.arrow{transform:translateX(3px)}
.btn--primary{background:var(--yellow);color:var(--ink);box-shadow:0 1px 0 rgba(0,0,0,.06),0 8px 24px -10px rgba(230,173,26,.9)}
.btn--primary:hover{background:var(--yellow-dark);transform:translateY(-1px)}
.btn--ink{background:var(--ink);color:#fff}
.btn--ink:hover{background:#000;transform:translateY(-1px)}
.btn--ghost{color:var(--ink);border:1.5px solid var(--line);background:transparent}
.btn--ghost:hover{border-color:var(--ink)}
.btn--ghost .play-dot{width:26px;height:26px;border-radius:50%;background:var(--ink);color:#fff;display:grid;place-items:center;margin-left:-.5rem}
.btn--ghost .play-dot svg{width:11px;height:11px;margin-left:2px}
.btn--lg{padding:1.1rem 2rem;font-size:1.05rem}
.btn--block{width:100%}

.cta-row{display:flex;flex-wrap:wrap;align-items:center;gap:.9rem 1rem}
.cta-note{font-size:.92rem;color:var(--muted);margin-top:1.1rem}
.section--night .cta-note{color:var(--night-muted)}
.section-cta{margin-top:clamp(2.5rem,5vw,3.5rem);display:flex;flex-direction:column;align-items:flex-start;gap:1rem}
.section-cta--center{align-items:center;text-align:center}
.section-cta p{font-size:1rem;color:var(--muted)}
.section--night .section-cta p{color:var(--night-muted)}

/* ---------- Placeholder markers (remove data-placeholder when replaced) ---------- */
[data-placeholder]{position:relative}
.ph-tag{
  display:inline-flex;align-items:center;gap:.35rem;
  font-family:var(--sans);font-size:.66rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;
  color:#7A5A00;background:var(--yellow-soft);border:1px dashed #D9A514;
  padding:.2rem .5rem;border-radius:6px;line-height:1.4;
}
.section--night .ph-tag{color:var(--yellow);background:rgba(253,196,46,.08);border-color:rgba(253,196,46,.45)}

/* ---------- Nav ---------- */
.nav{
  position:sticky;top:0;z-index:100;height:var(--nav-h);
  background:rgba(250,248,243,.86);
  -webkit-backdrop-filter:saturate(1.4) blur(14px);backdrop-filter:saturate(1.4) blur(14px);
  border-bottom:1px solid transparent;transition:border-color .25s,background-color .25s;
}
.nav.is-scrolled{border-bottom-color:var(--line)}
.nav .wrap{height:100%;display:flex;align-items:center;gap:1.5rem}
.logo-chip{
  display:inline-flex;align-items:center;background:var(--ink);border-radius:12px;
  padding:9px 13px;text-decoration:none;flex-shrink:0;
}
.logo-chip img{height:26px;width:auto}
.nav-links{display:flex;align-items:center;gap:.25rem;margin-left:auto}
.nav-links a{
  font-size:.95rem;font-weight:500;color:var(--muted);text-decoration:none;
  padding:.5rem .8rem;border-radius:8px;transition:color .15s;
}
.nav-links a:hover{color:var(--ink)}
.nav .btn{padding:.7rem 1.2rem;font-size:.92rem}

/* ---------- Hero ---------- */
.hero{padding-block:clamp(1.75rem,4.5vw,4rem) clamp(4rem,8vw,6.5rem)}
.hero-grid{display:grid;grid-template-columns:1.3fr .7fr;gap:clamp(2.5rem,6vw,5.5rem);align-items:center}
.hero .display{margin-bottom:1.4rem}
.hero .lede + .lede{margin-top:1rem}
.hero .cta-row{margin-top:2rem}
.hero-proof{
  margin-top:2.5rem;padding-top:1.5rem;border-top:1px solid var(--line);
  display:flex;align-items:center;gap:1rem;flex-wrap:wrap;
  font-size:.95rem;color:var(--muted);
}
.proof-dots{display:flex}
.proof-dots span{
  width:30px;height:30px;border-radius:50%;border:2px solid var(--paper);
  display:grid;place-items:center;margin-left:-8px;color:var(--ink);
}
.proof-dots span:first-child{margin-left:0}
.proof-dots span svg{width:14px;height:14px}
.proof-dots span:nth-child(1){background:var(--yellow)}
.proof-dots span:nth-child(2){background:#E9E3D3}
.proof-dots span:nth-child(3){background:var(--ink);color:var(--yellow)}

.hero-media{
  position:relative;aspect-ratio:4/5;border-radius:var(--r-lg);overflow:hidden;
  background:var(--night-2);color:#fff;
  box-shadow:0 40px 80px -40px rgba(20,20,20,.45),0 2px 6px rgba(20,20,20,.08);
  isolation:isolate;
}
.hero-media img.hero-photo{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:-1}
.hero-media::after{
  content:'';position:absolute;inset:0;z-index:-1;
  background:linear-gradient(180deg,rgba(0,0,0,.25) 0%,transparent 30%,transparent 55%,rgba(0,0,0,.72) 100%);
}
.hero-media .fallback-art{position:absolute;inset:0;z-index:-2}
.viewfinder{position:absolute;inset:22px;pointer-events:none}
.viewfinder i{position:absolute;width:26px;height:26px;border-color:rgba(255,255,255,.75);border-style:solid;border-width:0}
.viewfinder i:nth-child(1){top:0;left:0;border-top-width:2px;border-left-width:2px;border-top-left-radius:6px}
.viewfinder i:nth-child(2){top:0;right:0;border-top-width:2px;border-right-width:2px;border-top-right-radius:6px}
.viewfinder i:nth-child(3){bottom:0;left:0;border-bottom-width:2px;border-left-width:2px;border-bottom-left-radius:6px}
.viewfinder i:nth-child(4){bottom:0;right:0;border-bottom-width:2px;border-right-width:2px;border-bottom-right-radius:6px}
.rec{
  position:absolute;top:38px;left:42px;display:flex;align-items:center;gap:.5rem;
  font-size:.72rem;font-weight:600;letter-spacing:.16em;text-transform:uppercase;color:rgba(255,255,255,.9);
}
.rec::before{content:'';width:8px;height:8px;border-radius:50%;background:#E5483B;box-shadow:0 0 0 4px rgba(229,72,59,.2)}
.hero-media .play-btn{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}
.hero-caption{
  position:absolute;left:42px;right:42px;bottom:40px;
}
.hero-caption small{display:block;font-size:.72rem;letter-spacing:.16em;text-transform:uppercase;color:rgba(255,255,255,.7);margin-bottom:.35rem}
.hero-caption strong{font-family:var(--serif);font-weight:400;font-size:clamp(1.5rem,2.4vw,1.9rem);line-height:1.1;display:block}

.play-btn{
  width:78px;height:78px;border-radius:50%;
  background:rgba(255,255,255,.96);color:var(--ink);
  display:grid;place-items:center;
  box-shadow:0 12px 30px -8px rgba(0,0,0,.5);
  transition:transform .25s,background-color .25s;
}
.play-btn svg{width:24px;height:24px;margin-left:4px}
.play-btn::before{
  content:'';position:absolute;inset:-10px;border-radius:50%;border:1.5px solid rgba(255,255,255,.45);
  transition:inset .3s,opacity .3s;
}
button.hero-media{display:block;width:100%;text-align:left;cursor:pointer}
button.hero-media:hover .play-btn,.video-card:hover .play-btn{transform:translate(-50%,-50%) scale(1.06);background:var(--yellow)}
button.hero-media:hover .play-btn::before,.video-card:hover .play-btn::before{inset:-16px;opacity:0}

/* ---------- Video examples ---------- */
.video-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(1rem,2.4vw,2rem) clamp(1rem,2vw,1.5rem)}
.video-card{display:block;width:100%;text-align:left;cursor:pointer;color:inherit}
.video-thumb{
  position:relative;aspect-ratio:var(--thumb-ratio);border-radius:var(--r-md);overflow:hidden;
  background:var(--night-2);isolation:isolate;
  transition:transform .35s cubic-bezier(.2,.7,.2,1),box-shadow .35s;
}
.video-card:hover .video-thumb{transform:translateY(-4px);box-shadow:0 30px 60px -30px rgba(0,0,0,.8)}
.video-thumb img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:-1;transition:transform .6s cubic-bezier(.2,.7,.2,1)}
.video-card:hover .video-thumb img{transform:scale(1.035)}
.video-thumb::after{content:'';position:absolute;inset:0;z-index:-1;background:linear-gradient(180deg,transparent 55%,rgba(0,0,0,.55))}
.video-thumb.no-img::after{display:none}
.video-thumb .play-btn{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);width:64px;height:64px}
.video-thumb .play-btn svg{width:20px;height:20px}
.video-thumb .dur{
  position:absolute;right:14px;bottom:14px;font-size:.75rem;font-weight:500;
  background:rgba(0,0,0,.55);color:#fff;padding:.2rem .5rem;border-radius:6px;
  -webkit-backdrop-filter:blur(6px);backdrop-filter:blur(6px);
}
.video-thumb .ph-tag{position:absolute;left:14px;top:14px}
.thumb-art{position:absolute;inset:0;z-index:-2;display:flex;flex-direction:column;justify-content:flex-end;padding:1.25rem}
.thumb-art .icon{position:absolute;right:-18px;top:-10px;width:58%;opacity:.13;color:#fff}
.thumb-art .icon svg{width:100%;height:auto;stroke-width:.9}
.thumb-art .t-label{font-family:var(--serif);font-size:1.6rem;line-height:1.05;color:rgba(255,255,255,.9);max-width:80%}
.video-meta{padding:1rem .15rem 0}
.video-meta .name{font-family:var(--sans);font-weight:600;font-size:1.08rem;line-height:1.3;color:#fff}
.video-meta .sub{font-size:.9rem;color:var(--night-muted);margin-top:.2rem;display:flex;flex-wrap:wrap;gap:.35rem;align-items:center}
.video-meta .sub .sep{width:3px;height:3px;border-radius:50%;background:currentColor;opacity:.6}
.video-closer{
  margin-top:clamp(3rem,6vw,4.5rem);padding-top:clamp(2rem,4vw,3rem);border-top:1px solid var(--night-line);
  display:flex;align-items:center;justify-content:space-between;gap:1.5rem;flex-wrap:wrap;
}
.video-closer p{font-family:var(--serif);font-size:clamp(1.6rem,3vw,2.3rem);line-height:1.15;max-width:32rem}
.video-closer p em{color:var(--yellow)}

/* ---------- How it works ---------- */
.steps{list-style:none;display:grid;grid-template-columns:repeat(4,1fr);gap:0;border-top:1px solid var(--line)}
.step{padding:2rem clamp(1rem,2vw,1.75rem) 0 0;position:relative}
.step + .step{padding-left:clamp(1rem,2vw,1.75rem);border-left:1px solid var(--line)}
.step-top{display:flex;align-items:center;justify-content:space-between;margin-bottom:1.75rem}
.step-num{font-family:var(--serif);font-style:italic;font-size:3.2rem;line-height:1;color:var(--ink)}
.step-icon{width:44px;height:44px;border-radius:12px;background:var(--white);border:1px solid var(--line);display:grid;place-items:center}
.step-icon svg{width:20px;height:20px}
.step .h3{margin-bottom:.6rem}
.step p{color:var(--muted);font-size:1rem}
.promise{
  margin-top:clamp(2.5rem,5vw,3.5rem);display:flex;align-items:center;justify-content:space-between;gap:1.25rem 2rem;flex-wrap:wrap;
  background:var(--white);border:1px solid var(--line);border-radius:var(--r-lg);padding:1.5rem 1.75rem;
}
.promise p{font-size:1.1rem;font-weight:500;display:flex;align-items:center;gap:.8rem}
.promise p svg{width:22px;height:22px;flex-shrink:0;padding:4px;border-radius:50%;background:var(--yellow);stroke-width:2.5}

/* ---------- The catch ---------- */
.catch-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:clamp(2.5rem,6vw,6rem);align-items:start}
.catch-answer{font-family:var(--serif);font-style:italic;font-size:clamp(3.4rem,8vw,6.5rem);line-height:.95;letter-spacing:-.02em;margin-top:1.25rem}
.catch-body p{font-size:1.12rem;line-height:1.7;color:rgba(20,20,20,.82)}
.catch-body p + p{margin-top:1.15rem}
.catch-body strong{color:var(--ink);font-weight:600}
.catch-list{list-style:none;margin-top:2rem;display:grid;grid-template-columns:1fr 1fr;gap:.75rem}
.catch-list li{
  display:flex;align-items:center;gap:.7rem;font-weight:500;font-size:1rem;
  background:rgba(255,255,255,.45);border:1px solid rgba(20,20,20,.1);border-radius:12px;padding:.8rem 1rem;
}
.catch-list svg{width:18px;height:18px;flex-shrink:0;stroke-width:2.5}
.pull{
  margin-top:clamp(3.5rem,7vw,5.5rem);padding-top:clamp(2.5rem,5vw,3.5rem);border-top:1.5px solid rgba(20,20,20,.18);
  display:grid;grid-template-columns:auto 1fr;gap:1.5rem;align-items:start;
}
.pull .q{font-family:var(--serif);font-size:6rem;line-height:.7;color:var(--ink)}
.pull blockquote{font-family:var(--serif);font-size:clamp(2rem,4.4vw,3.6rem);line-height:1.08;letter-spacing:-.01em;max-width:52rem}

/* ---------- Who we recommend ---------- */
.who-grid{display:grid;grid-template-columns:.85fr 1.15fr;gap:clamp(2.5rem,6vw,6rem);align-items:start}
.who-side{position:sticky;top:calc(var(--nav-h) + 2rem)}
.reach-out{
  margin-top:2rem;background:var(--white);border:1px solid var(--line);border-radius:var(--r-md);padding:1.35rem 1.4rem;
}
.reach-out strong{display:block;font-weight:600;margin-bottom:.35rem}
.reach-out p{font-size:.98rem;color:var(--muted)}
.criteria{list-style:none;border-top:1px solid var(--line)}
.criterion{display:grid;grid-template-columns:52px 1fr;gap:1.25rem;padding:1.6rem 0;border-bottom:1px solid var(--line);align-items:start}
.criterion .c-icon{width:52px;height:52px;border-radius:14px;background:var(--yellow-soft);display:grid;place-items:center;color:var(--ink)}
.criterion .c-icon svg{width:22px;height:22px}
.criterion .h3{font-size:1.3rem;margin-bottom:.3rem}
.criterion p{color:var(--muted)}
.selective{
  margin-top:2.25rem;border-radius:var(--r-lg);background:var(--ink);color:#fff;
  padding:clamp(1.6rem,3vw,2.25rem);display:grid;gap:.75rem;
}
.selective h3{font-family:var(--serif);font-weight:400;font-size:clamp(1.7rem,3vw,2.2rem);line-height:1.1}
.selective p{color:var(--night-muted)}
.selective .btn{justify-self:start;margin-top:.75rem}

/* ---------- About ---------- */
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(2.5rem,6vw,5.5rem);align-items:center}
.about-copy p{color:var(--night-muted);font-size:1.1rem}
.about-copy p + p{margin-top:1.1rem}
.about-copy .h2{margin-bottom:1.75rem}
.philosophy{
  margin-top:2rem;padding:1.5rem 1.6rem;border-left:3px solid var(--yellow);background:rgba(255,255,255,.04);border-radius:0 var(--r-md) var(--r-md) 0;
}
.philosophy small{display:block;font-size:.72rem;letter-spacing:.16em;text-transform:uppercase;color:var(--yellow);margin-bottom:.6rem}
.philosophy p{font-family:var(--serif);font-size:clamp(1.45rem,2.4vw,1.85rem);line-height:1.2;color:#fff!important}
.map-card{
  position:relative;border-radius:var(--r-lg);background:var(--night-2);border:1px solid var(--night-line);
  padding:1.5rem;overflow:hidden;
}
.map-card svg.map{width:100%;height:auto}
.map-card .map-head{display:flex;justify-content:space-between;align-items:center;gap:1rem;margin-bottom:.5rem}
.map-card .map-head small{font-size:.72rem;letter-spacing:.16em;text-transform:uppercase;color:var(--night-muted)}
.map-legend{display:flex;flex-wrap:wrap;gap:.5rem;margin-top:1rem}
.map-legend span{
  display:inline-flex;align-items:center;gap:.5rem;font-size:.9rem;font-weight:500;
  padding:.4rem .8rem;border-radius:999px;border:1px solid var(--night-line);color:#fff;
}
.map-legend span::before{content:'';width:8px;height:8px;border-radius:50%;background:var(--yellow)}
.map-legend span.is-soon{color:var(--night-muted);border-style:dashed}
.map-legend span.is-soon::before{background:transparent;border:1.5px solid var(--yellow);width:7px;height:7px}
.map-legend span.is-soon em{font-style:normal;font-size:.75rem;letter-spacing:.08em;text-transform:uppercase;color:var(--yellow);opacity:.85}
.map-legend span.is-note::before{display:none}
.metrics{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;margin-top:clamp(3rem,6vw,4.5rem)}
.metric{border-top:1px solid var(--night-line);padding-top:1.5rem}
.metric .num{font-family:var(--serif);font-size:clamp(3rem,6vw,4.6rem);line-height:1;color:var(--yellow)}
.metric .label{margin-top:.5rem;color:var(--night-muted);font-size:1rem;display:flex;align-items:center;gap:.6rem;flex-wrap:wrap}
.metric .note{display:inline-flex;font-size:.78rem;letter-spacing:.06em;color:var(--yellow);border:1px solid rgba(253,196,46,.35);border-radius:999px;padding:.12rem .55rem}

/* ---------- Apply ---------- */
.apply-grid{display:grid;grid-template-columns:.8fr 1.2fr;gap:clamp(2.5rem,5vw,5rem);align-items:start}
.apply-side{position:sticky;top:calc(var(--nav-h) + 2rem)}
.apply-side .lede + .lede{margin-top:1rem}
.next-list{list-style:none;margin-top:2.25rem;display:grid;gap:0}
.next-list li{display:grid;grid-template-columns:34px 1fr;gap:1rem;padding:1rem 0;border-top:1px solid var(--line)}
.next-list li:last-child{border-bottom:1px solid var(--line)}
.next-list .n{width:34px;height:34px;border-radius:50%;border:1.5px solid var(--ink);display:grid;place-items:center;font-size:.85rem;font-weight:600}
.next-list strong{display:block;font-weight:600}
.next-list span{font-size:.95rem;color:var(--muted)}

.apply-card{
  background:var(--white);border:1px solid var(--line);border-radius:var(--r-lg);
  box-shadow:0 30px 80px -50px rgba(20,20,20,.35);
  overflow:hidden;
}
.progress{display:flex;border-bottom:1px solid var(--line);background:var(--paper)}
.progress li{
  flex:1;list-style:none;display:flex;align-items:center;gap:.6rem;padding:1rem 1.4rem;
  font-size:.9rem;font-weight:500;color:var(--faint);
}
.progress li + li{border-left:1px solid var(--line)}
.progress .dot{width:24px;height:24px;border-radius:50%;border:1.5px solid currentColor;display:grid;place-items:center;font-size:.75rem;font-weight:600;flex-shrink:0}
.progress .dot svg{width:13px;height:13px;stroke-width:3}
.progress li.is-active{color:var(--ink)}
.progress li.is-active .dot{background:var(--yellow);border-color:var(--yellow)}
.progress li.is-done{color:var(--ok)}
.progress li.is-done .dot{background:var(--ok);border-color:var(--ok);color:#fff}
.apply-body{padding:clamp(1.5rem,3.5vw,2.5rem)}

.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.15rem 1rem}
.field{display:flex;flex-direction:column;gap:.45rem;min-width:0}
.field--full{grid-column:1/-1}
.field label{font-size:.92rem;font-weight:600;color:var(--ink-2);display:flex;justify-content:space-between;gap:.5rem}
.field label .opt{font-weight:400;color:var(--faint);font-size:.85rem}
.field input,.field select,.field textarea{
  width:100%;font-family:var(--sans);font-size:1rem;color:var(--ink);
  background:var(--paper);border:1.5px solid var(--line);border-radius:12px;
  padding:.85rem 1rem;transition:border-color .15s,background-color .15s,box-shadow .15s;
  -webkit-appearance:none;appearance:none;
}
.field textarea{resize:vertical;min-height:104px;line-height:1.5}
.field input::placeholder,.field textarea::placeholder{color:#A9A497}
.field input:hover,.field select:hover,.field textarea:hover{border-color:#D5CFBF}
.field input:focus,.field select:focus,.field textarea:focus{outline:none;background:var(--white);border-color:var(--ink);box-shadow:0 0 0 4px rgba(253,196,46,.35)}
.field select{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23141414' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right 1rem center;padding-right:2.6rem;cursor:pointer;
}
.field select:invalid{color:#A9A497}
.field select option{color:var(--ink)}
.field .err{display:none;font-size:.85rem;color:var(--danger)}
.field.is-invalid input,.field.is-invalid select,.field.is-invalid textarea{border-color:var(--danger);background:#FFF8F7}
.field.is-invalid .err{display:block}
.field .hint{font-size:.85rem;color:var(--faint)}
.form-foot{margin-top:1.75rem;display:grid;gap:.9rem}
.form-foot .btn{padding:1.1rem 1.5rem;font-size:1.05rem}
.form-foot .btn[disabled]{opacity:.7;cursor:progress;transform:none}
.form-assure{display:flex;justify-content:center;flex-wrap:wrap;gap:.35rem 1.1rem;font-size:.88rem;color:var(--muted)}
.form-assure span{display:inline-flex;align-items:center;gap:.35rem}
.form-assure svg{width:15px;height:15px;color:var(--ok);stroke-width:2.5}
.form-privacy{text-align:center;font-size:.82rem;color:var(--faint)}
.form-error{display:none;margin-bottom:1.25rem;padding:.9rem 1rem;border-radius:12px;background:#FFF1EF;border:1px solid #F1C6C0;color:var(--danger);font-size:.95rem}
.form-error.is-shown{display:block}
.spinner{width:18px;height:18px;border-radius:50%;border:2px solid rgba(20,20,20,.25);border-top-color:var(--ink);animation:spin .7s linear infinite}
@keyframes spin{to{transform:rotate(360deg)}}

.booking-head{margin-bottom:1.5rem}
.booking-head .received{
  display:inline-flex;align-items:center;gap:.5rem;font-size:.85rem;font-weight:600;color:var(--ok);
  background:#EAF4ED;border-radius:999px;padding:.35rem .8rem;margin-bottom:1rem;
}
.booking-head .received svg{width:14px;height:14px;stroke-width:3}
.booking-head h3{font-family:var(--serif);font-weight:400;font-size:clamp(2rem,3.6vw,2.7rem);line-height:1.05;margin-bottom:.9rem}
.booking-head p{color:var(--muted)}
.booking-head p + p{margin-top:.6rem}
.calendly-slot{
  min-height:700px;border-radius:var(--r-md);border:1px solid var(--line);background:var(--paper);
  overflow:hidden;position:relative;margin-inline:-.25rem;
}
.calendly-slot .loading{position:absolute;inset:0;display:grid;place-items:center;align-content:center;gap:.9rem;color:var(--muted);font-size:.95rem}
.calendly-slot iframe{display:block}
.calendly-fallback{margin-top:1rem;font-size:.9rem;color:var(--muted);text-align:center}
.calendly-fallback a{color:var(--ink);font-weight:600}
.booked-note{
  display:none;margin-bottom:1.25rem;padding:1rem 1.15rem;border-radius:12px;background:#EAF4ED;color:#1E5532;font-weight:500;
}
.booked-note.is-shown{display:flex;gap:.7rem;align-items:flex-start}
.booked-note svg{width:20px;height:20px;flex-shrink:0;margin-top:2px;stroke-width:2.5}

/* ---------- FAQ ---------- */
.faq-grid{display:grid;grid-template-columns:.7fr 1.3fr;gap:clamp(2.5rem,6vw,5rem);align-items:start}
.faq-list{border-top:1px solid var(--line)}
.faq-list details{border-bottom:1px solid var(--line)}
.faq-list summary{
  list-style:none;cursor:pointer;display:flex;justify-content:space-between;align-items:center;gap:1.5rem;
  padding:1.5rem 0;font-weight:600;font-size:1.15rem;line-height:1.35;
}
.faq-list summary::-webkit-details-marker{display:none}
.faq-list summary .pm{
  width:34px;height:34px;border-radius:50%;border:1.5px solid var(--line);flex-shrink:0;
  display:grid;place-items:center;transition:transform .25s,background-color .2s,border-color .2s;
}
.faq-list summary .pm svg{width:16px;height:16px}
.faq-list summary:hover .pm{border-color:var(--ink)}
.faq-list details[open] summary .pm{transform:rotate(45deg);background:var(--yellow);border-color:var(--yellow)}
.faq-list .a{padding:0 3.5rem 1.6rem 0;color:var(--muted);font-size:1.05rem}
.faq-list .a p + p{margin-top:.75rem}
.faq-list .a .ph-tag{margin-bottom:.6rem}

/* ---------- Final CTA ---------- */
.final{padding-block:0 clamp(4rem,8vw,6rem)}
.final-card{
  position:relative;overflow:hidden;border-radius:clamp(20px,3vw,32px);
  background:var(--night);color:#fff;text-align:center;
  padding:clamp(3.5rem,8vw,6.5rem) clamp(1.5rem,5vw,4rem);
  isolation:isolate;
}
.final-card::before{
  content:'';position:absolute;z-index:-1;width:720px;height:720px;left:50%;top:-460px;transform:translateX(-50%);
  background:radial-gradient(closest-side,rgba(253,196,46,.22),transparent);
}
.final-card .eyebrow{justify-content:center}
.final-card .display{font-size:clamp(2.6rem,6.2vw,5rem);max-width:15ch;margin:0 auto 1.25rem}
.final-card .lede{margin:0 auto;color:var(--night-muted)}
.final-card .lede strong{color:#fff;font-weight:500}
.final-card .btn{margin-top:2.25rem}
.final-card .trio{margin-top:1.25rem;font-size:.95rem;color:var(--night-muted);display:flex;justify-content:center;flex-wrap:wrap;gap:.4rem .9rem}
.final-card .trio span::before{content:'•';margin-right:.5rem;color:var(--yellow)}

/* ---------- Footer ---------- */
.footer{background:var(--night);color:var(--night-muted);padding-block:3.5rem 2rem;font-size:.95rem}
.footer-top{display:flex;justify-content:space-between;gap:2rem;flex-wrap:wrap;padding-bottom:2.5rem;border-bottom:1px solid var(--night-line)}
.footer-brand img{height:34px;width:auto}
.footer-brand p{margin-top:.8rem;font-size:.9rem}
.footer-links{display:flex;flex-wrap:wrap;gap:.4rem 1.6rem;align-items:center;list-style:none}
.footer-links a{text-decoration:none;color:rgba(255,255,255,.8);transition:color .15s}
.footer-links a:hover{color:var(--yellow)}
.footer-bottom{padding-top:1.5rem;display:flex;justify-content:space-between;flex-wrap:wrap;gap:.5rem;font-size:.85rem;color:rgba(255,255,255,.45)}

/* ---------- Lightbox ---------- */
.lightbox{
  border:0;padding:0;background:transparent;max-width:none;max-height:none;width:100%;height:100%;
  color:#fff;overflow:hidden;
}
.lightbox::backdrop{background:rgba(10,10,9,.88);-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px)}
.lightbox[open]{display:grid;place-items:center;animation:fade .25s ease}
.lb-inner{width:min(92vw,1100px);display:flex;flex-direction:column;gap:1rem}
.lb-inner.is-vertical{width:min(92vw,calc((100vh - 170px) * 9 / 16),460px)}
.lb-frame{position:relative;aspect-ratio:16/9;background:#000;border-radius:var(--r-md);overflow:hidden;box-shadow:0 40px 100px rgba(0,0,0,.6)}
.lb-inner.is-vertical .lb-frame{aspect-ratio:9/16}
.lb-frame iframe,.lb-frame video{position:absolute;inset:0;width:100%;height:100%;border:0}
.lb-empty{position:absolute;inset:0;display:grid;place-items:center;text-align:center;padding:2rem;color:rgba(255,255,255,.75)}
.lb-empty strong{display:block;font-family:var(--serif);font-weight:400;font-size:1.8rem;color:#fff;margin-bottom:.5rem}
.lb-bar{display:flex;justify-content:space-between;align-items:center;gap:1rem}
.lb-title strong{display:block;font-weight:600;font-size:1.05rem}
.lb-title span{font-size:.92rem;color:rgba(255,255,255,.6)}
.lb-close{
  width:44px;height:44px;border-radius:50%;background:rgba(255,255,255,.1);color:#fff;display:grid;place-items:center;flex-shrink:0;
  transition:background-color .2s;
}
.lb-close:hover{background:rgba(255,255,255,.2)}
.lb-close svg{width:20px;height:20px}
.lb-cta{display:flex;justify-content:center;margin-top:.25rem}
@keyframes fade{from{opacity:0}to{opacity:1}}

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta{
  position:fixed;left:0;right:0;bottom:0;z-index:90;display:none;
  padding:.75rem 1rem calc(.75rem + env(safe-area-inset-bottom));
  background:rgba(250,248,243,.92);-webkit-backdrop-filter:blur(14px);backdrop-filter:blur(14px);
  border-top:1px solid var(--line);
  transform:translateY(110%);transition:transform .3s cubic-bezier(.2,.7,.2,1);
}
.sticky-cta.is-visible{transform:none}
.sticky-cta .btn{width:100%;padding:.95rem 1rem}
.sticky-cta small{display:block;text-align:center;font-size:.78rem;color:var(--muted);margin-top:.4rem}

/* ---------- Reveal ---------- */
.reveal{opacity:0;transform:translateY(14px);transition:opacity .7s ease,transform .7s cubic-bezier(.2,.7,.2,1)}
.reveal.is-in{opacity:1;transform:none}
.no-js .reveal{opacity:1;transform:none}

/* ---------- Responsive ---------- */
@media (max-width:1020px){
  .nav-links a:not(.btn){display:none}
  .hero-grid{grid-template-columns:1fr}
  .hero-media{aspect-ratio:16/11;max-width:720px}
  .steps{grid-template-columns:1fr 1fr;border-top:0}
  .step,.step + .step{padding:1.75rem 1.5rem 1.75rem 0;border-left:0;border-top:1px solid var(--line)}
  .step:nth-child(even){padding-left:1.5rem;border-left:1px solid var(--line)}
  .catch-grid,.who-grid,.about-grid,.apply-grid,.faq-grid{grid-template-columns:1fr}
  .who-side,.apply-side{position:static}
}
@media (max-width:760px){
  :root{--nav-h:60px}
  body{font-size:1rem}
  .logo-chip{padding:8px 11px}
  .logo-chip img{height:22px}
  .nav .btn{padding:.6rem 1rem;font-size:.85rem}
  .hero{padding-top:1.75rem}
  .hero .cta-row{flex-direction:column;align-items:stretch}
  .hero .cta-row .btn{width:100%}
  .hero-media{aspect-ratio:1/1}
  .video-grid{grid-template-columns:1fr 1fr;gap:1.5rem .85rem}
  .video-thumb .play-btn{width:48px;height:48px}
  .video-thumb .play-btn svg{width:16px;height:16px}
  .video-thumb .play-btn::before{display:none}
  .thumb-art{padding:.9rem}
  .thumb-art .t-label{font-size:1.15rem}
  .video-thumb .ph-tag{left:10px;top:10px;font-size:.58rem}
  .video-meta .name{font-size:.98rem}
  .video-meta .sub{font-size:.82rem}
  .steps{grid-template-columns:1fr}
  .step,.step + .step,.step:nth-child(even){padding:1.5rem 0;border-left:0}
  .step-top{margin-bottom:1rem}
  .step-num{font-size:2.6rem}
  .catch-list{grid-template-columns:1fr}
  .pull{grid-template-columns:1fr;gap:.5rem}
  .pull .q{font-size:4.5rem}
  .criterion{grid-template-columns:44px 1fr;gap:1rem}
  .criterion .c-icon{width:44px;height:44px;border-radius:12px}
  .metrics{grid-template-columns:1fr;gap:0}
  .metric{display:grid;grid-template-columns:auto 1fr;gap:1.25rem;align-items:center;padding-block:1.25rem}
  .metric .label{margin-top:0}
  .form-grid{grid-template-columns:1fr}
  .progress li{padding:.85rem 1rem;font-size:.82rem}
  .faq-list summary{font-size:1.05rem;padding:1.25rem 0}
  .faq-list .a{padding-right:0}
  .sticky-cta{display:block}
  body.has-sticky .footer{padding-bottom:calc(2rem + 88px)}
  .lb-inner.is-vertical{width:min(92vw,calc((100vh - 150px) * 9 / 16))}
}
@media (max-width:420px){
  .video-grid{grid-template-columns:1fr 1fr}
  .logo-chip img{height:20px}
  .nav .btn{padding:.55rem .85rem;font-size:.8rem}
}
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{animation-duration:.01ms!important;transition-duration:.01ms!important}
  .reveal{opacity:1;transform:none}
}
