/* ── Utility layout ────────────────────────────────────── */
.section { padding: 110px 24px; max-width: 1200px; margin: 0 auto; }
.section-wide { padding: 110px 24px; }
.eyebrow {
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: .18em; text-transform: uppercase; color: var(--violet);
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.eyebrow::before { content:''; width: 28px; height: 1px; background: var(--violet); }
.heading-xl {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7vw, 88px); line-height: .92; letter-spacing: .02em;
}
.heading-lg {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 64px); line-height: .92; letter-spacing: .02em;
}
.gradient-text {
  background: linear-gradient(135deg, var(--violet), var(--cyan) 50%, var(--lime));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── Chips ─────────────────────────────────────────────── */
.chip {
  display: inline-flex; align-items: center;
  padding: 3px 10px; border-radius: 100px;
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: .06em; text-transform: uppercase; font-weight: 500;
}
.c-v { background: var(--violet-dim); color: var(--violet); border: 1px solid oklch(0.68 0.28 295 / 0.28); }
.c-l { background: var(--lime-dim);   color: var(--lime);   border: 1px solid oklch(0.88 0.24 135 / 0.28); }
.c-c { background: var(--cyan-dim);   color: var(--cyan);   border: 1px solid oklch(0.82 0.18 200 / 0.28); }
.c-r { background: var(--rose-dim);   color: var(--rose);   border: 1px solid oklch(0.68 0.26 340 / 0.28); }
.c-a { background: var(--amber-dim);  color: var(--amber);  border: 1px solid oklch(0.80 0.20 68  / 0.28); }
.c-d { background: oklch(0.18 0.01 270); color: var(--text-dim); border: 1px solid var(--border); }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px; border-radius: 100px;
  font-family: 'DM Mono', monospace; font-size: 12px;
  letter-spacing: .08em; text-transform: uppercase;
  font-weight: 500; border: none; cursor: none;
  transition: all .22s var(--spring); position: relative; overflow: hidden;
}
.btn:active { transform: scale(.96) !important; }
.btn::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(105deg, transparent 40%, oklch(1 0 0 / 0.28) 50%, transparent 60%);
  background-size: 250% 100%; background-position: 200% 0;
  opacity: 0; transition: opacity .2s ease;
}
.btn:hover::after { opacity: 1; animation: shimmer 1.1s ease; }
.btn:focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; }
.btn-v {
  background: var(--violet); color: oklch(0.1 0.01 270); font-weight: 600;
  box-shadow: 0 0 28px var(--violet-glow), 0 4px 14px oklch(0 0 0 / .35);
}
.btn-v:hover { box-shadow: 0 0 48px var(--violet-glow), 0 8px 28px oklch(0 0 0 / .4); transform: translateY(-2px); }
.btn-l {
  background: var(--lime); color: oklch(0.1 0.01 140); font-weight: 600;
  box-shadow: 0 0 24px var(--lime-glow);
}
.btn-l:hover { box-shadow: 0 0 44px var(--lime-glow); transform: translateY(-2px); }
.btn-o {
  background: transparent; color: var(--text-dim); border: 1px solid var(--border-hi);
}
.btn-o:hover { border-color: var(--violet); color: var(--violet); }

/* ── Card base ─────────────────────────────────────────── */
.card {
  background: var(--bg-raised); border: 1px solid var(--border);
  border-radius: 18px; padding: 24px;
  position: relative; overflow: hidden;
  transition: border-color .25s ease, transform .3s var(--spring), box-shadow .3s ease;
}
.card:hover { border-color: oklch(0.68 0.28 295 / 0.35); }

