/* ============================================================
   Trendnable — Landing Page
   Type: Inter (UI) · Fraunces italic (editorial) · JetBrains Mono (numbers)
   ============================================================ */

:root {
  /* Brand */
  --accent: #2563EB;
  --gold: #FFB800;
  --price: #FC792E;

  /* Signature logo gradient */
  --grad: linear-gradient(115deg, #2E8BFF 0%, #8B5BFF 38%, #FF3FA4 64%, #FF8A3D 100%);
  --grad-soft: linear-gradient(115deg, #2E8BFF, #FF3FA4 70%, #FF8A3D);

  /* Dark theme (default) */
  --bg: #0A1426;
  --bg-deep: #070E1C;
  --surface: #0F1A2E;
  --surface-2: #162640;
  --text: #F5F0E4;
  --muted: rgba(245, 240, 228, 0.62);
  --faint: rgba(245, 240, 228, 0.38);
  --hairline: rgba(245, 240, 228, 0.10);
  --hairline-strong: rgba(245, 240, 228, 0.18);
  --pos: #3DD68C;
  --neg: #FF7A6B;
  --nav-bg: rgba(10, 20, 38, 0.72);
  --card-glow: rgba(46, 139, 255, 0.18);
}

[data-theme="light"] {
  --bg: #F7F4ED;
  --bg-deep: #EFEAE0;
  --surface: #FFFFFF;
  --surface-2: #EFEAE0;
  --text: #15171A;
  --muted: rgba(21, 23, 26, 0.62);
  --faint: rgba(21, 23, 26, 0.40);
  --hairline: rgba(21, 23, 26, 0.10);
  --hairline-strong: rgba(21, 23, 26, 0.16);
  --pos: #16A06B;
  --neg: #D04848;
  --nav-bg: rgba(247, 244, 237, 0.72);
  --card-glow: rgba(37, 99, 235, 0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  transition: background 0.5s ease, color 0.5s ease;
  line-height: 1.5;
}

.mono { font-family: "JetBrains Mono", ui-monospace, monospace; font-feature-settings: "tnum"; }
.serif { font-family: "Fraunces", Georgia, serif; font-style: italic; }

::selection { background: rgba(255, 63, 164, 0.32); color: var(--text); }

/* ---------- Layout helpers ---------- */
.wrap { width: min(1200px, 90vw); margin: 0 auto; }
.narrow { width: min(840px, 90vw); margin: 0 auto; }
section { position: relative; }

.eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--faint);
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--grad); }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 600; letter-spacing: -0.01em;
  padding: 13px 22px; border-radius: 980px; border: none; cursor: pointer;
  text-decoration: none; color: #fff; position: relative;
  transition: transform 0.25s cubic-bezier(.2,.8,.2,1), box-shadow 0.25s, filter 0.25s;
  white-space: nowrap;
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 8px 30px rgba(255, 63, 164, 0.28); }
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.06); box-shadow: 0 14px 44px rgba(255, 63, 164, 0.4); }
.btn-ghost { background: var(--surface-2); color: var(--text); border: 1px solid var(--hairline-strong); }
.btn-ghost:hover { transform: translateY(-2px); background: var(--surface); }
.btn-sm { padding: 9px 16px; font-size: 14px; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  backdrop-filter: saturate(180%) blur(20px); -webkit-backdrop-filter: saturate(180%) blur(20px);
  background: var(--nav-bg);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s, background 0.4s;
}
.nav.scrolled { border-bottom-color: var(--hairline); }
.nav-inner { width: min(1200px, 92vw); margin: 0 auto; height: 60px; display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); }
.nav-brand img { width: 30px; height: 30px; border-radius: 8px; }
.nav-brand .name { font-weight: 700; font-size: 18px; letter-spacing: -0.02em; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--text); }
.nav-links .sep { width: 1px; height: 16px; background: var(--hairline-strong); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.theme-toggle {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--hairline-strong);
  background: var(--surface-2); color: var(--text); cursor: pointer; display: grid; place-items: center;
  transition: transform 0.3s, background 0.2s;
}
.theme-toggle:hover { transform: rotate(-20deg); }
@media (max-width: 820px) { .nav-links { display: none; } }

