/* ── Fonts ── */
@font-face {
  font-family: 'Geist Sans';
  src: url('/fonts/Geist-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: optional;
}
@font-face {
  font-family: 'Geist Sans';
  src: url('/fonts/Geist-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: optional;
}
@font-face {
  font-family: 'Geist Mono';
  src: url('/fonts/GeistMono-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: optional;
}
@font-face {
  font-family: 'Geist Mono';
  src: url('/fonts/GeistMono-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: optional;
}

/* ── Variables ── */
:root {
  --font-geist-sans: 'Geist Sans', system-ui, sans-serif;
  --font-geist-mono: 'Geist Mono', ui-monospace, monospace;
  --background: #09090b;
  --foreground: #fafafa;
  --card: #16161a;
  --primary: #22c55e;
  --border: #27272a;
  --muted-foreground: #a8a8b3;
  --ring: #22c55e;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { background: var(--background); scroll-behavior: smooth; }
body {
  font-family: var(--font-geist-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--background);
  color: var(--foreground);
}
a { color: inherit; }
img { max-width: 100%; height: auto; }
::selection { background: #4ade80; color: #0b0b0d; }
button { font-family: inherit; cursor: pointer; }
button:disabled { cursor: not-allowed; opacity: 0.5; }
input { font-family: inherit; }
ul { list-style: none; }

/* ── Landing page ── */
.landing-page {
  --lp-green: #22c55e;
  --lp-green-dim: #16a34a;
  --lp-green-glow: rgba(34, 197, 94, 0.15);
  --lp-green-glow-strong: rgba(34, 197, 94, 0.25);
  --lp-bg: #09090b;
  --lp-bg-secondary: #111113;
  --lp-bg-card: #16161a;
  --lp-bg-card-hover: #1c1c21;
  --lp-border: #27272a;
  --lp-border-subtle: #1e1e22;
  --lp-text: #fafafa;
  --lp-text-secondary: #a1a1aa;
  --lp-text-muted: #8a8a93;
  font-family: var(--font-geist-sans);
  font-weight: 300;
  background: var(--lp-bg);
  color: var(--lp-text);
  line-height: 1.6;
  overflow-x: clip;
}
.landing-page ::selection { background: #4ade80; color: #0B0B0D; }
.landing-page .accent {
  background: linear-gradient(135deg, var(--lp-green), #86efac);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Nav */
.landing-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 40px; display: flex; align-items: center; justify-content: space-between;
  backdrop-filter: blur(16px) saturate(1.2);
  background: rgba(9, 9, 11, 0.8);
  border-bottom: 1px solid var(--lp-border-subtle);
}
.landing-nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--lp-text); }
.landing-nav-logo-img { height: 28px; width: auto; }
.landing-nav-links { display: flex; align-items: center; gap: 32px; list-style: none; margin: 0; padding: 0; }
.landing-nav-links a { color: var(--lp-text-secondary); text-decoration: none; font-size: 15px; font-weight: 300; transition: color 0.2s; }
.landing-nav-links a:hover { color: var(--lp-text); }
.landing-nav-cta {
  font-family: var(--font-geist-mono); text-transform: uppercase; font-size: 14px;
  padding: 8px 16px; background: var(--lp-green); color: var(--lp-bg);
  border: none; border-radius: 6px; font-weight: 600; text-decoration: none; transition: all 0.2s;
}
.landing-nav-cta:hover { background: #4ade80; box-shadow: 0 0 20px var(--lp-green-glow); }

/* Hero */
.landing-hero {
  min-height: 100vh; display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; padding: 120px 40px 80px; position: relative;
}
.landing-hero::before {
  content: ''; position: absolute; top: -20%; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(ellipse, var(--lp-green-glow) 0%, transparent 70%);
  pointer-events: none; opacity: 0.5;
}
.landing-hero::after {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(var(--lp-border-subtle) 1px, transparent 1px), linear-gradient(90deg, var(--lp-border-subtle) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 40%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 40%, black 20%, transparent 80%);
  pointer-events: none; opacity: 0.4;
}
.landing-hero-content { position: relative; z-index: 2; max-width: 760px; display: flex; flex-direction: column; align-items: center; }
.landing-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-geist-mono); font-size: 12px; color: var(--lp-green);
  background: var(--lp-green-glow); border: 1px solid rgba(34, 197, 94, 0.2);
  padding: 6px 14px; border-radius: 100px; margin-bottom: 32px;
  letter-spacing: 0.05em; text-transform: uppercase;
  animation: lp-fadeInDown 0.6s ease-out;
}
.landing-hero-badge .dot { width: 6px; height: 6px; background: var(--lp-green); border-radius: 50%; animation: lp-pulse-dot 2s infinite; }
.landing-hero h1 { font-size: clamp(42px, 6vw, 72px); font-weight: 500; line-height: 1.05; letter-spacing: -0.035em; margin-bottom: 24px; animation: lp-fadeInUp 0.7s ease-out 0.1s both; }
.landing-hero p { font-size: 18px; color: var(--lp-text-secondary); margin: 0 auto 40px; line-height: 1.7; animation: lp-fadeInUp 0.7s ease-out 0.2s both; }

/* Waitlist form */
.landing-waitlist-form { display: flex; gap: 0; margin: 0 auto; animation: lp-fadeInUp 0.7s ease-out 0.3s both; position: relative; }
.landing-waitlist-form input {
  flex: 1; padding: 14px 18px; background: var(--lp-bg-secondary);
  border: 1px solid var(--lp-border); border-right: none; border-radius: 8px 0 0 8px;
  color: var(--lp-text); font-family: var(--font-geist-mono); font-size: 15px;
  outline: none; transition: border-color 0.2s;
}
.landing-waitlist-form input::placeholder { color: var(--lp-text-muted); }
.landing-waitlist-form input:focus { border-color: var(--lp-green-dim); }
.landing-waitlist-form button {
  padding: 14px 24px; background: var(--lp-green); color: var(--lp-bg);
  border: 1px solid var(--lp-green); border-radius: 0 8px 8px 0;
  font-family: var(--font-geist-mono); text-transform: uppercase; font-size: 14px;
  font-weight: 600; white-space: nowrap; transition: all 0.2s; letter-spacing: 0.02em;
}
.landing-waitlist-form button:hover { background: #4ade80; box-shadow: 0 0 30px var(--lp-green-glow-strong); }
.landing-waitlist-form button.submitted { background: var(--lp-green-dim); border-color: var(--lp-green); }

/* Logo marquee */
.landing-hero-logos { margin-top: 32px; width: 100%; opacity: 0.5; }
.landing-hero-logos > * { margin-left: auto; margin-right: auto; }
.landing-hero-logos-label { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--lp-text-muted); margin-bottom: 12px; text-align: center; }
.logo-marquee {
  position: relative; overflow: hidden; height: 24px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.logo-marquee__track { display: flex; width: max-content; animation: logo-scroll 20s linear infinite; }
.logo-marquee__group { display: flex; align-items: center; gap: 48px; padding-right: 48px; flex-shrink: 0; }
.logo-marquee__group img { height: 24px; width: auto; filter: grayscale(1) brightness(1.8); }
@keyframes logo-scroll { to { transform: translateX(calc(-100% / 3)); } }
@media (prefers-reduced-motion: reduce) { .logo-marquee__track { animation: none; } }

/* Terminal demo */
.landing-hero-terminal {
  margin-top: 108px; width: 100%; background: var(--lp-bg-secondary);
  border: 1px solid var(--lp-border); border-radius: 12px; overflow: hidden; text-align: left;
  animation: lp-fadeInUp 0.8s ease-out 0.5s both;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.03), 0 20px 60px rgba(0,0,0,0.5), 0 0 80px var(--lp-green-glow);
}
.terminal-bar { display: flex; align-items: center; gap: 8px; padding: 12px 16px; background: var(--lp-bg-card); border-bottom: 1px solid var(--lp-border); }
.terminal-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--lp-border); }
.terminal-dot:nth-child(1) { background: #ef4444; }
.terminal-dot:nth-child(2) { background: #eab308; }
.terminal-dot:nth-child(3) { background: #22c55e; }
.terminal-title { flex: 1; text-align: center; font-family: var(--font-geist-mono); font-size: 12px; color: var(--lp-text-muted); }
.terminal-body { padding: 20px; font-family: var(--font-geist-mono); font-size: 14px; line-height: 1.8; }
.terminal-line { opacity: 0; animation: lp-typeIn 0.4s ease-out forwards; }
.terminal-line:nth-child(1) { animation-delay: 0.8s; }
.terminal-line:nth-child(2) { animation-delay: 1.2s; }
.terminal-line:nth-child(3) { animation-delay: 1.6s; }
.terminal-line:nth-child(4) { animation-delay: 2.0s; }
.terminal-line:nth-child(5) { animation-delay: 2.4s; }
.terminal-line:nth-child(6) { animation-delay: 2.8s; }
.terminal-line:nth-child(7) { animation-delay: 3.2s; }
.terminal-line:nth-child(8) { animation-delay: 3.6s; }
.t-prompt { color: var(--lp-green); }
.t-cmd { color: var(--lp-text); }
.t-comment { color: var(--lp-text-muted); }
.t-output { color: var(--lp-text-secondary); }
.t-success { color: var(--lp-green); }
.t-dim { color: #52525b; }

/* Section headings */
.landing-section-label { font-family: var(--font-geist-mono); text-transform: uppercase; font-size: 12px; color: var(--lp-green); letter-spacing: 0.1em; margin-bottom: 16px; }
.landing-section-title { font-size: clamp(28px, 4vw, 40px); font-weight: 500; letter-spacing: -0.03em; margin-bottom: 16px; line-height: 1.15; }
.landing-section-subtitle { font-size: 18px; color: var(--lp-text-secondary); max-width: 500px; margin-bottom: 64px; line-height: 1.7; }

/* Features */
.landing-features { padding: 120px 40px; max-width: 1120px; margin: 0 auto; }
.landing-features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.landing-feature-card {
  background: var(--lp-bg-card); border: 1px solid var(--lp-border); border-radius: 14px;
  padding: 36px; transition: all 0.3s ease; position: relative; overflow: hidden;
}
.landing-feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--lp-green-glow-strong), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.landing-feature-card:hover { border-color: rgba(34, 197, 94, 0.15); background: var(--lp-bg-card-hover); transform: translateY(-2px); }
.landing-feature-card:hover::before { opacity: 1; }
.landing-feature-icon-img { width: 32px; height: 32px; margin-bottom: 24px; }
.landing-feature-cmd {
  font-family: var(--font-geist-mono); text-transform: uppercase; font-size: 12px;
  color: var(--lp-green); background: var(--lp-green-glow); padding: 4px 10px;
  border-radius: 4px; display: inline-block; margin-bottom: 14px; letter-spacing: 0.03em;
}
.landing-feature-card h3 { font-size: 20px; font-weight: 450; margin-bottom: 10px; letter-spacing: -0.02em; }
.landing-feature-card p { font-size: 15px; color: var(--lp-text-secondary); line-height: 1.7; }
.landing-feature-terminal {
  margin-top: 20px; background: var(--lp-bg); border: 1px solid var(--lp-border-subtle);
  border-radius: 8px; padding: 14px 16px; font-family: var(--font-geist-mono); font-size: 13px; line-height: 1.7;
}

/* How it works */
.landing-how-it-works { padding: 100px 40px 120px; max-width: 1120px; margin: 0 auto; }
.landing-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 64px; }
.landing-step { position: relative; padding: 0 8px; }
.landing-step-number { font-family: var(--font-geist-mono); font-size: 48px; font-weight: 700; color: rgba(34, 197, 94, 0.12); line-height: 1; margin-bottom: 16px; }
.landing-step h3 { font-size: 18px; font-weight: 450; margin-bottom: 8px; letter-spacing: -0.01em; }
.landing-step p { font-size: 15px; color: var(--lp-text-secondary); line-height: 1.7; }
.landing-step-code { font-family: var(--font-geist-mono); font-size: 12px; color: var(--lp-green); background: var(--lp-green-glow); padding: 3px 8px; border-radius: 4px; display: inline-block; margin-top: 10px; }

/* Comparison */
.landing-comparison { padding: 100px 40px 120px; max-width: 1120px; margin: 0 auto; }
.landing-compare-table { margin-top: 56px; border: 1px solid var(--lp-border); border-radius: 14px; overflow: hidden; background: var(--lp-bg-card); }
.landing-compare-header { display: grid; grid-template-columns: 1.2fr 1fr 1fr; border-bottom: 1px solid var(--lp-border); }
.landing-compare-col-label { padding: 18px 28px; }
.landing-compare-col-brand { padding: 18px 24px; font-family: var(--font-geist-mono); text-transform: uppercase; font-size: 14px; font-weight: 600; letter-spacing: -0.01em; text-align: center; }
.landing-compare-col-them { color: var(--lp-text-muted); border-left: 1px solid var(--lp-border); border-right: 1px solid var(--lp-border); }
.landing-compare-col-us { color: var(--lp-green); background: var(--lp-green-glow); }
.landing-compare-row { display: grid; grid-template-columns: 1.2fr 1fr 1fr; border-bottom: 1px solid var(--lp-border-subtle); transition: background 0.2s; }
.landing-compare-row:last-child { border-bottom: none; }
.landing-compare-row:hover { background: rgba(255, 255, 255, 0.01); }
.landing-compare-point { padding: 24px 28px; border-right: 1px solid var(--lp-border); display: flex; align-items: center; }
.landing-compare-point h3 { font-size: 16px; font-weight: 450; letter-spacing: -0.01em; }
.landing-compare-cell { padding: 24px; font-size: 16px; line-height: 1.5; display: flex; gap: 10px; align-items: center; }
.landing-compare-cell-them { color: var(--lp-text-secondary); border-left: 1px solid var(--lp-border); border-right: 1px solid var(--lp-border); }
.landing-compare-cell-us { color: var(--lp-text-secondary); background: rgba(34, 197, 94, 0.03); }
.landing-compare-icon-bad { color: #ef4444; font-weight: 700; font-size: 16px; flex-shrink: 0; }
.landing-compare-icon-good { color: var(--lp-green); font-weight: 700; font-size: 16px; flex-shrink: 0; }

/* Pricing */
.landing-pricing { padding: 100px 40px 120px; max-width: 860px; margin: 0 auto; text-align: center; }
.landing-pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 56px; text-align: left; }
.landing-pricing-card { background: var(--lp-bg-card); border: 1px solid var(--lp-border); border-radius: 14px; padding: 36px; position: relative; display: flex; flex-direction: column; transition: border-color 0.3s, transform 0.3s; }
.landing-pricing-card:hover { transform: translateY(-2px); }
.landing-pricing-card-featured { border-color: rgba(34, 197, 94, 0.3); background: linear-gradient(180deg, rgba(34, 197, 94, 0.04) 0%, var(--lp-bg-card) 40%); box-shadow: 0 0 60px rgba(34, 197, 94, 0.06); }
.landing-pricing-card-featured:hover { border-color: rgba(34, 197, 94, 0.45); }
.landing-pricing-popular { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); font-family: var(--font-geist-mono); text-transform: uppercase; font-size: 12px; font-weight: 600; color: var(--lp-bg); background: var(--lp-green); padding: 3px 14px; border-radius: 100px; letter-spacing: 0.04em; white-space: nowrap; }
.landing-pricing-tier { font-family: var(--font-geist-mono); text-transform: uppercase; font-size: 14px; color: var(--lp-text-muted); letter-spacing: 0.08em; margin-bottom: 12px; }
.landing-pricing-price { font-size: 52px; font-weight: 500; letter-spacing: -0.04em; line-height: 1; margin-bottom: 4px; }
.landing-pricing-unit { font-size: 20px; font-weight: 300; color: var(--lp-text-secondary); letter-spacing: -0.01em; }
.landing-pricing-period { font-size: 14px; color: var(--lp-text-muted); margin-bottom: 16px; }
.landing-pricing-desc { font-size: 15px; color: var(--lp-text-secondary); line-height: 1.6; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--lp-border-subtle); }
.landing-pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; flex: 1; padding: 0; }
.landing-pricing-features li { font-size: 15px; color: var(--lp-text-secondary); display: flex; align-items: center; gap: 10px; }
.pf-check { color: var(--lp-green); font-weight: 700; font-size: 14px; flex-shrink: 0; }
.landing-pricing-btn { display: block; text-align: center; padding: 13px 24px; border-radius: 8px; font-family: var(--font-geist-mono); text-transform: uppercase; font-size: 14px; font-weight: 600; text-decoration: none; transition: all 0.2s; letter-spacing: 0.01em; }
.landing-pricing-btn-secondary { background: transparent; color: var(--lp-text); border: 1px solid var(--lp-border); }
.landing-pricing-btn-secondary:hover { border-color: var(--lp-text-muted); background: rgba(255, 255, 255, 0.03); }
.landing-pricing-btn-primary { background: var(--lp-green); color: var(--lp-bg); border: 1px solid var(--lp-green); }
.landing-pricing-btn-primary:hover { background: #4ade80; box-shadow: 0 0 30px var(--lp-green-glow-strong); }

/* CTA */
.landing-cta-section { padding: 120px 40px; text-align: center; position: relative; display: flex; flex-direction: column; align-items: center; max-width: 760px; margin: 0 auto; }
.landing-cta-section::before { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 600px; height: 400px; background: radial-gradient(ellipse, var(--lp-green-glow) 0%, transparent 70%); pointer-events: none; opacity: 0.3; }
.landing-cta-section h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 500; letter-spacing: -0.03em; margin-bottom: 16px; position: relative; }
.landing-cta-section p { font-size: 18px; color: var(--lp-text-secondary); margin-bottom: 40px; position: relative; }

/* Footer */
.landing-footer { border-top: 1px solid var(--lp-border-subtle); padding: 2.5rem 2rem; }
.landing-footer-inner { display: flex; align-items: center; justify-content: center; gap: 0.625rem; font-size: 0.875rem; color: var(--lp-text-muted); }
.landing-footer-inner a { text-decoration: none; color: var(--lp-text-muted); transition: color 0.2s; }
.landing-footer-inner a:hover { color: var(--lp-text-secondary); }
.landing-footer-inner img { height: 2rem; width: 2rem; }
.landing-footer-inner .dot { opacity: 0.3; }

/* Scroll reveal */
.landing-reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); content-visibility: auto; contain-intrinsic-size: auto 600px; }
.landing-reveal.visible { opacity: 1; transform: translateY(0); }