/* ── Nav ───────────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 600;
  display: flex; align-items: center; gap: 0;
  padding: 20px 40px;
  transition: padding .4s ease, background .4s ease, backdrop-filter .4s ease;
}
#nav.scrolled {
  padding: 12px 40px;
  background: oklch(0.07 0.025 270 / 0.88);
  backdrop-filter: blur(28px) saturate(1.8);
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  font-family: 'Bebas Neue', sans-serif; font-size: 22px;
  letter-spacing: .08em; margin-right: 48px;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; white-space: nowrap;
}
.nav-links { display: flex; align-items: center; gap: 2px; flex: 1; overflow-x: auto; }
.nav-links::-webkit-scrollbar { display: none; }
.nl {
  font-family: 'DM Mono', monospace; font-size: 11px;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--text-dim); cursor: none; border: none; background: transparent;
  padding: 7px 16px; border-radius: 8px;
  transition: color .2s ease, background .2s ease; white-space: nowrap;
}
.nl:hover { color: var(--text); background: oklch(0.68 0.28 295 / 0.08); }
.nl.act { color: var(--violet); }
.nav-right { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.live-pill {
  font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: .05em;
  padding: 5px 12px; border-radius: 100px;
  background: oklch(0.68 0.28 295 / 0.1);
  border: 1px solid oklch(0.68 0.28 295 / 0.32);
  color: var(--violet); display: flex; align-items: center; gap: 7px; white-space: nowrap;
}
.live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--lime); box-shadow: 0 0 8px var(--lime-glow);
  animation: glow-pulse 2s ease infinite; flex-shrink: 0;
}
.nav-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--lime));
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Mono', monospace; font-size: 11px; font-weight: 600;
  color: oklch(0.1 0.01 270); cursor: none; flex-shrink: 0;
}

/* ── Hero ──────────────────────────────────────────────── */
#hero {
  min-height: 100vh; position: relative;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 130px 24px 80px; overflow: hidden; text-align: center;
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(oklch(0.28 0.025 270 / 0.28) 1px, transparent 1px),
    linear-gradient(90deg, oklch(0.28 0.025 270 / 0.28) 1px, transparent 1px);
  background-size: 56px 56px;
  animation: grid-scroll 12s linear infinite;
}
.hero-gradient-tl {
  position: absolute; top: -200px; left: -200px; pointer-events: none;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, oklch(0.68 0.28 295 / 0.18) 0%, transparent 68%);
}
.hero-gradient-br {
  position: absolute; bottom: -150px; right: -100px; pointer-events: none;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, oklch(0.88 0.24 135 / 0.12) 0%, transparent 68%);
}
.hero-gradient-c {
  position: absolute; top: 40%; left: 50%; transform: translate(-50%,-50%); pointer-events: none;
  width: 800px; height: 400px; border-radius: 50%;
  background: radial-gradient(ellipse, oklch(0.82 0.18 200 / 0.06) 0%, transparent 70%);
}
.hero-aurora {
  position: absolute; top: 42%; left: 50%; pointer-events: none;
  width: 880px; height: 880px; border-radius: 50%;
  background: conic-gradient(from 0deg,
    oklch(0.68 0.28 295 / 0.5), oklch(0.82 0.18 200 / 0.35),
    oklch(0.88 0.24 135 / 0.30), oklch(0.68 0.26 340 / 0.30),
    oklch(0.68 0.28 295 / 0.5));
  filter: blur(110px); opacity: .13;
  transform: translate(-50%,-50%);
  animation: aurora-drift 26s linear infinite;
  will-change: transform;
}
.hero-noise {
  position: absolute; inset: 0; pointer-events: none; opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-spot {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(560px circle at var(--sx, 50%) var(--sy, 35%),
    oklch(0.68 0.28 295 / 0.09), transparent 65%);
  transition: background .15s ease-out;
}
.hero-eyebrow {
  font-family: 'DM Mono', monospace; font-size: 11px;
  letter-spacing: .2em; text-transform: uppercase; color: var(--violet);
  display: flex; align-items: center; gap: 14px; justify-content: center;
  animation: fade-up .8s var(--spring) .15s both; margin-bottom: 28px;
}
.hero-eyebrow-line { width: 36px; height: 1px; background: var(--violet); }
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(68px, 11vw, 136px); line-height: .88; letter-spacing: .02em;
  animation: fade-in .5s ease .2s both; margin-bottom: 30px;
}
.ht-mask { display: block; overflow: hidden; padding-bottom: .04em; margin-bottom: -.04em; }
.hero-title-top {
  color: var(--text); display: block;
  animation: title-rise .9s var(--snappy) .3s both;
}
.hero-title-bot {
  display: block;
  background: linear-gradient(120deg, var(--violet) 0%, var(--cyan) 30%, var(--lime) 55%, var(--cyan) 75%, var(--violet) 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: title-rise .9s var(--snappy) .45s both, gradient-pan 9s ease 1.4s infinite;
}
.hero-sub {
  max-width: 580px; font-size: 18px; line-height: 1.68;
  color: var(--text-dim); font-weight: 300;
  animation: fade-up .8s var(--spring) .45s both; margin-bottom: 52px;
}
.hero-actions {
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap; justify-content: center;
  animation: fade-up .8s var(--spring) .6s both; margin-bottom: 80px;
}
.hero-stats {
  display: flex; gap: 0; align-items: stretch;
  animation: fade-up .8s var(--spring) .75s both;
  background: var(--bg-mid); border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
}
.hs { padding: 20px 36px; text-align: center; border-right: 1px solid var(--border); transition: background .25s ease; }
.hs:last-child { border-right: none; }
.hs:hover { background: oklch(0.68 0.28 295 / 0.06); }
.hs-num { font-family: 'Bebas Neue', sans-serif; font-size: 42px; letter-spacing: .02em; line-height: 1; font-variant-numeric: tabular-nums; }
.hs-label { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-faint); margin-top: 4px; }
.fc {
  position: absolute; pointer-events: auto;
  background: oklch(0.13 0.03 268 / 0.85); border: 1px solid var(--border-hi);
  border-radius: 14px; padding: 12px 18px; backdrop-filter: blur(16px);
  font-family: 'DM Mono', monospace; font-size: 11px;
  transition: border-color .25s ease, box-shadow .25s ease, translate .3s var(--spring);
}
.fc:hover {
  border-color: oklch(0.68 0.28 295 / 0.6);
  box-shadow: 0 12px 36px oklch(0 0 0 / .45), 0 0 24px oklch(0.68 0.28 295 / 0.15);
  translate: 0 -4px; z-index: 3;
}
.fc1 { top: 22%; left: 4%; animation: float-y 5s ease infinite; }
.fc2 { top: 32%; right: 4%; animation: float-y2 6s ease infinite; }
.fc3 { bottom: 22%; left: 8%; animation: float-y 7s ease 1s infinite; }
.fc4 { bottom: 28%; right: 6%; animation: float-y2 5.5s ease .5s infinite; }
.fc-label { font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 4px; display: flex; align-items: center; gap: 6px; }
.fc-val { color: var(--text); font-size: 13px; font-weight: 500; }
.fc-dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; margin-right: 5px; }

