:root {
  --navy-950: #040914;
  --navy-900: #06101c;
  --navy-800: #0a1828;
  --navy-700: #122236;
  --navy-600: #1a314c;
  --white: #f4f7fb;
  --white-soft: #d7e0ea;
  --muted: #8fa0b5;
  --cyan: #2af5e0;
  --cyan-deep: #14d4c8;
  --cyan-dim: rgba(42, 245, 224, 0.14);
  --silver: #b7c3d0;
  --line: rgba(183, 195, 208, 0.16);
  --line-strong: rgba(42, 245, 224, 0.35);
  --font: "Outfit", system-ui, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --radius: 18px;
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font);
  color: var(--white);
  background: var(--navy-950);
  line-height: 1.55;
  overflow-x: hidden;
  min-height: 100%;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

code {
  font-family: var(--mono);
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 80;
  background: var(--cyan);
  color: var(--navy-950);
  padding: 0.6rem 1rem;
  font-weight: 600;
  border-radius: 8px;
}

.skip-link:focus {
  top: 1rem;
}

.page-rings {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.page-ring {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: transform 0.6s var(--ease);
}

.page-ring--a {
  width: 720px;
  height: 720px;
  top: -180px;
  right: -180px;
  border-color: rgba(42, 245, 224, 0.12);
}

.page-ring--b {
  width: 420px;
  height: 420px;
  bottom: 8%;
  left: -120px;
}

.page-ring--c {
  width: 240px;
  height: 240px;
  top: 42%;
  right: 8%;
  border-color: rgba(42, 245, 224, 0.18);
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(6, 16, 28, 0.62);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.header.is-scrolled {
  background: rgba(6, 16, 28, 0.86);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.header__inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand__mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line-strong);
  box-shadow: 0 0 0 3px rgba(42, 245, 224, 0.08);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand__name {
  font-weight: 650;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.brand__ticker {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--cyan);
  letter-spacing: 0.08em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav__link {
  position: relative;
  padding: 8px 14px;
  font-size: 0.9rem;
  color: var(--white-soft);
  letter-spacing: 0.04em;
}

.nav__link--mobile {
  display: none;
}

.nav__link::before,
.nav__link::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 5px;
  height: 5px;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity 0.2s ease;
}

.nav__link::before { left: 0; }
.nav__link::after { right: 0; }

.nav__link:hover,
.nav__link.is-active {
  color: var(--white);
}

.nav__link:hover::before,
.nav__link:hover::after,
.nav__link.is-active::before,
.nav__link.is-active::after {
  opacity: 1;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  transition: transform 0.25s var(--ease), background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.btn::before,
.btn::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: inherit;
  border: 1px solid transparent;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease, inset 0.25s ease;
}

.btn::after {
  inset: -10px;
}

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

.btn:hover::before {
  opacity: 1;
  border-color: rgba(42, 245, 224, 0.45);
}

.btn:hover::after {
  opacity: 1;
  border-color: rgba(42, 245, 224, 0.18);
}

.btn--cyan {
  background: var(--cyan);
  color: #042220;
  border-color: var(--cyan);
  box-shadow: 0 8px 28px rgba(42, 245, 224, 0.18);
}

.btn--cyan:hover {
  background: #5ff9ea;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
}

.btn--ghost:hover {
  border-color: var(--line-strong);
  background: rgba(42, 245, 224, 0.06);
}

.btn--compact {
  min-height: 40px;
  padding: 0 14px;
  font-size: 0.82rem;
}

.btn--lg {
  min-height: 52px;
  padding: 0 24px;
}

.btn__icon {
  display: inline-flex;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  padding: 0;
  position: relative;
}

.menu-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.25s var(--ease), top 0.25s var(--ease), opacity 0.2s ease;
}

.menu-toggle span:first-child { top: 16px; }
.menu-toggle span:last-child { top: 24px; }

.menu-toggle[aria-expanded="true"] span:first-child {
  top: 20px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  top: 20px;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  padding: 48px 0 0;
  overflow: hidden;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  justify-items: center;
  text-align: center;
}

.hero__rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orbit {
  position: absolute;
  left: 50%;
  top: 46%;
  border: 1px solid rgba(42, 245, 224, 0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: orbit-spin 48s linear infinite;
}

.orbit--lg {
  width: min(92vw, 860px);
  height: min(92vw, 860px);
  border-color: rgba(183, 195, 208, 0.1);
}

.orbit--md {
  width: min(70vw, 620px);
  height: min(70vw, 620px);
  animation-duration: 36s;
  animation-direction: reverse;
}

.orbit--sm {
  width: min(48vw, 420px);
  height: min(48vw, 420px);
  border-color: rgba(42, 245, 224, 0.28);
  animation-duration: 22s;
}

.orbit--oo-l,
.orbit--oo-r {
  width: min(28vw, 220px);
  height: min(28vw, 220px);
  top: 18%;
  animation: none;
  border-color: rgba(42, 245, 224, 0.22);
}

.orbit--oo-l { left: 18%; }
.orbit--oo-r { left: 82%; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
}

.kicker__dot {
  color: var(--cyan);
}

.pixel-pair {
  width: 22px;
  height: 8px;
  background:
    linear-gradient(var(--cyan), var(--cyan)) left / 8px 8px no-repeat,
    linear-gradient(var(--cyan), var(--cyan)) right / 8px 8px no-repeat;
  image-rendering: pixelated;
}

.hero__title {
  margin: 0;
  font-size: clamp(2.7rem, 9vw, 7.2rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.9;
}

.hero__ticker {
  margin: 14px 0 0;
  font-family: var(--mono);
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  color: var(--cyan);
  letter-spacing: 0.28em;
}

.hero__hook {
  margin: 28px 0 0;
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  font-weight: 650;
  letter-spacing: 0.16em;
  color: var(--white);
}

.hero__support {
  margin: 16px 0 0;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  font-style: italic;
  color: var(--white-soft);
  line-height: 1.35;
}

.hero__stage {
  margin-top: 42px;
  padding: 28px 8px;
}

.mascot {
  position: relative;
  width: min(360px, 78vw);
}

.mascot__img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 28px;
  border: 1px solid rgba(42, 245, 224, 0.4);
}

.mascot__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(42, 245, 224, 0.28);
  inset: -18px;
  animation: ring-breathe 6s ease-in-out infinite;
}

.mascot__ring--inner {
  inset: -8px;
  border-color: rgba(183, 195, 208, 0.28);
  animation-delay: -2s;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}

.ca {
  width: min(560px, 100%);
  margin-top: 28px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  text-align: left;
}

.ca__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.ca__row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ca__value {
  flex: 1;
  min-width: 0;
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  color: var(--white);
  overflow-wrap: anywhere;
}

.ca__copy {
  flex-shrink: 0;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: var(--cyan-dim);
  color: var(--cyan);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}

.ca__copy:hover,
.ca__copy.is-copied {
  background: var(--cyan);
  color: #042220;
}

.hero__banner {
  width: min(1180px, calc(100% - 32px));
  margin: 48px auto 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--navy-800);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.hero__banner img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.section-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.section-head--center {
  justify-content: center;
}

.section-index {
  margin: 0;
  font-family: var(--mono);
  color: var(--cyan);
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

.section-label {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.about {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
}

.about__grid {
  position: relative;
  z-index: 1;
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

.quote {
  margin: 18px 0 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 5.4vw, 4.4rem);
  font-style: italic;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--white);
}

.about__copy {
  max-width: 560px;
  justify-self: end;
  color: var(--white-soft);
  font-size: 1.08rem;
}

.about__name {
  margin: 0 0 8px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}

.about__oo {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--cyan);
}

.about__copy p + p {
  margin-top: 16px;
}

.about__rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(42, 245, 224, 0.16);
}

