:root {
  --bg: #07070A;
  --bg-2: #0E0E13;
  --glass: rgba(255, 255, 255, 0.04);
  --line: rgba(255, 255, 255, 0.10);
  --text: #F4F1EA;
  --mute: #9A958C;
  --accent: #FF6A15;
  --accent-2: #E84E0F;
  --warn: #C4A574;
  --ink: #07070A;
  --cream: #F4F1EA;
  --max: 1120px;
  --ease: 180ms ease;
  --radius: 18px;
  --pill: 999px;
  --nav-h: 64px;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

body {
  font-family: Geist, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  font-feature-settings: "liga" 1;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  min-height: 100%;
}

body::after {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 60;
  opacity: 0.04;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.55'/></svg>");
  mix-blend-mode: overlay;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
}

.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  z-index: 80;
  padding: 8px 14px;
  background: var(--accent);
  color: var(--ink);
  border-radius: var(--pill);
}

.skip:focus {
  top: 12px;
}

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

.label {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--pill);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: background var(--ease), color var(--ease), border-color var(--ease), opacity var(--ease);
  white-space: nowrap;
  touch-action: manipulation;
}

.btn:focus-visible,
.link-row:focus-visible,
.nav-jump a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--accent);
  color: var(--ink);
}

.btn-primary:hover:not(:disabled) {
  background: var(--accent-2);
}

.btn-primary:disabled {
  background: var(--glass);
  color: var(--text);
  border: 1px solid var(--line);
  opacity: 1;
}

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--mute);
  background: transparent;
}

.btn-ghost:hover:not(:disabled) {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.22);
}

.btn:disabled {
  opacity: 0.4;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  background: var(--glass);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warn);
}

.chip.is-live {
  color: var(--accent);
}

.chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--nav-h);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 7, 10, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 13px;
}

.mark {
  position: relative;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--accent);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255, 106, 21, 0.45);
}

.mark span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.mark img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mark img.is-off {
  display: none;
}

.nav-jump {
  display: flex;
  gap: 22px;
  margin-left: 8px;
}

.nav-jump a {
  font-size: 14px;
  color: var(--mute);
  transition: color var(--ease);
}

.nav-jump a:hover {
  color: var(--text);
}

.nav-actions {
  margin-left: auto;
  display: flex;
  gap: 8px;
}

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

.hero-glow {
  pointer-events: none;
  position: absolute;
  left: 52%;
  top: -120px;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(255, 106, 21, 0.26) 0%, rgba(255, 106, 21, 0) 68%);
}