/* ── Hero scroll cue ───────────────────────────────────── */
.scroll-cue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 2; pointer-events: none;
  animation: fade-in 1s ease 1.8s both;
}
.scroll-cue-mouse {
  width: 22px; height: 34px; border-radius: 12px;
  border: 1.5px solid var(--border-hi); position: relative;
}
.scroll-cue-mouse::after {
  content: ''; position: absolute; top: 6px; left: 50%; margin-left: -1.5px;
  width: 3px; height: 6px; border-radius: 3px; background: var(--violet);
  animation: cue-drop 1.8s ease infinite;
}
.scroll-cue-label {
  font-family: 'DM Mono', monospace; font-size: 8px;
  letter-spacing: .22em; text-transform: uppercase; color: var(--text-faint);
}

/* ── Live ticker marquee ───────────────────────────────── */
.ticker {
  overflow: hidden; position: relative;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: oklch(0.09 0.028 272 / 0.9); padding: 13px 0;
}
.ticker::before, .ticker::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.ticker::before { left: 0;  background: linear-gradient(90deg, var(--bg), transparent); }
.ticker::after  { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.ticker-track {
  display: flex; align-items: center; gap: 0; width: max-content;
  animation: marquee 30s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0 28px;
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--text-dim);
  white-space: nowrap;
}
.ticker-item svg { flex-shrink: 0; }
.ticker-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--violet); opacity: .6; flex-shrink: 0; }

