:root {
  --bg: #05030d;
  --bg-2: #0a0718;
  --ink: #eef0ff;
  --muted: #b9bedb;
  --faint: #8b90bf;
  --cyan: #38e8ff;
  --violet: #8b6bff;
  --magenta: #ff5bd1;
  --gold: #ffd479;
  --line: rgba(139,107,255,0.18);
  --glass: rgba(20,16,42,0.55);
  --grad: linear-gradient(120deg, #38e8ff 0%, #8b6bff 50%, #ff5bd1 100%);
  --maxw: 1160px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* ---- Focus visibility (keyboard users) ---- */
:where(a, button, [tabindex], input, textarea):focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 8px;
}
main:focus { outline: none; }
.nav-links a:focus-visible::after { width: 100%; }

/* ---- Skip link ---- */
.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 200;
  background: var(--grad); color: #08040f; font-weight: 600;
  padding: 10px 18px; border-radius: 10px; font-size: .85rem;
  transform: translateY(-150%); transition: transform .25s ease;
}
.skip-link:focus { transform: none; }

/* ---- Background canvas + texture ---- */
#universe { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 0; display: block; }
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
body::before {
  content: ""; position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(900px 600px at 15% 10%, rgba(56,232,255,0.10), transparent 60%),
    radial-gradient(900px 700px at 85% 90%, rgba(255,91,209,0.10), transparent 60%),
    radial-gradient(700px 500px at 50% 50%, rgba(139,107,255,0.06), transparent 70%);
}

.cursor-glow {
  position: fixed; top: 0; left: 0; width: 380px; height: 380px; z-index: 2;
  border-radius: 50%; pointer-events: none; transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(139,107,255,0.10), transparent 65%);
  transition: opacity .4s; opacity: 0;
}

main, .nav, .footer { position: relative; z-index: 3; }

/* ---- Loader ---- */
.loader {
  position: fixed; inset: 0; z-index: 100; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 26px; background: var(--bg);
  transition: opacity .8s ease, visibility .8s;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-core {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--grad); filter: blur(2px);
  animation: pulse 1.6s ease-in-out infinite;
  box-shadow: 0 0 60px rgba(139,107,255,0.6);
}
.loader-text { font-size: .8rem; letter-spacing: .35em; text-transform: uppercase; color: var(--muted); }
@keyframes pulse { 0%,100% { transform: scale(.7); opacity: .6; } 50% { transform: scale(1.05); opacity: 1; } }

/* ---- Nav ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px clamp(20px, 5vw, 54px); transition: all .4s ease;
}
.nav.scrolled {
  background: rgba(5,3,13,0.72); backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line); padding-top: 14px; padding-bottom: 14px;
}
.brand { display: flex; align-items: center; gap: 10px; font-family: 'Space Grotesk', sans-serif; }
.brand-mark {
  font-size: 1.1rem; background: var(--grad); -webkit-background-clip: text;
  background-clip: text; color: transparent; animation: spin 8s linear infinite; display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }
.brand-name { font-weight: 700; letter-spacing: .22em; font-size: .95rem; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: .82rem; color: var(--muted); letter-spacing: .04em; transition: color .25s; position: relative; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px; background: var(--grad); transition: width .3s; }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.lang-toggle {
  background: transparent; border: 1px solid var(--line); color: var(--muted);
  width: 40px; height: 34px; border-radius: 8px; cursor: pointer; font-size: .78rem;
  font-weight: 600; letter-spacing: .08em; transition: all .25s;
}
.lang-toggle:hover { color: var(--ink); border-color: var(--violet); }
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-burger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: 100px; font-size: .85rem; font-weight: 600;
  letter-spacing: .02em; cursor: pointer; transition: all .3s ease; border: 1px solid transparent;
}
.btn-primary { background: var(--grad); color: #08040f; box-shadow: 0 8px 40px rgba(139,107,255,0.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 50px rgba(139,107,255,0.55); }
.btn-line { border-color: var(--line); color: var(--ink); }
.btn-line:hover { border-color: var(--violet); background: rgba(139,107,255,0.08); }
.btn-ghost { border: 1px solid var(--line); color: var(--ink); padding: 9px 20px; font-size: .8rem; }
.btn-ghost:hover { background: var(--grad); color: #08040f; border-color: transparent; }

/* ---- Layout ---- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(20px, 5vw, 40px); }
.section { padding: clamp(80px, 12vw, 150px) 0; }
.section-dark { background: linear-gradient(180deg, transparent, rgba(10,7,24,0.6) 12%, rgba(10,7,24,0.6) 88%, transparent); }
.section-head { max-width: 760px; margin-bottom: 64px; }
.eyebrow {
  display: inline-block; font-size: .74rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 16px; font-weight: 600;
}
.section-title {
  font-family: 'Space Grotesk', sans-serif; font-weight: 600;
  font-size: clamp(1.9rem, 4.4vw, 3.1rem); line-height: 1.1; letter-spacing: -0.02em;
}

/* ---- Hero ---- */
.hero { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 120px 20px 80px; position: relative; }
.hero-inner { max-width: 1300px; width: 100%; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 8px 18px; margin-bottom: 30px;
  border: 1px solid var(--line); border-radius: 100px; font-size: .78rem; color: var(--muted);
  letter-spacing: .06em; background: var(--glass); backdrop-filter: blur(10px);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); animation: blink 2s infinite; }
