:root {
  --bg: #090807;
  --bg-raise: #14110e;
  --ink: #fff6ea;
  --muted: #cbb7a2;
  --dim: #8d7b6a;
  --amber: #ff8a1a;
  --amber-2: #ffb347;
  --amber-deep: #e25e00;
  --line: rgba(255, 154, 46, 0.32);
  --wrap: 1140px;
  --header: 78px;
  --display: "Baloo 2", "Trebuchet MS", sans-serif;
  --sans: "Outfit", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: rgba(255, 138, 26, 0.35);
  color: #fff;
}

.stage {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(900px 520px at 80% -10%, rgba(255, 122, 24, 0.16), transparent 60%),
    radial-gradient(700px 480px at -10% 80%, rgba(255, 138, 26, 0.1), transparent 55%),
    var(--bg);
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
}

.glow-a {
  width: 420px;
  height: 420px;
  right: -80px;
  top: 80px;
  background: radial-gradient(circle, rgba(255, 154, 26, 0.22), transparent 68%);
  animation: drift 16s ease-in-out infinite;
}

.glow-b {
  width: 360px;
  height: 360px;
  left: -60px;
  bottom: 8%;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.16), transparent 70%);
  animation: drift 20s ease-in-out infinite reverse;
}

.city {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -18%;
  height: 58%;
  background-image:
    linear-gradient(rgba(255, 154, 26, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 154, 26, 0.16) 1px, transparent 1px);
  background-size: 72px 72px;
  transform: perspective(520px) rotateX(64deg);
  transform-origin: center top;
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent 78%);
  animation: grid-shift 22s linear infinite;
}

.lights i {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber-2);
  box-shadow: 0 0 0 6px rgba(255, 138, 26, 0.12), 0 0 18px var(--amber);
  animation: blink 3.6s ease-in-out infinite;
  animation-delay: var(--d);
}

.cubes .cube {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--s);
  height: var(--s);
  background:
    linear-gradient(145deg, rgba(255, 214, 160, 0.95), rgba(255, 122, 24, 0.2) 42%, rgba(90, 42, 8, 0.85));
  border: 1px solid rgba(255, 196, 120, 0.75);
  box-shadow:
    0 0 18px rgba(255, 138, 26, 0.45),
    8px 10px 0 rgba(255, 106, 0, 0.12);
  transform: rotate(18deg);
  animation: cube-float 9s ease-in-out infinite;
  animation-delay: var(--d);
}

.grain {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
}

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1;
  width: 320px;
  height: 320px;
  margin: -160px 0 0 -160px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 138, 26, 0.16), transparent 68%);
  mix-blend-mode: screen;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: var(--header);
  padding: 0 28px;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(9, 8, 7, 0.78);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  mix-blend-mode: lighten;
  border-radius: 50%;
  mask-image: radial-gradient(circle, #000 60%, transparent 74%);
  filter: drop-shadow(0 0 10px rgba(255, 138, 26, 0.45));
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav a {
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
  position: relative;
}

.nav a:not(.nav-buy)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav a:not(.nav-buy):hover {
  color: var(--ink);
}

.nav a:not(.nav-buy):hover::after {
  transform: scaleX(1);
}

.nav-buy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--ink) !important;
  background: rgba(255, 138, 26, 0.1);
}

.nav-buy img,
.btn img,
.chart-link img,
.footer-links img,
.kicker img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 12px;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--amber-2);
}

.hero {
  min-height: calc(100vh - var(--header));
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 24px;
  width: min(var(--wrap), calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0 64px;
}

.kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--amber-2);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 600;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin: 0;
}

h1 {
  font-size: clamp(4.4rem, 8vw, 7.2rem);
  text-shadow: 0 0 42px rgba(255, 138, 26, 0.22);
}

h1 em {
  font-style: normal;
  color: var(--amber);
}

.symbol {
  display: inline-flex;
  margin: 18px 0 0;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--amber-2);
  background: rgba(255, 138, 26, 0.08);
}

.lead,
.section-head p,
.about-intro p,
.slab p,
.steps p {
  color: var(--muted);
  font-weight: 350;
  font-size: 1.08rem;
}

.lead {
  max-width: 38ch;
  margin: 18px 0 0;
  font-size: 1.18rem;
}

