@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  --bg-app: #0a0b0c;
  --bg-surface: #131517;
  --bg-surface-alt: #0e1012;
  --border-subtle: #1e2124;
  --border-strong: #2a2e33;
  --accent-primary: #10b981;
  --accent-primary-hover: #34d399;
  --accent-glow: rgba(16, 185, 129, 0.4);
  --accent-soft: #4ade80;
  --text-primary: #ffffff;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  --gradient-start: #10b981;
  --gradient-end: #06b6d4;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-app);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.app-shell {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Background grid */
.bg-grid {
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(16, 185, 129, 0.15), transparent),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(6, 182, 212, 0.08), transparent);
  pointer-events: none;
  z-index: 0;
}

/* Navigation */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  background: rgba(10, 11, 12, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  line-height: 1;
}

.brand-icon {
  color: var(--accent-primary);
  font-size: 20px;
}

.brand-mark {
  width: 28px;
  height: 28px;
  display: block;
  flex: 0 0 auto;
}

.brand-name {
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
}

.brand-rollup {
  color: var(--text-primary);
}

.brand-radar {
  color: #4DB6AC;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--text-primary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn.primary {
  background: var(--accent-primary);
  color: #000000;
}

.btn.primary:hover {
  background: var(--accent-primary-hover);
  transform: translateY(-1px);
}

.btn.primary.glow {
  box-shadow: 0 0 20px var(--accent-glow), 0 4px 12px rgba(0,0,0,0.3);
}

.btn.primary.glow:hover {
  box-shadow: 0 0 30px var(--accent-glow), 0 6px 16px rgba(0,0,0,0.4);
}

.btn.secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-strong);
}

.btn.secondary:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--text-muted);
}

.btn.large {
  padding: 16px 28px;
  font-size: 16px;
  border-radius: 12px;
}

.btn-arrow {
  transition: transform 0.2s ease;
}

.btn:hover .btn-arrow {
  transform: translateX(3px);
}

.full-width {
  width: 100%;
}

/* Hero Section */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 120px 24px 60px;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin-bottom: 48px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-soft);
  margin-bottom: 32px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.hero-title {
  font-size: clamp(40px, 8vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 40px;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text-muted);
}

.trust-item .check {
  color: var(--accent-primary);
}

/* Hero Radar */
.hero-radar {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 10;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 0 0 1px rgba(255,255,255,0.05),
    0 20px 50px rgba(0,0,0,0.5),
    0 0 100px rgba(16, 185, 129, 0.1);
}

.hero-cta-mobile {
  display: none;
  width: 100%;
  max-width: 400px;
  margin-top: 32px;
  margin-bottom: 0px;
}

/* Networks Section */
.networks {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-app) 0%, var(--bg-surface) 50%, var(--bg-app) 100%);
}

.networks-header {
  text-align: center;
  padding: 0 24px;
  margin-bottom: 48px;
}

.networks-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-primary);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.live-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.networks-title {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}

.networks-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  margin: 0;
}

.networks-carousel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.networks-row {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.networks-row .networks-track {
  display: flex;
  gap: 20px;
  animation: scroll-left 40s linear infinite;
  width: max-content;
}

.networks-row.reverse .networks-track {
  animation: scroll-right 40s linear infinite;
}

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

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

.network-card {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  min-width: 200px;
  transition: all 0.3s ease;
}

.network-card:hover {
  border-color: var(--accent-primary);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), var(--bg-surface));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3), 0 0 20px rgba(16, 185, 129, 0.1);
}

.network-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: contain;
  background: rgba(255,255,255,0.03);
  padding: 4px;
}

.network-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.network-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.network-tps {
  font-size: 12px;
  font-family: "IBM Plex Mono", monospace;
  color: var(--accent-primary);
  font-weight: 500;
}

.network-status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-primary);
  box-shadow: 0 0 8px var(--accent-primary);
}

.network-status.online {
  animation: status-pulse 2s ease-in-out infinite;
}

@keyframes status-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--accent-primary); }
  50% { opacity: 0.6; box-shadow: 0 0 4px var(--accent-primary); }
}

/* FAQ Section */
.faq {
  position: relative;
  z-index: 1;
  padding: 100px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}

.faq-header h2 {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 16px 0;
}

.faq-header p {
  font-size: 18px;
  color: var(--text-secondary);
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 18px 22px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item[open] {
  border-color: rgba(16, 185, 129, 0.45);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 20px;
  color: var(--accent-primary);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  content: "-";
  transform: translateY(-1px);
}

.faq-answer {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Contact Section */
.contact {
  position: relative;
  z-index: 1;
  padding: 100px 24px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-header h2 {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 16px 0;
}

.contact-header p {
  font-size: 18px;
  color: var(--text-secondary);
}

.contact-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  background: var(--bg-surface-alt);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--text-primary);
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: rgba(16, 185, 129, 0.6);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.form-textarea {
  resize: vertical;
}

.form-hint {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 8px;
}

.form-alerts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-alert {
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(16, 185, 129, 0.3);
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent-primary);
}

.form-alert.success {
  border-color: rgba(16, 185, 129, 0.3);
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent-primary);
}

.form-alert.error {
  border-color: rgba(248, 113, 113, 0.35);
  background: rgba(248, 113, 113, 0.12);
  color: #fca5a5;
}

.errorlist {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  color: #fca5a5;
  font-size: 12px;
}

/* CTA Section */
.cta-section {
  position: relative;
  z-index: 1;
  padding: 80px 24px;
}

.cta-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), var(--bg-surface));
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 0 80px rgba(16, 185, 129, 0.1);
}

.cta-content h2 {
  font-size: clamp(28px, 5vw, 36px);
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border-subtle);
  padding: 48px 24px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 16px;
}

