:root {
  --bg: #07060b;
  --bg-2: #0d0a14;
  --ink: #f7f3ff;
  --muted: #a8a1b4;
  --line: rgba(255,255,255,.11);
  --purple: #7d38ff;
  --pink: #ff3ec9;
  --cyan: #19d9ff;
  --gold: #ffd45a;
  --gold-2: #ff9f1c;
  --green: #93ff62;
  --display: "Unbounded", system-ui, sans-serif;
  --mono: "DM Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 75% 5%, rgba(255, 196, 73, .07), transparent 28rem),
    radial-gradient(circle at 18% 42%, rgba(125, 56, 255, .10), transparent 34rem),
    var(--bg);
  font-family: var(--mono);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img { display: block; max-width: 100%; }

::selection { background: var(--gold); color: #111; }

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

.ambient {
  position: fixed;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  opacity: .08;
  z-index: -1;
}
.ambient-one { background: var(--purple); top: 25vh; left: -18rem; }
.ambient-two { background: var(--cyan); right: -22rem; bottom: 6vh; }

.section-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 12px max(24px, calc((100vw - 1180px)/2));
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(7,6,11,.72);
  backdrop-filter: blur(18px);
}

.brand { display: inline-flex; align-items: center; gap: 11px; width: fit-content; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  border: 1px solid rgba(255,212,90,.6);
  border-radius: 11px;
  font-family: var(--display);
  font-size: 12px;
  color: #17120a;
  background: linear-gradient(135deg, #fff0a8, var(--gold) 48%, var(--gold-2));
  box-shadow: 0 0 28px rgba(255, 190, 47, .16);
}
.brand-copy { display: grid; line-height: 1; gap: 5px; }
.brand-copy strong { font-family: var(--display); font-size: 12px; letter-spacing: .06em; }
.brand-copy small { color: var(--muted); font-size: 10px; letter-spacing: .14em; }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a { color: #c9c3d2; font-size: 12px; transition: color .2s ease; }
.nav a:hover { color: #fff; }

.header-actions { justify-self: end; display: flex; align-items: center; gap: 10px; }
.icon-link {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.035);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.icon-link svg { width: 16px; height: 16px; fill: currentColor; }
.icon-link:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.08); }

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .03em;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent 15%, rgba(255,255,255,.28), transparent 45%);
  transform: translateX(-130%);
  transition: transform .55s ease;
}
.btn:hover::after { transform: translateX(130%); }
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #120d0b;
  background: linear-gradient(135deg, #fff0a8 0%, var(--gold) 42%, var(--gold-2) 100%);
  box-shadow: 0 10px 38px rgba(255,164,28,.18);
}
.btn-primary:hover { box-shadow: 0 14px 46px rgba(255,164,28,.28); }
.btn-ghost { border-color: var(--line); background: rgba(255,255,255,.035); color: #f8f6fb; }
.btn-ghost:hover { border-color: rgba(255,255,255,.26); background: rgba(255,255,255,.07); }
.btn-small { min-height: 40px; padding-inline: 15px; border-radius: 12px; font-size: 10px; }
.btn-gold { color: #140f08; background: var(--gold); }
.btn-arrow { font-family: var(--mono); font-size: 16px; }

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(460px, 1.08fr);
  align-items: center;
  gap: 36px;
  padding-block: 74px 84px;
}

.eyebrow, .kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #c8c0d3;
  font-size: 10px;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 18px rgba(147,255,98,.7); }

