:root {
  --bg: #080607;
  --paper: #fff6df;
  --red: #ff2a1f;
  --red2: #ff533a;
  --acid: #c8ff24;
  --yellow: #ffe600;
  --violet: #a662ff;
  --cyan: #68efff;
  --ink: #0c0809;
  --muted: #c8bbb5;
  --line: rgba(255, 246, 223, 0.2);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-snap-type: y proximity; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    radial-gradient(circle at 10% 15%, rgba(255,42,31,.23), transparent 27%),
    radial-gradient(circle at 86% 75%, rgba(166,98,255,.16), transparent 30%),
    linear-gradient(140deg, #070607 0%, #12070a 52%, #050506 100%);
}

::selection { background: var(--acid); color: var(--ink); }
a { color: inherit; }

.noise {
  position: fixed;
  inset: 0;
  opacity: .12;
  pointer-events: none;
  z-index: 99;
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
}
.cursor-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,42,31,.16), transparent 68%);
  transition: opacity .2s;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 68px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;
  border-bottom: 1px solid rgba(255,255,255,.09);
  background: linear-gradient(180deg, rgba(6,4,5,.92), rgba(6,4,5,.35));
  backdrop-filter: blur(14px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .15em;
  text-decoration: none;
}
.brand-dot {
  width: 15px;
  height: 15px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255,42,31,.15), 0 0 24px var(--red);
}
.toplinks { display: flex; gap: 22px; }
.toplinks a {
  text-decoration: none;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  color: #ded3cd;
  transition: .2s ease;
}
.toplinks a:hover { color: var(--acid); transform: translateY(-1px); }