.footer-brand-mark {
  width: 24px;
  height: 24px;
  display: block;
  flex: 0 0 auto;
}

.footer-brand-name {
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
  line-height: 1;
}

.footer-brand:hover .brand-radar {
  color: var(--accent-primary-hover);
}

.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}

@media (min-width: 769px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }

  .footer-links {
    justify-content: center;
  }
}

.footer-disclaimer {
  display: block;
  max-width: 820px;
  font-size: 11px;
  line-height: 1.45;
  color: var(--text-muted);
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 768px) {
  .top-nav {
    padding: 12px 20px;
  }

  .brand {
    font-size: 17px;
  }

  .brand-mark {
    width: 26px;
    height: 26px;
  }

  .nav-actions .nav-link {
    display: none;
  }

  .hero {
    padding: 100px 20px 40px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .hero-cta-mobile {
    display: block;
  }

  .hero-trust {
    flex-direction: column;
    gap: 12px;
  }

  .hero-radar {
    aspect-ratio: 4 / 3;
    border-radius: 16px;
  }

  .faq {
    padding: 60px 20px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact {
    padding: 60px 20px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cta-card {
    padding: 40px 24px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
  }

  .btn.large {
    padding: 14px 24px;
    font-size: 15px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   Legal Pages (Terms of Service, Privacy Policy)
   ═══════════════════════════════════════════════════════════════ */

.legal-page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: 120px 24px 80px;
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
}

/* Header */
.legal-header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-subtle);
}

.legal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-primary);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.legal-badge-icon {
  font-size: 14px;
}

.legal-title {
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: var(--text-muted);
}

.legal-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.legal-meta-label {
  color: var(--text-secondary);
}

/* Content */
.legal-content {
  color: var(--text-secondary);
  line-height: 1.7;
}

.legal-intro {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 48px;
  padding: 24px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
}

.legal-intro p {
  margin: 0;
}

.legal-intro p + p {
  margin-top: 16px;
}

/* Sections */
.legal-section {
  margin-bottom: 40px;
}

.legal-section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--accent-primary), #0d9668);
  color: #000;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  margin-right: 12px;
  flex-shrink: 0;
}

.legal-section-title {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.legal-section-title span {
  flex: 1;
}

.legal-section-content {
  padding-left: 44px;
}

.legal-section-content p {
  margin: 0 0 16px;
  color: var(--text-secondary);
}

.legal-section-content p:last-child {
  margin-bottom: 0;
}

/* Subsections */
.legal-subsection {
  margin-top: 20px;
}

.legal-subsection-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  padding-left: 12px;
  border-left: 2px solid var(--accent-primary);
}

/* Lists */
.legal-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.legal-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--text-secondary);
}

.legal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--accent-primary);
  border-radius: 50%;
}

.legal-list li:last-child {
  margin-bottom: 0;
}

/* Important Notice / Callout */
.legal-callout {
  margin: 24px 0;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(16, 185, 129, 0.03));
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 12px;
  border-left: 4px solid var(--accent-primary);
}

.legal-callout-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-primary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.legal-callout-icon {
  font-size: 16px;
}

.legal-callout p {
  margin: 0;
  color: var(--text-secondary);
}

.legal-callout .legal-list {
  margin: 12px 0 0;
}

/* Warning Callout */
.legal-callout.warning {
  background: linear-gradient(135deg, rgba(214, 160, 65, 0.08), rgba(214, 160, 65, 0.03));
  border-color: rgba(214, 160, 65, 0.3);
  border-left-color: #D6A041;
}

.legal-callout.warning .legal-callout-header {
  color: #D6A041;
}

/* Info Callout */
.legal-callout.info {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.08), rgba(56, 189, 248, 0.03));
  border-color: rgba(56, 189, 248, 0.25);
  border-left-color: #38BDF8;
}

.legal-callout.info .legal-callout-header {
  color: #38BDF8;
}

/* Disclaimer / Grey Box */
.legal-disclaimer {
  margin: 24px 0;
  padding: 20px 24px;
  background: var(--bg-surface-alt);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
}

.legal-disclaimer p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

/* Email / Contact Link */
.legal-email {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
  color: var(--accent-primary);
  transition: all 0.2s ease;
  margin-top: 8px;
}

.legal-email:hover {
  border-color: var(--accent-primary);
  background: rgba(16, 185, 129, 0.08);
}

/* Strong text */
.legal-section-content strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Divider */
.legal-divider {
  height: 1px;
  background: var(--border-subtle);
  margin: 48px 0;
  border: none;
}

/* Footer nav */
.legal-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
}

.legal-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

.legal-footer-link:hover {
  border-color: var(--accent-primary);
  color: var(--text-primary);
  background: rgba(16, 185, 129, 0.05);
}

.legal-footer-link-icon {
  font-size: 16px;
}

/* Table of Contents */
.legal-toc {
  margin-bottom: 48px;
  padding: 24px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
}

.legal-toc-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.legal-toc-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 8px 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.legal-toc-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.legal-toc-list a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.legal-toc-list a:hover {
  color: var(--accent-primary);
}

.legal-toc-num {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  color: var(--text-muted);
  min-width: 24px;
}

/* Responsive */
@media (max-width: 768px) {
  .legal-page {
    padding: 100px 20px 60px;
  }

  .legal-title {
    font-size: 28px;
  }

  .legal-intro {
    font-size: 16px;
    padding: 20px;
  }

  .legal-section-title {
    font-size: 18px;
  }

  .legal-section-content {
    padding-left: 0;
    margin-top: 12px;
  }

  .legal-callout {
    padding: 16px 20px;
  }

  .legal-toc-list {
    grid-template-columns: 1fr;
  }

  .legal-footer-nav {
    flex-direction: column;
  }

  .legal-footer-link {
    justify-content: center;
  }
}