@keyframes blink { 50% { opacity: .3; } }
.hero-title {
  font-family: 'Orbitron', sans-serif; font-weight: 900;
  /* font scales with viewport so the 9-letter word always fits — no clipping */
  font-size: clamp(2.1rem, 9.5vw, 7rem); line-height: 0.95; letter-spacing: 0.01em;
  background: linear-gradient(120deg, #fff 10%, #b9b3ff 40%, #38e8ff 70%, #ff5bd1 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: 0 0 80px rgba(139,107,255,0.25);
  display: block; width: 100%; text-align: center;
  overflow: visible; padding: 0.06em 0.22em; box-sizing: border-box;
}
.hero-tag { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.05rem, 2.6vw, 1.6rem); margin-top: 18px; color: var(--ink); font-weight: 500; }
.hero-sub { max-width: 620px; margin: 22px auto 0; color: var(--muted); font-size: 1.02rem; font-weight: 300; }
.hero-cta { display: flex; gap: 16px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 12px; font-size: .68rem; letter-spacing: .3em; text-transform: uppercase; color: var(--faint); }
.scroll-line { width: 1px; height: 50px; background: linear-gradient(var(--violet), transparent); position: relative; overflow: hidden; }
.scroll-line::after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 40%; background: var(--cyan); animation: scrolldot 2s infinite; }
@keyframes scrolldot { 0% { top: -40%; } 100% { top: 100%; } }

/* ---- About ---- */
.about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 44px; margin-bottom: 72px; }
.about-lead { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.2rem, 2.4vw, 1.6rem); line-height: 1.45; color: var(--ink); font-weight: 400; }
.about-body { color: var(--muted); font-size: 1.02rem; align-self: center; }
.vision-card {
  border: 1px solid var(--line); border-radius: 24px; padding: clamp(34px, 5vw, 60px);
  background: linear-gradient(135deg, rgba(56,232,255,0.06), rgba(255,91,209,0.06));
  backdrop-filter: blur(14px); text-align: center; position: relative; overflow: hidden;
}
.vision-card::before { content: ""; position: absolute; inset: -1px; border-radius: 24px; padding: 1px; background: var(--grad); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: .4; }
.vision-text { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.3rem, 3vw, 2.1rem); line-height: 1.35; max-width: 800px; margin: 14px auto 0; font-weight: 500; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 72px; }
.stat { text-align: center; padding: 28px 14px; border: 1px solid var(--line); border-radius: 18px; background: var(--glass); }
.stat-num { display: block; font-family: 'Orbitron', sans-serif; font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-label { font-size: .82rem; color: var(--muted); letter-spacing: .04em; }

/* ---- Pillars ---- */
.pillars-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 22px; }
.pillar {
  border: 1px solid var(--line); border-radius: 20px; padding: 32px 28px; background: var(--glass);
  backdrop-filter: blur(12px); transition: transform .4s ease, border-color .4s, box-shadow .4s; position: relative; overflow: hidden;
}
.pillar:hover { transform: translateY(-6px); border-color: rgba(139,107,255,0.5); box-shadow: 0 20px 60px rgba(10,5,30,0.6); }
.pillar-glow { position: absolute; top: -40%; right: -30%; width: 200px; height: 200px; border-radius: 50%; filter: blur(60px); opacity: .25; transition: opacity .4s; }
.pillar:hover .pillar-glow { opacity: .5; }
.pillar-icon { font-size: 1.8rem; margin-bottom: 16px; display: block; }
.pillar h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.2rem; margin-bottom: 8px; }
.pillar .role { font-size: .78rem; color: var(--cyan); letter-spacing: .05em; margin-bottom: 14px; text-transform: uppercase; }
.pillar ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.pillar li { font-size: .9rem; color: var(--muted); padding-left: 18px; position: relative; }
.pillar li::before { content: "›"; position: absolute; left: 0; color: var(--violet); }