/* ── How It Works ──────────────────────────────────────── */
.pipeline-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; }
.pipeline-grid::before {
  content: ''; position: absolute; top: -1px; left: 8%; right: 8%; height: 2px; z-index: 2;
  background: linear-gradient(90deg, var(--violet), var(--lime), var(--cyan), var(--rose), var(--amber));
  background-size: 200% 100%;
  animation: gradient-pan 8s ease infinite;
  opacity: .7; border-radius: 2px;
}
.pipe-step {
  padding: 32px 24px; cursor: none; border: 1px solid var(--border); background: var(--bg-mid);
  position: relative; overflow: hidden; transition: all .3s var(--spring);
}
.pipe-step.on { border-color: oklch(0.68 0.28 295 / 0.4); }
.pipe-step:first-child { border-radius: 18px 0 0 18px; }
.pipe-step:last-child  { border-radius: 0 18px 18px 0; }
.pipe-step + .pipe-step { border-left: none; }
.pipe-step::before { content: ''; position: absolute; inset: 0; opacity: 0; transition: opacity .3s ease; }
.pipe-step:hover { border-color: oklch(0.68 0.28 295 / 0.45); z-index: 1; transform: translateY(-6px) scale(1.02); border-radius: 18px !important; box-shadow: 0 20px 48px oklch(0 0 0 / .4); }
.pipe-step:hover::before { opacity: 1; }
.ps1::before { background: radial-gradient(circle at 50% 0%, oklch(0.68 0.28 295 / 0.12), transparent 70%); }
.ps2::before { background: radial-gradient(circle at 50% 0%, oklch(0.88 0.24 135 / 0.10), transparent 70%); }
.ps3::before { background: radial-gradient(circle at 50% 0%, oklch(0.82 0.18 200 / 0.10), transparent 70%); }
.ps4::before { background: radial-gradient(circle at 50% 0%, oklch(0.68 0.26 340 / 0.10), transparent 70%); }
.ps5::before { background: radial-gradient(circle at 50% 0%, oklch(0.80 0.20 68  / 0.10), transparent 70%); }
.ps-num { font-family: 'Bebas Neue', sans-serif; font-size: 72px; line-height: 1; letter-spacing: .04em; color: var(--border); transition: color .3s ease; margin-bottom: 8px; }
.pipe-step:hover .ps-num { color: var(--violet); }
.ps-icon {
  width: 46px; height: 46px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px; border: 1px solid var(--border);
  background: var(--bg-raised);
  transition: transform .3s var(--spring), box-shadow .3s ease, border-color .3s ease;
}
.pipe-step:hover .ps-icon { transform: scale(1.08) rotate(-4deg); }
.ps-title { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.ps-desc { font-size: 12px; line-height: 1.7; color: var(--text-dim); }
.ps-time { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--violet); margin-top: 14px; letter-spacing: .06em; display: flex; align-items: center; gap: 6px; }

/* ── Projects ──────────────────────────────────────────── */
.filter-bar { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 36px; }
.ftab {
  font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: .06em; text-transform: uppercase;
  padding: 7px 18px; border-radius: 100px; border: 1px solid var(--border); background: transparent;
  color: var(--text-faint); cursor: none; transition: all .2s var(--spring);
}
.ftab:hover { border-color: var(--violet); color: var(--violet); }
.ftab.on { background: var(--violet-dim); border-color: oklch(0.68 0.28 295 / 0.4); color: var(--violet); }
.proj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.proj-card {
  border-radius: 20px; overflow: hidden; cursor: none;
  background: var(--bg-mid); border: 1px solid var(--border);
  transition: transform .3s var(--spring), border-color .2s ease, box-shadow .3s ease; position: relative;
}
.proj-card::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 50%),
    oklch(0.68 0.28 295 / 0.10), transparent 55%);
  opacity: 0; transition: opacity .3s ease;
}
.proj-card:hover::after { opacity: 1; }
.proj-card:hover { transform: translateY(-8px) scale(1.01); border-color: oklch(0.68 0.28 295 / 0.4); box-shadow: 0 24px 56px oklch(0 0 0 / .45); }
.proj-thumb { width: 100%; aspect-ratio: 16/9; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; font-size: 88px; }
.proj-thumb-art { transition: transform .5s var(--spring); }
.proj-card:hover .proj-thumb-art { transform: scale(1.12) rotate(-2deg); }
.proj-scan {
  position: absolute; left: 0; right: 0; height: 2px; top: -10%; z-index: 1; opacity: 0;
  background: linear-gradient(90deg, transparent, oklch(0.68 0.28 295 / 0.7), transparent);
  box-shadow: 0 0 14px var(--violet-glow);
}
.proj-card:hover .proj-scan { opacity: 1; animation: scan-sweep 1.6s linear infinite; }
.proj-thumb-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, var(--bg-mid) 100%); }
.proj-ar-hover {
  position: absolute; inset: 0; background: oklch(0.68 0.28 295 / 0.82);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .25s ease;
  font-family: 'DM Mono', monospace; font-size: 12px;
  letter-spacing: .12em; text-transform: uppercase; color: #fff; gap: 8px;
}
.proj-card:hover .proj-ar-hover { opacity: 1; }
.proj-stage-badge { position: absolute; top: 12px; right: 12px; }
.proj-body { padding: 18px; }
.proj-title { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.proj-loc { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--text-faint); margin-bottom: 14px; display: flex; align-items: center; gap: 5px; flex-wrap: wrap; }
.proj-bar { margin-bottom: 12px; }
.proj-bar-track { height: 4px; background: var(--bg-float); border-radius: 99px; overflow: hidden; }
.proj-bar-fill { height: 100%; border-radius: 99px; transition: width 1.2s var(--snappy); }
.proj-meta { display: flex; justify-content: space-between; align-items: center; }
.proj-funded { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: .02em; }
.proj-views { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--text-faint); display: flex; align-items: center; gap: 5px; }

