:root {
  --bg: #000;
  --ink: #f4f0e6;
  --muted: #a39c90;
  --dim: #9a9286;
  --gold: #d4af37;
  --gold-2: #f3e2a8;
  --line: rgba(212, 175, 55, 0.28);
  --line-soft: rgba(244, 240, 230, 0.12);
  --hi: #fff8e8;
  --mid: #e2b84c;
  --deep: #6e4c14;
  --glow: rgba(226, 184, 76, 0.55);
  --sans: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
  --serif: "Cormorant Garamond", "Palatino Linotype", Palatino, Georgia, serif;
  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100svh;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body[data-pair="paxg"] {
  --hi: #ffe6c4;
  --mid: #d4893a;
  --deep: #6a3412;
  --glow: rgba(212, 122, 48, 0.58);
  --gold: #e0a15a;
  --gold-2: #f6d7b0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 40;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection {
  background: #e4c56a;
  color: #111;
}

:focus-visible {
  outline: 1px solid var(--gold-2);
  outline-offset: 4px;
}

button,
a {
  color: inherit;
}

button {
  font: inherit;
  appearance: none;
}

a {
  text-decoration: none;
}

p,
h1,
h2,
h3,
ul {
  margin: 0;
}

.sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 50;
  background: var(--gold-2);
  color: #111;
  padding: 8px 12px;
}

.skip:focus {
  top: 12px;
}

.c-hi { stop-color: var(--hi); }
.c-mid { stop-color: var(--mid); }
.c-lo { stop-color: var(--deep); }

.gold { color: var(--gold); }

