/* =========================================================================
   Tripledit — Custom design system
   Light additions on top of Tailwind CDN. Differentiated from Stralpay
   via : warm navy bg (#0a0f1e, not zinc), yellow signature accent,
   chunky pill nav, mascot-led hero, and Inter Display headings.
   ========================================================================= */

:root {
  /* Base — slightly warmer & deeper than Stralpay's pure zinc */
  --bg: #0a0f1e;
  --bg-elev-1: #0f1626;
  --bg-elev-2: #131b2e;
  --bg-card: rgba(20, 28, 48, 0.6);
  --border: rgba(96, 122, 168, 0.18);
  --border-strong: rgba(96, 122, 168, 0.32);

  /* Text */
  --fg: #f5f7fb;
  --fg-muted: #9aa6c2;
  --fg-dim: #6b7795;

  /* Brand */
  --primary: #3b82f6;       /* Tripledit blue (kept from base) */
  --primary-hover: #5095ff;
  --primary-glow: rgba(59, 130, 246, 0.35);
  --accent: #fbbf24;        /* Beanie yellow — our signature */
  --accent-soft: rgba(251, 191, 36, 0.15);
  --coral: #fb7185;         /* Warm CTA secondary */
  --mint: #34d399;          /* Success / live indicators */

  /* Radii */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;

  /* Type */
  --font-sans: "Inter", "Inter Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Inter Display", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", Monaco, Consolas, monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--fg);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { border: none; background: none; cursor: pointer; font: inherit; color: inherit; }
input, textarea { font: inherit; color: inherit; }

/* Subtle dotted noise on body */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.025) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.container-narrow { max-width: 920px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

/* ============ HEADER — pill nav floating (DIFFERENT from Stralpay's edge-to-edge sticky) ============ */
.site-header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 32px);
  max-width: 1100px;
}
.nav-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px 10px 22px;
  background: rgba(15, 22, 38, 0.78);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.32);
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 17px; letter-spacing: -0.01em;
}
.nav-brand img { width: 32px; height: 32px; object-fit: contain; }
.nav-brand .brand-name { background: linear-gradient(135deg, var(--fg) 0%, #b4c4e3 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 14.5px; color: var(--fg-muted); font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--fg); }
.nav-actions { display: flex; align-items: center; gap: 10px; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 14.5px;
  padding: 10px 18px;
  border-radius: 999px;
  transition: all .2s cubic-bezier(.2,.8,.4,1);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 1px 0 rgba(255,255,255,.18) inset, 0 8px 24px var(--primary-glow);
}
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--fg);
  border-color: var(--border-strong);
}
.btn-ghost:hover { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.18); }
.btn-yellow {
  background: var(--accent);
  color: #1a1505;
  box-shadow: 0 8px 24px rgba(251, 191, 36, 0.28);
}
.btn-yellow:hover { background: #ffd24d; transform: translateY(-1px); }
.btn-lg { padding: 14px 26px; font-size: 15.5px; }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 160px 0 120px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 700px 400px at 50% -10%, rgba(59,130,246,0.20), transparent 70%),
    radial-gradient(ellipse 500px 300px at 85% 20%, rgba(251,191,36,0.08), transparent 70%),
    radial-gradient(ellipse 400px 280px at 15% 30%, rgba(59,130,246,0.10), transparent 70%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  font-size: 13px; font-weight: 500;
  background: var(--accent-soft);
  border: 1px solid rgba(251,191,36,0.28);
  border-radius: 999px;
  color: var(--accent);
  margin-bottom: 28px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.8vw, 60px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  white-space: normal;
}
.hero h1 .accent-text {
  background: linear-gradient(110deg, #fbbf24 0%, #fbbf24 30%, #f59e0b 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero p.lede {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.6;
  max-width: 540px;
  margin: 0 0 36px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 24px;
  font-size: 13.5px; color: var(--fg-dim);
}
.hero-trust > div { display: inline-flex; align-items: center; gap: 6px; }
.hero-trust svg { width: 16px; height: 16px; color: var(--mint); }

/* Hero mascot column */
.hero-visual { position: relative; }
.hero-mascot-wrap {
  position: relative;
  aspect-ratio: 1;
  max-width: 480px;
  margin: 0 auto;
}
.hero-mascot-wrap::before {
  content: ''; position: absolute; inset: -10%;
  background: radial-gradient(circle, rgba(59,130,246,0.18) 0%, transparent 65%);
  filter: blur(40px);
  z-index: 0;
}
.hero-mascot-wrap img {
  position: relative;
  z-index: 2;
  width: 100%; height: 100%; object-fit: contain;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-card {
  position: absolute;
  z-index: 3;
  background: rgba(20, 28, 48, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  padding: 12px 16px;
  font-size: 12.5px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  animation: floatCard 7s ease-in-out infinite;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-card-1 {
  top: 6%; left: -12%;
  animation-delay: 1s;
}
.hero-card-2 {
  top: 45%; right: -12%;
  animation-delay: 3s;
}
.hero-card-3 {
  bottom: 4%; left: -8%;
  animation-delay: 5s;
}
.hero-card .label { color: var(--fg-dim); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.hero-card .value { color: var(--fg); font-weight: 600; font-size: 16px; margin-top: 2px; font-family: var(--font-mono); }
.hero-card .mint-pulse {
  display: inline-block; width: 7px; height: 7px;
  background: var(--mint); border-radius: 50%;
  box-shadow: 0 0 8px var(--mint);
  margin-right: 6px;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

@media (max-width: 900px) {
  .hero { padding: 130px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .hero-mascot-wrap { max-width: 320px; }
  .hero-card { font-size: 11px; padding: 10px 12px; }
  .hero-card-1 { left: 2%; top: 0; }
  .hero-card-2 { right: 2%; top: 30%; }
  .hero-card-3 { display: none; }
  .nav-links { display: none; }
}

/* ============ STATS STRIP ============ */
.stats-strip {
  position: relative;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-elev-1);
  padding: 28px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: center;
}
.stat { text-align: center; }
.stat .num {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 600;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #fff 0%, #b4c4e3 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat .num .yellow { color: var(--accent); -webkit-text-fill-color: var(--accent); }
.stat .label { color: var(--fg-dim); font-size: 13.5px; margin-top: 4px; }
@media (max-width: 700px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat .num { font-size: 28px; }
}

/* ============ SECTION COMMON ============ */
.section {
  padding: 120px 0;
  position: relative;
}
.section-eyebrow {
  display: inline-block;
  font-size: 13px; font-weight: 600;
  color: var(--primary); text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.section h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  max-width: 760px;
}
.section h2 em { font-style: normal; color: var(--accent); }
.section-lede {
  font-size: 17px; color: var(--fg-muted);
  max-width: 620px;
  margin: 0;
  line-height: 1.6;
}
.section-head { margin-bottom: 64px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.center h2, .section-head.center .section-lede { margin-left: auto; margin-right: auto; }

/* ============ FEATURES GRID ============ */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  position: relative;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  backdrop-filter: blur(20px);
  transition: all .25s;
}
.feature-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}
.feature-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.12);
  color: var(--primary);
  margin-bottom: 22px;
}
.feature-card:nth-child(2) .feature-icon { background: rgba(251, 191, 36, 0.14); color: var(--accent); }
.feature-card:nth-child(3) .feature-icon { background: rgba(251, 113, 133, 0.14); color: var(--coral); }
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.feature-card p { color: var(--fg-muted); font-size: 14.5px; margin: 0 0 20px; line-height: 1.55; }
.feature-mini-stats {
  display: flex; gap: 24px;
  padding-top: 18px;
  border-top: 1px dashed var(--border);
}
.feature-mini-stats .mini-num { color: var(--fg); font-weight: 600; font-family: var(--font-mono); font-size: 15px; }
.feature-mini-stats .mini-label { color: var(--fg-dim); font-size: 11.5px; text-transform: uppercase; letter-spacing: .06em; }
@media (max-width: 900px) { .features { grid-template-columns: 1fr; } }

/* ============ PLATFORM (split layout, image right) ============ */
.platform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.platform-features { list-style: none; padding: 0; margin: 28px 0 0; display: flex; flex-direction: column; gap: 14px; }
.platform-features li { display: flex; align-items: flex-start; gap: 12px; font-size: 15.5px; color: var(--fg); }
.platform-features li svg { flex-shrink: 0; width: 20px; height: 20px; color: var(--mint); margin-top: 1px; }
.platform-mockup {
  background: var(--bg-elev-1);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-xl);
  padding: 24px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.02) inset;
}
.mockup-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 18px;
  font-size: 13px;
}
.mockup-bar .left { display: flex; align-items: center; gap: 8px; }
.mockup-bar .left .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 6px var(--mint); }
.mockup-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.mockup-tile {
  background: var(--bg-elev-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px;
}
.mockup-tile .small { color: var(--fg-dim); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.mockup-tile .big { font-family: var(--font-mono); font-weight: 600; font-size: 22px; margin-top: 4px; letter-spacing: -.01em; }
.mockup-tile .delta { color: var(--mint); font-size: 12px; margin-top: 2px; font-weight: 500; }
.mockup-chart {
  margin-top: 8px;
  height: 90px;
  background:
    linear-gradient(180deg, rgba(59,130,246,0.0) 0%, rgba(59,130,246,0.18) 100%);
  position: relative;
  border-radius: var(--r-sm);
  overflow: hidden;
}
.mockup-chart::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, transparent calc(100% - 1px), rgba(255,255,255,0.04) calc(100% - 1px)),
    linear-gradient(to bottom, transparent calc(100% - 1px), rgba(255,255,255,0.04) calc(100% - 1px));
  background-size: 25% 50%;
}
.mockup-svg { width: 100%; height: 90px; }
@media (max-width: 900px) { .platform-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ============ INTEGRATIONS / LOGOS ============ */
.integrations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.integration-tile {
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px 20px;
  font-weight: 600; letter-spacing: -0.01em;
  color: var(--fg-muted);
  transition: all .2s;
  font-size: 14.5px;
}
.integration-tile:hover {
  background: var(--bg-elev-2);
  border-color: var(--border-strong);
  color: var(--fg);
}
.integration-tile .glyph { font-size: 22px; margin-right: 10px; }
@media (max-width: 900px) { .integrations-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============ MARQUEE — different from Stralpay : we use a single row + subtle ============ */
.marquee {
  position: relative;
  overflow: hidden;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-elev-1);
}
.marquee::before, .marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(to right, var(--bg-elev-1), transparent); }
.marquee::after { right: 0; background: linear-gradient(to left, var(--bg-elev-1), transparent); }
.marquee-track {
  display: flex;
  gap: 64px;
  animation: marquee 36s linear infinite;
  width: max-content;
  white-space: nowrap;
}
.marquee-item {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--fg-dim);
  text-transform: uppercase;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ PRICING ============ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  display: flex; flex-direction: column;
  position: relative;
}
.price-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(251,191,36,0.06), rgba(20,28,48,0.6));
  box-shadow: 0 0 0 1px rgba(251,191,36,0.4), 0 20px 50px -20px rgba(251,191,36,0.18);
}
.price-card.featured::before {
  content: 'Recommandé';
  position: absolute;
  top: -10px; right: 24px;
  background: var(--accent);
  color: #1a1505;
  font-size: 11px; font-weight: 700; letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 999px;
}
.price-card h3 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 600; margin: 0 0 8px;
}
.price-card .price {
  font-family: var(--font-display);
  font-size: 40px; font-weight: 600; letter-spacing: -0.025em;
  margin: 8px 0 4px;
}
.price-card .price .currency { font-size: 24px; color: var(--fg-muted); }
.price-card .price .per { font-size: 14px; color: var(--fg-muted); font-weight: 400; }
.price-card .price-desc { color: var(--fg-muted); font-size: 14px; margin: 0 0 24px; min-height: 40px; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 10px; flex-grow: 1; }
.price-card ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--fg); }
.price-card ul li svg { flex-shrink: 0; width: 16px; height: 16px; color: var(--mint); margin-top: 3px; }
@media (max-width: 1000px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .pricing-grid { grid-template-columns: 1fr; } }