/* Animations */
@keyframes lp-fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes lp-fadeInDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes lp-typeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }
@keyframes lp-pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* Desktop */
@media (min-width: 769px) {
  .landing-hero p { max-width: 70%; }
  .landing-waitlist-form { max-width: 90%; }
}

/* Mobile */
@media (max-width: 768px) {
  .landing-nav { padding: 14px 20px; backdrop-filter: none; background: rgba(9, 9, 11, 0.95); }
  .landing-nav-links { display: none; }
  .landing-hero { padding: 100px 20px 60px; }
  .landing-hero::before { width: 400px; height: 400px; }
  .landing-hero::after { display: none; }
  .landing-hero-content { max-width: 95%; }
  .landing-waitlist-form { flex-direction: column; gap: 10px; width: 100%; }
  .landing-waitlist-form input { border-radius: 8px; border-right: 1px solid var(--lp-border); }
  .landing-waitlist-form button { border-radius: 8px; }
  .landing-features { padding: 100px 20px; }
  .landing-features-grid { grid-template-columns: 1fr; }
  .landing-steps { grid-template-columns: 1fr; gap: 40px; }
  .landing-comparison { padding: 100px 20px; }
  .landing-compare-header { grid-template-columns: 1fr; }
  .landing-compare-col-label { display: none; }
  .landing-compare-col-them { border-left: none; }
  .landing-compare-row { grid-template-columns: 1fr; }
  .landing-compare-point { border-right: none; border-bottom: 1px solid var(--lp-border-subtle); }
  .landing-compare-cell-them { border-left: none; border-right: none; border-bottom: 1px solid var(--lp-border-subtle); }
  .landing-compare-cell-us { background: rgba(34, 197, 94, 0.05); }
  .landing-pricing { padding: 100px 20px; }
  .landing-pricing-grid { grid-template-columns: 1fr; }
  .landing-cta-section .landing-waitlist-form { flex-direction: column; gap: 10px; }
  .landing-cta-section .landing-waitlist-form input { border-radius: 8px; border-right: 1px solid var(--lp-border); }
  .landing-cta-section .landing-waitlist-form button { border-radius: 8px; }
  .landing-how-it-works { padding: 100px 20px; }
  .landing-cta-section { padding: 100px 20px; }
}

