:root {
  --bg-primary: var(--bg-primary);
  --bg-secondary: var(--bg-secondary);
  --bg-card: rgba(255,255,255,0.02);
  --bg-card-hover: rgba(255,255,255,0.04);
  --border-color: var(--border-color);
  --border-hover: rgba(255,255,255,0.1);
  --text-primary: var(--text-primary);
  --text-secondary: var(--text-secondary);
  --text-muted: var(--text-muted);
  --text-nav: var(--text-nav);
  --accent: var(--accent);
  --accent-light: var(--accent-light);
  --accent-glow: rgba(30,50,230,0.25);
  --nav-bg: rgba(8,12,20,0.8);
  --hero-glow-1: rgba(79,70,229,0.15);
  --hero-glow-2: rgba(6,182,212,0.08);
  --hero-glow-3: rgba(79,70,229,0.05);
  --syntax-bg: var(--syntax-bg);
  --header-ring: white;
  --footer-bg: var(--bg-secondary);
}

[data-theme="light"] {
  --bg-primary: #f8fafc;
  --bg-secondary: var(--text-primary);
  --bg-card: rgba(0,0,0,0.02);
  --bg-card-hover: rgba(0,0,0,0.04);
  --border-color: rgba(0,0,0,0.08);
  --border-hover: rgba(0,0,0,0.15);
  --text-primary: var(--syntax-bg);
  --text-secondary: var(--text-muted);
  --text-muted: var(--text-muted);
  --text-nav: var(--text-muted);
  --accent: var(--accent);
  --accent-light: #4f46e5;
  --accent-glow: rgba(30,50,230,0.15);
  --nav-bg: rgba(248,250,252,0.85);
  --hero-glow-1: rgba(79,70,229,0.06);
  --hero-glow-2: rgba(6,182,212,0.03);
  --hero-glow-3: rgba(79,70,229,0.02);
  --syntax-bg: var(--text-secondary);
  --header-ring: var(--accent);
  --footer-bg: var(--text-primary);
}

[data-theme="blue"] {
  --bg-primary: #070b1a;
  --bg-secondary: #050916;
  --bg-card: rgba(79,70,229,0.03);
  --bg-card-hover: rgba(79,70,229,0.06);
  --border-color: rgba(79,70,229,0.1);
  --border-hover: rgba(79,70,229,0.2);
  --text-primary: #e0e7ff;
  --text-secondary: #c7d2fe;
  --text-muted: var(--accent-light);
  --text-nav: #a5b4fc;
  --accent: #4f46e5;
  --accent-light: var(--accent-light);
  --accent-glow: rgba(79,70,229,0.3);
  --nav-bg: rgba(7,11,26,0.85);
  --hero-glow-1: rgba(79,70,229,0.2);
  --hero-glow-2: rgba(99,102,241,0.1);
  --hero-glow-3: rgba(79,70,229,0.08);
  --syntax-bg: #0c1029;
  --header-ring: var(--accent-light);
  --footer-bg: #050916;
}

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  background: var(--bg-primary);
  min-height: 100vh;
  transition: background .3s, color .3s;
}

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

::selection { background: var(--accent); color: white; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--text-muted); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.nav-logo {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--accent), #4a5af0);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

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

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-nav);
  transition: color 0.2s;
}

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

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

.nav-social {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-nav);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.2s;
}

.nav-social:hover {
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.15);
  background: var(--bg-card-hover);
}

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 50% -10%, rgba(79, 70, 229, 0.15), transparent),
    radial-gradient(ellipse 400px 400px at 80% 40%, rgba(6, 182, 212, 0.08), transparent),
    radial-gradient(ellipse 300px 300px at 20% 60%, rgba(79, 70, 229, 0.05), transparent);
  pointer-events: none;
}

.hero-content {
  max-width: 800px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent-light);
  background: rgba(79, 70, 229, 0.1);
  border: 1px solid rgba(79, 70, 229, 0.2);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.gradient-text {
  background: linear-gradient(135deg, #818cf8, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
  border: 1px solid transparent;
  font-family: inherit;
}

.btn-primary {
  background: var(--accent);
  color: white;
  border-color: rgba(30, 50, 230, 0.3);
  box-shadow: 0 4px 20px rgba(30, 50, 230, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(30, 50, 230, 0.35);
}

.btn-secondary {
  background: var(--bg-card-hover);
  color: var(--text-secondary);
  border-color: var(--border-hover);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
}

.hero-stat {
  text-align: center;
}

.hero-stat-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: 'JetBrains Mono', monospace;
}

.hero-stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 4px;
}

/* ─── Sections ─── */
.section {
  padding: 100px 24px;
}

.section-dark {
  background: var(--bg-secondary);
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-light);
  background: rgba(79, 70, 229, 0.08);
  border: 1px solid rgba(79, 70, 229, 0.15);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 56px;
  line-height: 1.7;
}

/* ─── Features Grid ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 28px;
  transition: all 0.3s;
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-icon-blue { background: rgba(59,130,246,0.1); color: #60a5fa; }
.feature-icon-green { background: rgba(16,185,129,0.1); color: #34d399; }
.feature-icon-purple { background: rgba(129,140,248,0.1); color: var(--accent-light); }
.feature-icon-orange { background: rgba(245,158,11,0.1); color: #fbbf24; }
.feature-icon-cyan { background: rgba(6,182,212,0.1); color: #22d3ee; }
.feature-icon-pink { background: rgba(236,72,153,0.1); color: #f472b6; }

.feature-card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── Steps ─── */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.step {
  flex: 1;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
}