/* ============ TESTIMONIAL ============ */
.testimonial {
  background:
    radial-gradient(ellipse at top, rgba(59,130,246,0.14), transparent 60%),
    var(--bg-elev-1);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 56px 48px;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.testimonial .quote-mark {
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}
.testimonial blockquote {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.015em;
  color: var(--fg);
  margin: 0 0 28px;
}
.testimonial .author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.testimonial .avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 17px; color: #0a0f1e;
}
.testimonial .who { text-align: left; }
.testimonial .who .name { font-weight: 600; font-size: 15px; }
.testimonial .who .role { color: var(--fg-muted); font-size: 13.5px; }
@media (max-width: 720px) { .testimonial { padding: 40px 24px; } .testimonial blockquote { font-size: 20px; } }

/* ============ FINAL CTA ============ */
.final-cta {
  position: relative;
  background:
    radial-gradient(ellipse 800px 400px at 50% 100%, rgba(251,191,36,0.10), transparent 70%),
    radial-gradient(ellipse 600px 400px at 20% 0%, rgba(59,130,246,0.16), transparent 70%),
    var(--bg);
  padding: 120px 0;
  text-align: center;
}
.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta p { color: var(--fg-muted); font-size: 18px; margin: 0 auto 40px; max-width: 540px; }
.final-cta-pills { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 36px; }
.final-cta-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13.5px;
  color: var(--fg-muted);
}
.final-cta-pill svg { width: 14px; height: 14px; color: var(--mint); }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--bg-elev-1);
  border-top: 1px solid var(--border);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .nav-brand { margin-bottom: 16px; }