/* ── AR Slider ─────────────────────────────────────────── */
.ar-wrap { position: relative; border-radius: 24px; overflow: hidden; aspect-ratio: 21/9; border: 1px solid var(--border-hi); cursor: none; user-select: none; }
.ar-before, .ar-after { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 180px; }
.ar-after { clip-path: inset(0 var(--clip,50%) 0 0); }
.ar-divider { position: absolute; top: 0; bottom: 0; width: 2px; background: rgba(255,255,255,.8); display: flex; align-items: center; justify-content: center; transition: left 0s; }
.ar-handle { width: 44px; height: 44px; border-radius: 50%; background: #fff; border: 2.5px solid var(--violet); display: flex; align-items: center; justify-content: center; font-size: 16px; box-shadow: 0 0 24px var(--violet-glow); flex-shrink: 0; }
.ar-lbl { position: absolute; top: 16px; font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; padding: 4px 12px; border-radius: 4px; background: oklch(0 0 0 / .65); }
.ar-lbl-l { left: 16px; color: var(--text-dim); }
.ar-lbl-r { right: 16px; color: var(--lime); }
.ar-hint { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); background: oklch(0 0 0 / .5); padding: 6px 16px; border-radius: 100px; pointer-events: none; }

/* ── Funding ───────────────────────────────────────────── */
.fund-card { background: var(--bg-mid); border: 1px solid var(--border); border-radius: 20px; padding: 24px; cursor: none; transition: all .3s var(--spring); }
.fund-card:hover { border-color: oklch(0.88 0.24 135 / 0.4); transform: translateY(-4px); box-shadow: 0 20px 48px oklch(0 0 0 / .4); }
.fund-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px; border: 1px solid var(--border); background: var(--bg-raised);
  transition: transform .3s var(--spring);
}
.fund-card:hover .fund-icon { transform: scale(1.08) rotate(-4deg); }
.fund-title { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.fund-desc { font-size: 13px; color: var(--text-dim); line-height: 1.6; margin-bottom: 20px; }
.fund-amounts { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.fund-raised { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: .02em; }
.fund-target { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--text-faint); }
.fund-track { height: 6px; background: var(--bg-float); border-radius: 99px; overflow: hidden; margin-bottom: 10px; }
.fund-fill { height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--lime), var(--cyan)); transform: scaleX(0); transform-origin: left; }
.fund-fill.animated { transition: transform 1.4s var(--snappy); }
.fund-meta { display: flex; justify-content: space-between; font-family: 'DM Mono', monospace; font-size: 10px; color: var(--text-faint); }

