:root {
  --bg: #020617;
  --bg-2: #0a1628;
  --bg-card: rgba(255, 255, 255, 0.03);
  --glass: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.08);
  --text: #eef6f2;
  --muted: rgba(238, 246, 242, 0.55);
  --accent: #10b981;
  --accent-2: #34d399;
  --gold: #fbbf24;
  --cyan: #22d3ee;
  --white: #ffffff;
  --nav-h: 72px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: "Outfit", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.65;
  cursor: none;
}

body.page-loaded .page-transition { opacity: 0; pointer-events: none; }

h1, h2, h3, h4, .display {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}

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

.cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out), background 0.3s;
}

.cursor-ring {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.45s var(--ease-out), height 0.45s var(--ease-out), border-color 0.3s;
}

body.cursor-hover .cursor { width: 48px; height: 48px; background: var(--gold); }
body.cursor-hover .cursor-ring { width: 64px; height: 64px; border-color: var(--gold); }

@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out);
}

.page-transition-logo {
  font-family: "Syne", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: pulse 1.2s ease infinite;
}

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

.bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float 18s ease-in-out infinite;
}

.orb-1 {
  width: 50vw;
  height: 50vw;
  top: -15%;
  left: -10%;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
}

.orb-2 {
  width: 40vw;
  height: 40vw;
  bottom: -10%;
  right: -5%;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  animation-delay: -6s;
}

.orb-3 {
  width: 28vw;
  height: 28vw;
  top: 45%;
  left: 40%;
  background: radial-gradient(circle, var(--cyan) 0%, transparent 70%);
  opacity: 0.18;
  animation-delay: -12s;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(3%, -4%) scale(1.05); }
  66% { transform: translate(-2%, 3%) scale(0.97); }
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
  background: rgba(2, 6, 23, 0.65);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: background 0.4s, box-shadow 0.4s;
}

nav.scrolled {
  background: rgba(2, 6, 23, 0.92);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.nav-logo {
  font-family: "Syne", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  display: grid;
  place-items: center;
  font-family: "Syne", sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--bg);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-text .brand-main {
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}

.nav-logo-text .brand-sub {
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  color: var(--accent-2);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  transition: color 0.25s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transition: width 0.35s var(--ease-out);
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 3rem) clamp(1.5rem, 5vw, 5rem) 4rem;
}

.hero-inner { max-width: 1200px; margin: 0 auto; width: 100%; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--glass);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.hero-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-2);
  animation: blink 2s ease infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-size: clamp(3rem, 9vw, 7.5rem);
  line-height: 0.95;
  margin-bottom: 1.5rem;
}

.hero h1 .line { display: block; overflow: hidden; }

.hero h1 .word {
  display: inline-block;
  transform: translateY(110%);
  animation: slideUp 1s var(--ease-out) forwards;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--white) 0%, var(--accent) 45%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes slideUp { to { transform: translateY(0); } }

.hero-sub {
  max-width: 560px;
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeIn 1s 0.5s var(--ease-out) forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  animation: fadeIn 1s 0.7s var(--ease-out) forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.8rem;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s, background 0.3s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #059669);
  color: var(--white);
  box-shadow: 0 4px 30px rgba(16, 185, 129, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(16, 185, 129, 0.5);
}

.btn-ghost {
  background: var(--glass);
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

.stats-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
}

.stat-item {
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.3s;
}

.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255, 255, 255, 0.03); }

.stat-num {
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.3rem;
}

section { position: relative; z-index: 1; }

.section-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(4rem, 10vw, 7rem) clamp(1.5rem, 5vw, 3rem);
}

.section-tag {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.section-tag::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--accent-2);
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom: 1rem;
}

.section-desc {
  max-width: 520px;
  color: var(--muted);
  font-weight: 300;
  font-size: 1.05rem;
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-scale.visible { opacity: 1; transform: scale(1); }

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

.topic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.topic-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2rem;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.5s var(--ease-out), border-color 0.4s, box-shadow 0.4s;
  cursor: pointer;
}

.topic-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--card-accent, var(--accent)) 0%, transparent 60%);
  opacity: 0.12;
  transition: opacity 0.4s;
}

.topic-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.08) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.topic-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.topic-card:hover::before { opacity: 0.22; }
.topic-card:hover::after { opacity: 1; }

.topic-icon {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  transition: transform 0.5s var(--ease-spring);
}

.topic-card:hover .topic-icon { transform: scale(1.15) rotate(-3deg); }

.topic-card h3 {
  font-size: 1.5rem;
  position: relative;
  z-index: 1;
  margin-bottom: 0.4rem;
}

.topic-card p {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 300;
  position: relative;
  z-index: 1;
}