/* ---- Districts ---- */
.districts { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); gap: 18px; }
.district {
  position: relative; border: 1px solid var(--line); border-radius: 20px; padding: 36px 30px;
  min-height: 220px; overflow: hidden; cursor: default; transition: transform .45s ease, border-color .45s;
  background: var(--bg-2); display: flex; flex-direction: column; justify-content: flex-end;
}
.district:hover { transform: translateY(-6px) scale(1.01); border-color: rgba(56,232,255,0.45); }
.district-bg { position: absolute; inset: 0; opacity: .5; transition: opacity .5s, transform .6s ease; }
.district:hover .district-bg { opacity: .85; transform: scale(1.08); }
.district-num { position: absolute; top: 22px; right: 26px; font-family: 'Orbitron', sans-serif; font-size: 2.4rem; font-weight: 700; color: rgba(255,255,255,0.08); }
.district h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; position: relative; z-index: 2; }
.district p { color: var(--muted); font-size: .92rem; position: relative; z-index: 2; margin-top: 8px; max-width: 90%; }
.district .tag { position: relative; z-index: 2; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--cyan); margin-bottom: 10px; }

/* ---- Economy ---- */
.economy-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.eco-item {
  border: 1px solid var(--line); border-radius: 16px; padding: 26px 22px; background: var(--glass);
  display: flex; align-items: center; gap: 14px; transition: all .3s; backdrop-filter: blur(10px);
}
.eco-item:hover { border-color: var(--cyan); transform: translateX(4px); }
.eco-item .ico { font-size: 1.4rem; }
.eco-item span.t { font-size: .96rem; font-weight: 500; }

/* ---- Goal ---- */
.goal-section { text-align: center; }
.goal-card { max-width: 920px; margin: 0 auto; padding: clamp(40px, 6vw, 80px) clamp(24px, 5vw, 60px); border-radius: 28px; border: 1px solid var(--line); background: radial-gradient(circle at 50% 0%, rgba(139,107,255,0.12), transparent 70%); }
.goal-text { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.4rem, 3.4vw, 2.4rem); line-height: 1.35; font-weight: 500; margin-top: 16px; }

/* ---- Founder ---- */
.founder-card { max-width: 780px; }
.founder-card p { font-size: 1.1rem; color: var(--muted); margin-bottom: 20px; font-weight: 300; }
.founder-card p:first-child { color: var(--ink); }
.founder-signoff { font-family: 'Space Grotesk', sans-serif; font-size: 1.25rem !important; color: var(--ink) !important; font-weight: 500; border-left: 2px solid var(--violet); padding-left: 20px; }

/* ---- CTA Final ---- */
.cta-final { text-align: center; padding: clamp(90px, 14vw, 170px) 0; position: relative; }
.cta-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 600; max-width: 800px; margin: 0 auto; line-height: 1.1; letter-spacing: -0.02em; }
.cta-sub { color: var(--muted); margin: 20px auto 36px; max-width: 540px; }

