/* ===== $FINN — finn mode ===== */
:root {
  --bg: #050805;
  --bg2: #0a110a;
  --panel: #0d150d;
  --line: #1c2a1c;
  --lime: #c8f52e;
  --green: #2fd651;
  --pink: #f27db8;
  --text: #eef3e8;
  --muted: #8fa08a;
  --display: 'Anton', sans-serif;
  --body: 'Space Grotesk', sans-serif;
  --mono: 'JetBrains Mono', monospace;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  overflow-x: hidden;
  line-height: 1.6;
}
a { color: var(--lime); text-decoration: none; }
a:hover { color: var(--pink); }
::selection { background: var(--lime); color: #000; }

.noise {
  position: fixed; inset: 0; z-index: 999; pointer-events: none; opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===== nav ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; gap: 24px;
  padding: 14px 28px;
  background: rgba(5,8,5,.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-brand { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-size: 22px; letter-spacing: .04em; color: var(--lime); }
.nav-avatar { width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--lime); }
.nav-links { display: flex; gap: 22px; margin-left: auto; }
.nav-links a { color: var(--muted); font-size: 15px; font-weight: 500; }
.nav-links a:hover { color: var(--lime); }
.nav-buy { margin-left: 6px; }
@media (max-width: 640px) { .nav-links { display: none; } .nav-buy { margin-left: auto; } }

/* ===== buttons ===== */
.btn {
  display: inline-block; padding: 12px 22px; border-radius: 10px;
  font-family: var(--body); font-weight: 700; font-size: 15px;
  border: 1px solid transparent; cursor: pointer; transition: transform .15s, box-shadow .15s, background .15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-lime { background: var(--lime); color: #0a0f04 !important; box-shadow: 0 0 24px rgba(200,245,46,.25); }
.btn-lime:hover { box-shadow: 0 0 40px rgba(200,245,46,.5); }
.btn-ghost { background: rgba(255,255,255,.04); color: var(--text) !important; border-color: var(--line); }
.btn-ghost:hover { border-color: var(--lime); color: var(--lime) !important; }

/* ===== hero ===== */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 120px 20px 80px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background: url('/img/banner.jpg') center / cover no-repeat;
  filter: saturate(1.2) brightness(.85);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 42%, rgba(5,8,5,.18) 0%, rgba(5,8,5,.82) 68%, var(--bg) 100%),
    linear-gradient(to bottom, rgba(5,8,5,.65), transparent 30%, transparent 60%, var(--bg) 96%);
}
.hero-inner { max-width: 880px; }
.kicker {
  font-family: var(--mono); font-size: 14px; letter-spacing: .12em; text-transform: lowercase;
  color: var(--lime); margin-bottom: 10px;
}
.pink { color: var(--pink); }
.hero-title {
  font-family: var(--display);
  font-size: clamp(88px, 19vw, 230px);
  line-height: .88; letter-spacing: .01em;
  color: var(--text);
  text-shadow: 0 0 60px rgba(200,245,46,.25);
}
.hero-title .mode {
  color: transparent;
  -webkit-text-stroke: 2px var(--lime);
  text-shadow: 0 0 80px rgba(200,245,46,.35);
}
.hero-sub { margin: 26px auto 30px; max-width: 560px; color: var(--muted); font-size: 17px; }
.hero-sub b { color: var(--text); }

.ca-pill {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(13,21,13,.85); border: 1px solid var(--line); border-radius: 12px;
  padding: 10px 12px 10px 16px; margin-bottom: 26px; cursor: pointer;
  transition: border-color .2s;
  max-width: 96vw;
}
.ca-pill:hover { border-color: var(--lime); }
.ca-label { font-family: var(--mono); color: var(--pink); font-weight: 700; font-size: 13px; }
.ca-pill code { font-family: var(--mono); font-size: 14px; color: var(--text); overflow: hidden; text-overflow: ellipsis; }
.copy-btn {
  font-family: var(--mono); font-size: 12px; font-weight: 700;
  background: var(--lime); color: #0a0f04; border: none; border-radius: 7px;
  padding: 7px 12px; cursor: pointer;
}
.copy-btn.copied { background: var(--pink); }
@media (max-width: 560px) { .ca-pill code { font-size: 11px; } }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 36px; }

.hero-chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.chip {
  display: flex; flex-direction: column; gap: 2px;
  background: rgba(13,21,13,.8); border: 1px solid var(--line); border-radius: 12px;
  padding: 12px 20px; min-width: 110px;
}
.chip-num { font-family: var(--display); font-size: 24px; color: var(--lime); letter-spacing: .03em; }
.chip-label { font-size: 12px; color: var(--muted); }

.scroll-hint {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  color: var(--lime); opacity: .6; animation: bob 1.8s ease-in-out infinite;
}
@keyframes bob { 50% { transform: translate(-50%, 8px); } }

/* ===== marquee ===== */
.marquee-wrap { padding: 10px 0 30px; background: var(--bg); overflow: hidden; }
.marquee { overflow: hidden; margin: 8px 0; -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent); }
.marquee-track { display: flex; gap: 12px; width: max-content; animation: slide 70s linear infinite; }
.marquee-rev .marquee-track { animation-direction: reverse; }
.marquee-track img {
  height: 140px; width: auto; border-radius: 10px; border: 1px solid var(--line);
  filter: saturate(1.05);
}
@keyframes slide { to { transform: translateX(-50%); } }

