/* ============================================================================
   Loonari World — premium product studio site
   Design system: neutral palette, Inter type, subtle violet→blue accent.
   No glassy clichés, no gradient-soup. Apple/Stripe/Linear school.
   ============================================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Surface */
  --bg: #FAFAFA;
  --bg-elev: #FFFFFF;
  --bg-section: #F4F4F5;
  --bg-dark: #0A0A0A;

  /* Ink */
  --fg: #0A0A0A;
  --fg-mid: #404040;
  --fg-mute: #71717A;
  --fg-faint: #A1A1AA;
  --fg-on-dark: #FAFAFA;

  /* Lines */
  --line: #E4E4E7;
  --line-soft: #EFEFF1;
  --line-strong: #D4D4D8;

  /* Accent — violet→indigo, used sparingly */
  --accent-1: #6366F1;
  --accent-2: #8B5CF6;
  --accent-grad: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
  --accent-soft: #EEF2FF;

  /* Type */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, "SF Mono",
    Menlo, monospace;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 0.2s;
  --t: 0.4s;
  --t-slow: 0.8s;

  /* Layout */
  --maxw: 1200px;
  --r: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--fg);
  font-size: 16px;
  line-height: 1.6;
  font-feature-settings: "ss01", "cv11";
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast) var(--ease); }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

/* ---------- Layout helpers ---------- */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 40px);
}
.section { padding-block: clamp(80px, 10vw, 140px); }
.section-tight { padding-block: clamp(60px, 7vw, 100px); }

/* ---------- Type scale ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--fg-mute);
  text-transform: uppercase;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-grad);
}

.h1, h1 {
  font-size: clamp(40px, 6.4vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  font-weight: 600;
  margin: 0;
}
.h2, h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 600;
  margin: 0;
}
.h3, h3 {
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  font-weight: 600;
  margin: 0;
}
.lede {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
  color: var(--fg-mid);
  max-width: 60ch;
}
.muted { color: var(--fg-mute); }
.gradient-text {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: all var(--t-fast) var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--bg-dark);
  color: var(--fg-on-dark);
  border-color: var(--bg-dark);
}
.btn-primary:hover {
  background: #1F1F1F;
  border-color: #1F1F1F;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px -10px rgba(0, 0, 0, 0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--fg);
  background: var(--bg-elev);
}
.btn .arrow {
  display: inline-block;
  transition: transform var(--t-fast) var(--ease);
}
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Header / nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 250, 0.78);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: 16px;
}
.brand-mark {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 14px;
  color: var(--fg-mid);
  font-weight: 450;
}
.nav-links a:hover { color: var(--fg); }
.nav-cta { display: inline-flex; gap: 10px; align-items: center; }
@media (max-width: 760px) {
  .nav-links { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: clamp(60px, 8vw, 100px);
  padding-bottom: clamp(80px, 10vw, 140px);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
}
.hero h1 strong {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}
.hero-cta { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }

/* Ambient gradient orb behind hero — soft, off-center, never gaudy */
.hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(99, 102, 241, 0.20), rgba(139, 92, 246, 0.08) 60%, transparent 75%);
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
}