.topic-card .explore {
  position: relative;
  z-index: 1;
  margin-top: 1.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-2);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.3s;
}

.topic-card:hover .explore { gap: 0.8rem; }

.timeline {
  position: relative;
  margin-top: 4rem;
}

.timeline-track {
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--accent) 5%, var(--gold) 95%, transparent);
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 1.5s var(--ease-out);
}

.timeline-track.visible { transform: scaleY(1); }

.timeline-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.timeline-item.visible { opacity: 1; transform: translateX(0); }

.timeline-dot-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0.5rem;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent);
  position: relative;
  z-index: 2;
  transition: background 0.3s, box-shadow 0.3s, transform 0.3s var(--ease-spring);
}

.timeline-item:hover .timeline-dot {
  background: var(--accent);
  box-shadow: 0 0 24px rgba(16, 185, 129, 0.5);
  transform: scale(1.3);
}

.timeline-step {
  font-family: "Syne", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 0.5rem;
  letter-spacing: 0.05em;
}

.timeline-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.8rem;
  backdrop-filter: blur(10px);
  transition: border-color 0.3s, transform 0.4s var(--ease-out), box-shadow 0.4s;
}

.timeline-item:hover .timeline-card {
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateX(8px);
  box-shadow: -8px 8px 40px rgba(0, 0, 0, 0.25);
}

.timeline-card h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }
.timeline-card p { font-size: 0.92rem; color: var(--muted); font-weight: 300; }
.timeline-icon { font-size: 1.6rem; margin-bottom: 0.6rem; }

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.tip-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.8rem;
  transition: transform 0.45s var(--ease-spring), border-color 0.3s;
}

.tip-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.12);
}

.tip-num {
  font-family: "Syne", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.8rem;
}

.tip-card h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.tip-card p { font-size: 0.85rem; color: var(--muted); font-weight: 300; }

.quote-block {
  position: relative;
  z-index: 1;
  padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 5vw, 3rem);
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.015);
}

.quote-block blockquote {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700;
  max-width: 800px;
  margin: 0 auto 1.2rem;
  line-height: 1.35;
}

.quote-block cite {
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.feature-card {
  border-radius: 16px;
  padding: 2.2rem;
  min-height: 200px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.45s var(--ease-out);
}

.feature-card:hover { transform: scale(1.02); }

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.85;
}

.feature-card:nth-child(1)::before { background: linear-gradient(145deg, #064e3b, var(--bg)); }
.feature-card:nth-child(2)::before { background: linear-gradient(145deg, #78350f, var(--bg)); }
.feature-card:nth-child(3)::before { background: linear-gradient(145deg, #164e63, var(--bg)); }
.feature-card:nth-child(4)::before { background: linear-gradient(145deg, #312e81, var(--bg)); }

.feature-card > * { position: relative; z-index: 1; }

.feature-tag {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 0.4rem;
}

.feature-card h3 { font-size: 1.6rem; margin-bottom: 0.4rem; }
.feature-card p { font-size: 0.88rem; color: var(--muted); font-weight: 300; }

.rule-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.rule-pill {
  padding: 0.6rem 1.2rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--glass);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  transition: all 0.35s var(--ease-out);
}

.rule-pill:hover {
  border-color: var(--accent);
  color: var(--white);
  background: rgba(16, 185, 129, 0.1);
  transform: translateY(-2px);
}

.page-hero {
  min-height: 70vh;
}

.page-hero .hero-icon {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  animation: iconFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4));
}

@keyframes iconFloat {
  0%, 100% { transform: rotate(-2deg) scale(1); }
  50% { transform: rotate(2deg) scale(1.05); }
}

.breadcrumb {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeIn 0.8s 0.2s var(--ease-out) forwards;
}

.breadcrumb a { color: var(--accent-2); transition: opacity 0.2s; }
.breadcrumb a:hover { opacity: 0.7; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s, gap 0.3s;
}

.back-link:hover { color: var(--accent-2); gap: 0.8rem; }

.checklist {
  list-style: none;
  margin-top: 2rem;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 300;
}

.checklist li::before {
  content: "✓";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
}

footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 3rem clamp(1.5rem, 5vw, 3rem);
  text-align: center;
}

.footer-logo {
  font-family: "Syne", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

footer p { font-size: 0.82rem; color: var(--muted); }

.footer-byline {
  margin-top: 1.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 500;
}

.footer-disclaimer {
  margin-top: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: rgba(238, 246, 242, 0.35);
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--accent-2); }

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(2, 6, 23, 0.97);
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.4s var(--ease-out), opacity 0.4s;
  }

  .nav-links.open { transform: translateY(0); opacity: 1; }
  .nav-toggle { display: flex; }

  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid var(--border); }

  .feature-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
}