.about-ring--one {
  width: 520px;
  height: 520px;
  right: -120px;
  top: 40px;
}

.about-ring--two {
  width: 280px;
  height: 280px;
  right: 40px;
  top: 160px;
  border-color: rgba(183, 195, 208, 0.16);
}

.lore {
  padding: 40px 0 120px;
}

.lore__inner {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
}

.oo {
  margin: 48px auto 72px;
  text-align: center;
}

.oo__mark {
  margin: 0 0 8px;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  color: var(--muted);
}

.glasses {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 18px auto 10px;
  transition: transform 0.5s var(--ease);
}

.glasses__lens {
  width: clamp(88px, 18vw, 148px);
  height: clamp(88px, 18vw, 148px);
  border: 7px solid var(--cyan);
  border-radius: 46%;
  box-shadow:
    0 0 0 1px rgba(42, 245, 224, 0.25),
    0 0 32px rgba(42, 245, 224, 0.18);
  background: radial-gradient(circle at 35% 30%, rgba(42, 245, 224, 0.12), transparent 55%);
  transition: transform 0.6s var(--ease), box-shadow 0.6s ease;
}

.glasses__bridge {
  width: clamp(28px, 6vw, 46px);
  height: 10px;
  margin: 0 -2px;
  background: var(--cyan);
  border-radius: 2px;
  box-shadow: 0 0 18px rgba(42, 245, 224, 0.3);
}