.footer-brand p { color: var(--fg-muted); font-size: 14.5px; max-width: 320px; line-height: 1.55; }
.footer-col h4 {
  font-size: 12.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--fg-dim);
  margin: 0 0 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14.5px; color: var(--fg-muted);
  transition: color .15s;
}
.footer-col a:hover { color: var(--fg); }
.footer-bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.footer-bottom small { color: var(--fg-dim); font-size: 13px; }
.footer-bottom .footer-meta { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom .footer-meta a { font-size: 13px; color: var(--fg-dim); }
.footer-bottom .footer-meta a:hover { color: var(--fg-muted); }
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ============ LEGAL PAGES ============ */
.legal-page {
  padding: 160px 0 100px;
  min-height: 80vh;
}
.legal-page h1 {
  font-family: var(--font-display);
  font-size: 44px; font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.legal-page .meta { color: var(--fg-dim); font-size: 14px; margin-bottom: 40px; }
.legal-page .note {
  background: rgba(251,191,36,0.08);
  border: 1px solid rgba(251,191,36,0.28);
  border-radius: var(--r-md);
  padding: 14px 18px;
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 40px;
}
.legal-page h2 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600;
  margin: 36px 0 12px;
  letter-spacing: -0.01em;
}
.legal-page p, .legal-page li {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.7;
}
.legal-page ul { padding-left: 22px; }
