/* ============================================================
   ADPT — Shared Stylesheet
   One stylesheet powers every section of the site. Edit brand
   colours, type, and shared components (buttons, eyebrow, section
   heading, icons) here once and every section stays in sync.
   ============================================================ */

/* ---------------- Typefaces ----------------
   Bethany Elingston (headlines) and Neue Montreal (body) are the
   real licensed font files, stored in /fonts next to this
   stylesheet. Only a Regular weight was supplied for Neue
   Montreal, so it's mapped across the full 400-700 weight range —
   bold/medium text will render at the same visual weight as
   regular until dedicated Medium/Bold files are added. Instrument
   Serif / Inter stay as the fallback stack in case either file
   fails to load.
   ------------------------------------------------------------ */
@font-face{
  font-family:'Bethany Elingston';
  src:url('./fonts/BethanyElingston.otf') format('opentype');
  font-weight:normal;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:'Neue Montreal';
  src:url('./fonts/NeueMontreal-Regular.otf') format('opentype');
  font-weight:400 700;
  font-style:normal;
  font-display:swap;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Instrument+Serif:ital@0;1&display=swap');

:root{
  /* Brand colours */
  --primary:#000000;
  --secondary:#F9F7EE;
  --accent:#F5B618;
  --surface:#18181B;
  --border:#3A3A3F;
  --muted:#92929B;

  --bg-black:var(--primary);
  --white:var(--secondary);
  --pill-border:var(--border);
  --card-border:var(--border);
  --font-headline:'Bethany Elingston','Instrument Serif',serif;
  --font-body:'Neue Montreal','Inter',-apple-system,BlinkMacSystemFont,sans-serif;
}

*{box-sizing:border-box;margin:0;padding:0;}
html{ scroll-behavior:smooth; }

body{
  font-family:var(--font-body);
  background:#060606;
  color:var(--white);
  -webkit-font-smoothing:antialiased;
}
a{ color:inherit; }

/* ---------------- Nav ---------------- */

.site-nav{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(6,6,6,0.72);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid var(--border);
}
.nav-inner{
  max-width:1180px;
  margin:0 auto;
  padding:16px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.nav-logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-family:var(--font-headline);
  font-size:1.15rem;
  font-weight:500;
  letter-spacing:-0.01em;
  color:var(--white);
  text-decoration:none;
  flex-shrink:0;
}
.brand-mark{ width:22px; height:22px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.brand-mark svg{ display:block; width:100%; height:100%; }
.nav-right{ display:flex; align-items:center; gap:32px; }
.nav-links{ display:flex; align-items:center; gap:28px; }
.nav-link{ font-size:14px; font-weight:500; color:rgba(249,247,238,0.75); text-decoration:none; transition:color 0.2s ease; white-space:nowrap; }
.nav-link:hover{ color:var(--white); }
.nav-cta{ padding:10px 22px; font-size:13.5px; }

@media (max-width:640px){
  .nav-links{ display:none; }
  .nav-inner{ padding:14px 20px; }
}

/* ---------------- Section shell ---------------- */

section.block{
  position:relative;
  width:100%;
  padding:120px 24px;
  background:#060606;
  overflow:hidden;
}
.section-inner{
  position:relative;
  z-index:2;
  max-width:1180px;
  margin:0 auto;
}
.section-head{ max-width:640px; margin:0 auto 56px; text-align:center; }

/* Every section's ::before glow below anchors its gradient centre exactly
   at the section's own top edge (top:0, gradient "at 50% 0%") instead of
   pushing the box above the boundary and letting overflow:hidden slice a
   hard-edged ring out of it. That's what was causing the visible seam
   between sections — each one now fades in from nothing instead of
   cutting off abruptly against the section above it. */

/* ---------------- Eyebrow ---------------- */

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  width:fit-content;
  margin:0 0 22px;
  padding:7px 18px;
  border:1px solid var(--border);
  border-radius:10px;
  background:var(--surface);
  font-size:12px;
  font-weight:500;
  letter-spacing:0.02em;
  color:var(--white);
}
.eyebrow-row{ display:flex; align-items:center; flex-wrap:wrap; gap:10px; margin-bottom:22px; }
.eyebrow-center{ display:flex; margin-left:auto; margin-right:auto; }

/* ---------------- Headings ---------------- */

h2.section-heading{
  text-align:center;
  font-family:var(--font-headline);
  font-size:clamp(1.9rem, 3vw, 2.5rem);
  line-height:1.2;
  padding-top:0.08em;
  font-weight:500;
  letter-spacing:-0.02em;
  max-width:640px;
  margin:0 auto;
  background:linear-gradient(90deg, var(--secondary) 0%, rgba(245,182,24,0.6) 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  -webkit-text-fill-color:transparent;
}
/* Muted spans inside headings used to reset to flat grey — that read as an
   inconsistent, un-styled patch inside an otherwise gradient headline.
   They now inherit the same gradient treatment as the rest of the heading. */
h2.section-heading .muted{
  font-style:inherit;
  font-weight:inherit;
}
p.section-sub{
  text-align:center;
  max-width:480px;
  margin:20px auto 0;
  font-size:1rem;
  line-height:1.6;
  color:var(--muted);
}

/* ---------------- Buttons ---------------- */

.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:13px 26px;
  border-radius:999px;
  font-size:14px;
  font-weight:600;
  text-decoration:none;
  transition:opacity 0.2s ease, transform 0.2s ease;
  white-space:nowrap;
  border:none;
  cursor:pointer;
}
.btn:hover{ transform:translateY(-1px); opacity:0.9; }
.btn-primary{ background:var(--accent); color:var(--primary); }
.btn-secondary{ background:transparent; color:var(--white); border:1px solid var(--pill-border); }
.btn-secondary svg{ transition:transform 0.2s ease; }
.btn-secondary:hover svg{ transform:translateX(3px); }

/* ---------------- Shared list icons ---------------- */

.icon-check{
  width:18px;height:18px;
  flex-shrink:0;
  border-radius:50%;
  background:var(--accent);
  border:none;
  display:flex; align-items:center; justify-content:center;
  color:var(--primary);
}
.icon-x{
  width:19px;height:19px;
  flex-shrink:0;
  border-radius:50%;
  border:1.5px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  color:var(--muted);
}
.icon-mark{
  width:24px;height:24px;
  border-radius:7px;
  background:rgba(245,182,24,0.16);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}


@media (max-width:720px){
  section.block{ padding:80px 20px; }
  .section-head{ margin-bottom:40px; }
}

/* ============================================================
   SECTION 1 — Hero + Showcase (#hero-alt) — video player design,
   with the marquee folded in directly beneath it as one section.
   ============================================================ */

#hero-alt::before{
  content:"";
  position:absolute;
  top:0; left:0; right:0;
  height:65%;
  background:radial-gradient(ellipse 55% 70% at 62% 0%, rgba(245,182,24,0.11) 0%, rgba(6,6,6,0) 100%);
  pointer-events:none;
}
#hero-alt{ padding:96px 24px 110px; }
#hero-alt .section-inner{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:64px;
  align-items:center;
}