.hero h1 {
  margin: 22px 0 24px;
  font-family: var(--display);
  font-size: clamp(64px, 8vw, 126px);
  line-height: .82;
  letter-spacing: -.075em;
  text-transform: uppercase;
}
.hero h1 span {
  display: block;
  width: fit-content;
  max-width: 100%;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: 1px rgba(0,0,0,.38);
  filter: drop-shadow(0 7px 20px rgba(0,0,0,.34));
}
.hero-title-fomo {
  padding-right: .08em;
  background-image:
    linear-gradient(180deg, #fffdf0 0%, #ffe889 23%, #ffd45a 49%, #ff9f1c 73%, #a64eff 100%);
  background-size: 100% 100%;
  text-shadow: 0 0 34px rgba(255,212,90,.12);
}
.hero-title-drip {
  padding-right: .08em;
  background-image:
    linear-gradient(100deg, #19d9ff 0%, #76eeff 16%, #9c64ff 38%, #ff3ec9 61%, #ffd45a 82%, #fff4b4 100%);
  background-size: 180% 100%;
  text-shadow: 0 0 42px rgba(255,62,201,.10);
  animation: titleFlow 7s ease-in-out infinite alternate;
}
@keyframes titleFlow {
  from { background-position: 0% 50%; }
  to { background-position: 100% 50%; }
}

.hero-lede {
  max-width: 590px;
  margin: 0;
  color: #b8b1c2;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.8;
}
.hero-lede strong { color: var(--gold); font-weight: 500; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.micro-row { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 27px; color: #766f80; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.micro-row b { color: #e7e1ed; font-weight: 500; }

.hero-art { position: relative; display: grid; place-items: center; min-height: 580px; perspective: 1200px; }
.hero-card {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.19);
  border-radius: 38px;
  padding: 11px;
  background: linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.025));
  box-shadow: 0 42px 100px rgba(0,0,0,.48), 0 0 0 1px rgba(255,212,90,.04) inset;
  transform-style: preserve-3d;
  transition: transform .16s ease-out;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255,212,90,.24), transparent 24%, transparent 72%, rgba(25,217,255,.16));
  pointer-events: none;
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; border-radius: 29px; }
.image-glow { position: absolute; inset: 12%; border-radius: 50%; background: var(--gold); filter: blur(100px); opacity: .11; pointer-events: none; }
.glass-label {
  position: absolute;
  z-index: 3;
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 12px;
  background: rgba(8,7,13,.64);
  backdrop-filter: blur(12px);
  font-size: 9px;
  letter-spacing: .13em;
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
}
.glass-top { top: 28px; left: -26px; }
.glass-bottom { right: -18px; bottom: 34px; color: var(--gold); }

