:root{
  --bg:#F8F8F0;
  --surface:#EFEFE7;
  --surface-2:#E6E5DA;
  --ink:#1A1A17;
  --ink-soft:#3a3933;
  --muted:#6B6A60;
  --line:#DCDBD0;
  --sage:#7A8B6F;
  --sage-deep:#5e6f55;
  --serif:"Cormorant Garamond", "EB Garamond", Georgia, serif;
  --sans:"Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max:1240px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  background:var(--bg);
  color:var(--ink);
  font-family:var(--sans);
  font-size:17px;
  line-height:1.6;
  font-weight:400;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  text-rendering:optimizeLegibility;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
::selection{background:var(--sage);color:#fff}

/* ——— typography ——— */
.display{
  font-family:var(--serif);
  font-weight:500;
  letter-spacing:-0.015em;
  line-height:0.98;
  color:var(--ink);
  text-wrap:balance;
}
.display em{
  font-style:italic;
  font-weight:500;
  color:var(--sage-deep);
}
.eyebrow{
  font-family:var(--sans);
  font-size:12px;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--muted);
  font-weight:500;
}
.lede{
  font-family:var(--sans);
  font-size:19px;
  line-height:1.55;
  color:var(--ink-soft);
  font-weight:400;
  text-wrap:pretty;
  max-width:46ch;
}
.small{font-size:14px;color:var(--muted)}

/* ——— layout ——— */
.wrap{max-width:var(--max);margin:0 auto;padding:0 28px}
section{position:relative}

/* ——— nav ——— */
.nav{
  position:sticky;top:0;z-index:50;
  background:rgba(248,248,240,0.82);
  backdrop-filter:saturate(140%) blur(10px);
  -webkit-backdrop-filter:saturate(140%) blur(10px);
  border-bottom:1px solid transparent;
  transition:border-color .3s ease, background .3s ease;
}
.nav.scrolled{border-bottom-color:var(--line)}
.nav-inner{
  display:flex;align-items:center;justify-content:space-between;
  height:68px;max-width:var(--max);margin:0 auto;padding:0 28px;
}
.wordmark{
  font-family:var(--serif);
  font-size:26px;
  font-weight:500;
  letter-spacing:-0.01em;
  display:flex;align-items:center;gap:10px;
}
.wordmark .dot{
  width:8px;height:8px;border-radius:50%;
  background:var(--sage);
  display:inline-block;
  transform:translateY(-6px);
}
.nav-links{display:flex;align-items:center;gap:32px}
.nav-links a{
  font-size:14.5px;color:var(--ink-soft);
  transition:color .2s ease;
}
.nav-links a:hover{color:var(--sage-deep)}
.nav-links .soon{
  background:transparent;
  color:var(--muted);
  padding:10px 18px;
  border-radius:999px;
  border:1px solid var(--line);
  font-weight:500;
  font-size:13px;
  letter-spacing:0.06em;
  text-transform:uppercase;
  cursor:default;
}
.nav-links .text-only{display:none}
@media(min-width:760px){.nav-links .text-only{display:inline}}

/* ——— Get-the-app pill (custom, original) ——— */
.app-pill{
  display:inline-flex;align-items:center;gap:14px;
  background:var(--ink);color:var(--bg);
  padding:14px 26px 14px 22px;border-radius:999px;
  font-family:var(--sans);font-weight:500;font-size:15px;
  transition:transform .2s ease, background .2s ease;
  border:1px solid var(--ink);
}
.app-pill:not(.static):hover{transform:translateY(-2px);background:var(--sage-deep);border-color:var(--sage-deep)}
.app-pill.static{
  cursor:default;
  background:transparent;
  color:var(--ink);
  border-color:var(--line);
}
.app-pill .glyph{
  width:22px;height:22px;display:grid;place-items:center;
}
.app-pill .glyph svg{width:20px;height:20px;fill:currentColor}
.app-pill .ttl{display:flex;flex-direction:column;line-height:1.1;text-align:left}
.app-pill .ttl span:first-child{font-size:10.5px;letter-spacing:0.16em;text-transform:uppercase;opacity:.7;font-weight:500}
.app-pill .ttl span:last-child{font-family:var(--serif);font-size:19px;font-weight:500;letter-spacing:-0.01em}

.ghost-link{
  display:inline-flex;align-items:center;gap:8px;
  color:var(--ink-soft);font-size:15px;
  border-bottom:1px solid var(--line);
  padding-bottom:2px;
  transition:color .2s ease, border-color .2s ease;
}
.ghost-link:hover{color:var(--sage-deep);border-color:var(--sage)}
.ghost-link .arr{transition:transform .2s ease}
.ghost-link:hover .arr{transform:translateX(3px)}

/* ——— hero ——— */
.hero{
  min-height:calc(100vh - 68px);
  display:flex;align-items:center;
  padding:60px 0 100px;
  overflow:hidden;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:60px;align-items:center;
}
@media(max-width:900px){
  .hero-grid{grid-template-columns:1fr;gap:48px}
  .hero{min-height:0;padding:36px 0 80px}
}
.hero-eye{
  display:flex;align-items:center;gap:14px;margin-bottom:28px;
}
.hero-eye .rule{flex:0 0 36px;height:1px;background:var(--ink);opacity:.5}
.hero h1{
  font-size:clamp(48px, 7vw, 96px);
  margin:0 0 28px;
}
.hero .lede{font-size:20px;max-width:48ch;margin-bottom:40px}
.hero-cta{
  display:flex;align-items:center;gap:24px;flex-wrap:wrap;
}
.hero-meta{
  margin-top:36px;
  display:flex;align-items:center;gap:18px;
  color:var(--muted);font-size:13.5px;
}
.hero-meta em{font-style:italic;font-family:var(--serif);font-size:15px;color:var(--sage-deep)}
.hero-meta .sep{width:4px;height:4px;border-radius:50%;background:var(--line)}

/* ——— iPhone mockup ——— */
.phone{
  --pw:300px;
  width:var(--pw);
  aspect-ratio:9/19.5;
  background:var(--ink);
  border-radius:46px;
  padding:10px;
  box-shadow:
    0 1px 0 1px rgba(0,0,0,0.04),
    0 30px 60px -20px rgba(40,38,30,0.35),
    0 50px 100px -40px rgba(40,38,30,0.25);
  position:relative;
}
.phone.lg{--pw:340px}
.phone-screen{
  width:100%;height:100%;
  background:var(--bg);
  border-radius:36px;
  overflow:hidden;
  position:relative;
  display:flex;flex-direction:column;
}
.phone-notch{
  position:absolute;top:10px;left:50%;transform:translateX(-50%);
  width:96px;height:28px;background:var(--ink);border-radius:999px;
  z-index:5;
}
.status-bar{
  display:flex;justify-content:space-between;align-items:center;
  padding:14px 24px 6px;
  font-family:var(--sans);font-size:12px;font-weight:600;
  color:var(--ink);
}
.status-icons{display:flex;align-items:center;gap:5px}
.status-icons span{display:inline-block;background:var(--ink);border-radius:1px}
.status-icons .signal{width:14px;height:9px;clip-path:polygon(0 100%, 16% 100%, 16% 70%, 33% 70%, 33% 50%, 50% 50%, 50% 30%, 67% 30%, 67% 10%, 100% 10%, 100% 100%)}
.status-icons .wifi{width:14px;height:10px;border-radius:2px}
.status-icons .batt{width:22px;height:10px;border:1.5px solid var(--ink);border-radius:3px;background:transparent;position:relative}
.status-icons .batt::after{content:"";position:absolute;inset:1.5px;background:var(--ink);width:70%;border-radius:1px}

.phone-hero{padding:14px 18px 0;flex:0 0 auto}
.phone-hero .greet{
  font-family:var(--serif);font-size:24px;line-height:1.05;
  letter-spacing:-0.01em;font-weight:500;
}
.phone-hero .greet em{font-style:italic;color:var(--sage-deep)}
.phone-hero .sub{font-size:11px;color:var(--muted);margin-top:6px}
.phone-tabs{
  display:flex;gap:18px;padding:14px 18px 10px;
  font-size:11px;color:var(--muted);font-weight:500;
  border-bottom:1px solid var(--line);
}
.phone-tabs .on{color:var(--ink);position:relative}
.phone-tabs .on::after{
  content:"";position:absolute;left:0;right:0;bottom:-11px;
  height:2px;background:var(--ink);border-radius:2px;
}
.phone-grid{
  padding:14px 14px 80px;
  display:grid;grid-template-columns:1fr 1fr;gap:10px;
  overflow:hidden;flex:1;
}
.recipe-card{
  background:var(--surface);border-radius:14px;overflow:hidden;
  display:flex;flex-direction:column;
  aspect-ratio:1/1.3;
}
.recipe-card .img{
  flex:1;background-size:cover;background-position:center;
  position:relative;
}
.recipe-card .meta{
  padding:8px 10px 10px;
}
.recipe-card .meta .ttl{
  font-family:var(--serif);font-size:13px;line-height:1.1;
  font-weight:500;color:var(--ink);
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
}
.recipe-card .meta .src{
  font-size:9px;color:var(--muted);margin-top:4px;
  text-transform:uppercase;letter-spacing:.1em;
}
.recipe-card .src-chip{
  position:absolute;top:8px;left:8px;
  background:rgba(248,248,240,0.92);
  color:var(--ink);font-size:9px;font-weight:600;
  padding:3px 7px;border-radius:999px;
  letter-spacing:.06em;
}

.phone-tabbar{
  position:absolute;bottom:14px;left:14px;right:14px;
  background:var(--ink);color:var(--bg);
  border-radius:999px;
  height:54px;display:flex;align-items:center;justify-content:space-around;
  padding:0 14px;
}
.phone-tabbar .ti{
  width:22px;height:22px;border-radius:50%;
  border:1.5px solid currentColor;opacity:.5;
}
.phone-tabbar .ti.on{
  opacity:1;background:var(--bg);border-color:var(--bg);
  position:relative;
}
.phone-tabbar .ti.on::after{
  content:"";position:absolute;inset:5px;border-radius:50%;
  background:var(--ink);
}

/* phone variants */
/* Import flow */
.pi-clipboard{
  margin:18px;background:var(--surface);
  border-radius:16px;padding:16px;
}
.pi-clipboard .lbl{font-size:10px;color:var(--muted);text-transform:uppercase;letter-spacing:.12em}
.pi-clipboard .url{
  font-family:var(--sans);font-size:12px;color:var(--ink);
  margin-top:8px;word-break:break-all;
}
.pi-clipboard .src{
  margin-top:10px;display:inline-flex;align-items:center;gap:6px;
  font-size:10px;color:var(--muted);
}
.pi-clipboard .src .swatch{width:12px;height:12px;border-radius:3px;background:var(--sage)}

.pi-action{
  margin:0 18px 14px;
  background:var(--ink);color:var(--bg);
  border-radius:14px;padding:14px;
  display:flex;align-items:center;justify-content:space-between;
  font-size:13px;
}
.pi-action .pulse{
  width:8px;height:8px;border-radius:50%;background:var(--sage);
  box-shadow:0 0 0 0 rgba(122,139,111,.6);
  animation:pulse 1.6s infinite;
}
@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(122,139,111,.6)}
  70%{box-shadow:0 0 0 10px rgba(122,139,111,0)}
  100%{box-shadow:0 0 0 0 rgba(122,139,111,0)}
}
.pi-preview{
  margin:0 18px;background:var(--surface);border-radius:16px;
  overflow:hidden;display:flex;flex-direction:column;
}
.pi-preview .img{
  height:120px;background-size:cover;background-position:center;
}
.pi-preview .meta{padding:12px 14px}
.pi-preview .meta .ttl{font-family:var(--serif);font-size:16px;line-height:1.15;font-weight:500}
.pi-preview .meta .row{display:flex;gap:12px;margin-top:8px;font-size:10px;color:var(--muted)}