/* ---- Footer ---- */
.footer { border-top: 1px solid var(--line); padding: 50px 0; text-align: center; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.footer-tag { color: var(--muted); font-size: .92rem; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; margin: 6px 0 4px; }
.footer-links a { font-size: .85rem; color: var(--muted); transition: color .25s; }
.footer-links a:hover { color: var(--cyan); }
.footer-copy { color: var(--faint); font-size: .82rem; }
.cta-card-actions { display: flex; flex-direction: column; gap: 10px; }
.cta-card-actions .btn { width: 100%; }

/* ---- Shared helpers ---- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.section-lead { color: var(--muted); font-size: 1.05rem; margin-top: 18px; max-width: 640px; font-weight: 300; }

/* ---- Showcase (real Unreal media) ---- */
.feature-video {
  margin: 0 0 22px; border-radius: 22px; overflow: hidden; border: 1px solid var(--line);
  position: relative; background: #06040f; box-shadow: 0 30px 80px rgba(5,3,20,0.6);
}
.feature-video video { display: block; width: 100%; aspect-ratio: 16/9; object-fit: cover; background: #06040f; }
.feature-video figcaption { padding: 12px 18px; font-size: .82rem; color: var(--muted); letter-spacing: .02em; }

.media-grid { columns: 3 260px; column-gap: 16px; }
.media {
  break-inside: avoid; margin: 0 0 16px; border-radius: 16px; overflow: hidden; position: relative;
  border: 1px solid var(--line); background: #0c0a22; line-height: 0;
}
.media img, .media video { width: 100%; height: auto; display: block; }
.media figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 24px 16px 12px;
  font-size: .8rem; color: var(--ink); line-height: 1.3; letter-spacing: .02em;
  background: linear-gradient(transparent, rgba(5,3,13,0.9));
}
.media::after {
  content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
  pointer-events: none; transition: box-shadow .3s;
}
.media:hover::after { box-shadow: inset 0 0 0 1px rgba(56,232,255,0.3); }

/* ---- Business model ---- */
.model-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; }
.model-card { border: 1px solid var(--line); border-radius: 20px; padding: 30px 26px; background: var(--glass); backdrop-filter: blur(12px); transition: transform .35s, border-color .35s; }
.model-card:hover { transform: translateY(-5px); border-color: rgba(139,107,255,0.45); }
.model-icon { display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; font-size: 1.5rem; margin-bottom: 16px; background: color-mix(in srgb, var(--c) 18%, transparent); border: 1px solid color-mix(in srgb, var(--c) 40%, transparent); }
.model-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.15rem; margin-bottom: 10px; }
.model-card p { color: var(--muted); font-size: .94rem; }