.hero-watermark {
  pointer-events: none;
  position: absolute;
  right: -12%;
  top: -18%;
  width: min(780px, 70vw);
  opacity: 0.09;
  mask-image: linear-gradient(90deg, transparent 0%, #000 38%, #000 78%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 38%, #000 78%, transparent 100%);
}

.hero-watermark img {
  width: 100%;
  height: auto;
  filter: saturate(1.1);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 56px;
  align-items: center;
}

.hero-copy .label {
  margin-bottom: 18px;
  color: var(--accent);
}

.hero h1 {
  margin: 0 0 16px;
  font-size: 72px;
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.045em;
  text-wrap: pretty;
}

.lede {
  margin: 0 0 22px;
  max-width: 28ch;
  color: var(--mute);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 14px;
  margin-bottom: 22px;
}

.fine {
  margin: 18px 0 0;
  color: var(--mute);
  font-size: 13px;
}

.badge {
  position: relative;
  width: 280px;
  min-height: 280px;
  display: grid;
  place-items: center;
  padding: 28px 20px 18px;
}

.badge-orbit {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.badge-orbit-a {
  inset: 8px;
  background: repeating-conic-gradient(
    from 0deg,
    rgba(255, 106, 21, 0.7) 0deg 1.4deg,
    transparent 1.4deg 15deg
  );
  -webkit-mask: radial-gradient(closest-side, transparent 97%, #000 98%);
  mask: radial-gradient(closest-side, transparent 97%, #000 98%);
  animation: spin 36s linear infinite;
}

.badge-orbit-b {
  inset: 22px;
  border: 1px solid rgba(255, 106, 21, 0.22);
  box-shadow: inset 0 0 24px rgba(255, 106, 21, 0.08);
  animation: spin 22s linear infinite reverse;
}

.badge-face {
  position: relative;
  z-index: 1;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--cream);
  box-shadow:
    0 0 0 1px rgba(255, 106, 21, 0.4),
    0 18px 40px rgba(255, 106, 21, 0.16);
  animation: logo-glow 6s ease-in-out infinite;
}

.badge-face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge-plate {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  text-align: center;
}

.badge-plate .label {
  color: var(--accent);
  margin-bottom: 4px;
}

.badge-plate strong {
  display: block;
  font-size: 13px;
  letter-spacing: 0.2em;
}

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

@keyframes logo-glow {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(255, 106, 21, 0));
  }
  50% {
    filter: drop-shadow(0 0 22px rgba(255, 106, 21, 0.45));
  }
}

.specs {
  padding: 0 0 96px;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.card {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.spec {
  position: relative;
  overflow: hidden;
  padding: 20px 22px 22px;
}

.spec::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -28px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: url("/logo.png") center / cover no-repeat;
  opacity: 0.14;
  pointer-events: none;
}

.spec .label {
  margin-bottom: 10px;
}

.spec strong {
  display: block;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.section {
  padding: 96px 0;
  border-top: 1px solid var(--line);
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.section h2 {
  margin: 6px 0 0;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.protocol {
  display: grid;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.step:last-child {
  border-bottom: 1px solid var(--line);
}

.step-idx {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--accent);
}

.step h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.step p,
.prose {
  margin: 0;
  color: var(--mute);
  max-width: 62ch;
}

.prose-lead {
  margin-top: 16px;
}

.rewards-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--glass);
  backdrop-filter: blur(12px);
}

.table th,
.table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.table th {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}

.table td {
  font-size: 16px;
}

.table tr:last-child th,
.table tr:last-child td {
  border-bottom: 0;
}

.table .num {
  color: var(--text);
  font-weight: 600;
}

.note {
  margin: 16px 0 0;
  font-size: 13px;
  color: var(--mute);
}

.buy {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.buy-step {
  position: relative;
  padding: 22px;
}

.buy-step .label {
  color: var(--accent);
  margin-bottom: 12px;
}

.buy-step p {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.buy-ca {
  margin: 10px 0 12px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--mute);
  word-break: break-all;
}

.buy-copy {
  min-height: 36px;
  padding: 0 14px;
  font-size: 13px;
}

.links {
  display: grid;
  border-top: 1px solid var(--line);
}

.link-row {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  transition: color var(--ease);
}

.link-row:hover {
  color: var(--accent);
}

.link-row.is-empty {
  color: var(--mute);
  pointer-events: none;
}

.link-k {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.link-v {
  font-size: 14px;
  color: var(--mute);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.link-go {
  font-size: 13px;
  color: var(--accent);
}

.link-row.is-empty .link-go {
  color: var(--mute);
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-weight: 600;
}

.footer p {
  margin: 0 0 8px;
  color: var(--mute);
  font-size: 13px;
  max-width: 52ch;
}

.dock {
  display: none;
}

@media (max-width: 900px) {
  .hero-grid,
  .rewards-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .badge {
    width: min(280px, 100%);
    justify-self: start;
  }

  .specs-grid,
  .buy {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .hero h1 {
    font-size: 56px;
  }
}

@media (max-width: 720px) {
  .wrap {
    width: min(var(--max), calc(100% - 32px));
  }

  .nav-jump,
  .nav-actions {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .hero-watermark {
    opacity: 0.06;
    width: 420px;
    right: -20%;
    top: auto;
    bottom: -10%;
  }

  .hero-meta {
    gap: 8px;
  }

  .hero-meta .btn {
    display: none;
  }

  .badge {
    min-height: 0;
    padding: 8px 0 0;
  }

  .badge-face {
    width: 128px;
    height: 128px;
  }

  .badge-orbit-a {
    inset: 0;
  }

  .badge-orbit-b {
    inset: 14px;
  }

  .hero,
  .section {
    padding: 64px 0;
  }

  .specs {
    padding-bottom: 64px;
  }

  .hero {
    padding-top: 48px;
  }

  .hero h1 {
    font-size: 36px;
    letter-spacing: -0.03em;
  }

  .section h2 {
    font-size: 28px;
  }

  .specs-grid,
  .buy {
    grid-template-columns: minmax(0, 1fr);
  }

  .step {
    grid-template-columns: 48px 1fr;
  }

  .link-row {
    grid-template-columns: 1fr auto;
  }

  .link-v {
    display: none;
  }

  .dock {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 40;
    gap: 8px;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: rgba(7, 7, 10, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .dock .btn {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .footer {
    padding: 64px 0 140px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