/* ---------- Hero ---------- */
.hero { padding: 150px 0 60px; text-align: center; overflow: hidden; position: relative; }
.hero-glow {
  position: absolute; top: -10%; left: 50%; transform: translateX(-50%);
  width: 1100px; height: 1100px; pointer-events: none; z-index: 0;
  background: radial-gradient(closest-side, var(--card-glow), transparent 70%);
  opacity: 0.9;
}
.hero-inner { position: relative; z-index: 1; }
.hero h1 {
  font-size: clamp(40px, 7vw, 88px); font-weight: 800; letter-spacing: -0.03em;
  line-height: 1.02; max-width: 16ch; margin: 22px auto 0;
}
.hero .sub {
  font-size: clamp(17px, 2.2vw, 22px); color: var(--muted); max-width: 56ch;
  margin: 24px auto 0; line-height: 1.45;
}
.hero-cta { margin-top: 36px; display: flex; gap: 14px; justify-content: center; align-items: center; flex-wrap: wrap; }
.store-badges { margin-top: 22px; display: flex; gap: 14px; justify-content: center; align-items: center; flex-wrap: wrap; }

.store-img { display: inline-block; position: relative; transition: transform 0.25s, filter 0.25s; line-height: 0; }
.store-img img { height: 54px; width: auto; display: block; border-radius: 8px; }
a.store-img:hover { transform: translateY(-2px); filter: brightness(1.08); }
.store-img.soon { cursor: default; }
.store-img.soon img { filter: grayscale(0.35) brightness(0.82); opacity: 0.78; }
.store-img.soon .soon-tag {
  position: absolute; top: -9px; right: -7px; z-index: 2;
  font-size: 10px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  background: var(--grad); color: #fff; padding: 3px 8px; border-radius: 980px;
  box-shadow: 0 4px 14px rgba(255,63,164,0.4); white-space: nowrap;
}

/* ---------- Phone frame ---------- */
.phone {
  position: relative; width: 300px; aspect-ratio: 300 / 620;
  border-radius: 46px; padding: 11px;
  background: linear-gradient(160deg, #2a2f3a, #0c0f16);
  box-shadow: 0 50px 110px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.06) inset, 0 2px 0 rgba(255,255,255,0.12);
}
[data-theme="light"] .phone { box-shadow: 0 50px 110px rgba(20,30,50,0.28), 0 0 0 1px rgba(255,255,255,0.5) inset; }
.phone-screen {
  position: relative; width: 100%; height: 100%; border-radius: 36px; overflow: hidden;
  background: var(--bg); color: var(--text);
}