.page-dots {
  position: fixed;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dot {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  background: rgba(8,6,7,.65);
  transition: .2s ease;
}
.dot span { font-size: 9px; font-weight: 900; letter-spacing: .05em; }
.dot:hover, .dot.active { background: var(--red); border-color: var(--red); transform: scale(1.1); }

.panel {
  position: relative;
  min-height: 100vh;
  scroll-snap-align: start;
  overflow: hidden;
  padding: 100px 6vw 64px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.panel::after {
  content: attr(data-page);
  position: absolute;
  right: 4vw;
  bottom: -4vw;
  font-size: clamp(130px, 22vw, 360px);
  line-height: .8;
  font-weight: 900;
  letter-spacing: -.08em;
  color: rgba(255,255,255,.025);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .2em;
  color: var(--acid);
}

.hero {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  align-items: center;
  gap: 2vw;
  background:
    linear-gradient(90deg, rgba(255,42,31,.09), transparent 34%),
    radial-gradient(circle at 72% 42%, rgba(255,230,0,.07), transparent 31%);
}
.hero-copy { z-index: 3; }
.hero h1 {
  margin: 0;
  font-size: clamp(78px, 12vw, 210px);
  line-height: .72;
  letter-spacing: -.09em;
  font-weight: 1000;
  color: var(--paper);
  text-shadow: 7px 7px 0 var(--red), 14px 14px 0 rgba(255,230,0,.13);
}
.hero-kicker {
  margin: 34px 0 18px;
  font-size: clamp(24px, 3vw, 48px);
  line-height: .94;
  font-weight: 900;
  letter-spacing: -.045em;
}
.hero-sub {
  max-width: 580px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.btn {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  border: 2px solid var(--paper);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translate(-3px,-3px); box-shadow: 6px 6px 0 var(--paper); }
.btn-primary { background: var(--red); border-color: var(--red); color: #fff; }
.btn-primary:hover { box-shadow: 6px 6px 0 var(--acid); }
.btn-ghost { background: transparent; }
.btn-small { min-height: 42px; padding: 0 16px; border-width: 1px; }

.hero-art {
  position: relative;
  height: min(78vh, 820px);
  display: grid;
  place-items: center;
  isolation: isolate;
}
.hero-art::before {
  content: "";
  position: absolute;
  width: 71%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--red);
  z-index: -2;
  box-shadow: 0 0 80px rgba(255,42,31,.45);
}
.hero-art::after {
  content: "";
  position: absolute;
  width: 52%;
  aspect-ratio: 1;
  border: 14px solid var(--acid);
  border-radius: 50%;
  z-index: -1;
  transform: translate(17%, -10%);
}
.hero-art img {
  width: min(100%, 860px);
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 25px 35px rgba(0,0,0,.45));
  transform: translateY(4%);
}
.orbit-ring {
  position: absolute;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  z-index: -1;
  animation: spin 20s linear infinite;
}
.ring-one { width: 86%; aspect-ratio: 1/.42; transform: rotate(-9deg); }
.ring-two { width: 63%; aspect-ratio: 1/.58; transform: rotate(23deg); animation-direction: reverse; }
.stamp {
  position: absolute;
  right: 3%;
  bottom: 11%;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .12em;
  color: var(--ink);
  background: var(--yellow);
  border: 3px solid var(--ink);
  transform: rotate(10deg);
  box-shadow: 8px 8px 0 var(--violet);
}
.scroll-cue {
  position: absolute;
  left: 6vw;
  bottom: 28px;
  text-decoration: none;
  font-size: 10px;
  letter-spacing: .2em;
  font-weight: 900;
  color: var(--muted);
}
.scroll-cue::after { content: " ↓"; color: var(--acid); }

.launch {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: 5vw;
  background:
    linear-gradient(135deg, rgba(166,98,255,.12), transparent 46%),
    linear-gradient(315deg, rgba(200,255,36,.07), transparent 40%);
}
.launch-visual { position: relative; }
.image-frame {
  position: relative;
  border: 2px solid var(--paper);
  box-shadow: 18px 18px 0 var(--red), -14px -14px 0 var(--violet);
  transform: rotate(-1.4deg);
  overflow: hidden;
  background: #151012;
}
.image-frame::before {
  content: "DORAIN // FIELD RECORD 02";
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 8px 10px;
  background: var(--acid);
  color: var(--ink);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .14em;
}
.image-frame img { width: 100%; display: block; transform: scale(1.02); }
.launch h2, .chart-head h2, .banner h2 {
  margin: 0;
  font-size: clamp(58px, 8vw, 135px);
  line-height: .78;
  letter-spacing: -.075em;
  font-weight: 1000;
}
.section-lead {
  max-width: 700px;
  margin: 28px 0;
  font-size: clamp(16px, 1.6vw, 22px);
  line-height: 1.55;
  color: #d9cbc5;
}
.route { display: flex; align-items: stretch; gap: 8px; margin: 26px 0 30px; }
.route-card {
  flex: 1;
  min-width: 0;
  padding: 18px;
  display: flex;
  gap: 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.04);
}
.route-card.acid { background: var(--acid); color: var(--ink); border-color: var(--acid); }
.route-num { font-size: 11px; font-weight: 900; opacity: .7; }
.route h3 { margin: 0 0 7px; font-size: 16px; }
.route p { margin: 0; color: inherit; opacity: .68; font-size: 12px; line-height: 1.45; }
.route-arrow { display: grid; place-items: center; color: var(--red); font-size: 26px; font-weight: 900; }
.text-link { font-weight: 900; font-size: 12px; letter-spacing: .08em; text-decoration-thickness: 2px; text-underline-offset: 6px; }
.text-link:hover { color: var(--yellow); }

.chart-section {
  display: flex;
  flex-direction: column;
  gap: 28px;
  background:
    radial-gradient(circle at 18% 90%, rgba(104,239,255,.09), transparent 28%),
    linear-gradient(180deg, #080607, #0c070c);
}
.chart-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.chart-head h2 { font-size: clamp(56px, 7vw, 110px); }
.chart-shell {
  position: relative;
  width: 100%;
  min-height: 560px;
  height: min(66vh, 760px);
  border: 2px solid rgba(255,255,255,.75);
  background: #050505;
  box-shadow: 12px 12px 0 var(--red);
  overflow: hidden;
}
.chart-shell iframe { width: 100%; height: 100%; border: 0; display: block; }
.chart-label {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 3;
  padding: 8px 10px;
  background: var(--red);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .14em;
  pointer-events: none;
}
.chart-fallback { padding: 30px; }
.risk-note {
  margin: 0;
  max-width: 820px;
  font-size: 10px;
  line-height: 1.55;
  color: #9c918d;
  letter-spacing: .12em;
}

.links-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  background:
    linear-gradient(180deg, rgba(255,42,31,.06), transparent 30%),
    radial-gradient(circle at 77% 72%, rgba(255,230,0,.09), transparent 25%);
}
.banner {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
}
.banner img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  display: block;
  opacity: .62;
  filter: contrast(1.12) saturate(1.2);
}
.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,5,6,.98) 0%, rgba(7,5,6,.34) 55%, rgba(255,42,31,.16) 100%);
}
.banner-text {
  position: absolute;
  z-index: 2;
  left: 3vw;
  top: 50%;
  transform: translateY(-50%);
}
.banner h2 { font-size: clamp(64px, 8vw, 130px); }
.link-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.mega-link {
  min-height: 170px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--ink);
  text-decoration: none;
  border: 2px solid var(--ink);
  transition: transform .16s ease, box-shadow .16s ease;
}
.mega-link:hover { transform: translate(-5px,-5px); box-shadow: 7px 7px 0 var(--paper); }
.mega-link span { font-size: 11px; font-weight: 900; opacity: .58; }
.mega-link strong { font-size: clamp(18px, 2vw, 30px); letter-spacing: -.03em; }
.mega-link small { font-size: 10px; font-weight: 800; overflow-wrap: anywhere; }
.mega-link.red { background: var(--red2); }
.mega-link.yellow { background: var(--yellow); }
.mega-link.green { background: var(--acid); }
.mega-link.violet { background: var(--violet); color: #fff; }
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 6px;
}
.footer-mark { font-size: 28px; font-weight: 1000; letter-spacing: -.05em; }
.footer p { margin: 0; font-size: 9px; letter-spacing: .13em; color: #928885; }
.footer a { font-size: 10px; font-weight: 900; letter-spacing: .1em; text-decoration: none; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 1080px) {
  .hero, .launch { grid-template-columns: 1fr; }
  .hero { padding-top: 120px; }
  .hero-copy { padding-right: 12vw; }
  .hero-art { height: 58vh; min-height: 480px; }
  .launch { gap: 70px; }
  .launch-visual { max-width: 720px; }
  .link-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  html { scroll-snap-type: none; }
  .panel { min-height: auto; padding: 96px 20px 58px; }
  .topbar { height: 60px; padding: 0 18px; }
  .toplinks a:nth-child(1), .toplinks a:nth-child(3) { display: none; }
  .toplinks { gap: 12px; }
  .page-dots { right: 8px; }
  .dot { width: 31px; height: 31px; }
  .hero-copy { padding-right: 30px; }
  .hero h1 { font-size: clamp(74px, 25vw, 124px); }
  .hero-kicker { font-size: 31px; }
  .hero-art { min-height: 410px; height: 52vh; }
  .hero-art::before { width: 86%; }
  .hero-art::after { width: 67%; border-width: 8px; }
  .stamp { width: 86px; height: 86px; font-size: 9px; right: 0; }
  .scroll-cue { display: none; }
  .launch { gap: 52px; }
  .image-frame { box-shadow: 10px 10px 0 var(--red), -8px -8px 0 var(--violet); }
  .route { flex-direction: column; }
  .route-arrow { transform: rotate(90deg); height: 18px; }
  .chart-head { align-items: flex-start; flex-direction: column; }
  .chart-shell { min-height: 520px; height: 70vh; box-shadow: 7px 7px 0 var(--red); }
  .banner { min-height: 340px; }
  .banner img { min-height: 340px; object-position: center; }
  .link-grid { grid-template-columns: 1fr; }
  .mega-link { min-height: 128px; }
  .footer { align-items: flex-start; flex-direction: column; }
}

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