.nav {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1240px, calc(100% - 56px));
  margin: 0 auto;
  padding: 22px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand span {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: linear-gradient(180deg, var(--hi), var(--mid) 55%, var(--deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.flame {
  display: block;
  width: auto;
  height: auto;
}

.flame-sm {
  height: 28px;
  width: auto;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-docs,
.field-label,
.caption > p,
.hook-live span,
.doc-index a,
.note {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-docs {
  color: var(--muted);
}

.nav-docs:hover,
.nav-docs[aria-current="page"] {
  color: var(--gold-2);
}

.follow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.follow:hover {
  color: var(--gold-2);
  border-color: var(--gold);
}

.wallet {
  position: relative;
}

.wallet-btn,
.wallet-quiet,
.wallet-link {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wallet-btn {
  background: none;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold-2);
  cursor: pointer;
  padding: 8px 16px;
}

.wallet-btn:hover {
  color: var(--hi);
}

.wallet-pop {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 60;
  width: 240px;
  padding: 8px 16px 16px;
  background: #000;
  border: 1px solid var(--line);
}

.wallet-choice {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin: 0;
  padding: 12px 0;
  background: none;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--hi);
  cursor: pointer;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-align: left;
}

.wallet-choice:last-child {
  border-bottom: 0;
}

.wallet-choice img {
  width: 22px;
  height: 22px;
  border-radius: 6px;
}

.wallet-choice:hover {
  color: var(--gold-2);
}

.wallet-copy {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.wallet-link[hidden],
.wallet-quiet[hidden] {
  display: none;
}

.wallet-link,
.wallet-quiet {
  display: inline-block;
  margin-top: 12px;
  background: none;
  border: 0;
  padding: 0;
  color: var(--gold-2);
  cursor: pointer;
}

.wallet-link:hover,
.wallet-quiet:hover {
  color: var(--hi);
}

.chart-panel {
  position: relative;
  z-index: 1;
  width: min(1040px, calc(100% - 80px));
  margin: 0 auto 56px;
}

.chart-panel-inset {
  width: 100%;
  margin: 28px 0 0;
}

.ca {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}

.ca span {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.ca code {
  flex: 1;
  min-width: 0;
  overflow-wrap: anywhere;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
}

.ca button {
  background: none;
  border: 1px solid var(--gold);
  color: var(--gold-2);
  padding: 8px 14px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}

.ca button:hover {
  color: var(--ink);
}

.markets {
  margin-top: 28px;
}

.market-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 18px;
  align-items: baseline;
  padding: 16px 0;
  border-top: 1px solid var(--line-soft);
  text-decoration: none;
}

.market-row strong {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.market-row span {
  color: var(--ink);
}

.market-row em {
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.market-row:hover strong {
  color: var(--gold-2);
}

.chart-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.chart-price {
  margin: 0;
  font-family: var(--serif);
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: -0.03em;
}

.chart-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.chart-panel svg {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 8px;
  overflow: visible;
}

.chart-panel text {
  fill: var(--muted);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.chart-grid line {
  stroke: var(--line-soft);
  stroke-width: 1;
}

.chart-area {
  fill: rgba(212, 175, 55, 0.14);
}

.chart-line,
.chart-cursor {
  stroke: var(--gold-2);
  stroke-width: 1.6;
}

.chart-dot {
  fill: var(--gold-2);
}

.chart-tip {
  fill: var(--ink);
  font-size: 12px;
}

.stage {
  position: relative;
  z-index: 1;
  flex: 1;
  display: grid;
  grid-template-columns: 220px auto minmax(220px, 260px);
  align-items: center;
  justify-content: center;
  gap: 72px;
  width: min(1040px, calc(100% - 80px));
  margin: 0 auto;
  padding-bottom: 4vh;
}

body.home {
  display: flex;
  flex-direction: column;
}

.controls {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 36px;
  width: 100%;
  max-width: 220px;
}

.field-label {
  color: var(--gold);
  margin-bottom: 0;
}

.figure {
  margin: 14px 0 16px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 3.35rem;
  line-height: 0.85;
  letter-spacing: -0.045em;
  color: var(--ink);
}

.figure span {
  color: var(--gold-2);
}

.caps,
.pair {
  display: grid;
  width: 100%;
}

.caps {
  grid-template-columns: repeat(3, 1fr);
}

.pair {
  grid-template-columns: 1fr 1fr;
  margin-top: 14px;
}

.caps button,
.pair button {
  background: none;
  border: 0;
  border-top: 1px solid rgba(244, 240, 230, 0.16);
  margin: 0;
  padding: 12px 8px 0 0;
  text-align: left;
  cursor: pointer;
  color: var(--dim);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.caps button[aria-pressed="true"],
.pair button[aria-pressed="true"] {
  color: var(--gold-2);
  border-top-color: var(--gold-2);
}

.caps button:hover,
.pair button:hover {
  color: var(--ink);
}

.flame-slot {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 0;
}

.flame-slot .flame {
  width: auto;
  height: min(32vh, 248px);
  max-width: 100%;
  position: relative;
  z-index: 1;
}

.flame-slot::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6%;
  width: 86%;
  height: 22%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, var(--glow) 0%, transparent 70%);
  filter: blur(8px);
  transition: background 0.6s ease;
}

.caption {
  align-self: center;
  border-left: 1px solid var(--line);
  padding: 4px 0 4px 28px;
  margin: 0;
}

.hero-switch {
  background: none;
  border: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
  color: var(--gold-2);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-switch:hover {
  color: var(--hi);
}

.caption h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(2.15rem, 3.2vw, 3rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.caption h1 .line {
  display: block;
}

.caption > p {
  margin-top: 22px;
  color: var(--muted);
}

.hook-live {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-top: 18px;
}

.hook-live span {
  color: var(--gold);
}

.hook-live em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.55rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  transition: opacity 0.28s ease;
}

.hook-live em.is-out {
  opacity: 0;
}

.open-market {
  display: inline-block;
  margin-top: 26px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-2);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
}

.tape {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: baseline;
  width: min(1040px, calc(100% - 80px));
  margin: 0 auto 28px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.tape span,
.tape a {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tape span {
  color: var(--gold);
}

.tape a {
  color: var(--muted);
}

.tape a:hover {
  color: var(--gold-2);
}

.desk {
  width: min(760px, calc(100% - 48px));
  margin: 0 auto;
  padding: 48px 0 88px;
}

.desk h1 {
  margin-top: 14px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3rem, 6vw, 4.8rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.launch-form,
.trade {
  margin-top: 36px;
}

.fields {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 28px;
}

.launch-form label,
.trade label,
.custom-field {
  display: block;
}

.launch-form label span,
.trade label span,
.custom-field span,
fieldset legend {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.custom-field span em,
fieldset {
  font-style: normal;
}

fieldset {
  border: 0;
  margin: 28px 0 0;
  padding: 0;
}

input,
textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 2rem;
  padding: 8px 0 10px;
  border-radius: 0;
}

textarea {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
  min-height: 84px;
  resize: vertical;
}

.choice,
.hook-pick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.choice button,
.hook-pick button,
.text-action {
  background: none;
  border: 1px solid rgba(244, 240, 230, 0.16);
  color: var(--dim);
  padding: 8px 12px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.choice button[aria-pressed="true"],
.hook-pick button[aria-pressed="true"] {
  color: var(--gold-2);
  border-color: var(--gold);
}

.hook-pick {
  margin-top: 4px;
}

.hook-pick button {
  letter-spacing: 0.08em;
}

.custom-field {
  margin-top: 28px;
}

.split-read,
.form-error {
  min-height: 1.4em;
  margin-top: 14px;
  font-size: 14px;
}

.split-read {
  color: var(--muted);
}

.form-error {
  color: #e0b48a;
}

.go {
  margin-top: 8px;
  background: none;
  border: 1px solid var(--gold);
  color: var(--gold-2);
  padding: 12px 22px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
}

.go:hover,
.text-action:hover,
.choice button:hover,
.hook-pick button:hover {
  color: var(--ink);
}

.quote-row {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 24px;
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.quote-row span,
.ledger dt {
  display: block;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.quote-row strong,
.ledger dd {
  display: block;
  margin-top: 6px;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.ledger {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 24px;
  margin: 36px 0 0;
}

.ledger div {
  border-top: 1px solid var(--line-soft);
  padding-top: 10px;
}

.read-only {
  margin-top: 18px;
}

.read-only span {
  border: 1px solid rgba(244, 240, 230, 0.16);
  color: var(--gold-2);
  padding: 8px 12px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.text-action {
  margin-top: 18px;
}

.doc .nav {
  position: sticky;
  top: 0;
  width: min(1080px, calc(100% - 48px));
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  z-index: 10;
}

.doc-main {
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0 120px;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 48px;
}

.doc-index {
  position: sticky;
  top: 112px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.doc-index a {
  color: var(--dim);
}

.doc-index a:hover,
.doc-index a[aria-current="true"] {
  color: var(--gold-2);
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.doc-main h1 {
  margin-top: 14px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3.4rem, 7vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.dek {
  max-width: 36ch;
  margin-top: 22px;
  color: var(--muted);
  font-size: 18px;
}

.block {
  margin-top: 72px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  scroll-margin-top: 96px;
}

.block h2,
.split h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.03em;
}

.block h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1;
}

.block p {
  max-width: 62ch;
  margin-top: 18px;
  color: var(--muted);
}

.note {
  color: var(--gold) !important;
  margin-top: 22px !important;
}

.figures,
.names,
.flow {
  list-style: none;
  padding: 0;
}

.figures {
  display: flex;
  gap: 36px;
  margin-top: 28px;
}

.figures li {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1;
  color: var(--ink);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 28px;
}

.split h3 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.split p {
  margin-top: 10px;
}

.names {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 32px;
  margin-top: 12px;
}

.names li {
  padding: 13px 0;
  border-top: 1px solid var(--line-soft);
  font-family: var(--serif);
  font-size: 1.55rem;
  color: var(--ink);
}

.flow {
  margin-top: 8px;
  max-width: 360px;
}

.flow li {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.8rem;
  padding: 6px 0;
  border-bottom: 1px solid var(--line-soft);
}

@media (max-width: 860px) {
  .nav,
  .stage,
  .chart-panel,
  .doc .nav,
  .doc-main {
    width: min(1240px, calc(100% - 32px));
  }

  .stage {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 8px;
    padding-bottom: 48px;
  }

  .flame-slot {
    order: -1;
    margin: 8px 0 12px;
  }

  .flame-slot .flame {
    height: 148px;
  }

  .controls {
    order: 1;
    max-width: none;
    gap: 32px;
  }

  .figure {
    font-size: 2.8rem;
  }

  .caption {
    order: 2;
    align-self: start;
    border-left: 0;
    border-top: 1px solid var(--line);
    margin: 28px 0 0;
    padding: 22px 0 0;
  }

  .doc-main {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 36px;
  }

  .doc-index {
    position: static;
    flex-direction: row;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .split,
  .names,
  .figures,
  .fields,
  .quote-row,
  .ledger {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .caps button,
  .hook-live em,
  .flame-slot::before {
    transition: none;
  }
}

html[data-hero="2"] .stage {
  grid-template-columns: minmax(280px, 560px);
  justify-items: center;
  align-content: center;
  gap: 28px 0;
  text-align: center;
}

html[data-hero="2"] .controls {
  order: 3;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  max-width: 220px;
  width: 100%;
}

html[data-hero="2"] .dial {
  width: 100%;
  text-align: center;
}

html[data-hero="2"] .caps button,
html[data-hero="2"] .pair button {
  text-align: center;
  padding-right: 0;
}

html[data-hero="2"] .flame-slot {
  order: 2;
}

html[data-hero="2"] .flame-slot .flame {
  height: min(24vh, 188px);
}

html[data-hero="2"] .caption {
  order: 1;
  border: 0;
  padding: 0;
}

html[data-hero="2"] .caption h1 {
  padding-bottom: 18px;
  background: linear-gradient(var(--gold), var(--gold)) center bottom / 42px 1px no-repeat;
}

html[data-hero="2"] .caption h1 {
  font-size: clamp(3.6rem, 7vw, 6.2rem);
}

html[data-hero="2"] .hook-live {
  align-items: center;
}

html[data-hero="3"] .stage {
  display: block;
  width: min(1120px, calc(100% - 80px));
  padding-right: 196px;
}

html[data-hero="3"] .controls {
  display: block;
  max-width: min(560px, 62%);
}

html[data-hero="3"] .dial:last-child {
  margin-top: 28px;
  max-width: 220px;
}

html[data-hero="3"] .figure {
  font-size: clamp(7.4rem, 16vw, 12.5rem);
  line-height: 1;
  margin: 0 0 0.42em;
}

html[data-hero="3"] .flame-slot {
  position: absolute;
  right: 0;
  top: 6%;
}

html[data-hero="3"] .flame-slot .flame {
  height: min(30vh, 220px);
}

html[data-hero="3"] .caption {
  border: 0;
  padding: 28px 0 0;
  margin-top: 10px;
}

html[data-hero="3"] .caption h1 {
  font-size: clamp(2.8rem, 5vw, 4.6rem);
}

html[data-hero="4"] .stage {
  grid-template-columns: minmax(180px, 280px) minmax(280px, 380px);
  gap: 56px;
  width: min(860px, calc(100% - 80px));
  align-items: center;
}

html[data-hero="4"] .flame-slot {
  grid-column: 1;
  grid-row: 1 / span 2;
}

html[data-hero="4"] .flame-slot .flame {
  height: min(48vh, 400px);
}

html[data-hero="4"] .controls {
  grid-column: 2;
  grid-row: 1;
  max-width: none;
  align-self: end;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

html[data-hero="4"] .caption {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  border-left: 0;
  padding: 26px 0 0;
}

html[data-hero="5"] .stage {
  grid-template-columns: minmax(280px, 640px);
  justify-items: center;
  align-content: center;
  gap: 8px;
  text-align: center;
}

html[data-hero="5"] .flame-slot {
  order: 1;
}

html[data-hero="5"] .flame-slot .flame {
  height: min(50vh, 420px);
}

html[data-hero="5"] .caption {
  display: contents;
}

html[data-hero="5"] .caption h1 {
  order: 2;
  font-family: var(--sans);
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  line-height: 1.4;
  padding-top: 14px;
}

html[data-hero="5"] .caption h1 .line {
  display: inline;
}

html[data-hero="5"] .caption h1 .line + .line::before {
  content: " ";
}

html[data-hero="5"] .caption > p,
html[data-hero="5"] .hook-live {
  display: none;
}

html[data-hero="5"] .figure {
  display: none;
}

html[data-hero="5"] .pair {
  margin-top: 0;
}

html[data-hero="5"] .controls {
  order: 3;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 64px;
  max-width: 420px;
  width: 100%;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

html[data-hero="5"] .open-market {
  order: 4;
  margin-top: 22px;
}

@media (max-width: 860px) {
  body.home .nav {
    flex-wrap: wrap;
    row-gap: 14px;
  }

  body.home .nav-actions {
    width: 100%;
    justify-content: flex-start;
    gap: 18px;
  }

  .hero-switch {
    letter-spacing: 0.08em;
  }

  html[data-hero="2"] .controls,
  html[data-hero="5"] .controls {
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
    max-width: none;
  }

  html[data-hero="2"] .caption h1 {
    font-size: 3.1rem;
  }

  html[data-hero="3"] .stage {
    padding-right: 0;
  }

  html[data-hero="3"] .flame-slot {
    position: static;
    margin: 0 0 8px;
  }

  html[data-hero="3"] .figure {
    font-size: 4.6rem;
  }

  html[data-hero="3"] .caption {
    border-top: 1px solid var(--line);
    margin-top: 22px;
    padding-top: 22px;
  }

  html[data-hero="4"] .stage {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  html[data-hero="4"] .flame-slot,
  html[data-hero="4"] .controls,
  html[data-hero="4"] .caption {
    grid-column: auto;
    grid-row: auto;
  }

  html[data-hero="4"] .controls {
    border-bottom: 0;
    padding-bottom: 0;
  }

  html[data-hero="4"] .flame-slot .flame,
  html[data-hero="5"] .flame-slot .flame {
    height: 168px;
  }

  html[data-hero="5"] .caption h1 {
    letter-spacing: 0.28em;
  }
}