.orbit { position: absolute; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; pointer-events: none; }
.orbit-a { width: 620px; height: 620px; transform: rotate(18deg); border-left-color: rgba(255,212,90,.34); animation: slowspin 18s linear infinite; }
.orbit-b { width: 490px; height: 490px; transform: rotate(-12deg); border-right-color: rgba(25,217,255,.28); animation: slowspin 13s linear infinite reverse; }
.spark { position: absolute; font-size: 26px; color: #fff1a6; text-shadow: 0 0 22px rgba(255,212,90,.8); animation: sparkle 2.8s ease-in-out infinite; }
.spark-one { top: 7%; right: 9%; }
.spark-two { bottom: 11%; left: 4%; animation-delay: .9s; font-size: 18px; }
.spark-three { top: 42%; left: -1%; animation-delay: 1.5s; font-size: 12px; }

.ticker-strip { overflow: hidden; border-block: 1px solid rgba(255,255,255,.08); background: #0d0a13; }
.ticker-track { width: max-content; display: flex; align-items: center; gap: 26px; padding: 18px 0; animation: marquee 26s linear infinite; }
.ticker-track span { font-family: var(--display); font-size: 12px; letter-spacing: .08em; color: #dcd5e5; }
.ticker-track i { color: var(--gold); font-style: normal; }

.vibe { padding-block: 125px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 50px; }
.section-heading h2, .chart-header h2, .final-card h2 {
  margin: 12px 0 0;
  font-family: var(--display);
  font-size: clamp(46px, 7vw, 92px);
  line-height: .92;
  letter-spacing: -.055em;
}
.vibe-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.vibe-card {
  position: relative;
  min-height: 390px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,.025);
  transition: transform .28s ease, border-color .28s ease;
}
.vibe-card::before {
  content: "";
  position: absolute;
  width: 270px;
  height: 270px;
  right: -120px;
  bottom: -120px;
  border-radius: 50%;
  filter: blur(15px);
  opacity: .15;
}
.vibe-card:hover { transform: translateY(-7px); border-color: rgba(255,255,255,.24); }
.card-purple::before { background: var(--purple); }
.card-cyan::before { background: var(--cyan); }
.card-gold::before { background: var(--gold); }
.card-index { color: #777081; font-size: 10px; letter-spacing: .12em; }
.vibe-card h3 { margin: 90px 0 16px; font-family: var(--display); font-size: 22px; line-height: 1.16; }
.vibe-card p { margin: 0; max-width: 32ch; color: #a9a2b3; font-size: 13px; line-height: 1.75; }
.card-word {
  position: absolute;
  left: 22px;
  bottom: -11px;
  font-family: var(--display);
  font-size: clamp(47px, 5vw, 72px);
  font-weight: 900;
  letter-spacing: -.07em;
  color: rgba(255,255,255,.055);
}

.contract-wrap { padding-bottom: 125px; }
.contract-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 25px 28px;
  border: 1px solid rgba(255,212,90,.22);
  border-radius: 22px;
  background: linear-gradient(110deg, rgba(255,212,90,.08), rgba(255,255,255,.025) 40%, rgba(125,56,255,.06));
}
.contract-label { color: var(--gold); font-size: 9px; letter-spacing: .14em; }
.contract-value { margin: 8px 0 0; max-width: 760px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: #dfd8e7; font-size: 13px; }
.copy-button {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #fff;
  background: rgba(255,255,255,.05);
  cursor: pointer;
  font-size: 10px;
  letter-spacing: .08em;
  transition: background .2s ease, border-color .2s ease;
}
.copy-button:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.23); }
.copy-icon { margin-right: 8px; color: var(--gold); }

.chart-section { padding-bottom: 125px; }
.chart-header { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 34px; }
.chart-header h2 { font-size: clamp(48px, 6vw, 76px); }
.btn-chart { flex: 0 0 auto; }
.chart-frame {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  overflow: hidden;
  background: #09080d;
  box-shadow: 0 35px 80px rgba(0,0,0,.28);
}
.chart-topbar { display: flex; align-items: center; justify-content: space-between; min-height: 54px; padding: 0 18px; border-bottom: 1px solid rgba(255,255,255,.08); color: #d6d0dd; font-size: 11px; }
.live-dot { display: inline-block; width: 7px; height: 7px; margin-right: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px rgba(147,255,98,.65); }
.mono { color: #6f6878; font-size: 9px; letter-spacing: .13em; }
.chart-stage { min-height: 620px; }
.chart-stage iframe { display: block; width: 100%; height: 620px; border: 0; background: #09080d; }
.chart-placeholder { position: relative; min-height: 620px; overflow: hidden; display: grid; place-items: center; }
.placeholder-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 54px 54px; mask-image: linear-gradient(to bottom, #000, transparent 90%); }
.fake-candles { position: absolute; inset: 14% 7% 12%; opacity: .32; }
.fake-candles::before { content: ""; position: absolute; left: 0; right: 0; top: 66%; height: 2px; background: linear-gradient(90deg, transparent, rgba(25,217,255,.3), transparent); transform: rotate(-8deg); }
.fake-candles span { position: absolute; left: var(--x); bottom: var(--y); width: 12px; height: var(--h); border-radius: 3px; background: linear-gradient(to top, #54f2ad, #19d9ff); box-shadow: 0 0 18px rgba(25,217,255,.17); }
.fake-candles span::before { content: ""; position: absolute; top: -18%; bottom: -18%; left: 50%; width: 1px; background: rgba(255,255,255,.55); transform: translateX(-50%); }
.placeholder-copy { position: relative; z-index: 2; max-width: 520px; text-align: center; padding: 28px; }
.placeholder-copy span { display: inline-block; margin-bottom: 15px; color: var(--gold); font-size: 10px; letter-spacing: .16em; }
.placeholder-copy strong { display: block; font-family: var(--display); font-size: clamp(19px, 3vw, 30px); line-height: 1.35; }
.placeholder-copy code { color: var(--cyan); font-family: var(--mono); font-weight: 500; }
.placeholder-copy small { display: block; margin-top: 12px; color: #8d8598; font-size: 11px; }

.final-cta { padding-bottom: 125px; }
.final-card {
  position: relative;
  min-height: 530px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(34px, 7vw, 84px);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7,6,11,.97) 0%, rgba(7,6,11,.82) 50%, rgba(7,6,11,.24) 100%),
    url("assets/hero.png") center 41% / cover no-repeat;
}
.final-card::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(120deg, rgba(125,56,255,.16), transparent 42%, rgba(255,212,90,.09)); }
.final-card > * { position: relative; z-index: 2; }
.final-card p { margin: 0; color: var(--gold); font-size: 10px; letter-spacing: .17em; }
.final-card h2 { font-size: clamp(58px, 8vw, 104px); }
.final-card h2 span { color: var(--gold); }
.final-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.site-footer { min-height: 110px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; border-top: 1px solid rgba(255,255,255,.08); color: #716a79; font-size: 10px; }
.footer-brand { color: #f2edf6; font-family: var(--display); font-size: 11px; }
.footer-brand span { color: var(--gold); margin-left: 8px; }
.site-footer p { text-align: center; }
.site-footer > a { justify-self: end; color: #c9c3d2; }

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 100;
  transform: translate(-50%, 20px);
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  color: #f7f3ff;
  background: rgba(14,11,20,.92);
  backdrop-filter: blur(14px);
  font-size: 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

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

@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes slowspin { to { transform: rotate(378deg); } }
@keyframes sparkle { 0%,100% { opacity: .5; transform: scale(.8) rotate(0deg); } 50% { opacity: 1; transform: scale(1.18) rotate(25deg); } }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 62px; }
  .hero-copy { text-align: center; }
  .eyebrow { justify-content: center; }
  .hero-lede { margin-inline: auto; }
  .hero-cta, .micro-row { justify-content: center; }
  .hero-art { min-height: 520px; }
  .hero-card { width: min(540px, 84vw); }
  .orbit-a { width: min(610px, 94vw); height: min(610px, 94vw); }
  .orbit-b { width: min(490px, 74vw); height: min(490px, 74vw); }
  .vibe-grid { grid-template-columns: 1fr; }
  .vibe-card { min-height: 310px; }
  .vibe-card h3 { margin-top: 60px; }
}

@media (max-width: 680px) {
  .section-shell { width: min(100% - 28px, 1180px); }
  .site-header { min-height: 66px; padding-inline: 14px; }
  .brand-copy { display: none; }
  .icon-link { display: none; }
  .btn-small { min-height: 38px; }
  .hero { min-height: auto; padding-block: 54px 68px; gap: 20px; }
  .hero h1 { font-size: clamp(58px, 20vw, 88px); }
  .hero h1 span { -webkit-text-stroke-width: .75px; }
  .hero-lede { font-size: 14px; line-height: 1.7; }
  .hero-cta { display: grid; grid-template-columns: 1fr; }
  .hero-cta .btn { width: 100%; }
  .micro-row { gap: 11px 16px; font-size: 9px; }
  .hero-art { min-height: 390px; }
  .hero-card { width: min(92vw, 420px); border-radius: 26px; padding: 8px; }
  .hero-card img { border-radius: 20px; }
  .glass-top { left: -6px; top: 18px; }
  .glass-bottom { right: -4px; bottom: 20px; }
  .spark-one { right: 1%; }
  .section-heading { margin-bottom: 28px; }
  .vibe { padding-block: 88px; }
  .contract-wrap, .chart-section, .final-cta { padding-bottom: 88px; }
  .contract-panel { align-items: stretch; flex-direction: column; padding: 20px; }
  .contract-value { font-size: 11px; }
  .copy-button { width: 100%; }
  .chart-header { align-items: stretch; flex-direction: column; }
  .btn-chart { width: 100%; }
  .chart-stage, .chart-stage iframe, .chart-placeholder { min-height: 500px; height: 500px; }
  .final-card { min-height: 480px; padding: 28px 22px; background-position: 62% center; }
  .final-actions { width: 100%; }
  .final-actions .btn { width: 100%; }
  .site-footer { min-height: 150px; grid-template-columns: 1fr; text-align: center; padding-block: 28px; }
  .site-footer p { margin: 0; }
  .site-footer > a { justify-self: center; }
}

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