/* Hero device fan (real app screenshots) */
.hero-fan { position: relative; width: 760px; max-width: 100%; height: 690px; margin: 52px auto 0; }
.hero-fan .phone { position: absolute; top: 0; left: 50%; aspect-ratio: 1320 / 2868; }
.hero-fan .phone.center { width: 300px; margin-left: -150px; z-index: 3; }
.hero-fan .phone.left   { width: 252px; margin-left: -339px; top: 66px; transform: rotate(-8deg); z-index: 1; }
.hero-fan .phone.right  { width: 252px; margin-left: 87px;  top: 66px; transform: rotate(8deg);  z-index: 2; }
.real-shot { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.hero-fan-cap {
  display: flex; gap: 14px; justify-content: center; align-items: center; flex-wrap: wrap;
  margin: 26px auto 0; font-size: 13px; font-weight: 600; letter-spacing: 0.02em; color: var(--muted);
}
.hero-fan-cap .dotcap { width: 4px; height: 4px; border-radius: 50%; background: var(--grad); flex-shrink: 0; }

@media (max-width: 900px) {
  .hero-fan { transform: scale(0.76); transform-origin: top center; height: 540px; }
  .hero-fan-cap { margin-top: 6px; }
}
@media (max-width: 600px) {
  .hero-fan { transform: none; height: auto; width: auto; }
  .hero-fan .phone.left, .hero-fan .phone.right { display: none; }
  .hero-fan .phone.center { position: relative; left: auto; top: auto; margin: 0 auto; width: min(280px, 78vw); }
}

/* in-app item card */
.icard {
  background: var(--surface); border: 1px solid var(--hairline); border-radius: 16px;
  padding: 12px; margin-bottom: 10px; display: flex; gap: 11px; align-items: center; position: relative; overflow: hidden;
}
.icard .thumb { width: 50px; height: 50px; border-radius: 11px; flex-shrink: 0; display: grid; place-items: center; font-size: 22px; }
.icard .meta { flex: 1; min-width: 0; }
.icard .meta .t { font-size: 13px; font-weight: 700; letter-spacing: -0.01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.icard .meta .s { font-size: 11px; color: var(--muted); margin-top: 2px; }
.icard .price-col { text-align: right; flex-shrink: 0; }
.icard .price-col .p { font-size: 14px; font-weight: 700; }

.score-pill {
  display: inline-flex; align-items: center; gap: 4px; font-weight: 800; font-size: 13px;
  padding: 5px 9px; border-radius: 9px; line-height: 1;
}
.score-pill.hot { background: linear-gradient(135deg, #FFB800, #FC792E); color: #1a1205; }
.score-pill.warm { background: rgba(61, 214, 140, 0.16); color: var(--pos); }
.score-pill.cool { background: rgba(255, 122, 107, 0.16); color: var(--neg); }

.sig {
  display: inline-flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 700;
  padding: 4px 8px; border-radius: 7px; letter-spacing: 0.01em;
}
.sig .led { width: 6px; height: 6px; border-radius: 50%; }
.sig.rising { background: rgba(61,214,140,0.14); color: var(--pos); }
.sig.rising .led { background: var(--pos); box-shadow: 0 0 8px var(--pos); }
.sig.holding { background: rgba(255,184,0,0.16); color: #FFB800; }
.sig.holding .led { background: #FFB800; }
.sig.cooling { background: rgba(252,121,46,0.16); color: var(--price); }
.sig.cooling .led { background: var(--price); }
.sig.falling { background: rgba(255,122,107,0.16); color: var(--neg); }
.sig.falling .led { background: var(--neg); }

/* ---------- Generic section ---------- */
.section-pad { padding: clamp(80px, 12vh, 150px) 0; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 60px; }
.section-head h2 {
  font-size: clamp(32px, 5vw, 60px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; margin-top: 16px;
}
.section-head p { font-size: clamp(16px, 2vw, 20px); color: var(--muted); margin-top: 18px; line-height: 1.5; }

/* ---------- Hot score showcase ---------- */
.hotscore-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
@media (max-width: 920px) { .hotscore-grid { grid-template-columns: 1fr; gap: 44px; } }
.bigscore {
  position: relative; aspect-ratio: 1; width: min(440px, 80vw); margin: 0 auto;
  display: grid; place-items: center; border-radius: 50%;
}
.bigscore .ring { position: absolute; inset: 0; }
.bigscore .num { font-size: clamp(90px, 16vw, 150px); font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.bigscore .lbl { font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--faint); margin-top: 6px; }
.flame-tag {
  position: absolute; top: 6%; right: 4%; background: linear-gradient(135deg, #FFB800, #FC792E);
  color: #1a1205; font-weight: 800; font-size: 13px; padding: 8px 14px; border-radius: 980px;
  display: flex; align-items: center; gap: 6px; box-shadow: 0 10px 30px rgba(252,121,46,0.4);
}
.factor-list { display: flex; flex-direction: column; gap: 18px; margin-top: 30px; }
.factor { display: flex; gap: 16px; align-items: flex-start; }
.factor .fi { width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0; display: grid; place-items: center; background: var(--surface-2); }
.factor .ft { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; }
.factor .fd { font-size: 14px; color: var(--muted); margin-top: 2px; }

/* ---------- Feature cards ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 820px) { .feature-grid { grid-template-columns: 1fr; } }
.fcard {
  background: var(--surface); border: 1px solid var(--hairline); border-radius: 26px;
  padding: 34px; position: relative; overflow: hidden;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), border-color 0.4s;
}
.fcard:hover { transform: translateY(-4px); border-color: var(--hairline-strong); }
.fcard h3 { font-size: 26px; font-weight: 800; letter-spacing: -0.02em; }
.fcard p { color: var(--muted); margin-top: 12px; font-size: 16px; line-height: 1.5; }
.fcard.span2 { grid-column: span 2; }
@media (max-width: 820px) { .fcard.span2 { grid-column: span 1; } }

/* Signal badges grid */
.sig-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.sig-big {
  display: flex; align-items: center; gap: 12px; padding: 16px 20px; border-radius: 18px;
  border: 1px solid var(--hairline); background: var(--surface); flex: 1 1 200px;
  transition: transform 0.3s, border-color 0.3s;
}
.sig-big:hover { transform: translateY(-3px); }
.sig-big .led { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.sig-big .st { font-weight: 700; font-size: 17px; }
.sig-big .sd { font-size: 13px; color: var(--muted); }

.patterns { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 26px; }
.pattern-chip {
  font-size: 13px; font-weight: 500; padding: 8px 14px; border-radius: 980px;
  border: 1px solid var(--hairline); color: var(--muted); background: var(--surface);
}

/* ---------- Sparkline price section ---------- */
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 920px) { .price-grid { grid-template-columns: 1fr; gap: 40px; } }
.spark-card {
  background: var(--surface); border: 1px solid var(--hairline); border-radius: 28px; padding: 30px;
}
.spark-card .row { display: flex; justify-content: space-between; align-items: flex-start; }
.spark-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--hairline); }
.spark-stats .stat .k { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--faint); }
.spark-stats .stat .v { font-size: 19px; font-weight: 700; margin-top: 5px; }

/* ---------- Categories ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 920px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .cat-grid { grid-template-columns: 1fr; } }
.cat {
  border-radius: 22px; padding: 24px; min-height: 160px; position: relative; overflow: hidden;
  border: 1px solid var(--hairline); display: flex; flex-direction: column; justify-content: space-between;
  cursor: default; transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
}
.cat:hover { transform: translateY(-5px) scale(1.01); }
.cat .glyph { font-size: 30px; }
.cat .cname { font-size: 19px; font-weight: 800; letter-spacing: -0.02em; }
.cat .cdesc { font-size: 13px; opacity: 0.82; margin-top: 4px; }
.cat .ccount { font-size: 12px; font-weight: 600; opacity: 0.7; }

.fandom-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 40px; }
.fandom-chip {
  font-size: 14px; font-weight: 600; padding: 9px 18px; border-radius: 980px;
  border: 1px solid var(--hairline-strong); background: var(--surface); color: var(--text);
  transition: transform 0.25s, background 0.25s;
}
.fandom-chip:hover { transform: translateY(-2px); background: var(--surface-2); }

/* ---------- Pricing ---------- */
.price-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 880px; margin: 0 auto; }
@media (max-width: 760px) { .price-cards { grid-template-columns: 1fr; } }
.plan {
  border-radius: 28px; padding: 36px; border: 1px solid var(--hairline); background: var(--surface); position: relative; overflow: hidden;
}
.plan.premium { border: 1px solid transparent; background:
  linear-gradient(var(--surface), var(--surface)) padding-box,
  var(--grad) border-box; }
.plan .pname { font-size: 14px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.plan .pprice { font-size: 44px; font-weight: 800; letter-spacing: -0.03em; margin-top: 10px; }
.plan .pprice small { font-size: 16px; font-weight: 500; color: var(--muted); }
.plan ul { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 13px; }
.plan li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; color: var(--text); }
.plan li.off { color: var(--faint); }
.plan li .ck { flex-shrink: 0; margin-top: 2px; }
.plan .badge-prem {
  position: absolute; top: 22px; right: 24px; font-size: 11px; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 5px 11px; border-radius: 980px; background: var(--grad); color: #fff;
}

/* ---------- Final CTA ---------- */
.finalcta {
  text-align: center; border-radius: 40px; padding: clamp(60px, 9vw, 110px) 30px;
  position: relative; overflow: hidden; border: 1px solid var(--hairline);
  background: radial-gradient(120% 120% at 50% 0%, rgba(46,139,255,0.16), transparent 60%), var(--surface);
}
.finalcta h2 { font-size: clamp(34px, 6vw, 72px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.04; }
.finalcta p { color: var(--muted); font-size: clamp(17px, 2.2vw, 22px); margin: 20px auto 0; max-width: 50ch; }

/* ---------- Footer ---------- */
footer { padding: 70px 0 50px; border-top: 1px solid var(--hairline); margin-top: 40px; }
.foot-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px; }
.foot-brand { max-width: 280px; }
.foot-brand .row { display: flex; align-items: center; gap: 10px; }
.foot-brand img { width: 32px; height: 32px; border-radius: 9px; }
.foot-brand p { color: var(--muted); font-size: 14px; margin-top: 14px; line-height: 1.5; }
.foot-col h4 { font-size: 13px; font-weight: 700; letter-spacing: 0.04em; margin-bottom: 14px; }
.foot-col a { display: block; color: var(--muted); text-decoration: none; font-size: 14px; margin-bottom: 10px; transition: color 0.2s; }
.foot-col a:hover { color: var(--text); }
.foot-bottom { margin-top: 50px; padding-top: 24px; border-top: 1px solid var(--hairline); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: var(--faint); font-size: 13px; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s cubic-bezier(.2,.8,.2,1), transform 0.9s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* float anim for hero phone */
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.floaty { animation: floaty 6s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { .floaty { animation: none; } }

@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============================================================
   Legal pages (Privacy / Terms)
   ============================================================ */
.legal-nav-back {
  display: inline-flex; align-items: center; gap: 7px; color: var(--muted);
  text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s;
}
.legal-nav-back:hover { color: var(--text); }
.legal-hero { padding: 128px 0 0; }
.legal-hero .eyebrow { margin-bottom: 18px; }
.legal-hero h1 { font-size: clamp(38px, 6vw, 68px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.04; }
.legal-meta { margin-top: 18px; color: var(--muted); font-size: 15px; display: flex; flex-wrap: wrap; gap: 6px 18px; }
.legal-meta .mono { color: var(--text); }
.legal-intro { font-size: clamp(17px, 2vw, 20px); color: var(--muted); line-height: 1.55; margin-top: 26px; max-width: 64ch; }

.legal-layout { display: grid; grid-template-columns: 220px 1fr; gap: 56px; padding: 56px 0 40px; align-items: start; }
@media (max-width: 880px) { .legal-layout { grid-template-columns: 1fr; gap: 8px; } }

.toc { position: sticky; top: 90px; }
@media (max-width: 880px) {
  .toc { position: static; border: 1px solid var(--hairline); border-radius: 16px; padding: 18px 20px; background: var(--surface); margin-bottom: 20px; }
}
.toc .toc-h { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); margin-bottom: 14px; }
.toc a { display: block; color: var(--muted); text-decoration: none; font-size: 14px; line-height: 1.35; padding: 7px 0; border-left: 2px solid transparent; padding-left: 14px; margin-left: -2px; transition: color 0.2s, border-color 0.2s; }
.toc a:hover { color: var(--text); }
.toc a.active { color: var(--text); border-left-color: transparent; background: var(--grad); -webkit-background-clip: text; background-clip: text; }
.toc a.active { border-image: var(--grad) 1; border-left: 2px solid; }

.legal-body { max-width: 720px; }
.legal-body section { padding-top: 14px; margin-bottom: 40px; scroll-margin-top: 90px; }
.legal-body h2 { font-size: clamp(22px, 3vw, 30px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 16px; display: flex; align-items: baseline; gap: 12px; }
.legal-body h2 .n { font-family: "JetBrains Mono", monospace; font-size: 15px; font-weight: 600; color: transparent; background: var(--grad); -webkit-background-clip: text; background-clip: text; flex-shrink: 0; }
.legal-body h3 { font-size: 17px; font-weight: 700; margin: 24px 0 10px; letter-spacing: -0.01em; }
.legal-body p { color: var(--muted); font-size: 16px; line-height: 1.62; margin-bottom: 14px; }
.legal-body p strong, .legal-body li strong { color: var(--text); font-weight: 600; }
.legal-body ul { list-style: none; margin: 4px 0 18px; display: flex; flex-direction: column; gap: 10px; }
.legal-body li { color: var(--muted); font-size: 16px; line-height: 1.55; padding-left: 22px; position: relative; }
.legal-body li::before { content: ""; position: absolute; left: 2px; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: var(--grad); }
.legal-body a { color: var(--text); text-decoration: underline; text-decoration-color: var(--hairline-strong); text-underline-offset: 3px; }
.legal-body a:hover { text-decoration-color: currentColor; }

.legal-callout {
  border: 1px solid var(--hairline-strong); border-radius: 18px; padding: 22px 24px; margin: 8px 0 22px;
  background: radial-gradient(120% 120% at 0% 0%, var(--card-glow), transparent 60%), var(--surface);
}
.legal-callout .lc-label { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); margin-bottom: 8px; }
.legal-callout p { color: var(--text); margin: 0; font-size: 15px; line-height: 1.55; }

.legal-contact { border-top: 1px solid var(--hairline); margin-top: 30px; padding-top: 26px; }
.legal-contact .row { display: flex; gap: 10px; align-items: baseline; font-size: 15px; margin-bottom: 8px; }
.legal-contact .k { color: var(--faint); width: 88px; flex-shrink: 0; font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; }
.legal-contact .v { color: var(--text); }