/* ---- Roadmap timeline ---- */
.timeline { list-style: none; max-width: 820px; margin: 0 auto; position: relative; padding-left: 8px; }
.tl-item { position: relative; padding: 0 0 38px 40px; }
.tl-item::before { content: ""; position: absolute; left: 9px; top: 18px; bottom: -6px; width: 2px; background: linear-gradient(var(--violet), transparent); }
.tl-item:last-child::before { display: none; }
.tl-dot { position: absolute; left: 0; top: 6px; width: 20px; height: 20px; border-radius: 50%; background: var(--bg-2); border: 2px solid var(--violet); }
.tl-now .tl-dot { background: var(--grad); box-shadow: 0 0 18px rgba(139,107,255,0.7); border-color: transparent; }
.tl-done .tl-dot { background: var(--cyan); border-color: var(--cyan); }
.tl-head { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.tl-phase { font-family: 'Orbitron', sans-serif; font-size: .8rem; letter-spacing: .18em; color: var(--cyan); text-transform: uppercase; }
.tl-status { font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; padding: 3px 10px; border-radius: 100px; border: 1px solid var(--line); color: var(--muted); }
.tl-now .tl-status { color: #08040f; background: var(--grad); border-color: transparent; font-weight: 600; }
.tl-done .tl-status { color: var(--cyan); border-color: rgba(56,232,255,0.4); }
.tl-title { font-family: 'Space Grotesk', sans-serif; font-size: 1.3rem; margin-bottom: 6px; }
.tl-desc { color: var(--muted); font-size: .96rem; max-width: 600px; }

/* ---- Founder identity ---- */
.founder-id { display: flex; align-items: center; gap: 16px; margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line); }
.founder-avatar { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: var(--grad); color: #08040f; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.05rem; }
.founder-meta { display: flex; flex-direction: column; }
.founder-name { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1.05rem; }
.founder-role { color: var(--muted); font-size: .85rem; }
.founder-link { margin-left: auto; font-size: .85rem; color: var(--cyan); border: 1px solid var(--line); padding: 8px 16px; border-radius: 100px; transition: all .25s; }
.founder-link:hover { border-color: var(--cyan); background: rgba(56,232,255,0.08); }

/* ---- FAQ ---- */
.faq { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: 16px; background: var(--glass); overflow: hidden; }
.faq-q { cursor: pointer; list-style: none; display: flex; align-items: center; gap: 14px; padding: 22px 24px; font-family: 'Space Grotesk', sans-serif; font-size: 1.05rem; font-weight: 500; }
.faq-q::-webkit-details-marker { display: none; }
.faq-arrow { color: var(--violet); font-size: 1.3rem; transition: transform .3s; flex-shrink: 0; width: 18px; text-align: center; }
.faq-item[open] .faq-arrow { transform: rotate(45deg); }
.faq-a { padding: 0 24px 24px 56px; color: var(--muted); font-size: .98rem; }

/* ---- CTA paths + waitlist form ---- */
.cta-paths { display: flex; align-items: stretch; justify-content: center; gap: 22px; margin-top: 40px; flex-wrap: wrap; }
.cta-card { flex: 1 1 320px; max-width: 420px; text-align: left; border: 1px solid var(--line); border-radius: 22px; padding: 32px 28px; background: var(--glass); backdrop-filter: blur(12px); }
.cta-card-title { font-family: 'Space Grotesk', sans-serif; font-size: 1.3rem; margin-bottom: 8px; }
.cta-card-sub { color: var(--muted); font-size: .95rem; margin-bottom: 20px; }
.waitlist-form { display: flex; gap: 10px; flex-wrap: wrap; }
.waitlist-form input { flex: 1 1 180px; padding: 13px 16px; border-radius: 100px; border: 1px solid var(--line); background: rgba(5,3,13,0.5); color: var(--ink); font-size: .92rem; }
.waitlist-form input::placeholder { color: var(--faint); }
.waitlist-form input:focus { outline: none; border-color: var(--violet); }
.form-status { font-size: .85rem; margin-top: 12px; min-height: 1.2em; }
.form-status.ok { color: #5ee6a8; }
.form-status.err { color: #ff8a8a; }
.cta-or { display: grid; place-items: center; color: var(--faint); font-size: .8rem; text-transform: uppercase; letter-spacing: .2em; }

/* ---- Reveal animation ---- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---- Responsive ---- */
@media (max-width: 860px) {
  .nav-links { position: fixed; inset: 0 0 0 auto; width: min(76vw, 320px); flex-direction: column; justify-content: center; gap: 28px; padding: 40px; background: rgba(8,5,18,0.96); backdrop-filter: blur(20px); transform: translateX(100%); transition: transform .4s ease; border-left: 1px solid var(--line); }
  .nav-links.open { transform: none; }
  .nav-links a { font-size: 1.1rem; }
  .nav-burger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 24px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .cta-or { display: none; }
}
@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: stretch; }
  .stats { grid-template-columns: 1fr 1fr; }
}
/* ---- Fallback when background-clip:text is unsupported (avoid invisible text) ---- */
@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero-title, .stat-num, .brand-mark { color: var(--ink); -webkit-text-fill-color: currentColor; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .2s !important; }
  html { scroll-behavior: auto; }
}