.pi-tags{
  display:flex;flex-wrap:wrap;gap:6px;margin:14px 18px 0;
}
.pi-tags .t{
  font-size:10px;padding:5px 10px;border-radius:999px;
  background:var(--surface);color:var(--ink-soft);
}
.pi-tags .t.on{background:var(--ink);color:var(--bg)}

/* Collections */
.pc-head{padding:14px 18px 0}
.pc-head .ttl{font-family:var(--serif);font-size:22px;font-weight:500;letter-spacing:-0.01em}
.pc-head .ttl em{font-style:italic;color:var(--sage-deep)}
.pc-head .sub{font-size:11px;color:var(--muted);margin-top:4px}
.pc-grid{
  padding:14px 14px 80px;display:grid;
  grid-template-columns:1fr 1fr;gap:10px;
}
.col-card{
  background:var(--surface);border-radius:14px;
  overflow:hidden;aspect-ratio:1/1.05;
  display:flex;flex-direction:column;position:relative;
}
.col-card .imgs{
  flex:1;display:grid;grid-template-columns:1fr 1fr;
}
.col-card .imgs div{background-size:cover;background-position:center}
.col-card.wide .imgs{grid-template-columns:2fr 1fr;grid-template-rows:1fr 1fr}
.col-card.wide .imgs div:first-child{grid-row:span 2}
.col-card .name{padding:8px 10px;font-family:var(--serif);font-size:13px;font-weight:500}
.col-card .count{font-size:9px;color:var(--muted);text-transform:uppercase;letter-spacing:.1em;padding:0 10px 8px}

