/* legal.css — site-level pages (privacy, terms) in the house language:
   Poppins, pills, lowercase headings, air. Studio-neutral: dark like the
   main page's default, pink as the only accent. No product colors here. */
@font-face{font-family:'Poppins';font-weight:400;src:url("/fonts/poppins400.woff2") format('woff2');font-display:swap}
@font-face{font-family:'Poppins';font-weight:600;src:url("/fonts/poppins600.woff2") format('woff2');font-display:swap}
:root{
  --bg:#0B0B10;
  --panel:#14141B;
  --line:#262531;
  --ink:#F2F0F7;
  --muted:#9A94AC;
  --pink:#F06693;
  --yellow:#FFD960;
  --matcha:#B1D684;
  --pill-bg:#F2F0F7;
  --pill-ink:#0B0B10;
  color-scheme:dark;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;background:var(--bg);color:var(--ink);font:400 16.5px/1.75 'Poppins',system-ui,sans-serif;-webkit-font-smoothing:antialiased;overflow-x:hidden}
h1,h2,h3{margin:0;font-weight:600;line-height:1.12;text-wrap:balance}
a{color:inherit}
img{max-width:100%;height:auto;display:block}
::selection{background:var(--yellow);color:#191820}
a:focus-visible,button:focus-visible{outline:2px solid var(--pink);outline-offset:4px}
.wrap{max-width:1120px;margin:0 auto;padding:0 28px}
.label{font-weight:600;font-size:12px;letter-spacing:.35em;text-transform:uppercase;color:var(--muted)}
.pill{display:inline-block;background:var(--pill-bg);color:var(--pill-ink)!important;border-radius:999px;padding:12px 26px;text-decoration:none;font-weight:600;transition:background .25s,color .25s}
.pill:hover{background:var(--pink);color:#fff!important}

/* nav */
nav{position:sticky;top:0;z-index:50;background:color-mix(in srgb,var(--bg) 88%,transparent);backdrop-filter:blur(14px);border-bottom:1px solid var(--line)}
.nav-in{display:flex;align-items:center;justify-content:space-between;gap:16px;max-width:1120px;margin:0 auto;padding:14px 28px}
.crumb{display:flex;align-items:center;gap:10px;text-decoration:none}
.crumb .mark{width:auto;height:32px}
.crumb .mark-dango{display:none;width:auto;height:26px}
.crumb .sep{color:var(--muted);opacity:.35;font-size:19px}
.crumb .here{color:var(--ink);font-weight:600;font-size:22.5px;line-height:1;transform:translateY(1px)}
.nav-links{display:flex;gap:22px;align-items:center}
.nav-links>*{flex:none;white-space:nowrap}
.nav-links a.pill{padding:9px 18px;font-size:13.5px}
@media(max-width:640px){
  .nav-in{padding:12px 18px}
  .nav-links a.pill{padding:8px 15px;font-size:13px}
  .crumb .mark{display:none}
  .crumb .mark-dango{display:block}
  .crumb .here{font-size:20px}
}

/* page hero */
.page-hero{padding:88px 0 0;text-align:center}
.page-hero h1{font-size:clamp(32px,5.6vw,58px);text-transform:lowercase;letter-spacing:.005em}
.page-hero .sub{max-width:56ch;color:var(--muted);margin:22px auto 0}
@media(max-width:720px){.page-hero{padding-top:64px}}

/* sections */
section{padding:88px 0 0}
@media(max-width:720px){section{padding:64px 0 0}}

/* prose */
.prose{max-width:68ch;margin:0 auto}
.prose p{color:var(--muted);margin:0 0 20px;line-height:1.8}
.prose p:last-child{margin-bottom:0}
.prose strong{color:var(--ink);font-weight:600}
.prose a{color:var(--pink);text-decoration:underline;text-underline-offset:3px}
.prose a:hover{color:var(--ink)}
.prose .stamp{font-weight:600;font-size:11.5px;letter-spacing:.3em;text-transform:uppercase;color:var(--muted)}

/* definition rows */
.rows{list-style:none;margin:0 auto;padding:0;max-width:68ch}
.rows li{display:grid;grid-template-columns:250px 1fr;gap:8px 44px;padding:20px 0;border-top:1px solid var(--line)}
.rows li:last-child{border-bottom:1px solid var(--line)}
.rows h3{font-size:18px;text-transform:lowercase}
.rows p{margin:0;color:var(--muted);font-size:15px;line-height:1.7}
@media(max-width:720px){.rows li{grid-template-columns:1fr;gap:4px;padding:16px 0}}

/* footer — house pattern */
footer{border-top:1px solid var(--line);margin-top:110px;padding:56px 0 40px}
@media(max-width:720px){footer{margin-top:80px}}
.foot-grid{display:flex;flex-wrap:wrap;gap:36px 80px}
.foot-grid>*{flex:0 1 auto;min-width:0}
.foot-grid>:first-child{min-width:170px}
.foot-mark{display:inline-flex}
.foot-mark img{width:auto;height:32px}
footer h4{margin:0 0 16px;font-weight:600;font-size:12px;letter-spacing:.22em;text-transform:uppercase;color:var(--muted)}
footer ul{list-style:none;margin:0;padding:0;display:flex;flex-wrap:wrap;gap:10px 26px}
footer ul a{text-decoration:none;color:var(--ink);opacity:.75;font-size:14.5px;transition:opacity .2s,color .2s}
footer ul a:hover{opacity:1;color:var(--pink)}
footer ul a[aria-current="page"]{opacity:1;color:var(--muted);cursor:default}
.foot-note{margin-top:44px;padding-top:22px;border-top:1px solid var(--line);display:flex;flex-wrap:wrap;gap:12px;justify-content:space-between}
.foot-note span,.foot-note a{font-weight:600;font-size:11px;letter-spacing:.3em;color:var(--muted);text-decoration:none;text-transform:uppercase}
.foot-note a:hover{color:var(--ink)}
/* mobile touch targets: a thumb needs more than a text line's worth of height,
   so rows that are only as tall as their type get vertical padding on phones */
@media(max-width:640px){
  .faq summary{padding:7px 0}
  .nav-links a.pill{padding:11px 15px}
  footer ul a{display:inline-block;padding:7px 0}
  .foot-note span,.foot-note a{display:inline-block;padding:7px 0}
}
@media(prefers-reduced-motion:reduce){*,*::before,*::after{animation:none!important;transition:none!important}html{scroll-behavior:auto}}

/* Typography: never strand a single word on its own line.
   `balance` evens out short display blocks (headings, ledes, pull-quotes);
   `pretty` leaves body copy alone except for pulling back the last-line
   orphan. Applied together this removes widows across the site. */
h1,h2,h3,h4,.lede,.note,.statement,.pullq,.hero .sub,.close .reach,.demo-kicker,
.tiers h3,.tiers .alt,.rows h3,.faq summary,figcaption,.cap p{text-wrap:balance}
p,li,dd,.rest,.fine,.tier-fine,.compare-note,.quotes p,.prose p{text-wrap:pretty}