/* ── Community ─────────────────────────────────────────── */
.contrib-row { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-radius: 12px; transition: background .2s ease; cursor: none; }
.contrib-row:hover { background: var(--bg-raised); }
.cr-rank { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: .04em; width: 32px; text-align: center; flex-shrink: 0; }
.cr-avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'DM Mono', monospace; font-size: 12px; font-weight: 600; color: oklch(0.1 0.01 270); flex-shrink: 0; }
.cr-name { font-size: 14px; font-weight: 500; }
.cr-stat { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--text-faint); margin-top: 2px; }
.cr-rep { margin-left: auto; font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: .02em; }
.act-item { display: flex; gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--border); }
.act-item:last-child { border-bottom: none; }
.act-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; margin-top: 5px; }
.act-text { font-size: 13px; color: var(--text-dim); line-height: 1.6; }
.act-time { font-family: 'DM Mono', monospace; font-size: 9px; color: var(--text-faint); margin-top: 3px; }

/* ── Submit ────────────────────────────────────────────── */
.upload-zone { border: 2px dashed var(--border-hi); border-radius: 20px; padding: 56px 40px; text-align: center; cursor: none; transition: all .3s var(--spring); background: var(--bg-mid); position: relative; overflow: hidden; }
.upload-zone:hover, .upload-zone.drag { border-color: var(--violet); background: var(--violet-dim); }
.upload-zone:hover .uz-icon { transform: scale(1.12) translateY(-6px); }
.uz-icon {
  width: 68px; height: 68px; border-radius: 20px; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-hi); background: var(--bg-raised);
  color: var(--violet); transition: transform .35s var(--spring), color .3s ease, border-color .3s ease;
}
.upload-zone:hover .uz-icon, .upload-zone.drag .uz-icon { border-color: var(--violet); }
.uz-icon.ok { color: var(--lime); border-color: oklch(0.88 0.24 135 / 0.5); }
.uz-title { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.uz-sub { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--text-faint); letter-spacing: .05em; }
.prompt-box { background: var(--bg-raised); border: 1px solid var(--border); border-radius: 16px; padding: 18px 22px; transition: border-color .2s ease; }
.prompt-box:focus-within { border-color: var(--violet); }
.pb-label { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: var(--violet); margin-bottom: 10px; }
.pb-input { width: 100%; background: transparent; border: none; outline: none; color: var(--text); font-size: 15px; font-family: 'Instrument Sans', sans-serif; resize: none; line-height: 1.6; }
.pb-input::placeholder { color: var(--text-faint); }
.wiz-step { display: flex; align-items: flex-start; gap: 16px; padding: 20px; border-radius: 14px; background: var(--bg-mid); border: 1px solid var(--border); cursor: none; transition: all .25s var(--spring); }
.wiz-step:hover { border-color: oklch(0.68 0.28 295 / 0.35); background: var(--bg-raised); }
.wiz-num { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', sans-serif; font-size: 18px; flex-shrink: 0; }
.wn-v { background: var(--violet-dim); color: var(--violet); border: 1px solid oklch(0.68 0.28 295 / 0.3); }
.wiz-title { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.wiz-desc { font-size: 12px; color: var(--text-dim); line-height: 1.6; }

/* ── Footer ────────────────────────────────────────────── */
#footer { border-top: 1px solid var(--border); background: var(--bg-mid); padding: 60px 40px 40px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-brand { font-family: 'Bebas Neue', sans-serif; font-size: 36px; letter-spacing: .06em; background: linear-gradient(135deg, var(--violet), var(--cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 8px; }
.footer-tag { font-size: 14px; color: var(--text-dim); margin-bottom: 48px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.fcol-title { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 18px; }
.flink { display: block; font-size: 14px; color: var(--text-dim); cursor: none; padding: 5px 0; transition: color .2s ease; background: none; border: none; text-align: left; }
.flink:hover { color: var(--violet); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; border-top: 1px solid var(--border); font-family: 'DM Mono', monospace; font-size: 10px; color: var(--text-faint); letter-spacing: .04em; flex-wrap: wrap; gap: 12px; }
.f-status { display: flex; align-items: center; gap: 7px; }
.f-status-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 7px var(--lime-glow); animation: glow-pulse 2s ease infinite; }
.social-btn {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-raised); border: 1px solid var(--border);
  color: var(--text-dim); cursor: none;
  transition: color .2s ease, border-color .2s ease, transform .25s var(--spring), box-shadow .25s ease;
}
.social-btn:hover {
  color: var(--violet); border-color: oklch(0.68 0.28 295 / 0.5);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px oklch(0 0 0 / .35), 0 0 16px oklch(0.68 0.28 295 / 0.12);
}

/* ══ RESPONSIVE ════════════════════════════════════════════════════════════ */

/* ── ≤ 1024px: shrink pipeline to 3-col, projects to 2-col ── */
@media (max-width: 1024px) {
  .pipeline-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .pipe-step { border-left: 1px solid var(--border) !important; border-radius: 14px !important; }
  .pipe-step:hover { border-radius: 14px !important; }
  .pipe-step:first-child { border-radius: 14px !important; }
  .pipe-step:last-child  { border-radius: 14px !important; }
  .proj-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 28px; }
}

