@font-face { font-family: 'Tenor Sans'; font-style: normal; font-weight: 400; font-display: swap;
    src: url('assets/fonts/tenor-sans-400.woff2') format('woff2'); }
  @font-face { font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 500; font-display: swap;
    src: url('assets/fonts/cormorant-500-italic.woff2') format('woff2'); }
  @font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 400; font-display: swap;
    src: url('assets/fonts/dm-sans-400.woff2') format('woff2'); }
  @font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 600; font-display: swap;
    src: url('assets/fonts/dm-sans-600.woff2') format('woff2'); }

  :root {
    --vanilla: #F5EDDD; --peach: #F2C896; --coral: #E8A48A; --honey: #D89860;
    --tobacco: #9A7A52; --burgundy: #6B1F2A; --deep-wine: #4D1318; --midnight: #2A0A12; --ink: #3A2820;
    --display: 'Tenor Sans', 'Optima', 'Gill Sans', sans-serif;
    --italic: 'Cormorant Garamond', 'Didot', Georgia, serif;
    --body: 'DM Sans', -apple-system, 'Segoe UI', sans-serif;
  }
  :root[data-mode="morning"], :root[data-mode="midday"] {
    --text: var(--ink);
    --text-soft: rgba(58, 40, 32, 0.74);
    --accent: var(--burgundy);
    --accent-deep: var(--deep-wine);
    --label: var(--tobacco);
    --hairline: rgba(107, 31, 42, 0.22);
    --card: rgba(245, 237, 221, 0.55);
    --cta-bg: var(--burgundy);
    --cta-bg-hover: var(--deep-wine);
    --cta-text: var(--vanilla);
    --line: var(--honey);
    --curve-a: var(--burgundy);
    --curve-b: var(--honey);
    --nav-bg: rgba(245, 237, 221, 0.55);
    --h-oe: #6B1F2A; --h-pr: #D89860; --h-lh: #7A4E68; --h-fsh: #9A7A52; --h-te: #5E6B45;
  }
  :root[data-mode="evening"] {
    --text: var(--vanilla);
    --text-soft: rgba(245, 237, 221, 0.75);
    --accent: var(--peach);
    --accent-deep: var(--honey);
    --label: var(--honey);
    --hairline: rgba(216, 152, 96, 0.32);
    --card: rgba(245, 237, 221, 0.07);
    --cta-bg: var(--honey);
    --cta-bg-hover: var(--peach);
    --cta-text: var(--burgundy);
    --line: var(--honey);
    --curve-a: var(--peach);
    --curve-b: var(--honey);
    --nav-bg: rgba(42, 10, 18, 0.45);
    --h-oe: #F2C896; --h-pr: #D89860; --h-lh: #C9A3BC; --h-fsh: #B99B76; --h-te: #A9B587;
  }

  html { scroll-behavior: smooth; }
  body {
    font-family: var(--body); color: var(--text); font-size: 16.5px; line-height: 1.65;
    transition: color 1.2s ease;
  }

  /* ---- living gradient ---- */
  .sky { position: fixed; inset: 0; z-index: -2; }
  :root[data-mode="morning"] .sky { background: var(--peach); }
  :root[data-mode="midday"] .sky { background: var(--coral); }
  :root[data-mode="evening"] .sky { background: var(--midnight); }
  .sky .layer { position: absolute; inset: 0; opacity: 0; transition: opacity 1.6s ease; }
  .sky .m-morning { background: linear-gradient(180deg, var(--vanilla) 0%, var(--peach) 100%); }
  .sky .m-midday  { background: linear-gradient(180deg, var(--peach) 0%, var(--coral) 100%); }
  .sky .m-evening { background: linear-gradient(180deg, var(--burgundy) 0%, var(--midnight) 100%); }
  :root[data-mode="morning"] .m-morning, :root[data-mode="midday"] .m-midday, :root[data-mode="evening"] .m-evening { opacity: 1; }

  .glow { position: absolute; width: 140vmax; height: 140vmax; border-radius: 50%; left: 50%; top: -30vmax;
    filter: none; pointer-events: none; }
  .m-morning .glow { background: radial-gradient(circle at 50% 35%, rgba(242, 200, 150, 0.55) 0%, rgba(242, 200, 150, 0) 55%); }
  .m-midday .glow  { background: radial-gradient(circle at 50% 35%, rgba(232, 164, 138, 0.5) 0%, rgba(232, 164, 138, 0) 55%); }
  .m-evening .glow { background: radial-gradient(circle at 50% 35%, rgba(107, 31, 42, 0.85) 0%, rgba(107, 31, 42, 0) 55%); }
  @media (prefers-reduced-motion: no-preference) {
    .glow { animation: drift 70s ease-in-out infinite alternate; }
    @keyframes drift {
      0%   { transform: translate(-62%, 0) scale(1); opacity: 0.7; }
      50%  { transform: translate(-48%, 4vmax) scale(1.06); opacity: 1; }
      100% { transform: translate(-38%, -2vmax) scale(0.98); opacity: 0.75; }
    }
  }

  /* ---- nav ---- */
  nav { position: fixed; top: 0; left: 0; right: 0; z-index: 10;
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px clamp(20px, 4vw, 48px);
    background: var(--nav-bg); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    transition: background 1.2s ease; }
  .wordmark { font-family: var(--display); font-size: 17px; letter-spacing: 6px; color: var(--text);
    text-decoration: none; transition: color 1.2s ease; }
  .preview { display: flex; align-items: center; gap: 2px; background: var(--card); border: 1px solid var(--hairline);
    border-radius: 999px; padding: 3px; transition: background 1.2s ease, border-color 1.2s ease; }
  .preview span { font-size: 9px; letter-spacing: 1.6px; font-weight: 600; color: var(--label); padding: 0 8px 0 10px; }
  .preview button { font-family: var(--body); font-size: 9.5px; letter-spacing: 1.4px; font-weight: 600;
    text-transform: uppercase; color: var(--text-soft); background: none; border: none; border-radius: 999px;
    padding: 6px 10px; cursor: pointer; transition: color 0.3s ease, background 0.3s ease; }
  .preview button.active { background: var(--cta-bg); color: var(--cta-text); }
  .preview button:focus-visible { outline: 2px solid var(--accent); outline-offset: 1px; }
  .nav-links { display: flex; align-items: center; gap: clamp(14px, 2vw, 26px); margin: 0 auto 0 clamp(20px, 3vw, 44px); }
  .nav-links a { font-size: 10.5px; letter-spacing: 1.8px; text-transform: uppercase; font-weight: 600;
    color: var(--text-soft); text-decoration: none; padding: 6px 2px; background: linear-gradient(var(--accent), var(--accent)) no-repeat left bottom / 0 1px;
    transition: color 0.25s ease, background-size 0.3s ease; }
  .nav-links a:hover, .nav-links a:focus-visible { color: var(--text); background-size: 100% 1px; }
  .nav-links a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 3px; }
  .burger { display: none; background: none; border: none; cursor: pointer; padding: 10px 6px; }
  .burger span { display: block; width: 22px; height: 1.6px; background: var(--text); margin: 5px 0; transition: transform 0.3s ease, opacity 0.3s ease, background 1.2s ease; }
  :root.menu-open .burger span:first-child { transform: translateY(3.3px) rotate(45deg); }
  :root.menu-open .burger span:last-child { transform: translateY(-3.3px) rotate(-45deg); }
  .menu { position: fixed; top: 0; left: 0; right: 0; z-index: 9; padding: 86px 26px 30px;
    background: var(--nav-bg); backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
    transform: translateY(-102%); transition: transform 0.4s ease; border-bottom: 1px solid var(--hairline); }
  :root.menu-open .menu { transform: none; }
  .menu a { display: block; font-family: var(--display); font-size: 24px; color: var(--text); text-decoration: none; padding: 11px 0; }
  .menu .preview { margin-top: 18px; display: inline-flex; }
  section[id], header[id] { scroll-margin-top: 78px; }
  @media (max-width: 899px) { .nav-links { display: none; } .burger { display: block; } }
  @media (min-width: 900px) { .menu { display: none; } }
  @media (max-width: 899px) {
    nav .preview { display: none; }
    .menu .preview { display: inline-flex; }
  }
  @media (min-width: 900px) { .menu .preview { display: none; } }
  @media (max-width: 600px) {
    nav { padding: 10px 18px; }
    .preview span { display: none; }
    .preview button { padding: 5px 8px; font-size: 9px; letter-spacing: 1px; }
    .wordmark { font-size: 14px; letter-spacing: 4px; }
  }

  /* ---- shared ---- */
  .col { max-width: 1040px; margin: 0 auto; padding-left: 22px; padding-right: 22px; }
  @media (min-width: 700px) { .col { padding-left: 48px; padding-right: 48px; } }
  .eyebrow { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 600;
    color: var(--label); margin-bottom: 22px; transition: color 1.2s ease; }

  .cta { display: inline-block; font-family: var(--body); font-weight: 600; font-size: 12.5px;
    letter-spacing: 2.5px; text-transform: uppercase; color: var(--cta-text); background: var(--cta-bg);
    border: none; border-radius: 22px; padding: 17px 34px; cursor: pointer; text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease, color 1.2s ease; }
  .cta:hover { background: var(--cta-bg-hover); transform: translateY(-1px); }
  .cta:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

  /* reveal */
  .rv { opacity: 0; transform: translateY(20px); transition: opacity 0.9s ease, transform 0.9s ease; transition-delay: var(--d, 0s); }
  .rv.on { opacity: 1; transform: none; }
  @media (prefers-reduced-motion: reduce) {
    .rv { opacity: 1; transform: none; transition: none; }
    .glow { animation: none; }
    html { scroll-behavior: auto; }
  }

  /* ---- hero ---- */
  .hero { display: flex; flex-direction: column; justify-content: flex-start; padding-top: clamp(110px, 15vh, 190px); padding-bottom: 24px; position: relative; }
  @media (min-width: 700px) { .hero { min-height: 100svh; padding-bottom: 72px; } }
  @media (max-width: 699px) { .scrollcue { display: none; } }
  .greeting { font-family: var(--italic); font-style: italic; font-weight: 500;
    font-size: clamp(22px, 2.8vw, 30px); color: var(--accent); margin-bottom: 18px; transition: color 1.2s ease; }
  h1 { font-family: var(--display); font-weight: 400; font-size: clamp(36px, min(6.6vw, 9vh), 76px);
    line-height: 1.08; letter-spacing: -1px; text-wrap: balance; max-width: 24ch; margin-bottom: 24px; }
  .hero .sub { font-size: clamp(16px, 2vw, 18.5px); color: var(--text-soft); max-width: 52ch;
    margin-bottom: 34px; transition: color 1.2s ease; }
  .hero .note { font-size: 12.5px; letter-spacing: 0.4px; color: var(--text-soft); margin-top: 18px; }
  .hero-grid { display: grid; grid-template-columns: 1fr; align-items: center; }
  @media (min-width: 900px) {
    .hero-grid { grid-template-columns: 1.25fr 0.75fr; gap: clamp(30px, 5vw, 80px); }
  }
  .hero-phone { display: flex; justify-content: center; }
  .hero-phone .phone-shell { position: relative; aspect-ratio: 1290 / 2796; height: min(58svh, 560px);
    border: 7px solid var(--ink); border-radius: 34px; overflow: hidden; background: var(--vanilla);
    box-shadow: 0 24px 60px rgba(42, 10, 18, 0.28); }
  .hero-phone img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  @media (max-width: 899px) { .hero-phone { display: none; } }
  .scrollcue { position: absolute; bottom: 34px; left: 50%; width: 1px; height: 56px; background: var(--line);
    transform-origin: top; opacity: 0.8; }
  @media (prefers-reduced-motion: no-preference) {
    .scrollcue { animation: cue 2.6s ease-in-out infinite; }
    @keyframes cue { 0% { transform: scaleY(0); opacity: 0; } 35% { transform: scaleY(1); opacity: 0.8; }
      70% { transform: scaleY(1); opacity: 0; } 100% { transform: scaleY(0); opacity: 0; } }
  }

  /* ---- story ---- */
  .story { padding-top: 8vh; padding-bottom: 8vh; }
  .story p { font-family: var(--display); font-size: clamp(23px, 3.6vw, 38px); line-height: 1.35;
    max-width: 26ch; margin-bottom: clamp(36px, 7vh, 72px); }
  .story p.quiet { color: var(--text-soft); }
  .story .turn { font-family: var(--italic); font-style: italic; font-weight: 500;
    font-size: clamp(34px, 5.4vw, 58px); line-height: 1.2; color: var(--accent); max-width: 18ch;
    margin: clamp(48px, 10vh, 96px) 0 0; transition: color 1.2s ease; }

  /* ---- ladder ---- */
  .ladder-wrap { padding-top: 12vh; padding-bottom: 8vh; }
  .ladder-intro { font-size: clamp(16px, 2vw, 18.5px); color: var(--text-soft); max-width: 54ch; margin-bottom: 10vh; }
  .ladder { position: relative; padding-left: clamp(34px, 6vw, 64px); }
  .track, .prog { position: absolute; left: 8px; top: 6px; bottom: 6px; width: 1.5px; }
  .track { background: var(--hairline); }
  .prog { background: var(--line); transform-origin: top; transform: scaleY(0); }
  .stage { margin-bottom: clamp(52px, 9vh, 90px); position: relative; max-width: 58ch; }
  .stage::before { content: ''; position: absolute; left: calc(-1 * clamp(34px, 6vw, 64px) + 3.5px);
    top: 9px; width: 11px; height: 11px; border-radius: 50%; background: var(--card);
    border: 1.5px solid var(--line); transition: background 0.6s ease; }
  .stage.lit::before { background: var(--line); }
  .stage .s-label { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 600;
    color: var(--label); margin-bottom: 8px; }
  .stage h3 { font-family: var(--display); font-weight: 400; font-size: clamp(24px, 3vw, 32px); margin-bottom: 10px; }
  .stage p { color: var(--text-soft); max-width: 46ch; }

  /* ---- curve ---- */
  .curve-block { padding-top: 12vh; padding-bottom: 12vh; }
  .curve-block .cap, .founder .cap { font-family: var(--italic); font-style: italic; font-weight: 500;
    font-size: clamp(26px, 4vw, 40px); color: var(--accent); margin-bottom: 16px; transition: color 1.2s ease; }
  .curve-block p { color: var(--text-soft); max-width: 52ch; margin-bottom: 48px; }
  .curve-frame { background: var(--card); border: 1px solid var(--hairline); border-radius: 14px;
    padding: clamp(18px, 4vw, 40px); transition: background 1.2s ease, border-color 1.2s ease; }
  .curve-frame svg { width: 100%; height: auto; display: block; }
  .curve-frame .axis { font-family: var(--body); font-size: 9px; letter-spacing: 2px; fill: var(--label); }
  .cpath { fill: none; stroke-width: 2; stroke-linecap: round; stroke-dasharray: 1600; stroke-dashoffset: 1600; transition: opacity 0.3s ease, stroke-width 0.3s ease; }
  .cpath.oe { stroke: var(--h-oe); } .cpath.pr { stroke: var(--h-pr); } .cpath.lh { stroke: var(--h-lh); }
  .cpath.fsh { stroke: var(--h-fsh); } .cpath.te { stroke: var(--h-te); }
  .drawn .cpath { stroke-dashoffset: 0; transition: stroke-dashoffset 2.6s ease, opacity 0.3s ease, stroke-width 0.3s ease; }
  .drawn .cpath.pr { transition: stroke-dashoffset 2.6s ease 0.2s, opacity 0.3s ease, stroke-width 0.3s ease; }
  .drawn .cpath.lh { transition: stroke-dashoffset 2.6s ease 0.4s, opacity 0.3s ease, stroke-width 0.3s ease; }
  .drawn .cpath.fsh { transition: stroke-dashoffset 2.6s ease 0.6s, opacity 0.3s ease, stroke-width 0.3s ease; }
  .drawn .cpath.te { transition: stroke-dashoffset 2.6s ease 0.8s, opacity 0.3s ease, stroke-width 0.3s ease; }
  .legend { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
  .legend button { display: inline-flex; align-items: center; gap: 7px; font-family: var(--body); font-size: 10.5px; letter-spacing: 1.6px; text-transform: uppercase; font-weight: 600; color: var(--text-soft); background: none; border: 1px solid var(--hairline); border-radius: 999px; padding: 7px 14px; cursor: pointer; transition: color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease; }
  .legend button:focus-visible { outline: 2px solid var(--accent); outline-offset: 1px; }
  .legend .dot { width: 9px; height: 9px; border-radius: 50%; }
  .dot.oe { background: var(--h-oe); } .dot.pr { background: var(--h-pr); } .dot.lh { background: var(--h-lh); }
  .dot.fsh { background: var(--h-fsh); } .dot.te { background: var(--h-te); }
  .curve-frame[data-focus] .cpath { opacity: 0.14; }
  .curve-frame[data-focus] .legend button { opacity: 0.45; }
  .curve-frame[data-focus="oe"] .cpath.oe, .curve-frame[data-focus="pr"] .cpath.pr, .curve-frame[data-focus="lh"] .cpath.lh,
  .curve-frame[data-focus="fsh"] .cpath.fsh, .curve-frame[data-focus="te"] .cpath.te { opacity: 1; stroke-width: 2.6; }
  .curve-frame[data-focus="oe"] .legend button[data-h="oe"], .curve-frame[data-focus="pr"] .legend button[data-h="pr"],
  .curve-frame[data-focus="lh"] .legend button[data-h="lh"], .curve-frame[data-focus="fsh"] .legend button[data-h="fsh"],
  .curve-frame[data-focus="te"] .legend button[data-h="te"] { opacity: 1; color: var(--text); border-color: var(--accent); }
  .graphnote { font-size: 12.5px; color: var(--text-soft); margin-top: 16px; }
  @media (prefers-reduced-motion: reduce) { .cpath { stroke-dashoffset: 0; } }

  /* ---- app showcase ---- */
  .showcase { padding-top: 10vh; padding-bottom: 4vh; }
  .show-grid { display: grid; grid-template-columns: 1fr minmax(250px, 320px); gap: clamp(28px, 6vw, 90px); align-items: start; margin-top: 10px; }
  .show-phone-wrap { position: sticky; top: calc((100svh - min(72svh, 620px)) / 2 - 10px); display: flex; justify-content: center; }
  .phone { position: relative; aspect-ratio: 1290 / 2796; height: min(72svh, 620px); border: 7px solid var(--ink); border-radius: 34px; overflow: hidden; background: var(--vanilla); box-shadow: 0 24px 60px rgba(42, 10, 18, 0.28); }
  .phone img.shot { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.7s ease; }
  .showcase[data-shot="1"] .shot.s1, .showcase[data-shot="2"] .shot.s2,
  .showcase[data-shot="3"] .shot.s3, .showcase[data-shot="4"] .shot.s4 { opacity: 1; }
  .shot.s1.eve { display: none; }
  :root[data-mode="evening"] .shot.s1.day { display: none; }
  :root[data-mode="evening"] .shot.s1.eve { display: block; }
  .sc-step { padding: 16vh 0; max-width: 46ch; opacity: 0.4; transition: opacity 0.5s ease; }
  .sc-step:first-child { padding-top: 6vh; }
  .sc-step:last-child { padding-bottom: 8vh; }
  .showcase[data-shot="1"] .sc-step[data-i="1"], .showcase[data-shot="2"] .sc-step[data-i="2"],
  .showcase[data-shot="3"] .sc-step[data-i="3"], .showcase[data-shot="4"] .sc-step[data-i="4"] { opacity: 1; }
  .sc-step h3 { font-family: var(--display); font-weight: 400; font-size: clamp(22px, 2.8vw, 28px); margin-bottom: 10px; }
  .sc-step p { color: var(--text-soft); }
  @media (min-width: 900px) { .phone-mini { display: none; } }
  .phone-mini { position: relative; aspect-ratio: 1290 / 2796; height: min(56svh, 500px); border: 6px solid var(--ink); border-radius: 30px; overflow: hidden; background: var(--vanilla); box-shadow: 0 18px 44px rgba(42, 10, 18, 0.26); margin: 24px auto 0; }
  .phone-mini img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  .mini-eve { display: none; }
  :root[data-mode="evening"] .mini-day { display: none; }
  :root[data-mode="evening"] .mini-eve { display: block; }
  @media (max-width: 899px) {
    .show-grid { display: block; }
    .show-phone-wrap { display: none; }
    .sc-step { padding: 6vh 0; max-width: none; opacity: 1 !important; }
    .sc-step:first-child { padding-top: 4vh; }
    .sc-step:last-child { padding-bottom: 4vh; }
  }

  /* ---- trust / founder / faq ---- */
  .trust, .founder, .faq { padding-top: 9vh; padding-bottom: 9vh; }
  .grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 26px; }
  @media (max-width: 640px) { .grid2 { grid-template-columns: 1fr; } }
  .card { background: var(--card); border: 1px solid var(--hairline); border-radius: 14px; padding: 22px 24px; transition: background 1.2s ease, border-color 1.2s ease; }
  .card h4 { font-family: var(--body); font-weight: 600; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--label); margin-bottom: 10px; }
  .card h3 { font-family: var(--display); font-weight: 400; font-size: 20px; margin-bottom: 8px; }
  .card p { color: var(--text-soft); font-size: 15px; }
  .faq .card { margin-top: 14px; max-width: 70ch; }
  .faq .sub-eyebrow { margin-top: 54px; }
  .founder p { color: var(--text-soft); max-width: 62ch; margin-bottom: 18px; }
  .founder .cap { margin-bottom: 26px; }

  /* ---- close ---- */
  .close-block { padding-top: 10vh; padding-bottom: 12vh; text-align: left; }
  .close-block .evidence { font-size: 14px; color: var(--text-soft); max-width: 46ch; margin: 22px 0 0; }
  .regrow { display: flex; flex-wrap: wrap; gap: 12px; align-items: stretch; }
  .regrow[hidden] { display: none; }
  .regrow input { font-family: var(--body); font-size: 15px; color: var(--text); background: var(--card); border: 1px solid var(--hairline); border-radius: 22px; padding: 15px 22px; flex: 1 1 240px; max-width: 380px; outline: none; transition: border-color 0.25s ease, background 1.2s ease, color 1.2s ease; }
  .regrow input::placeholder { color: var(--text-soft); }
  .regrow input:focus-visible { border-color: var(--accent); }
  .regdone p { font-family: var(--italic); font-style: italic; font-weight: 500; font-size: 23px; color: var(--accent); }
  .close-block h2, .trust h2, .faq h2 { font-family: var(--display); font-weight: 400; font-size: clamp(30px, 5vw, 48px);
    line-height: 1.15; max-width: 20ch; text-wrap: balance; margin-bottom: 36px; }

  footer { border-top: 1px solid var(--hairline); padding: 56px 0 72px; margin-top: 6vh;
    transition: border-color 1.2s ease; }
  footer .fw { font-family: var(--display); font-size: 15px; letter-spacing: 6px; margin-bottom: 14px; }
  footer .essence { font-family: var(--italic); font-style: italic; font-weight: 500;
    font-size: clamp(20px, 3vw, 26px); color: var(--accent); margin-bottom: 22px; transition: color 1.2s ease; }
  footer .small { font-size: 12px; color: var(--text-soft); }

  footer .flinks { margin-top: 14px; font-size: 12px; }
  footer .flinks a { color: var(--text-soft); text-decoration: underline; text-decoration-color: var(--hairline); text-underline-offset: 3px; margin-right: 18px; }
  footer .flinks a:hover { color: var(--accent); }
  .legal-page { max-width: 720px; margin: 0 auto; padding: 130px 24px 90px; }
  .legal-page h1 { font-family: var(--display); font-weight: 400; font-size: clamp(30px, 5vw, 44px); margin-bottom: 22px; }
  .legal-page h2 { font-family: var(--display); font-weight: 400; font-size: 21px; margin: 34px 0 8px; }
  .legal-page p { color: var(--text-soft); margin-bottom: 12px; }

  .legal-page .tablewrap { overflow-x: auto; margin: 14px 0; }
  .legal-page table { width: 100%; border-collapse: collapse; font-size: 14px; }
  .legal-page th { text-align: left; font-size: 11px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--label); font-weight: 600; padding: 8px 12px 8px 0; border-bottom: 1px solid var(--hairline); }
  .legal-page td { padding: 10px 12px 10px 0; border-bottom: 1px solid var(--hairline); color: var(--text-soft); vertical-align: top; }
  .legal-page ul { margin: 0 0 14px 2px; list-style: none; }
  .legal-page ul li { padding-left: 18px; position: relative; margin-bottom: 8px; color: var(--text-soft); }
  .legal-page ul li::before { content: '·'; position: absolute; left: 2px; color: var(--accent); font-weight: 700; }