.oo:hover .glasses,
.oo.is-inview .glasses {
  transform: translateY(-4px);
}

.oo:hover .glasses__lens,
.oo.is-inview .glasses__lens {
  transform: scale(1.04);
  box-shadow:
    0 0 0 1px rgba(42, 245, 224, 0.4),
    0 0 42px rgba(42, 245, 224, 0.28);
}

.oo__title {
  margin: 8px 0 0;
  font-size: clamp(4.8rem, 14vw, 9rem);
  line-height: 0.8;
  letter-spacing: -0.06em;
  font-weight: 800;
}

.oo__caption {
  margin: 18px 0 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.3rem, 2.6vw, 1.85rem);
  color: var(--white-soft);
}

.glasses--mini .glasses__lens {
  width: 28px;
  height: 28px;
  border-width: 3px;
}

.glasses--mini .glasses__bridge {
  width: 12px;
  height: 4px;
}

.lore__lines {
  display: grid;
  gap: 14px;
}

.lore__line {
  margin: 0;
  padding: 22px 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
  font-size: clamp(1.15rem, 2.4vw, 1.7rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.lore__line--wide {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}

.chart {
  padding: 40px 0 120px;
}

.chart__inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.chart__intro {
  display: grid;
  gap: 14px;
  margin: 28px 0 28px;
  max-width: 640px;
}

.chart__title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.04em;
}

.chart__note {
  margin: 0;
  color: var(--muted);
}

.chart__panel {
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: var(--navy-800);
}

.chart__embed {
  position: relative;
  min-height: 520px;
  background: #0b1220;
}

.chart__embed iframe {
  width: 100%;
  height: 520px;
  border: 0;
  display: block;
}

.chart__placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 8px;
  background:
    radial-gradient(circle at 50% 40%, rgba(42, 245, 224, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(6, 16, 28, 0.55), rgba(6, 16, 28, 0.82));
  pointer-events: none;
}

.chart__wait {
  margin: 10px 0 0;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.chart__wait-sub {
  margin: 0;
  font-family: var(--mono);
  color: var(--muted);
  font-size: 0.85rem;
}

.buy {
  padding: 40px 0 120px;
}

.buy__inner {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  text-align: center;
  padding: 56px 24px;
  border-radius: 32px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 0%, rgba(42, 245, 224, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
}

.buy__title {
  margin: 8px 0 0;
  font-size: clamp(3rem, 8vw, 5.4rem);
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.buy__lede {
  margin: 18px auto 0;
  max-width: 520px;
  color: var(--white-soft);
}

.buy__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 32px 0 40px;
}

.footer__inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
}

.footer__name,
.footer__meta {
  margin: 0;
}

.footer__name {
  font-weight: 650;
}

.footer__meta {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--muted);
}

.footer__oo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__oo span {
  width: 10px;
  height: 10px;
  border: 1.5px solid var(--cyan);
  border-radius: 50%;
}

.footer__x {
  font-weight: 650;
  letter-spacing: 0.08em;
  color: var(--cyan);
}

.footer__fine {
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes orbit-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes ring-breathe {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.04); opacity: 1; }
}

@media (min-width: 900px) {
  .about__grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: end;
  }

  .about__lead {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .nav {
    position: fixed;
    inset: var(--header-h) 16px auto;
    display: none;
    flex-direction: column;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(6, 16, 28, 0.96);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  }

  .nav.is-open {
    display: flex;
  }

  .nav__link {
    width: 100%;
    padding: 14px 16px;
  }

  .nav__link--mobile {
    display: block;
  }

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

  .header__actions .btn--ghost {
    display: none;
  }

  .orbit--oo-l,
  .orbit--oo-r {
    display: none;
  }

  .hero__cta .btn,
  .buy__cta .btn {
    flex: 1 1 140px;
  }

  .ca__meta {
    flex-direction: column;
    gap: 4px;
  }

  .chart__embed,
  .chart__embed iframe {
    min-height: 420px;
    height: 420px;
  }
}

@media (max-width: 560px) {
  :root { --header-h: 68px; }

  .hero {
    padding-top: 28px;
  }

  .mascot {
    width: min(280px, 78vw);
  }

  .hero__banner {
    border-radius: 16px;
  }

  .about,
  .lore,
  .chart,
  .buy {
    padding-bottom: 80px;
  }

  .footer__inner {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .orbit,
  .mascot__ring,
  .page-ring,
  .glasses,
  .glasses__lens,
  .reveal,
  .btn {
    animation: none !important;
    transition: none !important;
  }

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