/* ============================================================
   OUTBAND — Precision Infrastructure UI
   Palette: Obsidian + Chrome. No glow. No shadows. Structure only.
   ============================================================ */

:root {
  --bg: #09090b;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-hover: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.14);
  --text: #a1a1aa;
  --text-bright: #fafafa;
  --text-dim: #52525b;
  --accent: #3b82f6;
  --accent-hover: #2563eb;
  --green: #22c55e;
  --amber: #f59e0b;
  --red: #ef4444;
  --mono: 'JetBrains Mono', 'SF Mono', 'Fira Code', ui-monospace, monospace;
  --sans: 'Inter', 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --max-w: 1100px;
  --gap: 10rem;
  --radius: 8px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--sans); background: var(--bg); color: var(--text); line-height: 1.65; font-size: 15px; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, textarea { font: inherit; color: inherit; }
ul { list-style: none; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ── Reveal ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(9, 9, 11, 0.85);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max-w); margin: 0 auto; padding: 0 2rem;
  height: 3.25rem;
}
.nav-logo { font-family: var(--mono); font-size: 0.95rem; font-weight: 500; color: var(--text-bright); letter-spacing: -0.02em; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: 0.8rem; color: var(--text-dim); transition: color 0.15s; letter-spacing: 0.01em; }
.nav-links a:hover { color: var(--text); }
.nav-links .nav-cta {
  font-size: 0.78rem; font-weight: 500;
  padding: 0.35rem 0.9rem; border-radius: 6px;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text-bright) !important;
  transition: border-color 0.15s;
}
.nav-links .nav-cta:hover { border-color: var(--border-hover); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.25rem; }
.nav-toggle span { display: block; width: 18px; height: 1.5px; background: var(--text-dim); margin: 5px 0; transition: all 0.3s; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; top: 3.25rem; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: rgba(9, 9, 11, 0.97);
    border-bottom: 1px solid var(--border);
    max-height: 0; overflow: hidden; transition: max-height 0.3s;
  }
  .nav-links.open { max-height: 400px; }
  .nav-links a, .nav-links .nav-cta { display: block; padding: 0.85rem 2rem; width: 100%; text-align: left; border-radius: 0; border: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: calc(3.25rem + 6rem) 0 0; }
.hero-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-text { text-align: left; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0;
  font-family: var(--mono); font-size: 0.72rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 6px; margin-bottom: 2rem; overflow: hidden;
}
.hero-badge-icon { display: inline-block; width: 14px; height: 14px; margin-left: 0.5rem; color: var(--text-dim); flex-shrink: 0; }
.hero-badge-code { padding: 0.35rem 0.5rem; color: var(--text-bright); font-weight: 500; }
.hero-badge-sep { width: 1px; height: 18px; background: var(--border); }
.hero-badge-label { padding: 0.35rem 0.6rem; color: var(--green); letter-spacing: 0.02em; }