/* ── Legal page styles (terms, privacy) ── */
.legal-page { min-height: 100vh; background: var(--background); color: var(--foreground); }
.legal-header { border-bottom: 1px solid var(--border); padding: 1rem 2rem; }
.legal-header-inner { max-width: 48rem; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.legal-header-inner a { text-decoration: none; color: var(--muted-foreground); font-size: 0.875rem; transition: color 0.2s; }
.legal-header-inner a:hover { color: var(--foreground); }
.legal-header-inner img.logo { height: 1.5rem; }
.legal-main { max-width: 48rem; margin: 0 auto; padding: 4rem 2rem; }
.legal-main h1 { font-size: 1.875rem; font-weight: 700; margin-bottom: 0.5rem; }
.legal-main .subtitle { font-size: 0.875rem; color: var(--muted-foreground); margin-bottom: 1rem; }
.legal-main .intro { color: var(--muted-foreground); line-height: 1.625; margin-bottom: 3rem; }
.legal-content { display: flex; flex-direction: column; gap: 2rem; }
.legal-content section { display: flex; flex-direction: column; gap: 0.75rem; }
.legal-content h2 { font-size: 1.125rem; font-weight: 600; color: var(--foreground); }
.legal-content p { color: var(--muted-foreground); line-height: 1.625; font-size: 0.875rem; }
.legal-content strong { color: var(--foreground); }
.legal-content ul { list-style: disc; padding-left: 1.5rem; display: flex; flex-direction: column; gap: 0.25rem; }
.legal-content li { color: var(--muted-foreground); font-size: 0.875rem; }
.legal-content a { color: var(--primary); text-decoration: none; }
.legal-content a:hover { text-decoration: underline; }
.legal-content .disclaimer { text-transform: uppercase; font-size: 0.75rem; color: rgba(161, 161, 170, 0.7); }
.legal-footer { border-top: 1px solid var(--border); padding: 2.5rem 2rem; }
.legal-footer-inner { max-width: 48rem; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 0.625rem; font-size: 0.875rem; color: var(--muted-foreground); }
.legal-footer-inner a { text-decoration: none; color: var(--muted-foreground); transition: color 0.2s; }
.legal-footer-inner a:hover { color: var(--foreground); }
.legal-footer-inner img { height: 2rem; }
.legal-footer-inner .dot { opacity: 0.3; }
