:root{
  --ink:#16130e; --surface:#1f1a13; --line:#332a1d;
  --text:#ffffff; --muted:#cfc7b6; --accent:#e8b04a;
  --display:'Outfit',system-ui,sans-serif; --body:'Public Sans',system-ui,sans-serif;
  --wrap:1180px; --gap:clamp(18px,3vw,34px); --radius:14px;
  --pad-y:clamp(56px,8vw,104px);
  --ease:cubic-bezier(.22,.61,.36,1);
}
*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; }
body{
  margin:0; background:var(--ink); color:var(--text);
  font:400 clamp(19px,1.15vw,21px)/1.65 var(--body);
  overflow-x:hidden;
}
h1,h2,h3{ font-family:var(--display); font-weight:700; line-height:1.1; margin:0 0 .55em; letter-spacing:-.015em; }
h1{ font-size:clamp(38px,5.4vw,66px); }
h2{ font-size:clamp(30px,3.6vw,44px); }
h3{ font-size:clamp(21px,1.5vw,24px); margin-bottom:.4em; }
p{ margin:0 0 1em; }
a{ color:var(--accent); }
img{ max-width:100%; height:auto; display:block; }
.wrap{ width:min(var(--wrap),100% - 40px); margin-inline:auto; }
.skip{ position:absolute; left:-9999px; }
.skip:focus{ left:16px; top:16px; z-index:99; background:var(--accent); color:var(--ink);
  padding:12px 18px; border-radius:8px; }
:focus-visible{ outline:3px solid var(--accent); outline-offset:3px; }

/* nav */
.nav{ position:sticky; top:0; z-index:40; background:var(--ink); border-bottom:1px solid var(--line); }
.nav-in{ display:flex; align-items:center; gap:var(--gap); min-height:70px; }
.brand{ font-family:var(--display); font-weight:700; font-size:20px; color:var(--text); text-decoration:none; }
.nav nav{ display:flex; gap:26px; margin-left:auto; }
.nav nav a{ color:var(--muted); text-decoration:none; font-size:17px;
  padding:12px 2px; transition:color .18s var(--ease); }
.nav nav a:hover{ color:var(--text); }

/* buttons: 44px minimum target */
.btn{ display:inline-flex; align-items:center; justify-content:center; min-height:52px;
  padding:14px 26px; border-radius:10px; font:600 18px/1 var(--body); text-decoration:none;
  transition:background-color .18s var(--ease), color .18s var(--ease), transform .18s var(--ease); }
.btn-primary{ background:var(--accent); color:var(--ink); }
.btn-primary:hover{ background:#f3b258; transform:translateY(-2px); }
.btn-ghost{ border:2px solid var(--line); color:var(--text); }
.btn-ghost:hover{ border-color:var(--accent); color:var(--accent); }
.btn-sm{ min-height:44px; padding:10px 18px; font-size:16px; }
.btn-lg{ min-height:58px; padding:17px 32px; font-size:19px; }
.actions{ display:flex; flex-wrap:wrap; gap:14px; margin:26px 0 0; }

/* hero: split, never centred */
.hero{ padding:clamp(40px,6vw,74px) 0 var(--pad-y); }
.hero-in{ display:grid; grid-template-columns:1.15fr .85fr; gap:clamp(28px,5vw,64px); align-items:center; }
.eyebrow{ font-family:var(--display); font-weight:500; text-transform:uppercase;
  letter-spacing:.22em; font-size:14px; color:var(--accent); margin-bottom:18px; }
.lede{ font-size:clamp(20px,1.4vw,23px); color:var(--muted); max-width:34ch; }
.note{ margin-top:18px; font-size:16px; color:var(--muted); }
.hero-portrait img{ border-radius:var(--radius); border:1px solid var(--line); }

/* bands */
.band{ padding:var(--pad-y) 0; border-top:1px solid var(--line); }
.band-alt{ background:var(--surface); }

/* bento: exactly one tile earns 2x */
.bento{ display:grid; grid-template-columns:repeat(4,1fr); gap:var(--gap); }
.tile{ background:var(--surface); border:1px solid var(--line); border-radius:var(--radius);
  padding:26px; margin:0; transition:transform .2s var(--ease), border-color .2s var(--ease); }
.tile:hover{ transform:translateY(-4px); border-color:var(--accent); }
.tile p{ color:var(--muted); margin:0; font-size:18px; }
.tile-lg{ grid-column:span 2; grid-row:span 2; padding:0; overflow:hidden; background:var(--ink); }
.tile-lg img{ width:100%; height:100%; object-fit:cover; }
.band-alt .tile{ background:var(--ink); }

/* how it works */
.how-in{ display:grid; grid-template-columns:1.1fr .9fr; gap:clamp(28px,5vw,64px); align-items:start; }
.steps{ margin:0 0 26px; padding-left:22px; }
.steps li{ margin-bottom:18px; color:var(--muted); }
.steps strong{ color:var(--text); }
.aside-note{ border-left:3px solid var(--accent); padding-left:18px; color:var(--muted); font-size:18px; }
.not-panel{ background:var(--ink); border:1px solid var(--line); border-radius:var(--radius); padding:30px; }
.not-panel ul{ margin:0 0 18px; padding-left:20px; }
.not-panel li{ margin-bottom:10px; color:var(--muted); }
.not-panel p{ margin:0; color:var(--muted); font-size:17px; }

/* faq */
.faq{ display:grid; gap:12px; max-width:860px; }
details{ background:var(--surface); border:1px solid var(--line); border-radius:var(--radius); padding:6px 22px; }
summary{ cursor:pointer; padding:16px 0; font:600 19px/1.4 var(--body); list-style:none; }
summary::-webkit-details-marker{ display:none; }
summary::after{ content:'+'; float:right; color:var(--accent); font-size:24px; line-height:1; }
details[open] summary::after{ content:'\2212'; }
details p{ color:var(--muted); margin:0 0 16px; }

/* cta */
.cta{ padding:var(--pad-y) 0; border-top:1px solid var(--line); }
.cta-in{ max-width:720px; }
.cta p{ color:var(--muted); font-size:20px; }

/* footer */
.foot{ background:var(--surface); border-top:1px solid var(--line); padding:44px 0; }
.foot-in{ display:grid; gap:20px; }
.foot .brand{ font-size:19px; margin-bottom:6px; }
.foot nav{ display:flex; flex-wrap:wrap; gap:22px; }
.foot nav a{ color:var(--text); text-decoration:none; padding:8px 0; }
.foot nav a:hover{ color:var(--accent); }
.muted{ color:var(--muted); margin:0; }
.small{ font-size:15px; }

/* reveals: transform and opacity only, and only once JS is present.
   Without JS every tile stays visible rather than hiding the product section. */
.js .reveal{ opacity:0; transform:translateY(18px); }
.js .reveal.in{ opacity:1; transform:none; transition:opacity .5s var(--ease), transform .5s var(--ease); }

@media (max-width:900px){
  .hero-in,.how-in{ grid-template-columns:1fr; }
  .hero-portrait{ order:-1; max-width:420px; }
  .bento{ grid-template-columns:repeat(2,1fr); }
  .tile-lg{ grid-column:span 2; grid-row:auto; aspect-ratio:4/3; }
  .nav nav{ display:none; }
}
@media (max-width:560px){
  .bento{ grid-template-columns:1fr; }
  .tile-lg{ grid-column:span 1; }
  .actions .btn{ width:100%; }
}