.eyebrow-row .eyebrow{ margin:0; }

h1.hero-heading{
  font-family:var(--font-headline);
  font-size:clamp(2.4rem, 4vw, 3.2rem);
  line-height:1.18;
  padding-top:0.08em;
  font-weight:500;
  letter-spacing:-0.02em;
  background:linear-gradient(90deg, var(--secondary) 0%, rgba(245,182,24,0.6) 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  -webkit-text-fill-color:transparent;
}
h1.hero-heading em{
  display:block;
  font-style:italic;
  font-weight:700;
}
p.hero-sub{ margin-top:22px; max-width:480px; font-size:1.05rem; line-height:1.65; color:var(--muted); }

.cta-row{ display:flex; align-items:center; flex-wrap:wrap; gap:14px; margin-top:34px; }
.chip-btn{
  display:inline-flex; align-items:center; gap:14px;
  padding:8px 8px 8px 24px;
  border-radius:999px;
  font-size:15px; font-weight:600;
  text-decoration:none;
  transition:transform 0.2s ease, opacity 0.2s ease;
}
.chip-btn:hover{ transform:translateY(-1px); opacity:0.92; }
.chip-btn .circle{ width:34px;height:34px; border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.chip-primary{ background:var(--accent); color:var(--primary); }
.chip-primary .circle{ background:var(--primary); }
.chip-primary .circle svg{ stroke:var(--accent); }
.chip-secondary{ background:var(--secondary); color:var(--primary); }
.chip-secondary .circle{ background:var(--primary); }
.chip-secondary .circle svg{ stroke:var(--secondary); }

.check-row{ display:flex; align-items:center; flex-wrap:wrap; gap:14px; margin-top:30px; }
.check-item{ display:flex; align-items:center; gap:8px; font-size:13.5px; color:var(--muted); white-space:nowrap; }
.check-item svg{ stroke:var(--accent); flex-shrink:0; }
.check-divider{ width:1px; height:14px; background:var(--border); }

.frame-wrap{ position:relative; padding:26px; }
.frame-wrap::before{
  content:"";
  position:absolute; inset:0;
  border:1.5px dashed rgba(245,182,24,0.55);
  border-radius:20px;
  pointer-events:none;
}
.diamond{ position:absolute; width:16px;height:16px; display:flex; align-items:center; justify-content:center; filter:drop-shadow(0 0 4px rgba(245,182,24,0.6)); }
.diamond svg{ display:block; }
.diamond.tl{ top:0; left:0; transform:translate(-50%,-50%); }
.diamond.tr{ top:0; right:0; transform:translate(50%,-50%); }
.diamond.bl{ bottom:0; left:0; transform:translate(-50%,50%); }
.diamond.br{ bottom:0; right:0; transform:translate(50%,50%); }

.player{
  position:relative; border-radius:14px; overflow:hidden;
  background:linear-gradient(150deg,#2a2a2a 0%,#111 55%,#000 100%);
  aspect-ratio:16/10;
  box-shadow:0 40px 90px rgba(0,0,0,0.55);
}
.player::after{ content:""; position:absolute; inset:0; background:radial-gradient(circle at 65% 30%, rgba(245,182,24,0.14), transparent 55%); }
.player-top{ position:absolute; top:0; left:0; right:0; z-index:3; display:flex; align-items:center; justify-content:space-between; padding:14px 16px; background:linear-gradient(180deg, rgba(0,0,0,0.55), transparent); }
.player-top .who{ display:flex; align-items:center; gap:10px; min-width:0; }
.player-logo{ width:30px;height:30px; border-radius:50%; background:var(--accent); display:flex;align-items:center;justify-content:center; flex-shrink:0; }
.player-title{ min-width:0; }
.player-title .t{ font-size:13.5px; font-weight:600; color:var(--secondary); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.player-title .c{ font-size:11.5px; color:rgba(249,247,238,0.6); }
.player-icons{ display:flex; align-items:center; gap:12px; color:rgba(249,247,238,0.8); flex-shrink:0; }
.player-center{ position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); z-index:2; width:56px;height:56px; border-radius:50%; background:rgba(0,0,0,0.35); border:1px solid rgba(249,247,238,0.4); display:flex; align-items:center; justify-content:center; }
.player-bottom{ position:absolute; left:0; right:0; bottom:0; z-index:3; padding:10px 16px 14px; background:linear-gradient(0deg, rgba(0,0,0,0.65), transparent); }
.player-time{ font-size:11.5px; color:rgba(249,247,238,0.85); margin-bottom:6px; }
.progress{ position:relative; height:2px; background:rgba(249,247,238,0.3); border-radius:2px; margin-bottom:12px; }
.progress .fill{ position:absolute; top:0; left:0; height:100%; width:8%; background:var(--accent); border-radius:2px; }
.progress .dot{ position:absolute; top:50%; left:8%; width:9px;height:9px; background:var(--accent); border-radius:50%; transform:translate(-50%,-50%); }
.caption-row{ display:flex; align-items:flex-end; justify-content:space-between; gap:12px; }
.presenter .name{ font-size:14px; font-weight:700; color:var(--secondary); }
.presenter .caption-bubble{ display:inline-block; margin-top:6px; padding:3px 8px; background:rgba(0,0,0,0.55); border-radius:4px; font-size:12px; color:var(--secondary); }
.platform-badge{ display:flex; align-items:center; gap:6px; font-size:12px; font-weight:700; color:var(--secondary); background:rgba(0,0,0,0.4); padding:5px 10px; border-radius:6px; flex-shrink:0; }
.expand-btn{ position:absolute; right:16px; bottom:92px; z-index:3; width:30px;height:30px; border-radius:50%; background:rgba(0,0,0,0.45); display:flex;align-items:center;justify-content:center; color:var(--secondary); border:none; }

@media (max-width:900px){
  #hero-alt .section-inner{ grid-template-columns:1fr; gap:48px; }
  h1.hero-heading{ font-size:2.4rem; }
}
@media (max-width:520px){
  #hero-alt{ padding:64px 16px 80px; }
  .eyebrow-row{ gap:10px 12px; }
  .chip-btn{ padding:7px 7px 7px 20px; font-size:14px; }
}

/* ---- Showcase marquee, folded directly into the hero section ---- */

.tilt-viewport{ position:relative; z-index:2; perspective:2000px; padding:70px 0 10px; }
.tilt-plane{ transform:rotateX(6deg) rotateY(-10deg) rotateZ(-4deg); transform-style:preserve-3d; }
.marquee-row{
  position:relative; width:100%; overflow:hidden; margin-top:60px;
  mask-image:linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image:linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.tilt-plane .marquee-row:first-child{ margin-top:0; }
.marquee-track{ display:flex; gap:18px; width:max-content; }
.row-left .marquee-track{ animation:scrollLeft 42s linear infinite; }
.row-right .marquee-track{ animation:scrollRight 42s linear infinite; }
@keyframes scrollLeft{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }
@keyframes scrollRight{ from{ transform:translateX(-50%); } to{ transform:translateX(0); } }

.reel-card{
  position:relative; flex-shrink:0; width:170px; aspect-ratio:9/16;
  border-radius:16px; border:1px solid var(--border); overflow:hidden;
  background:var(--tint, linear-gradient(160deg,#242424 0%,#111 60%,#000 100%));
}
.reel-card::after{ content:""; position:absolute; inset:0; background:radial-gradient(circle at 30% 20%, rgba(245,182,24,0.14), transparent 55%); }
.reel-card:nth-child(4n+2){ --tint:linear-gradient(160deg,#2c2417 0%,#151109 60%,#000 100%); }
.reel-card:nth-child(4n+3){ --tint:linear-gradient(160deg,#20201f 0%,#101010 60%,#000 100%); }
.reel-card:nth-child(4n+4){ --tint:linear-gradient(160deg,#26221a 0%,#12100a 60%,#000 100%); }

@media (max-width:640px){
  .reel-card{ width:130px; }
  .marquee-row{ margin-top:40px; }
  .marquee-track{ gap:12px; }
}

/* ============================================================
   SECTION 2 — Format library (#blog) — reuses blog-card design
   ============================================================ */

#blog::before{
  content:"";
  position:absolute;
  top:0; left:0; right:0;
  height:60%;
  background:radial-gradient(ellipse 55% 65% at 50% 0%, rgba(245,182,24,0.09) 0%, rgba(6,6,6,0) 100%);
  pointer-events:none;
}
#blog .eyebrow{ display:flex; margin-left:auto; margin-right:auto; }

.blog-grid{ display:grid; grid-template-columns:repeat(4, minmax(0,1fr)); gap:20px; margin-top:64px; }
.blog-card{
  display:block; text-decoration:none; color:inherit;
  border-radius:20px; overflow:hidden;
  background:rgba(255,255,255,0.02);
  border:1px solid var(--card-border);
  transition:transform 0.25s ease, border-color 0.25s ease;
}
.blog-card:hover{ transform:translateY(-3px); border-color:rgba(245,182,24,0.4); }
/* Thumb is now a full-bleed media slot — drop an <img> straight in
   (class="thumb-media", object-fit:cover handles any aspect ratio) and it
   replaces the icon placeholder automatically since the icon sits behind it. */
.blog-card .thumb{
  height:168px; width:100%; position:relative;
  background:linear-gradient(135deg,#3a3a3a 0%,#1a1a1a 55%,#0a0a0a 100%);
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
.blog-card .thumb::after{ content:""; position:absolute; inset:0; background:radial-gradient(circle at 30% 20%, rgba(245,182,24,0.16), transparent 60%); }
.blog-card .thumb-media{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:1; }
.blog-card .thumb .icon-mark{ position:relative; z-index:0; width:44px;height:44px; border-radius:12px; }
.blog-card .thumb .icon-mark svg{ stroke:var(--accent); width:20px; height:20px; }
.blog-card .body{ padding:20px 20px 24px; }
.blog-card h3{ font-family:var(--font-headline); font-size:1.15rem; font-weight:500; margin-bottom:8px; letter-spacing:-0.01em; }
.blog-card p{ font-size:13.5px; line-height:1.55; color:var(--muted); }

@media (max-width:980px){ .blog-grid{ grid-template-columns:repeat(2, minmax(0,1fr)); } }
@media (max-width:560px){ .blog-grid{ grid-template-columns:1fr; } }

/* ============================================================
   SECTION 3 — Mistake vs ADPT Process (#comparison)
   ============================================================ */

#comparison::before{
  content:"";
  position:absolute;
  top:0; left:0; right:0;
  height:60%;
  background:radial-gradient(ellipse 55% 65% at 65% 0%, rgba(245,182,24,0.09) 0%, rgba(6,6,6,0) 100%);
  pointer-events:none;
}
.compare-grid{ display:grid; grid-template-columns:1fr 1fr; gap:32px; align-items:start; }
.compare-card{ position:relative; padding:56px 40px 40px; border-radius:20px; }
.compare-card.mistake{ background:rgba(255,255,255,0.02); border:1px solid var(--border); }
.compare-card.strike{
  background:linear-gradient(165deg, rgba(245,182,24,0.09), rgba(245,182,24,0.02) 60%), var(--surface);
  border:1px solid rgba(245,182,24,0.35);
  box-shadow:0 0 0 1px rgba(245,182,24,0.06), 0 40px 80px rgba(0,0,0,0.5);
  transform:translateY(-14px);
}
.compare-pill{
  position:absolute; top:-18px; left:28px; display:inline-flex; align-items:center; gap:9px;
  padding:8px 16px; border-radius:999px; font-size:12px; font-weight:600; letter-spacing:0.06em;
  text-transform:uppercase; background:var(--surface); border:1px solid var(--border); color:var(--white); white-space:nowrap;
}
.compare-pill .dot{ width:8px;height:8px;border-radius:50%;flex-shrink:0; background:var(--muted); }
.strike-pill{ border-color:rgba(245,182,24,0.4); background:#111; }
.strike-pill .dot{ background:var(--accent); }
.compare-card h3{
  font-family:var(--font-headline); font-size:1.6rem; font-weight:500; letter-spacing:-0.01em; line-height:1.3;
  padding-top:0.06em;
  margin-bottom:20px; display:flex; align-items:center; gap:12px; flex-wrap:wrap;
  background:linear-gradient(90deg, var(--secondary) 0%, rgba(245,182,24,0.6) 100%);
  -webkit-background-clip:text; background-clip:text; color:transparent; -webkit-text-fill-color:transparent;
}
.compare-card h3 .arrow{ font-weight:400; }
.compare-card.strike h3 .arrow{ -webkit-text-fill-color:rgba(245,182,24,0.9); color:rgba(245,182,24,0.9); }
.compare-card p{ font-size:15px; line-height:1.7; color:var(--muted); margin-bottom:32px; }
.compare-card.strike p{ color:rgba(249,247,238,0.75); }
.compare-list{ list-style:none; display:flex; flex-direction:column; gap:16px; }
.compare-list li{ display:flex; align-items:center; gap:14px; font-size:15px; color:var(--white); }
.compare-list.bad li{ color:rgba(249,247,238,0.8); }

@media (max-width:860px){
  .compare-grid{ grid-template-columns:1fr; gap:56px; }
  .compare-card.strike{ transform:none; }
  .compare-card{ padding:48px 28px 32px; }
}

/* ============================================================
   SECTION 4 — The Creative Cadence™ loop (#operating-system)
   ============================================================ */

#operating-system::before{
  content:"";
  position:absolute;
  top:0; left:0; right:0;
  height:55%;
  background:radial-gradient(ellipse 55% 65% at 22% 0%, rgba(245,182,24,0.09) 0%, rgba(6,6,6,0) 100%);
  pointer-events:none;
}
#operating-system .eyebrow{ margin-left:0; margin-right:0; }
#operating-system .section-sub{ text-align:left; margin-left:0; max-width:700px; }
#operating-system .section-sub + .section-sub{ margin-top:10px; }

.loop-grid{ display:grid; grid-template-columns:1fr 52px 1fr 52px 1fr; grid-template-rows:auto 44px auto; margin-top:64px; }
.loop-card{
  position:relative; padding:30px 26px 28px; border-radius:18px;
  background:rgba(255,255,255,0.02); border:1px solid var(--border);
  transition:transform 0.25s ease, border-color 0.25s ease;
}
.loop-card:hover{ transform:translateY(-3px); border-color:rgba(245,182,24,0.4); }
.icon-box{ height:44px; display:flex; align-items:flex-end; margin-bottom:20px; }
.loop-card .step-row{ display:flex; align-items:baseline; gap:10px; margin-bottom:12px; }
.loop-card .num{ font-family:var(--font-headline); font-style:italic; font-size:1.1rem; color:var(--muted); }
.loop-card h3{ font-family:var(--font-headline); font-size:1.25rem; font-weight:500; letter-spacing:-0.01em; line-height:1.3; }
.loop-card p{ font-size:14px; line-height:1.6; color:var(--muted); }

.step-01{ grid-column:1; grid-row:1; }
.arrow-h1{ grid-column:2; grid-row:1; }
.step-02{ grid-column:3; grid-row:1; }
.arrow-h2{ grid-column:4; grid-row:1; }
.step-03{ grid-column:5; grid-row:1; }
.arrow-v{ grid-column:5; grid-row:2; }
.step-06{ grid-column:1; grid-row:3; }
.arrow-h3{ grid-column:2; grid-row:3; }
.step-05{ grid-column:3; grid-row:3; }
.arrow-h4{ grid-column:4; grid-row:3; }
.step-04{ grid-column:5; grid-row:3; }
.arrow-cell{ display:flex; align-items:center; justify-content:center; color:var(--accent); }

.loop-footer{ text-align:center; margin-top:64px; }
.loop-footer .line1{ font-family:var(--font-headline); font-size:1.3rem; color:var(--white); }
.loop-footer .line1 em{ font-style:italic; color:var(--muted); }
.loop-footer .line2{ margin-top:8px; font-size:13px; color:var(--muted); }

@media (max-width:900px){
  .loop-grid{ grid-template-columns:1fr; grid-template-rows:none; gap:36px; }
  .step-01,.step-02,.step-03,.step-04,.step-05,.step-06{ grid-column:1; }
  .step-01{ grid-row:1; } .step-02{ grid-row:3; } .step-03{ grid-row:5; }
  .step-04{ grid-row:7; } .step-05{ grid-row:9; } .step-06{ grid-row:11; }
  .arrow-h1{ grid-column:1; grid-row:2; }
  .arrow-h2{ grid-column:1; grid-row:4; }
  .arrow-v{ grid-column:1; grid-row:6; }
  .arrow-h3{ grid-column:1; grid-row:8; }
  .arrow-h4{ grid-column:1; grid-row:10; }
  .arrow-cell{ height:20px; }
  .arrow-h1, .arrow-h2{ transform:rotate(90deg); }
  .arrow-v{ transform:rotate(0deg); }
  .arrow-h3, .arrow-h4{ transform:rotate(-90deg); }
}

/* ============================================================
   SECTION 5 — How it works (#how-it-works)
   ============================================================ */

#how-it-works::before{
  content:"";
  position:absolute;
  top:0; left:0; right:0;
  height:60%;
  background:radial-gradient(ellipse 55% 65% at 22% 0%, rgba(245,182,24,0.09) 0%, rgba(6,6,6,0) 100%);
  pointer-events:none;
}
.steps-grid{ display:grid; grid-template-columns:repeat(4, minmax(0,1fr)); gap:20px; }
.step-card{
  padding:26px 24px 28px; border-radius:18px;
  background:rgba(255,255,255,0.02); border:1px solid var(--border);
  transition:transform 0.25s ease, border-color 0.25s ease;
}
.step-card:hover{ transform:translateY(-3px); border-color:rgba(245,182,24,0.4); }
.step-top{ display:flex; align-items:center; gap:12px; margin-bottom:22px; }
.step-icon{ width:34px;height:34px; flex-shrink:0; border-radius:9px; background:rgba(245,182,24,0.14); display:flex; align-items:center; justify-content:center; }
.step-icon svg{ stroke:var(--accent); }
.step-time{ font-size:13px; color:var(--muted); font-weight:500; }
.step-card h3{ font-family:var(--font-headline); font-size:1.3rem; font-weight:500; letter-spacing:-0.01em; line-height:1.3; margin-bottom:10px; }
.step-card p{ font-size:13.5px; line-height:1.6; color:var(--muted); }

@media (max-width:980px){ .steps-grid{ grid-template-columns:repeat(2, minmax(0,1fr)); } }
@media (max-width:560px){ .steps-grid{ grid-template-columns:1fr; } }

/* ============================================================
   SECTION 6 — Pricing (#pricing) — 3 tiers
   ============================================================ */

#pricing::before{
  content:"";
  position:absolute;
  top:0; left:0; right:0;
  height:60%;
  background:radial-gradient(ellipse 55% 65% at 50% 0%, rgba(245,182,24,0.10) 0%, rgba(6,6,6,0) 100%);
  pointer-events:none;
}
.pricing-grid{ display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:24px; margin-top:64px; }
.price-card{ position:relative; padding:36px 32px 32px; border-radius:24px; background:rgba(255,255,255,0.02); border:1px solid var(--card-border); }
.price-card.featured{
  background:rgba(245,182,24,0.045);
  border-color:rgba(245,182,24,0.35);
  box-shadow:0 0 0 1px rgba(245,182,24,0.08), 0 30px 70px rgba(0,0,0,0.45);
}
.plan-head{ display:flex; align-items:center; gap:10px; margin-bottom:14px; }
.plan-icon{ width:32px;height:32px; border-radius:9px; background:rgba(245,182,24,0.14); display:flex;align-items:center;justify-content:center; flex-shrink:0; }
.plan-name{ font-size:1.1rem; font-weight:600; }
.plan-badge{ display:block; font-size:11px; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; color:var(--accent); margin-bottom:10px; }
.plan-price{ display:flex; align-items:baseline; gap:8px; margin-bottom:2px; flex-wrap:wrap; }
.plan-price .amount{ font-size:2.4rem; font-weight:500; letter-spacing:-0.02em; }
.plan-price .period{ font-size:0.9rem; color:var(--muted); }
.plan-price .was{ font-size:1.1rem; color:var(--muted); text-decoration:line-through; }
.plan-per-unit{ font-size:13px; color:var(--muted); margin-bottom:22px; }
.plan-cta{
  display:block; width:100%; text-align:center; padding:13px 0; border-radius:99px;
  font-size:14px; font-weight:600; text-decoration:none; color:var(--white);
  background:var(--surface); border:1px solid var(--border); margin-bottom:26px;
  transition:opacity 0.2s ease, transform 0.2s ease;
}
.plan-cta:hover{ opacity:0.85; transform:translateY(-1px); }
.price-card.featured .plan-cta{ background:var(--accent); border-color:var(--accent); color:var(--primary); }
.plan-lead{ font-size:13px; color:var(--muted); margin-bottom:12px; font-weight:500; }
.feature-list{ list-style:none; }
.feature-list li{ display:flex; align-items:flex-start; gap:10px; padding:10px 0; border-top:1px solid var(--border); font-size:14px; color:rgba(249,247,238,0.85); }
.feature-list li:first-child{ border-top:none; }
.feature-list svg{ flex-shrink:0; margin-top:2px; }

@media (max-width:980px){ .pricing-grid{ grid-template-columns:1fr; max-width:440px; margin-left:auto; margin-right:auto; } }

/* ============================================================
   SECTION 7 — Reviews (#reviews)
   ============================================================ */

#reviews::before{
  content:"";
  position:absolute;
  top:0; left:0; right:0;
  height:50%;
  background:radial-gradient(ellipse 55% 60% at 50% 0%, rgba(245,182,24,0.09) 0%, rgba(6,6,6,0) 100%);
  pointer-events:none;
}
.review-grid{ display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:24px; margin:64px auto 0; max-width:960px; }
.review-card{
  padding:36px 34px 32px; border-radius:20px;
  background:rgba(255,255,255,0.02); border:1px solid var(--border);
}
.review-card .quote-mark{ color:var(--accent); font-family:var(--font-headline); font-size:2.4rem; line-height:1; margin-bottom:10px; display:block; }
.review-card p{ font-size:15px; line-height:1.7; color:rgba(249,247,238,0.85); margin-bottom:24px; }
.review-card .who{ display:flex; flex-direction:column; gap:2px; }
.review-card .who .name{ font-size:14.5px; font-weight:600; color:var(--white); }
.review-card .who .role{ font-size:13px; color:var(--muted); }

@media (max-width:720px){ .review-grid{ grid-template-columns:1fr; } }

/* ============================================================
   SECTION 8 — How we compare (#how-we-compare)
   ============================================================ */

#how-we-compare::before{
  content:"";
  position:absolute;
  top:0; left:0; right:0;
  height:50%;
  background:radial-gradient(ellipse 55% 60% at 50% 0%, rgba(245,182,24,0.09) 0%, rgba(6,6,6,0) 100%);
  pointer-events:none;
}
.table-scroll{ overflow-x:auto; padding-bottom:8px; }
.compare-table{ display:grid; grid-template-columns:170px 1.15fr 1fr 1fr 1fr; column-gap:0; min-width:900px; margin-top:64px; }
.compare-table .cell{ padding:20px 20px; display:flex; align-items:center; font-size:14.5px; line-height:1.5; }
.compare-table .cell:first-child, .compare-table .row-label{ padding-left:4px; }
.compare-table .cell:not(:nth-child(5n)):not(.us-cell){ border-right:1px solid var(--border); }
.compare-table .head-cell{ padding:0 20px 20px; align-items:flex-end; border-bottom:1px solid var(--border); font-family:var(--font-headline); font-size:1.05rem; font-weight:500; color:var(--white); }
.compare-table .head-cell:first-child{ padding-left:4px; }
.compare-table .head-cell.blank{ border-bottom-color:transparent; border-right-color:transparent; }
.compare-table .row-label{ border-bottom:1px solid var(--border); font-weight:600; color:var(--white); font-size:14.5px; }
.compare-table .row-value{ border-bottom:1px solid var(--border); color:var(--muted); }
.us-cell{
  position:relative; z-index:1;
  background:linear-gradient(165deg, rgba(245,182,24,0.1), rgba(245,182,24,0.02) 60%), var(--surface);
  border-left:1px solid rgba(245,182,24,0.35); border-right:1px solid rgba(245,182,24,0.35);
  padding-left:24px; padding-right:24px; color:var(--white); font-weight:500;
}
.us-cell.head-cell{ border-top:1px solid rgba(245,182,24,0.35); border-top-left-radius:20px; border-top-right-radius:20px; padding-top:28px; box-shadow:0 0 0 1px rgba(245,182,24,0.06); }
.us-cell.head-cell .us-brand{ display:flex; align-items:center; gap:8px; }
.us-cell.row-value{ display:flex; align-items:flex-start; gap:10px; }
.us-button-cell{ border-bottom:1px solid rgba(245,182,24,0.35); border-bottom-left-radius:20px; border-bottom-right-radius:20px; padding-top:12px; padding-bottom:28px; }
.us-button-cell .btn{ width:100%; justify-content:center; }

/* ============================================================
   SECTION 9 — FAQ (#faq)
   ============================================================ */

#faq::before{
  content:"";
  position:absolute;
  top:0; left:0; right:0;
  height:55%;
  background:radial-gradient(ellipse 55% 65% at 50% 0%, rgba(245,182,24,0.10) 0%, rgba(6,6,6,0) 100%);
  pointer-events:none;
}
.faq-list{ max-width:720px; margin:56px auto 0; display:flex; flex-direction:column; gap:12px; }
.faq-item{ border:1px solid var(--border); background:var(--surface); border-radius:16px; overflow:hidden; }
.faq-item summary{ list-style:none; display:flex; align-items:center; justify-content:space-between; gap:16px; padding:20px 24px; cursor:pointer; font-size:15px; font-weight:500; }
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item .plus{ flex-shrink:0; width:22px; height:22px; display:flex; align-items:center; justify-content:center; position:relative; }
.faq-item .plus::before, .faq-item .plus::after{ content:""; position:absolute; background:var(--white); border-radius:2px; transition:transform 0.25s ease, opacity 0.25s ease; }
.faq-item .plus::before{ width:14px; height:2px; }
.faq-item .plus::after{ width:2px; height:14px; }
.faq-item[open] .plus::before, .faq-item[open] .plus::after{ background:var(--accent); }
.faq-item[open] .plus::after{ transform:rotate(90deg); opacity:0; }
.faq-answer{ padding:0 24px 22px; font-size:14px; line-height:1.6; color:var(--muted); }