.actions,
.join-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.35), transparent 70%);
  transform: translateX(-120%);
  animation: sheen 4.8s ease-in-out infinite;
}

.btn-solid {
  background: linear-gradient(180deg, #ffb347, #ff7a12 55%, #e25e00);
  color: #2a1406;
  box-shadow: 0 10px 30px rgba(255, 122, 18, 0.28);
}

.btn-ghost {
  border: 1px solid var(--line);
  background: rgba(20, 17, 14, 0.55);
  color: var(--ink);
}

.btn:hover {
  transform: translateY(-2px);
}

.pedestal {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.rings {
  position: absolute;
  width: min(520px, 90%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.rings i,
.sweep {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 154, 46, 0.45);
}

.rings i:nth-child(1) {
  inset: 6%;
  animation: spin 28s linear infinite;
  border-style: dashed;
}

.rings i:nth-child(2) {
  inset: 16%;
  animation: spin 18s linear infinite reverse;
}

.rings i:nth-child(3) {
  inset: 28%;
  animation: spin 12s linear infinite;
  box-shadow: 0 0 24px rgba(255, 138, 26, 0.2);
}

.sweep {
  inset: 8%;
  border: 0;
  background: conic-gradient(from 0deg, transparent 0 72%, rgba(255, 176, 64, 0.45) 100%);
  mask: radial-gradient(circle, transparent 54%, #000 55% 72%, transparent 73%);
  animation: spin 8s linear infinite;
}

.hero-logo {
  position: relative;
  width: min(460px, 86%);
  height: auto;
  mix-blend-mode: lighten;
  mask-image: radial-gradient(circle at 50% 46%, #000 48%, transparent 70%);
  filter: drop-shadow(0 20px 40px rgba(255, 106, 0, 0.28));
  animation: floaty 6.5s ease-in-out infinite;
}

.floor-ring {
  position: absolute;
  bottom: 46px;
  width: 62%;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 154, 46, 0.55);
  box-shadow: 0 0 24px rgba(255, 138, 26, 0.35), inset 0 0 18px rgba(255, 138, 26, 0.2);
  animation: pulse 3.4s ease-in-out infinite;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255, 138, 26, 0.05);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.ticker-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: ticker 28s linear infinite;
}

.ticker span {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.92rem;
  color: var(--amber-2);
  padding: 12px 28px;
  position: relative;
}

.ticker span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  background: var(--amber);
  transform: translateY(-50%) rotate(45deg);
  box-shadow: 0 0 10px var(--amber);
}

.wrap {
  width: min(var(--wrap), calc(100% - 48px));
  margin: 0 auto;
}

section {
  scroll-margin-top: 92px;
  padding: 96px 0;
}

.about {
  padding-top: 88px;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.about-intro h2,
.section-head h2 {
  font-size: clamp(2.5rem, 5vw, 4.1rem);
  max-width: 12ch;
}

.about-intro p {
  max-width: 42ch;
}

.about-mark {
  margin-top: 22px;
  color: var(--amber-2) !important;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
}

.slabs {
  display: grid;
  gap: 16px;
}

.slab {
  position: relative;
  padding: 22px 22px 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(28, 22, 16, 0.92), rgba(14, 11, 9, 0.92));
  overflow: hidden;
  isolation: isolate;
}

.slab::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 90deg, transparent 0 74%, rgba(255, 179, 71, 0.95) 88%, transparent 100%);
  animation: spin 9s linear infinite;
  z-index: -2;
}

.slab::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 17px;
  background: linear-gradient(180deg, #17130f, #0e0b09);
  z-index: -1;
}

.slab header {
  display: flex;
  justify-content: space-between;
  color: var(--amber-2);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
}

.slab h3 {
  margin: 14px 0 8px;
  font-size: 1.85rem;
}

.slab:nth-child(2)::before {
  animation-duration: 12s;
  animation-direction: reverse;
}

.slab:nth-child(3)::before {
  animation-duration: 7.5s;
}

.section-head {
  margin-bottom: 36px;
  max-width: 640px;
}

.section-head h2 {
  max-width: none;
}

.section-head p {
  margin: 14px 0 0;
  max-width: 48ch;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 8px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 46px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  animation: line-glow 3.2s ease-in-out infinite;
}