.hero h1 {
  font-weight: 500; font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  line-height: 1.15; letter-spacing: -0.03em;
  color: var(--text-bright); margin-bottom: 1.5rem;
}
.hero h1 em { font-style: normal; color: var(--text-dim); }
.hero-sub { font-size: 0.95rem; color: var(--text); line-height: 1.7; max-width: 480px; margin-bottom: 2.5rem; }
.hero-ctas { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.01em;
  padding: 0.6rem 1.4rem; border-radius: 6px;
  border: 1px solid transparent; cursor: pointer; transition: all 0.15s;
}
.btn svg { display: inline-block; }
.btn-primary { background: var(--text-bright); color: var(--bg); border-color: var(--text-bright); }
.btn-primary:hover { background: #e4e4e7; border-color: #e4e4e7; }
.btn-secondary { background: transparent; color: var(--text); border-color: var(--border); }
.btn-secondary:hover { color: var(--text-bright); border-color: var(--border-hover); }

/* Hero code block — no macOS dots, 1px border */
.hero-visual { position: relative; }
.hero-code {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.hero-code-bar {
  display: flex; align-items: center;
  padding: 0.6rem 1rem;
  border-bottom: 1px solid var(--border);
}
.hero-code-bar .hero-code-title {
  font-family: var(--mono); font-size: 0.68rem;
  color: var(--text-dim); letter-spacing: 0.02em;
}
.hero-code-body {
  padding: 1.25rem 1.5rem;
  font-family: var(--mono); font-size: 0.75rem; line-height: 1.9;
  color: var(--text);
}
.hero-code-body .t-comment { color: var(--text-dim); }
.hero-code-body .t-prompt { color: var(--text-dim); }
.hero-code-body .t-cmd { color: var(--text-bright); }
.hero-code-body .t-flag { color: #7dd3fc; }
.hero-code-body .t-url { color: var(--green); }
.hero-code-body .t-output { color: var(--text-dim); }

.hero-floating-stat {
  position: absolute; bottom: -1.5rem; right: -0.5rem;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 6px; padding: 0.75rem 1.25rem;
  font-family: var(--mono);
  display: flex; align-items: center; gap: 0.75rem;
}
.hero-floating-stat .stat-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.hero-floating-stat .stat-label { color: var(--text-dim); font-size: 0.72rem; }
.hero-floating-stat .stat-value { color: var(--text-bright); font-weight: 700; font-size: 1.1rem; letter-spacing: -0.03em; }

@media (max-width: 768px) {
  .hero-layout { grid-template-columns: 1fr; gap: 3rem; }
  .hero-text { text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-floating-stat { right: 0; }
}

/* ============================================================
   COMPARISON
   ============================================================ */
.compare { padding: var(--gap) 0 0; }
.compare-diagrams {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  margin-top: 3rem;
}
.compare-card {
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
}
.compare-label {
  font-family: var(--mono); font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}
.compare-bad .compare-label { color: var(--red); }
.compare-good .compare-label { color: var(--green); }
.compare-good { border-color: rgba(34, 197, 94, 0.15); }
.compare-flow {
  display: flex; align-items: center; gap: 0.35rem; flex-wrap: wrap;
  margin-bottom: 1.5rem;
  font-family: var(--mono); font-size: 0.68rem;
}
.compare-node {
  padding: 0.25rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: 4px; color: var(--text);
  white-space: nowrap;
}
.compare-node-warn { border-color: rgba(239, 68, 68, 0.25); color: var(--red); }
.compare-node-accent { border-color: rgba(34, 197, 94, 0.25); color: var(--green); }
.compare-arrow { color: var(--text-dim); font-size: 0.8rem; }
.compare-issues, .compare-wins { font-size: 0.8rem; line-height: 1.75; }
.compare-issues li, .compare-wins li {
  padding-left: 1rem; position: relative; list-style: none; color: var(--text);
}
.compare-issues li::before, .compare-wins li::before {
  content: ''; position: absolute; left: 0; top: 0.6rem;
  width: 5px; height: 5px; border-radius: 50%;
}
.compare-issues li::before { background: var(--red); }
.compare-wins li::before { background: var(--green); }
@media (max-width: 768px) { .compare-diagrams { grid-template-columns: 1fr; } }

/* ============================================================
   SECTION SHARED
   ============================================================ */
.section-label {
  font-family: var(--mono); font-size: 0.7rem; font-weight: 500;
  color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.section-title {
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.25; letter-spacing: -0.02em;
  color: var(--text-bright); margin-bottom: 1rem;
  max-width: 700px;
}
.section-sub {
  font-size: 0.95rem; color: var(--text); max-width: 560px; margin-bottom: 3rem;
}
.hero-bench-note {
  font-size: 0.7rem; color: var(--text-dim); line-height: 1.5;
}
.hero-bench-note a { color: var(--text); text-decoration: underline; text-underline-offset: 2px; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how { padding: var(--gap) 0 0; }
.callouts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.callout {
  padding: 2rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); transition: border-color 0.15s;
}
.callout:hover { border-color: var(--border-hover); }
.callout-icon {
  width: 32px; height: 32px; margin-bottom: 1.25rem;
}
.callout-icon svg { width: 20px; height: 20px; stroke: var(--text-dim); fill: none; stroke-width: 1.5; }
.callout h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.6rem; color: var(--text-bright); }
.callout p { font-size: 0.85rem; color: var(--text); line-height: 1.65; }
.callout code { font-family: var(--mono); font-size: 0.82em; color: var(--text-bright); }
.callout-stat {
  margin-top: 1.5rem; padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.callout-stat-value {
  font-family: var(--mono); font-size: 2.25rem; font-weight: 700;
  color: var(--text-bright); letter-spacing: -0.04em;
  line-height: 1; margin-bottom: 0.3rem;
  /* Draw-in animation */
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.callout.visible .callout-stat-value {
  opacity: 1; transform: translateY(0);
}
.callout-stat-label { font-size: 0.7rem; color: var(--text-dim); letter-spacing: 0.02em; }
@media (max-width: 768px) { .callouts { grid-template-columns: 1fr; } }

/* ============================================================
   TERMINAL DEMO
   ============================================================ */
.demo { padding: var(--gap) 0 0; }
.terminal {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  max-width: 800px; margin: 0 auto;
}
.terminal-bar {
  display: flex; align-items: center;
  border-bottom: 1px solid var(--border); padding: 0;
}
.terminal-tabs { display: flex; gap: 0; padding: 0; }
.terminal-tab {
  background: none; border: none; cursor: pointer;
  font-family: var(--mono); font-size: 0.7rem;
  color: var(--text-dim); padding: 0.75rem 1.25rem;
  border-bottom: 1px solid transparent;
  transition: all 0.15s;
}
.terminal-tab:hover { color: var(--text); }
.terminal-tab.active { color: var(--text-bright); border-bottom-color: var(--text-bright); }
.terminal-body {
  padding: 1.25rem 1.5rem;
  font-family: var(--mono); font-size: 0.75rem; line-height: 1.8;
  overflow-x: auto; overflow-y: auto; height: 380px;
}
.terminal-panel { display: none; }
.terminal-panel.active { display: block; }
.terminal-output { white-space: pre; min-height: 320px; }
.terminal-cursor {
  display: inline-block; width: 7px; height: 14px;
  background: var(--text-bright); vertical-align: text-bottom;
  animation: blink 0.8s step-end infinite;
}
.terminal-cursor.typing { animation: none; opacity: 1; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.t-comment { color: var(--text-dim); }
.t-green { color: var(--green); }
.t-blue { color: var(--accent); }
.t-amber { color: var(--amber); }
.t-red { color: var(--red); }
.t-dim { color: var(--text-dim); }
.t-bold { color: var(--text-bright); font-weight: 600; }
.t-key { color: #7dd3fc; }
.t-str { color: var(--green); }
.t-num { color: var(--amber); }
.t-kw { color: #a78bfa; }

.terminal-note {
  text-align: center; margin-top: 1.25rem;
  font-family: var(--mono); font-size: 0.75rem; color: var(--text-dim);
}
.terminal-note code {
  color: var(--text); border: 1px solid var(--border);
  padding: 0.15rem 0.5rem; border-radius: 4px;
}

/* ============================================================
   DEPLOYMENT WEIGHT
   ============================================================ */
.weight { padding: var(--gap) 0 0; }
.weight-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.weight-item {
  text-align: center; padding: 2rem 1rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius);
}
.weight-value {
  font-family: var(--mono); font-size: 2.5rem; font-weight: 600;
  color: var(--text-bright); letter-spacing: -0.04em; margin-bottom: 0.5rem;
}
.weight-label { font-size: 0.78rem; color: var(--text); line-height: 1.4; }
@media (max-width: 768px) { .weight-grid { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   BLOAT COMPARISON TABLE
   ============================================================ */
.bloat { padding: var(--gap) 0 0; }
.bloat-table-wrap {
  overflow-x: auto; margin-top: 2.5rem;
  border: 1px solid var(--border); border-radius: var(--radius);
}
.bloat-table { width: 100%; border-collapse: collapse; font-size: 0.8rem; min-width: 700px; }
.bloat-table th {
  padding: 0.85rem 1rem; text-align: left; font-weight: 600;
  color: var(--text-dim); font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.06em;
  background: var(--surface); border-bottom: 1px solid var(--border);
}
.bloat-col-outband { color: var(--text-bright) !important; }
.bloat-table td {
  padding: 0.7rem 1rem; border-bottom: 1px solid var(--border);
  color: var(--text); vertical-align: middle;
}
.bloat-table tr:last-child td { border-bottom: none; }
.bloat-row-label { font-weight: 500; color: var(--text-bright) !important; white-space: nowrap; }
.bloat-good { color: var(--green) !important; font-weight: 500; }
.bloat-bad { color: var(--red) !important; }
.bloat-neutral { color: var(--text-dim) !important; }

/* ============================================================
   SECURITY
   ============================================================ */
.security { padding: var(--gap) 0 0; }
.security-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem; }
.security-card {
  padding: 1.75rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); transition: border-color 0.15s;
}
.security-card:hover { border-color: var(--border-hover); }
.security-card h3 {
  font-size: 0.88rem; font-weight: 600; margin-bottom: 0.6rem;
  color: var(--text-bright); display: flex; align-items: center; gap: 0.5rem;
}
.security-card h3 svg { width: 15px; height: 15px; stroke: var(--text-dim); fill: none; stroke-width: 1.5; flex-shrink: 0; }
.security-card p { font-size: 0.82rem; color: var(--text); line-height: 1.65; }
.security-card a { color: var(--text-bright); text-decoration: underline; text-underline-offset: 2px; text-decoration-color: var(--text-dim); }
.security-card a:hover { text-decoration-color: var(--text-bright); }
.security-card code { font-family: var(--mono); font-size: 0.82em; color: var(--text-bright); }
@media (max-width: 768px) { .security-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { padding: var(--gap) 0 0; }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; text-align: left; max-width: 760px; margin-left: auto; margin-right: auto; }
.pricing-card {
  padding: 2rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); display: flex; flex-direction: column;
  transition: border-color 0.15s;
}
.pricing-card:hover { border-color: var(--border-hover); }
.pricing-card.featured { border-color: rgba(255, 255, 255, 0.2); }
.pricing-tier { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-dim); margin-bottom: 0.5rem; }
.pricing-price { font-size: 2rem; font-weight: 600; color: var(--text-bright); margin-bottom: 0.25rem; letter-spacing: -0.03em; }
.pricing-period { font-size: 0.78rem; color: var(--text-dim); margin-bottom: 1.75rem; }
.pricing-features { flex: 1; margin-bottom: 2rem; }
.pricing-features li {
  font-size: 0.82rem; color: var(--text); padding: 0.35rem 0;
  padding-left: 1.1rem; position: relative;
}
.pricing-features li::before {
  content: ''; position: absolute; left: 0; top: 0.6rem;
  width: 5px; height: 5px; border-radius: 50%; background: var(--text-dim);
}
.pricing-features li.future { color: var(--text-dim); font-style: italic; }
.pricing-note { font-size: 0.75rem; color: var(--text-dim); margin-top: 1.5rem; text-align: center; }
@media (max-width: 768px) { .pricing-grid { grid-template-columns: 1fr; max-width: 400px; } }

/* ============================================================
   WHITEPAPER
   ============================================================ */
.whitepaper { padding: var(--gap) 0 0; }
.whitepaper-inner {
  display: flex; align-items: center; gap: 3rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 3rem;
}
.whitepaper-preview {
  flex: 0 0 180px; aspect-ratio: 8.5 / 11;
  border: 1px solid var(--border); border-radius: 6px;
  padding: 1.5rem 1rem;
  display: flex; flex-direction: column; gap: 0.45rem;
}
.whitepaper-preview-bar { height: 3px; border-radius: 2px; background: rgba(255,255,255,0.05); }
.whitepaper-preview-bar:nth-child(1) { width: 55%; background: rgba(255,255,255,0.12); }
.whitepaper-preview-bar:nth-child(2) { width: 80%; }
.whitepaper-preview-bar:nth-child(3) { width: 65%; }
.whitepaper-preview-bar:nth-child(4) { width: 90%; }
.whitepaper-preview-bar:nth-child(5) { width: 45%; }
.whitepaper-preview-bar:nth-child(6) { width: 75%; }
.whitepaper-preview-bar:nth-child(7) { width: 60%; }
.whitepaper-preview-bar:nth-child(8) { width: 70%; }
.whitepaper-content h2 { font-size: 1.5rem; font-weight: 500; color: var(--text-bright); margin-bottom: 0.75rem; letter-spacing: -0.02em; }
.whitepaper-content p { color: var(--text); font-size: 0.9rem; margin-bottom: 1.75rem; line-height: 1.65; }
@media (max-width: 768px) {
  .whitepaper-inner { flex-direction: column; padding: 2rem; }
  .whitepaper-preview { flex: 0 0 auto; width: 130px; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding: var(--gap) 0 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-info h3 { font-size: 1rem; font-weight: 500; color: var(--text-bright); margin-bottom: 0.6rem; }
.contact-info p { color: var(--text); font-size: 0.88rem; margin-bottom: 1.5rem; line-height: 1.65; }
.contact-email {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--mono); font-size: 0.85rem;
  color: var(--text-bright);
}
.contact-form { display: flex; flex-direction: column; gap: 0.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.form-field {
  font-size: 0.88rem;
  background: transparent;
  border: 1px solid var(--border-hover);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  color: var(--text-bright);
  transition: border-color 0.15s;
  width: 100%;
}
.form-field:focus { outline: none; border-color: var(--text); }
.form-field::placeholder { color: var(--text-dim); }
textarea.form-field { resize: vertical; min-height: 110px; }
.form-success { display: none; color: var(--green); font-size: 0.88rem; text-align: center; padding: 1rem; }
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--border); padding: 4rem 0 3rem; margin-top: var(--gap); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; }
.footer-brand p { color: var(--text-dim); font-size: 0.82rem; margin-top: 0.6rem; line-height: 1.6; max-width: 260px; }
.footer-col h4 { font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-dim); margin-bottom: 1rem; }
.footer-col a { display: block; font-size: 0.82rem; color: var(--text); padding: 0.2rem 0; transition: color 0.15s; }
.footer-col a:hover { color: var(--text-bright); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--border);
  margin-top: 2.5rem; padding-top: 1.5rem;
  font-size: 0.75rem; color: var(--text-dim);
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-content { max-width: 680px; margin: 0 auto; padding: calc(3.25rem + 4rem) 2rem 4rem; }
.legal-content h1 { font-size: 1.75rem; font-weight: 500; color: var(--text-bright); margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.legal-content .legal-date { font-size: 0.82rem; color: var(--text-dim); margin-bottom: 3rem; }
.legal-content h2 { font-size: 1.1rem; font-weight: 600; color: var(--text-bright); margin-top: 3rem; margin-bottom: 1rem; }
.legal-content p { color: var(--text); font-size: 0.9rem; line-height: 1.75; margin-bottom: 1rem; }
.legal-content ul { margin-bottom: 1rem; padding-left: 1.25rem; }
.legal-content li { color: var(--text); font-size: 0.9rem; line-height: 1.75; margin-bottom: 0.25rem; list-style: disc; }
.legal-content a { color: var(--text-bright); text-decoration: underline; text-underline-offset: 2px; text-decoration-color: var(--text-dim); }
.legal-content a:hover { text-decoration-color: var(--text-bright); }