.step-number {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.step h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.step p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.step-code {
  background: var(--syntax-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8125rem;
  color: var(--text-nav);
  line-height: 1.6;
}

.code-comment {
  color: var(--text-muted);
  display: block;
  font-size: 0.75rem;
}

.step-arrow {
  display: flex;
  align-items: center;
  padding-top: 48px;
  color: var(--text-muted);
  flex-shrink: 0;
}

.step-arrow svg {
  width: 28px;
  height: 28px;
}

/* ─── Agents ─── */
.agents-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.agent-profile {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 32px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.agent-profile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1e32e6, #4a5af0);
  opacity: 0;
  transition: opacity 0.3s;
}

.agent-profile:hover::before { opacity: 1; }
.agent-profile:hover { transform: translateY(-4px); border-color: var(--border-hover); }

.agent-avatar {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.agent-profile h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.agent-profile p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.agent-metrics {
  display: flex;
  gap: 24px;
}

.agent-metric-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: 'JetBrains Mono', monospace;
}

.agent-metric-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}



/* ─── Architecture ─── */
.arch-grid {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
}
.arch-node {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 28px;
  transition: all 0.3s;
}
.arch-node:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
}
.arch-node-input { border-top: 3px solid #60a5fa; }
.arch-node-process { border-top: 3px solid #818cf8; }
.arch-node-action { border-top: 3px solid #34d399; }
.arch-node-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  background: rgba(129,140,248,0.1);
  color: var(--accent-light);
}
.arch-node h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.arch-node p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.arch-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.arch-tag {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(59,130,246,0.1);
  color: #60a5fa;
}
.arch-tag-green { background: rgba(16,185,129,0.1); color: #34d399; }
.arch-tag-yellow { background: rgba(245,158,11,0.1); color: #fbbf24; }
.arch-tag-blue { background: rgba(129,140,248,0.1); color: var(--accent-light); }
.arch-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}
.arch-arrow {
  display: flex;
  align-items: center;
  padding-top: 48px;
  color: var(--text-muted);
  flex-shrink: 0;
}
.arch-arrow svg { width: 28px; height: 28px; }
.arch-flow-footer {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.arch-flow-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-nav);
}

/* ─── Tech Stack ─── */
.stack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.stack-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 24px;
  transition: all 0.3s;
}
.stack-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}
.stack-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.stack-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.stack-card p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── Quick Start ─── */
.qs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.qs-step {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 28px;
}
.qs-number {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.qs-step h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.qs-code {
  background: var(--syntax-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8125rem;
  color: var(--text-nav);
  line-height: 1.6;
  white-space: pre;
  overflow-x: auto;
}
.qs-hint {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 12px;
}
.qs-hint code {
  color: var(--accent-light);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
}

/* ─── Community ─── */
.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.community-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 32px;
  transition: all 0.3s;
  display: block;
  text-decoration: none;
}
.community-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-4px);
}
.community-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  background: rgba(129,140,248,0.1);
  color: var(--accent-light);
}
.community-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.community-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.community-link {
  font-size: 0.8125rem;
  color: var(--accent-light);
  font-weight: 500;
}

/* ─── FAQ ─── */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover {
  border-color: var(--border-hover);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  user-select: none;
  gap: 16px;
}
.faq-chevron {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.2s;
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-answer code {
  background: rgba(129,140,248,0.1);
  color: var(--accent-light);
  padding: 1px 6px;
  border-radius: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8125rem;
}

/* ─── CTA Section ─── */
.cta-section {
  padding: 80px 24px;
  background: linear-gradient(135deg, rgba(30,50,230,0.06), rgba(6,182,212,0.04));
  border-top: 1px solid rgba(30,50,230,0.1);
  border-bottom: 1px solid rgba(30,50,230,0.1);
}
.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.cta-inner h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.cta-inner p {
  font-size: 1.0625rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}
.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* ─── Footer ─── */
.footer {
  background: var(--footer-bg);
  border-top: 1px solid var(--border-color);
  padding: 64px 24px 0;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer > .footer-inner {
  display: flex;
  justify-content: space-between;
  padding-bottom: 48px;
  gap: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 240px;
}

.footer-brand > .nav-logo {
  margin-bottom: 4px;
}

.footer-brand-text {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-primary);
}

.footer-tagline {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 48px;
}

.footer-col h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-nav);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col a,
.footer-col span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 4px 0;
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding: 20px 0;
}

.footer-bottom .footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  border: 1px solid var(--border-color);
  transition: all 0.2s;
}

.footer-social a:hover {
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.12);
  background: var(--bg-card-hover);
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .faq-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .cta-buttons { flex-direction: column; }
  .features-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .agents-showcase {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .arch-grid { flex-direction: column; max-width: 400px; margin: 0 auto 24px; }
  .arch-arrow { padding-top: 0; justify-content: center; transform: rotate(90deg); }
  .arch-flow-footer { flex-direction: column; align-items: center; gap: 12px; }
  .stack-grid, .qs-grid, .community-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

  .steps {
    flex-direction: column;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .step-arrow {
    padding-top: 0;
    justify-content: center;
    transform: rotate(90deg);
  }

  .hero-stats {
    gap: 24px;
  }

  .nav-links { display: none; }

  .footer > .footer-inner {
    flex-direction: column;
    gap: 32px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 24px;
  }

}