/* Swipe / chat */
.ps-stack{
  flex:1;position:relative;padding:18px;
}
.ps-card{
  position:absolute;border-radius:18px;overflow:hidden;
  background:var(--surface);
  box-shadow:0 10px 30px -10px rgba(0,0,0,.18);
  display:flex;flex-direction:column;
}
.ps-card.c1{
  inset:30px 36px 50px 18px;transform:rotate(-3deg);z-index:1;opacity:.85;
}
.ps-card.c2{
  inset:24px 22px 56px 30px;transform:rotate(2.2deg);z-index:2;opacity:.92;
}
.ps-card.c3{
  inset:12px 12px 70px 12px;transform:rotate(-0.5deg);z-index:3;
}
.ps-card .img{flex:1;background-size:cover;background-position:center}
.ps-card .meta{padding:14px 16px}
.ps-card .meta .ttl{font-family:var(--serif);font-size:18px;line-height:1.1;font-weight:500}
.ps-card .meta .row{display:flex;gap:12px;margin-top:6px;font-size:10px;color:var(--muted)}

.ps-actions{
  position:absolute;bottom:80px;left:0;right:0;
  display:flex;justify-content:center;gap:24px;z-index:5;
}
.ps-btn{
  width:44px;height:44px;border-radius:50%;
  background:var(--bg);
  box-shadow:0 6px 14px -4px rgba(0,0,0,.2);
  display:grid;place-items:center;
  color:var(--ink);
}
.ps-btn.skip{color:#a87a76}
.ps-btn.cook{color:var(--sage-deep)}
.ps-btn svg{width:18px;height:18px}

/* Shared collection phone */
.sh-head{padding:14px 18px}
.sh-head .eye{font-size:10px;color:var(--muted);text-transform:uppercase;letter-spacing:.12em}
.sh-head .ttl{font-family:var(--serif);font-size:22px;font-weight:500;letter-spacing:-0.01em;margin-top:6px}
.sh-head .ttl em{font-style:italic;color:var(--sage-deep)}
.sh-avatars{display:flex;align-items:center;gap:-8px;margin-top:10px}
.sh-avatars .a{
  width:24px;height:24px;border-radius:50%;
  border:2px solid var(--bg);background-size:cover;background-position:center;
  margin-left:-8px;
}
.sh-avatars .a:first-child{margin-left:0}
.sh-avatars .label{font-size:10px;color:var(--muted);margin-left:8px}
.sh-row{
  display:flex;gap:12px;padding:10px 18px;
  align-items:center;border-bottom:1px solid var(--line);
}
.sh-row .img{
  width:54px;height:54px;border-radius:10px;flex:0 0 54px;
  background-size:cover;background-position:center;
}
.sh-row .body{flex:1;min-width:0}
.sh-row .body .ttl{font-family:var(--serif);font-size:14px;font-weight:500;line-height:1.15;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.sh-row .body .by{font-size:10px;color:var(--muted);margin-top:4px}
.sh-row .by .dot{width:6px;height:6px;border-radius:50%;display:inline-block;margin:0 6px;background:var(--line);vertical-align:middle}

/* AI chat phone */
.ai-head{padding:14px 18px 8px}
.ai-head .eye{font-size:10px;color:var(--muted);text-transform:uppercase;letter-spacing:.12em}
.ai-head .ttl{font-family:var(--serif);font-size:22px;font-weight:500;letter-spacing:-0.01em;margin-top:4px}
.ai-head .ttl em{font-style:italic;color:var(--sage-deep)}
.ai-stream{flex:1;display:flex;flex-direction:column;gap:10px;padding:8px 16px 80px;overflow:hidden}
.ai-bub{
  max-width:80%;padding:10px 13px;border-radius:14px;
  font-size:12px;line-height:1.4;
}
.ai-bub.you{align-self:flex-end;background:var(--ink);color:var(--bg);border-bottom-right-radius:4px}
.ai-bub.chef{align-self:flex-start;background:var(--surface);color:var(--ink);border-bottom-left-radius:4px}
.ai-bub.chef .em{color:var(--sage-deep);font-style:italic;font-family:var(--serif);font-size:14px}
.ai-suggest{
  display:flex;gap:6px;flex-wrap:wrap;align-self:flex-start;
}
.ai-suggest .s{
  font-size:10px;padding:5px 10px;border-radius:999px;
  background:transparent;border:1px solid var(--line);color:var(--ink-soft);
}

/* ——— sections ——— */
.section{padding:130px 0}
@media(max-width:760px){.section{padding:80px 0}}

/* problem */
.problem{
  background:var(--surface);
}
.problem .inner{
  max-width:680px;margin:0 auto;text-align:left;
  padding:0 28px;
}
.problem h2{
  font-size:clamp(36px,5vw,60px);margin:24px 0 32px;
}
.problem p{
  font-family:var(--serif);font-size:24px;line-height:1.45;
  color:var(--ink-soft);font-weight:400;text-wrap:pretty;
  margin:0 0 22px;
}
.problem p em{font-style:italic;color:var(--sage-deep)}
.problem .last{
  margin-top:36px;font-family:var(--sans);font-size:15px;
  color:var(--muted);
}

/* features */
.feature{
  display:grid;grid-template-columns:1fr 1fr;
  gap:90px;align-items:center;
  padding:80px 0;
}
.feature.reverse{direction:rtl}
.feature.reverse > *{direction:ltr}
@media(max-width:900px){
  .feature, .feature.reverse{
    direction:ltr;grid-template-columns:1fr;gap:48px;padding:48px 0;
  }
  .feature .visual{order:2}
}
.feature .visual{display:flex;justify-content:center;align-items:center;min-height:520px}
.feature h3{
  font-size:clamp(34px,4.6vw,54px);margin:18px 0 24px;
}
.feature .num{
  font-family:var(--serif);font-style:italic;color:var(--sage-deep);
  font-size:18px;margin-bottom:8px;
}
.feature .lede{font-size:18px;margin-bottom:20px}
.feature .bullets{
  margin-top:28px;padding:0;list-style:none;
  display:grid;gap:14px;
}
.feature .bullets li{
  display:flex;gap:14px;align-items:flex-start;
  font-size:15px;color:var(--ink-soft);
}
.feature .bullets .mk{
  flex:0 0 auto;font-family:var(--serif);font-style:italic;
  color:var(--sage-deep);width:20px;
}

/* shared */
.shared{
  background:var(--surface);
  padding:130px 0;
}
.shared .inner{
  display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center;
}
@media(max-width:900px){
  .shared .inner{grid-template-columns:1fr;gap:48px}
  .shared{padding:80px 0}
}
.shared h2{font-size:clamp(40px,5vw,68px);margin:18px 0 24px}
.shared .visual{display:flex;justify-content:center;position:relative;min-height:560px;align-items:center}
.shared .phone{position:relative}
.shared .phone-back{
  position:absolute;left:-90px;top:60px;
  --pw:240px;
  transform:rotate(-6deg);
  opacity:.92;
}
@media(max-width:900px){
  .shared .phone-back{display:none}
}

/* premium */
.premium{
  padding:160px 0 140px;
  text-align:center;
}
.premium .inner{max-width:780px;margin:0 auto;padding:0 28px}
.premium .eyebrow{display:block;margin-bottom:24px}
.premium h2{
  font-size:clamp(56px, 8vw, 120px);
  margin:0 0 24px;
}
.premium .lede{margin:0 auto 44px;font-size:20px;text-align:center}
.premium .price-row{
  display:flex;align-items:center;justify-content:center;gap:28px;
  margin-top:32px;color:var(--muted);font-size:13.5px;flex-wrap:wrap;
}
.premium .price-row .sep{width:4px;height:4px;border-radius:50%;background:var(--line)}

/* footer */
footer{
  border-top:1px solid var(--line);
  padding:60px 0 50px;background:var(--bg);
}
.foot{
  display:grid;grid-template-columns:1fr 1fr;gap:36px;
}
@media(max-width:600px){.foot{grid-template-columns:1fr}}
.foot-l .wordmark{font-size:32px;margin-bottom:14px}
.foot-l p{margin:0;color:var(--muted);font-size:14px;max-width:36ch}
.foot-r{display:flex;flex-direction:column;gap:18px;align-items:flex-start}
@media(min-width:601px){.foot-r{align-items:flex-end;text-align:right}}
.foot-links{display:flex;gap:24px;flex-wrap:wrap}
.foot-links a{font-size:14px;color:var(--ink-soft)}
.foot-links a:hover{color:var(--sage-deep)}
.foot-meta{font-size:13px;color:var(--muted);line-height:1.6}
.foot-meta em{font-style:italic;font-family:var(--serif);font-size:14px}

/* decorative ornament */
.orn{
  display:flex;align-items:center;gap:14px;color:var(--muted);font-size:13px;
  font-family:var(--serif);font-style:italic;
}
.orn .l{flex:1;height:1px;background:var(--line)}

/* fade-up scroll */
.reveal{opacity:0;transform:translateY(24px);transition:opacity .9s ease, transform .9s ease}
.reveal.in{opacity:1;transform:none}

/* ——— legal & support pages ——— */
.legal-page{
  padding:80px 0 120px;
}
.legal-page .inner{
  max-width:680px;margin:0 auto;padding:0 28px;
}
.legal-page .eyebrow{display:block;margin-bottom:18px}
.legal-page h1{
  font-family:var(--serif);font-weight:500;letter-spacing:-0.015em;
  font-size:clamp(48px,6.5vw,84px);
  line-height:0.98;margin:0 0 18px;
  text-wrap:balance;
}
.legal-page h1 em{font-style:italic;color:var(--sage-deep);font-weight:500}
.legal-page .updated{
  font-size:14px;color:var(--muted);margin:0 0 56px;
  border-bottom:1px solid var(--line);padding-bottom:24px;
}
.legal-page h2{
  font-family:var(--serif);font-weight:500;letter-spacing:-0.01em;
  font-size:clamp(28px,3.5vw,38px);line-height:1.1;
  margin:56px 0 18px;
}
.legal-page h3{
  font-family:var(--sans);font-weight:600;font-size:16px;
  letter-spacing:0.04em;text-transform:uppercase;color:var(--muted);
  margin:32px 0 8px;
}
.legal-page p{
  font-size:17px;line-height:1.65;color:var(--ink-soft);
  margin:0 0 18px;text-wrap:pretty;
}
.legal-page ul{
  margin:0 0 22px;padding:0;list-style:none;display:grid;gap:12px;
}
.legal-page ul li{
  display:flex;gap:14px;align-items:flex-start;
  font-size:16px;color:var(--ink-soft);line-height:1.6;
}
.legal-page ul li::before{
  content:"—";font-family:var(--serif);font-style:italic;
  color:var(--sage-deep);flex:0 0 20px;
}
.legal-page a{
  color:var(--sage-deep);
  border-bottom:1px solid var(--line);
  transition:border-color .2s ease;
}
.legal-page a:hover{border-color:var(--sage)}
.legal-page strong{color:var(--ink);font-weight:600}

/* support FAQ */
.faq{margin:48px 0 0;display:grid;gap:24px}
.faq details{
  border-top:1px solid var(--line);
  padding:22px 0 0;
}
.faq details:last-child{border-bottom:1px solid var(--line);padding-bottom:22px}
.faq summary{
  font-family:var(--serif);font-size:22px;font-weight:500;
  letter-spacing:-0.01em;color:var(--ink);
  cursor:pointer;list-style:none;
  display:flex;align-items:center;justify-content:space-between;gap:24px;
  line-height:1.2;
}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{
  content:"+";font-family:var(--serif);font-size:28px;
  color:var(--sage-deep);font-weight:400;line-height:1;
  transition:transform .25s ease;flex:0 0 auto;
}
.faq details[open] summary::after{content:"–"}
.faq details p{
  margin:14px 0 22px;font-size:16px;line-height:1.65;
  color:var(--ink-soft);
}
.faq details p:last-child{margin-bottom:0}

/* support hero */
.support-hero{
  padding:120px 0 40px;
}
.support-hero .inner{
  max-width:680px;margin:0 auto;padding:0 28px;
}
.support-hero h1{
  font-family:var(--serif);font-weight:500;letter-spacing:-0.015em;
  font-size:clamp(48px,7vw,88px);line-height:0.98;margin:18px 0 24px;
  text-wrap:balance;
}
.support-hero h1 em{font-style:italic;color:var(--sage-deep);font-weight:500}
.support-hero .lede{font-size:20px;max-width:54ch;margin-bottom:32px}
.contact-card{
  margin-top:32px;padding:28px 30px;
  background:var(--surface);border-radius:20px;
  display:flex;align-items:center;justify-content:space-between;gap:24px;flex-wrap:wrap;
}
.contact-card .who{
  font-family:var(--serif);font-size:22px;font-weight:500;letter-spacing:-0.01em;
}
.contact-card .who span{display:block;font-family:var(--sans);font-size:13px;color:var(--muted);font-weight:400;margin-top:4px;letter-spacing:0}
.contact-card a{
  background:var(--ink);color:var(--bg);
  padding:14px 22px;border-radius:999px;
  font-size:15px;font-weight:500;
  transition:background .2s ease, transform .2s ease;
  border:0;
}
.contact-card a:hover{background:var(--sage-deep);transform:translateY(-1px)}

/* roadmap teaser */
.roadmap{
  margin:80px auto 0;max-width:680px;padding:32px 28px;
  text-align:center;
}
.roadmap .eyebrow{display:block;margin-bottom:14px}
.roadmap p{
  font-family:var(--serif);font-size:22px;line-height:1.4;
  color:var(--ink-soft);margin:0;font-weight:400;
}
.roadmap p em{font-style:italic;color:var(--sage-deep)}