/* Phone mockup */
.phone-mockup {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin-inline: auto;
  aspect-ratio: 9 / 19;
  border-radius: 48px;
  background: #0A0A0A;
  padding: 8px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 30px 80px -25px rgba(0, 0, 0, 0.5),
    0 60px 120px -40px rgba(99, 102, 241, 0.18);
  transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
  transition: transform 0.7s var(--ease-soft);
}
.phone-mockup:hover { transform: perspective(1200px) rotateY(-3deg) rotateX(1deg) translateY(-4px); }
.phone-screen {
  position: relative;
  height: 100%;
  width: 100%;
  border-radius: 42px;
  overflow: hidden;
  background: linear-gradient(180deg, #FAFAFA 0%, #F0F1F5 100%);
  display: flex;
  flex-direction: column;
}
.phone-notch {
  position: absolute;
  top: 14px; left: 50%; transform: translateX(-50%);
  width: 88px; height: 22px;
  background: #0A0A0A;
  border-radius: 999px;
  z-index: 5;
}
.phone-status {
  display: flex;
  justify-content: space-between;
  padding: 14px 28px 0;
  font-size: 12px;
  font-weight: 600;
  color: #0A0A0A;
}
.phone-status-icons { display: inline-flex; gap: 4px; opacity: 0.85; }
.phone-content {
  padding: 50px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
}

/* Mock UI cards inside phone */
.ph-card {
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04), 0 12px 24px -16px rgba(0, 0, 0, 0.12);
}
.ph-card-grad {
  background: var(--accent-grad);
  color: #fff;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 12px 28px -10px rgba(99, 102, 241, 0.45);
}
.ph-row { display: flex; align-items: center; gap: 12px; }
.ph-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, #FBCFE8, #FCD34D);
}
.ph-line { background: #E4E4E7; border-radius: 4px; }
.ph-line-1 { width: 70%; height: 9px; }
.ph-line-2 { width: 50%; height: 7px; margin-top: 6px; opacity: 0.6; }
.ph-line-w { background: rgba(255, 255, 255, 0.45); border-radius: 4px; height: 8px; }
.ph-progress {
  height: 6px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  overflow: hidden; margin-top: 12px;
}
.ph-progress > span { display: block; height: 100%; width: 64%; background: #fff; }
.ph-stat {
  display: flex; gap: 10px; align-items: baseline;
  font-size: 11px; color: var(--fg-mute); letter-spacing: 0.02em;
}
.ph-stat strong { font-size: 22px; color: var(--fg); font-weight: 600; letter-spacing: -0.02em; }

/* Floating stats / badges around phone */
.float-pill {
  position: absolute;
  background: #fff;
  padding: 10px 14px;
  border-radius: 14px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04), 0 18px 32px -14px rgba(0, 0, 0, 0.16);
  display: inline-flex; gap: 10px; align-items: center;
  font-size: 12px; font-weight: 500;
}
.float-pill .dot-g {
  width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(135deg, #34D399, #10B981);
  box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.18);
}
.float-pill-1 { top: 8%; left: -32px; animation: float-y 6s ease-in-out infinite; }
.float-pill-2 { bottom: 18%; right: -36px; animation: float-y 7s ease-in-out infinite reverse; }
.float-pill svg { width: 16px; height: 16px; color: var(--accent-1); }

@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- Hero metrics ---------- */
.metrics {
  margin-top: clamp(60px, 8vw, 100px);
  padding-top: 40px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 760px) { .metrics { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
.metric .label { font-size: 13px; color: var(--fg-mute); margin-bottom: 6px; }
.metric .value { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; }

/* ---------- Section heads ---------- */
.section-head {
  max-width: 760px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.section-head .h2 { margin-top: 12px; }
.section-head .lede { margin-top: 16px; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 80px;
}
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; } }
.about-meta {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px 32px;
  margin-top: 32px;
}
.about-meta .item { border-top: 1px solid var(--line); padding-top: 16px; }
.about-meta .label { font-size: 13px; color: var(--fg-mute); }
.about-meta .value { font-size: 17px; font-weight: 500; margin-top: 4px; letter-spacing: -0.01em; }

/* ---------- Products ---------- */
.product-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.18);
}
@media (max-width: 880px) { .product-card { grid-template-columns: 1fr; } }
.product-body { padding: clamp(32px, 4vw, 56px); display: flex; flex-direction: column; justify-content: center; }
.product-status {
  display: inline-flex; gap: 8px; align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(52, 211, 153, 0.12);
  color: #047857;
  font-size: 12px; font-weight: 500;
  width: fit-content;
}
.product-status .dot-g {
  width: 7px; height: 7px; border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2); }
  50% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
}
.product-card h3 { margin-top: 16px; font-size: clamp(28px, 3vw, 36px); }
.product-card .lede { margin-top: 12px; font-size: 16px; }
.product-features {
  list-style: none;
  padding: 0; margin: 24px 0 28px;
  display: grid; gap: 10px;
  font-size: 14px;
}
.product-features li {
  display: flex; gap: 10px; align-items: center;
  color: var(--fg-mid);
}
.product-features svg { color: var(--accent-1); flex-shrink: 0; }
.product-visual {
  background: linear-gradient(155deg, #EEF2FF, #FAF5FF);
  padding: clamp(32px, 4vw, 60px);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-visual::before {
  content: "";
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(139, 92, 246, 0.15), transparent 70%);
  filter: blur(20px);
  z-index: 0;
}
.product-visual .phone-mockup {
  transform: perspective(1200px) rotateY(8deg) rotateX(2deg);
  max-width: 280px;
}

.coming-soon {
  margin-top: 24px;
  padding: 24px 28px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--r-lg);
  display: flex; gap: 14px; align-items: center;
  color: var(--fg-mute); font-size: 14px;
  background: var(--bg-elev);
}
.coming-soon svg { color: var(--accent-1); }

/* ---------- Technology ---------- */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 880px) { .tech-grid { grid-template-columns: repeat(2, 1fr); } }
.tech-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: transform var(--t) var(--ease), border-color var(--t) var(--ease);
}
.tech-card:hover { transform: translateY(-3px); border-color: var(--line-strong); }
.tech-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-1);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.tech-icon svg { width: 22px; height: 22px; }
.tech-card h3 { font-size: 17px; }
.tech-card p { font-size: 14px; color: var(--fg-mute); margin-top: 6px; line-height: 1.5; }