/* ===== sections ===== */
.section { max-width: 1080px; margin: 0 auto; padding: 90px 24px; }
.section-title {
  font-family: var(--display); font-size: clamp(42px, 7vw, 72px);
  letter-spacing: .02em; color: var(--text); margin-bottom: 14px;
}
.section-title::after { content: ''; display: block; width: 74px; height: 5px; background: var(--lime); margin-top: 12px; border-radius: 3px; }
.section-sub { color: var(--muted); max-width: 640px; margin-bottom: 48px; font-size: 17px; }
.section-sub b { color: var(--text); }

/* timeline */
.timeline { border-left: 2px solid var(--line); margin-left: 8px; padding-left: 34px; display: flex; flex-direction: column; gap: 38px; }
.tl-item { position: relative; }
.tl-item::before {
  content: ''; position: absolute; left: -41px; top: 6px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--bg); border: 3px solid var(--lime);
}
.tl-hot::before { background: var(--pink); border-color: var(--pink); box-shadow: 0 0 18px var(--pink); }
.tl-date { font-family: var(--mono); font-size: 13px; color: var(--pink); letter-spacing: .08em; margin-bottom: 4px; }
.tl-body h3 { font-family: var(--display); font-size: 26px; letter-spacing: .03em; margin-bottom: 6px; }
.tl-body p { color: var(--muted); max-width: 560px; }
.tl-body code { font-family: var(--mono); color: var(--lime); font-size: 14px; }
.tl-body em { color: var(--text); font-style: italic; }

.quotes { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 58px; }
.quotes blockquote {
  font-family: var(--display); font-size: 20px; letter-spacing: .04em;
  color: var(--lime); background: var(--panel); border: 1px solid var(--line);
  padding: 16px 22px; border-radius: 12px;
  transform: rotate(-1deg);
}
.quotes blockquote:nth-child(even) { transform: rotate(1.2deg); color: var(--pink); }

/* ===== early ===== */
.early { text-align: center; }
.early-kicker { font-family: var(--mono); color: var(--muted); font-size: 16px; letter-spacing: .1em; }
.early-num {
  font-family: var(--display);
  font-size: clamp(120px, 26vw, 320px); line-height: 1;
  color: var(--lime); text-shadow: 0 0 110px rgba(200,245,46,.4);
  margin: 6px 0;
}
.early-line { margin-top: 18px; font-size: 20px; color: var(--text); font-weight: 700; }
.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px; margin-top: 60px; text-align: left;
}
.stat { background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 22px; }
.stat-num { display: block; font-family: var(--display); font-size: 38px; color: var(--text); letter-spacing: .02em; }
.stat-label { color: var(--muted); font-size: 14px; }

/* ===== gallery ===== */
.gallery { columns: 4 240px; column-gap: 12px; }
.gallery img {
  width: 100%; margin-bottom: 12px; border-radius: 10px; border: 1px solid var(--line);
  cursor: zoom-in; transition: transform .18s, box-shadow .18s;
  display: block;
}
.gallery img:hover { transform: scale(1.02); box-shadow: 0 6px 30px rgba(200,245,46,.18); }
.gallery-actions { display: flex; gap: 14px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }

/* ===== steps ===== */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.step { background: var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: 28px; }
.step-num { font-family: var(--mono); color: var(--pink); font-weight: 700; margin-bottom: 10px; }
.step h3 { font-family: var(--display); letter-spacing: .04em; font-size: 24px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15px; }
.ca-mini {
  margin-top: 14px; font-family: var(--mono); font-size: 14px; color: var(--lime);
  background: rgba(200,245,46,.07); border: 1px dashed rgba(200,245,46,.4);
  border-radius: 8px; padding: 8px 12px; display: inline-block; cursor: pointer;
}
.ca-mini:hover { background: rgba(200,245,46,.14); }

/* ===== footer ===== */
.footer { border-top: 1px solid var(--line); padding: 60px 24px 80px; text-align: center; background: var(--bg2); }
.footer-avatar { width: 64px; height: 64px; border-radius: 50%; border: 3px solid var(--lime); margin-bottom: 18px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; margin-bottom: 26px; }
.footer-links a { color: var(--muted); font-size: 15px; }
.footer-links a:hover { color: var(--lime); }
.footer-disclaimer { max-width: 640px; margin: 0 auto; color: #5a6656; font-size: 12.5px; line-height: 1.7; }

/* ===== lightbox ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center;
  background: rgba(3,5,3,.93); backdrop-filter: blur(6px);
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 88vw; max-height: 86vh; border-radius: 12px; border: 1px solid var(--line); }
.lb-close, .lb-prev, .lb-next {
  position: absolute; background: rgba(255,255,255,.06); color: var(--text);
  border: 1px solid var(--line); border-radius: 50%; width: 46px; height: 46px;
  font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.lb-close { top: 22px; right: 22px; }
.lb-prev { left: 18px; top: 50%; transform: translateY(-50%); font-size: 30px; }
.lb-next { right: 18px; top: 50%; transform: translateY(-50%); font-size: 30px; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { border-color: var(--lime); color: var(--lime); }

/* ===== reveal ===== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
}