/* ── ≤ 768px: tablet ── */
@media (max-width: 768px) {
  /* Filter / tab bars — scroll horizontally instead of wrapping */
  .filter-bar { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 4px; }
  .filter-bar::-webkit-scrollbar { display: none; }
  .ftab { white-space: nowrap; flex-shrink: 0; }

  /* Nav */
  #nav { padding: 14px 20px; }
  .nav-brand { font-size: 20px; margin-right: 10px; }
  .nav-links { display: none; }
  .live-pill { display: none; }
  .nav-right { gap: 8px; }

  /* Hero */
  #hero { padding: 110px 20px 72px; }
  .hero-aurora { width: 520px; height: 520px; filter: blur(80px); }
  .scroll-cue { display: none; }
  .ticker-item { padding: 0 18px; font-size: 9px; }
  .hero-title { font-size: clamp(52px, 13vw, 96px); }
  .hero-sub { font-size: 16px; margin-bottom: 40px; padding: 0 4px; }
  .hero-actions { margin-bottom: 48px; flex-wrap: wrap; justify-content: center; }
  .fc { display: none; }
  .hero-stats { flex-wrap: wrap; }
  .hs { padding: 16px 22px; flex: 1 1 calc(50% - 1px); }
  .hs:nth-child(odd):not(:last-child) { border-right: 1px solid var(--border); }
  .hs:nth-child(1), .hs:nth-child(2) { border-bottom: 1px solid var(--border); }
  .hs:last-child { flex: 1 1 100%; border-right: none; border-bottom: none; }

  /* Pipeline */
  .pipeline-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .pipe-step { border-left: 1px solid var(--border) !important; border-radius: 14px !important; }
  .pipe-step:hover { border-radius: 14px !important; }

  /* Projects home grid */
  .proj-grid { grid-template-columns: 1fr; }

  /* AR slider */
  .ar-wrap { aspect-ratio: 4/3; }
  .ar-before, .ar-after { font-size: 120px; }

  /* Sections */
  .section { padding: 80px 20px; }
  .section-wide { padding: 80px 20px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  #footer { padding: 48px 20px 36px; }
  .footer-tag { margin-bottom: 32px; }
}

/* ── ≤ 480px: small mobile ── */
@media (max-width: 480px) {
  /* Nav */
  #nav { padding: 12px 16px; }
  .nav-right .btn { padding: 7px 12px; font-size: 9px; }

  /* Hero */
  #hero { padding: 100px 16px 56px; }
  .hero-title { font-size: clamp(48px, 16vw, 68px); }
  .hero-sub { font-size: 15px; margin-bottom: 32px; }
  .hero-eyebrow { font-size: 9px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-actions .btn { justify-content: center; width: 100%; }
  .hs { padding: 12px 14px; }
  .hs-num { font-size: 30px; }
  .hs-label { font-size: 8px; }

  /* Pipeline */
  .pipeline-grid { grid-template-columns: 1fr; gap: 8px; }

  /* Sections */
  .section { padding: 60px 16px; }
  .section-wide { padding: 60px 16px; }

  /* AR slider */
  .ar-wrap { aspect-ratio: 1/1; }
  .ar-hint { display: none; }
  .ar-before, .ar-after { font-size: 90px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}