/* ---------- Trust / Legal ---------- */
.trust-card {
  background: var(--bg-dark);
  color: var(--fg-on-dark);
  border-radius: var(--r-xl);
  padding: clamp(40px, 5vw, 72px);
  position: relative;
  overflow: hidden;
}
.trust-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(99, 102, 241, 0.18), transparent 55%);
  pointer-events: none;
}
.trust-card .h2 { color: var(--fg-on-dark); }
.trust-card .lede { color: rgba(255, 255, 255, 0.7); max-width: 56ch; }
.trust-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 760px) { .trust-grid { grid-template-columns: 1fr; } }
.trust-item {
  padding: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r);
}
.trust-item h4 { font-size: 15px; margin: 0 0 6px; font-weight: 500; }
.trust-item p { font-size: 13px; color: rgba(255, 255, 255, 0.6); margin: 0; line-height: 1.5; }
.legal-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.legal-links a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  transition: all var(--t-fast) var(--ease);
}
.legal-links a:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

/* ---------- Verification block (Apple) ---------- */
.verify {
  margin-top: 40px;
  padding: 24px 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.02);
  font-family: var(--font-mono);
  font-size: 13px;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 10px 24px;
  color: rgba(255, 255, 255, 0.85);
}
@media (max-width: 600px) { .verify { grid-template-columns: 1fr; } }
.verify dt { color: rgba(255, 255, 255, 0.5); font-weight: 400; }
.verify dd { margin: 0; font-weight: 500; color: rgba(255, 255, 255, 0.95); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-row {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.contact-row:last-child { border-bottom: 1px solid var(--line); }
.contact-row .label { font-size: 13px; color: var(--fg-mute); width: 110px; flex-shrink: 0; padding-top: 2px; }
.contact-row .value { font-size: 16px; font-weight: 500; letter-spacing: -0.01em; }
.contact-row a { color: var(--fg); border-bottom: 1px solid var(--line-strong); }
.contact-row a:hover { color: var(--accent-1); border-bottom-color: var(--accent-1); }

.contact-form {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(28px, 3vw, 40px);
  display: flex; flex-direction: column; gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13px; font-weight: 500; color: var(--fg-mid); }
.field input, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  font-size: 15px;
  background: var(--bg);
  color: var(--fg);
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.field textarea { resize: vertical; min-height: 110px; font-family: inherit; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent-1);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.12);
}
.contact-form .btn { align-self: flex-start; margin-top: 4px; }
.form-note { font-size: 12px; color: var(--fg-faint); margin-top: 4px; }

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.78);
  padding: clamp(60px, 6vw, 80px) 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.footer .brand { color: #fff; }
.footer .brand-sub { font-size: 13px; color: rgba(255, 255, 255, 0.55); margin-top: 12px; max-width: 36ch; line-height: 1.55; }
.footer h5 {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 14px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer ul a { color: rgba(255, 255, 255, 0.78); font-size: 14px; }
.footer ul a:hover { color: #fff; }
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s var(--ease-soft), transform 0.9s var(--ease-soft);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .float-pill { animation: none; }
  .phone-mockup { transform: none !important; }
}

/* ---------- Page hero (about/products/contact) ---------- */
.page-hero {
  padding: clamp(60px, 6vw, 100px) 0 clamp(40px, 5vw, 60px);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(36px, 5.4vw, 64px); }
.page-hero .lede { margin-top: 18px; }

/* ---------- Legal pages (privacy / terms) ---------- */
.legal-page { padding-block: clamp(60px, 6vw, 100px); }
.legal-page article {
  max-width: 720px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg-mid);
}
.legal-page article h2 {
  font-size: 22px; line-height: 1.3;
  margin-top: 40px; margin-bottom: 12px;
  color: var(--fg);
  scroll-margin-top: 80px;
}
.legal-page article h3 {
  font-size: 17px; line-height: 1.4;
  margin-top: 24px; margin-bottom: 8px;
  color: var(--fg);
}
.legal-page article p { margin: 0 0 14px; }
.legal-page article ul { padding-left: 22px; margin: 12px 0 16px; }
.legal-page article li { margin-bottom: 6px; }
.legal-page article a { color: var(--accent-1); border-bottom: 1px solid rgba(99, 102, 241, 0.3); }
.legal-page article a:hover { border-bottom-color: var(--accent-1); }
.legal-meta {
  background: var(--accent-soft);
  border: 1px solid rgba(99, 102, 241, 0.18);
  border-radius: var(--r);
  padding: 16px 20px;
  font-size: 14px;
  margin: 24px 0 32px;
  color: var(--fg-mid);
}