.steps li {
  position: relative;
  padding: 18px 16px 20px;
  border-radius: 18px;
  background: rgba(16, 13, 11, 0.72);
  border: 1px solid rgba(255, 154, 46, 0.16);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.steps li:hover {
  transform: translateY(-6px);
  border-color: var(--line);
  box-shadow: 0 16px 40px rgba(255, 106, 0, 0.12);
}

.step-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255, 138, 26, 0.08);
  border: 1px solid var(--line);
  margin-bottom: 16px;
}

.step-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.step-no {
  position: absolute;
  top: 18px;
  right: 16px;
  font-family: var(--display);
  color: var(--amber);
  letter-spacing: 0.08em;
}

.steps h3 {
  font-size: 1.45rem;
  margin-bottom: 8px;
}

.steps p {
  margin: 0;
  font-size: 0.96rem;
}

.steps a {
  display: inline-block;
  margin-top: 12px;
  color: var(--amber-2);
  font-weight: 600;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(255, 179, 71, 0.4);
}

.chart-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--amber-2);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.chart-frame {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0c0b0a;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35), 0 0 40px rgba(255, 122, 18, 0.08);
  min-height: 640px;
}

.chart-frame iframe {
  display: block;
  width: 100%;
  height: 640px;
  border: 0;
  background: #0b0a09;
}

.banner-frame {
  position: relative;
  aspect-ratio: 3 / 1;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.45),
    0 0 48px rgba(255, 122, 18, 0.16);
}

.banner-frame::before,
.banner-frame::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  z-index: 1;
  border: 2px solid var(--amber-2);
}

.banner-frame::before {
  top: 12px;
  left: 12px;
  border-right: 0;
  border-bottom: 0;
}

.banner-frame::after {
  right: 12px;
  bottom: 12px;
  border-left: 0;
  border-top: 0;
}

.banner-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 1;
}

.join-actions {
  justify-content: flex-start;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 36px;
  background: rgba(9, 8, 7, 0.72);
}

.footer-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.site-footer p {
  margin: 0;
  color: var(--dim);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  gap: 10px;
}

.footer-links a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 138, 26, 0.06);
  transition: transform 0.25s ease, background 0.25s ease;
}

.footer-links a:hover {
  transform: translateY(-3px);
  background: rgba(255, 138, 26, 0.16);
}

.reveal {
  animation: rise 0.9s ease both;
}

@supports (animation-timeline: view()) {
  .reveal:not(.now) {
    animation-timeline: view();
    animation-range: entry 0% cover 28%;
  }
}

.hero .reveal:nth-child(2),
.slabs .reveal:nth-child(2),
.steps .reveal:nth-child(2) {
  animation-delay: 0.12s;
}

.slabs .reveal:nth-child(3),
.steps .reveal:nth-child(3) {
  animation-delay: 0.22s;
}

.steps .reveal:nth-child(4) {
  animation-delay: 0.32s;
}

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

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes cube-float {
  0%,
  100% {
    transform: translateY(0) rotate(18deg);
  }
  50% {
    transform: translateY(-18px) rotate(42deg);
  }
}

@keyframes blink {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-24px, 18px, 0);
  }
}

@keyframes grid-shift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 72px;
  }
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes sheen {
  0%,
  55% {
    transform: translateX(-120%);
  }
  80%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scaleX(0.94);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes line-glow {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 1;
  }
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .hero,
  .about-grid,
  .steps,
  .footer-row {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 12px;
  }

  .pedestal {
    min-height: 300px;
    order: -1;
  }

  .steps::before {
    display: none;
  }

  .about-intro h2 {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 0 16px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: var(--header);
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(12, 10, 8, 0.96);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 12px;
  }

  .hero,
  .wrap {
    width: min(var(--wrap), calc(100% - 32px));
  }

  h1 {
    font-size: clamp(3.4rem, 16vw, 5rem);
  }

  .chart-frame,
  .chart-frame iframe {
    min-height: 520px;
    height: 520px;
  }

  .footer-row {
    justify-items: start;
  }

  section {
    padding: 72px 0;
  }
}

@media (pointer: coarse) {
  .cursor-glow {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
