:root {
  --background: #09090b;
  --foreground: #f3f1f2;
  --red: #f0444b;
  --ease-out: cubic-bezier(.23, 1, .32, 1);
  --ease-in-out: cubic-bezier(.77, 0, .175, 1);
  --press: .11s;
  --hover: .18s;
  --font-geist-sans: "Geist", ui-sans-serif, system-ui, sans-serif;
  --font-geist-mono: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --font-pirata-one: "Pirata One", "Geist", serif;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 104px; }
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-geist-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
button, input, select { font: inherit; }
button, a, input { -webkit-tap-highlight-color: transparent; }
button, a { touch-action: manipulation; }
button { cursor: pointer; color: inherit; background: none; border: 0; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline-offset: 3px; outline: 2px solid #ff7378; }
::selection { color: #fff; background: #bd283c; }

.page { overflow: clip; }
.container { width: min(1248px, 100% - 112px); margin-inline: auto; }

.skip-link {
  z-index: 100; background: var(--red); border-radius: 6px;
  padding: 12px 20px; position: fixed; top: 10px; left: 10px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

/* Header */
.header { z-index: 5; border-bottom: 1px solid #ffffff0b; height: 88px; position: relative; }
.header-inner {
  justify-content: space-between; align-items: center; gap: 32px;
  max-width: 1360px; height: 100%; margin: auto; padding-inline: 56px; display: flex;
}
.brand {
  letter-spacing: -1.4px; align-items: center; gap: 9px;
  font-size: 27px; font-weight: 730; display: inline-flex;
}
.brand > svg { width: 44px; height: auto; color: var(--red); transform-origin: 50% 62%; }
@media (hover: hover) and (pointer: fine) {
  .brand:hover > svg { animation: wingFlap .58s var(--ease-in-out) infinite; }
}
.brand:focus-visible > svg { animation: wingFlap .58s var(--ease-in-out) infinite; }
@keyframes wingFlap {
  0%,100% { transform: scale(1) translateY(0); }
  25% { transform: scale(.68, 1.14) translateY(-1.5px); }
  50% { transform: scale(1.03, .95) translateY(1px); }
  75% { transform: scale(.76, 1.1) translateY(-1px); }
}
.brand-period { color: var(--red); }

.nav {
  color: #89878d; align-items: center; gap: 30px;
  margin-left: 54px; margin-right: auto; font-size: 14px; display: flex;
}
.nav a { transition: color var(--hover) ease; align-items: center; gap: 5px; display: flex; }
.nav a:hover, .nav .nav-active { color: #f4f2f3; }
.nav-active { position: relative; }
.nav-active::after {
  content: ""; background: var(--red); border-radius: 50%;
  width: 4px; height: 4px; position: absolute; bottom: -13px; left: calc(50% - 2px);
}

.header-actions { align-items: center; gap: 26px; display: flex; }
.header-wallet { min-width: 0; display: flex; }
.solana-badge {
  color: #8b878e; white-space: nowrap; align-items: center; gap: 8px; font-size: 12px; display: inline-flex;
}
.solana-badge svg { color: #c5beca; }

.wallet-button {
  white-space: nowrap; color: #e6dde3; height: 38px;
  transition: background var(--hover) ease, border-color var(--hover) ease, transform var(--hover) var(--ease-out);
  background: #ffffff05; border: 1px solid #ffffff12; border-radius: 7px;
  align-items: center; gap: 8px; padding-inline: 15px; font-size: 12px; font-weight: 550;
  display: inline-flex;
}
.wallet-button:hover { background: #ffffff0b; border-color: #ffffff1f; }
.wallet-button:active:not(:disabled) { transition-duration: var(--press); transform: scale(.97); }

.header-create {
  color: #151417; white-space: nowrap;
  transition: background var(--hover) ease, box-shadow var(--hover) var(--ease-out), transform var(--hover) var(--ease-out);
  background: #efeeee; border: 1px solid #fff; border-radius: 6px;
  justify-content: center; align-items: center; gap: 7px;
  padding: 10px 15px; font-size: 13px; font-weight: 650; display: flex;
  box-shadow: inset 0 2px 2px #fffc, inset 0 -3px 7px #352b382b, 0 2px 5px #0003;
}
@media (hover: hover) and (pointer: fine) {
  .header-create:hover { background: #fff; transform: translateY(-1px); }
}
.header-create:active {
  transition-duration: var(--press); transform: translateY(1px) scale(.985);
  box-shadow: inset 0 2px 6px #0004, inset 0 -1px 1px #ffffff12;
}

/* Mobile menu toggle */
.menu-toggle {
  color: #f3f1f2; width: 44px; height: 44px;
  transition: background .18s ease, transform .18s var(--ease-out);
  background: 0 0; border: 0; border-radius: 10px;
  justify-content: center; align-items: center; padding: 0; display: none;
}
.menu-toggle:hover { background: #ffffff08; }
.menu-toggle:active { transition-duration: var(--press); transform: scale(.94); }
.menu-bars { width: 20px; height: 14px; position: relative; }
.menu-bars > span {
  width: 20px; height: 1.5px;
  transition: transform .22s var(--ease-in-out), opacity .15s ease;
  background: currentColor; border-radius: 2px; position: absolute; left: 0;
}
.menu-bars > span:nth-child(1) { top: 0; }
.menu-bars > span:nth-child(2) { top: 6px; }
.menu-bars > span:nth-child(3) { top: 12px; }
.menu-toggle[data-open] .menu-bars > span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[data-open] .menu-bars > span:nth-child(2) { opacity: 0; }
.menu-toggle[data-open] .menu-bars > span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile dialog */
.mobile-dialog {
  background: var(--background); width: 100%; max-width: none;
  height: 100dvh; max-height: none; color: var(--foreground);
  opacity: 0; transition: opacity .2s ease, transform .25s var(--ease-out);
  border: 0; margin: 0; padding: 0; position: fixed; inset: 0;
  overflow: hidden; transform: translateY(-8px);
}
.mobile-dialog[open] { opacity: 1; display: block; transform: translateY(0); }
.mobile-dialog::backdrop { background: var(--background); opacity: 0; transition: opacity .2s ease; }
.mobile-dialog[open]::backdrop { opacity: 1; }
.mobile-panel { height: 100%; flex-direction: column; display: flex; }
.mobile-topbar {
  flex: none; justify-content: space-between; align-items: center;
  gap: 20px; height: 76px; padding-inline: 24px; display: flex;
}
.menu-close {
  color: #f3f1f2; width: 44px; height: 44px;
  transition: background .18s ease, transform .18s var(--ease-out);
  border-radius: 10px; justify-content: center; align-items: center; display: flex;
}
.menu-close:hover { background: #ffffff08; }
.mobile-body {
  width: min(100%, 560px); padding: 24px 28px max(32px, env(safe-area-inset-bottom));
  flex-direction: column; flex: 1; margin-inline: auto; display: flex; overflow-y: auto;
}
.mobile-nav {
  gap: 18px; margin-block: auto; padding-block: 40px; display: grid;
}
.mobile-nav a {
  color: #c1b9c0; letter-spacing: -1.3px; min-height: 64px;
  transition: color .18s ease, transform .18s var(--ease-out);
  align-items: center; gap: 20px; padding-block: 8px;
  font-size: clamp(30px, 8.7vw, 46px); font-weight: 500; line-height: 1.2; display: flex;
}
.mobile-nav a.mobile-nav-active { color: #fff; }
.mobile-nav a.mobile-nav-active::after {
  content: ""; background: var(--red); border-radius: 50%;
  flex: none; width: 7px; height: 7px;
}
.mobile-create {
  background: var(--red); color: #fff; min-height: 56px;
  transition: background .18s ease, transform .18s var(--ease-out);
  border: 1px solid #ff7378; border-radius: 10px;
  justify-content: center; align-items: center; gap: 10px;
  padding: 16px 20px; font-size: 15px; font-weight: 600; display: flex;
}
.mobile-create:hover { background: #ff5660; }

/* Hero */
.hero {
  isolation: isolate; text-align: center; justify-content: center;
  min-height: 560px; padding-block: 96px 88px; display: flex; position: relative;
}
.hero-backdrop {
  z-index: -1;
  background: radial-gradient(ellipse 66% 58% at 50% 40%, #3d0b1c 0%, transparent 72%), var(--background);
  position: absolute; inset: -88px 0 0; overflow: clip;
}
.hero-canvas {
  width: 100%; height: 100%; display: block;
  -webkit-mask-image: linear-gradient(#000 52%, #0000 97%);
  mask-image: linear-gradient(#000 52%, #0000 97%);
}
.hero-backdrop::after {
  content: "";
  background: radial-gradient(44% 46%, #09090bcc 0%, #09090b73 48%, #0000 78%);
  position: absolute; inset: 0;
}
.hero-copy {
  flex-direction: column; align-items: center; min-width: 0; max-width: 830px; display: flex;
}
.hero-eyebrow {
  font-family: var(--font-geist-mono); color: #cbb9bb; letter-spacing: 1.7px;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  background: #ffffff07; border: 1px solid #ffffff16; border-radius: 999px;
  align-items: center; gap: 9px; padding: 7px 16px 7px 13px;
  font-size: 10px; font-weight: 450; display: inline-flex;
}
.live-dot {
  background: #f65255; border-radius: 50%; flex-shrink: 0;
  width: 5px; height: 5px; display: inline-block; box-shadow: 0 0 9px #f6525570;
}
.hero h1 {
  font-family: var(--font-pirata-one), Georgia, serif;
  letter-spacing: -.02em;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(#fffbfa 16%, #d3bec2 94%);
  -webkit-background-clip: text; background-clip: text;
  margin: 28px 0 0; font-size: clamp(72px, 9.4vw, 136px); font-weight: 400; line-height: .94;
}
.hero-period { -webkit-text-fill-color: #e63b48; }
.hero-copy > p {
  color: #a9a2ab; text-wrap: pretty; max-width: 580px;
  margin: 24px 0 0; font-size: 16px; line-height: 1.78;
}
.hero-actions { align-items: center; gap: 13px; margin-top: 36px; display: flex; }
.compact-label { display: none; }

.btn-primary, .btn-secondary {
  min-height: 43px;
  transition: background var(--hover) ease, border-color var(--hover) ease,
              box-shadow var(--hover) var(--ease-out), transform var(--hover) var(--ease-out);
  border: 1px solid #0000; border-radius: 6px;
  justify-content: center; align-items: center; gap: 10px;
  padding: 0 17px; font-size: 13px; font-weight: 570; display: inline-flex;
}
.btn-primary {
  color: #fff; background: #ef4147; border-color: #ff62665c;
  box-shadow: 0 4px 18px #f0394214, inset 0 2px 3px #ffffff38, inset 0 -4px 9px #69081d52;
}
.btn-primary > svg:first-child { width: 25px; height: auto; }
.btn-primary > svg:last-child { margin-left: 8px; }
@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover {
    background: #ff5359; transform: translateY(-1px);
    box-shadow: 0 4px 25px #f039422d, inset 0 2px 4px #ffffff42, inset 0 -4px 9px #69081d45;
  }
}
.btn-secondary {
  color: #d2ced4; background: #ffffff02; border-color: #fff1;
  box-shadow: inset 0 1px 2px #ffffff0e, inset 0 -3px 8px #0007;
}
.btn-secondary svg { color: #98919b; margin-left: 5px; }
.btn-secondary:hover { background: #ffffff06; border-color: #ffffff2c; }
.btn-primary:active:not(:disabled), .btn-secondary:active {
  transition-duration: var(--press); transform: translateY(1px) scale(.985);
  box-shadow: inset 0 2px 6px #0004, inset 0 -1px 1px #ffffff12;
}

.hero-pair {
  font-family: var(--font-geist-mono); letter-spacing: .6px; color: #cdc4c7;
  align-items: center; gap: 13px; margin-top: 46px; font-size: 11px; display: flex;
}
.pair-node {
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  white-space: nowrap; background: #100e12a6; border: 1px solid #ffffff14;
  border-radius: 999px; align-items: center; gap: 9px;
  padding: 6px 15px 6px 6px; display: inline-flex;
}
.pair-node img { object-fit: cover; border-radius: 50%; width: 22px; height: 22px; }
.pair-vamp {
  color: #0b0509; background: #e63b48; border-radius: 50%;
  place-items: center; width: 22px; height: 22px; display: grid;
}
.pair-vamp svg { width: 18px; height: auto; }
.pair-vamp svg g { fill: #e63b48; }
.pair-link { color: #ef4a52; align-items: center; gap: 8px; display: inline-flex; }
.pair-link > span { background: linear-gradient(90deg, #ef4a5200, #ef4a5285); width: 30px; height: 1px; }
.pair-link > span:last-child { background: linear-gradient(90deg, #ef4a5285, #ef4a5200); }

/* CA pill */
.ca-pill {
  max-width: 100%;
  transition: color var(--hover) ease, border-color var(--hover) ease, transform var(--hover) var(--ease-out);
  gap: 10px; padding-right: 13px;
}
.ca-pill:hover { color: #fff; border-color: #ffffff2c; }
.ca-pill:active { transition-duration: var(--press); transform: scale(.97); }
.ca-pill > svg { color: #af636a; flex-shrink: 0; }
.ca-ticker { color: #f0444b; white-space: nowrap; font-weight: 500; }
.ca-full, .ca-short { text-overflow: ellipsis; white-space: nowrap; letter-spacing: .2px; overflow: hidden; }
.ca-short { display: none; }

/* Value strip */
.value-strip {
  border-block: 1px solid #ffffff0d; justify-content: center;
  align-items: center; gap: 62px; min-height: 68px; display: flex;
}
.value-strip > div {
  color: #a29aa4; align-items: center; gap: 11px; font-size: 13px; display: flex;
}
.value-strip > div > svg { color: #af636a; width: 22px; height: auto; }
.value-strip .bat-icon { width: 22px; }
.strip-diamond { color: #58343b; font-size: 11px; }

/* Explore section */
.explore-section { padding-top: 64px; padding-bottom: 67px; }
.section-top { justify-content: space-between; align-items: center; display: flex; }
.eyebrow {
  font-family: var(--font-geist-mono); letter-spacing: 1.55px; color: #a58d96;
  align-items: center; gap: 8px; font-size: 10px; font-weight: 450; display: inline-flex;
}
.section-top h2 { letter-spacing: -1.4px; margin: 11px 0 10px; font-size: 32px; font-weight: 550; }
.section-top h2 > span { color: #e64c51; }
.section-top p { color: #7e7784; margin: 0; font-size: 13px; }
.empty-note { text-align: center; color: #7e7784; margin: 0; padding: 72px 20px; font-size: 14px; }

/* How it works */
.how-section {
  border-top: 1px solid #ffffff0c; grid-template-columns: 1fr 2.9fr;
  gap: 47px; padding-block: 60px 65px; display: grid;
}
.how-intro h2 { letter-spacing: -1.3px; margin: 13px 0; font-size: 30px; font-weight: 550; line-height: 1.25; }
.how-intro > p { color: #807485; font-size: 12px; line-height: 1.9; }
.how-intro > a {
  color: #d28b98; transition: color var(--hover) ease;
  align-items: center; gap: 10px; margin-top: 11px; font-size: 11px; display: inline-flex;
}
.how-intro > a:hover { color: #ffc6d2; }
.how-intro > a:active { transform: scale(.97); }

.steps { grid-template-columns: repeat(3, 1fr); padding-top: 6px; display: grid; }
.step {
  border-left: 1px solid #ffffff0c; flex-direction: column;
  align-items: flex-start; padding: 23px 0 0 23px; display: flex; position: relative;
}
.step-number {
  color: #51414b; font-family: var(--font-geist-mono);
  font-size: 11px; position: absolute; top: 0; right: 0;
}
.step + .step { margin-left: 23px; }
.step-icon {
  color: #c98c93; background: #171215; border: 1px solid #ffffff0c;
  border-radius: 9px; justify-content: center; align-items: center;
  width: 43px; height: 43px; margin-bottom: 27px; display: flex;
}
.red-step-icon { color: #f3747d; background: #2a1019; border-color: #ef525c21; }
.step-icon > svg { width: 28px; height: auto; }
.step h3 { letter-spacing: -.2px; margin: 0 0 12px; font-size: 14px; font-weight: 530; }
.step p { color: #807485; margin: 0; font-size: 11px; line-height: 1.9; }
.step-detail { color: #665766; margin-top: auto; padding-top: 23px; font-size: 9px; display: inline-block; }

/* Rewards */
.rewards-section {
  background: radial-gradient(at 0 100%, #72102810, #0000 70%), #100d11;
  border: 1px solid #b651651d; border-radius: 10px;
  grid-template-columns: 1fr 1fr; align-items: center; gap: 75px;
  padding: 41px 38px; display: grid;
}
.rewards-copy h2 { letter-spacing: -1.5px; margin: 16px 0 14px; font-size: 31px; font-weight: 550; line-height: 1.2; }
.rewards-copy h2 > span { color: #9d7c8a; }
.rewards-copy > p { color: #8c7c8c; margin: 0; font-size: 12px; line-height: 1.9; }
.reward-example {
  color: #c7aab6; align-items: center; gap: 10px;
  padding-top: 20px; font-size: 11px; display: inline-flex;
}
.reward-example-images { align-items: center; gap: 7px; display: flex; }
.reward-example-images > img, .red-avatar {
  border-radius: 50%; width: 23px; height: 23px; overflow: hidden;
}
.red-avatar { background: #e14049; display: block; }
.red-avatar img { mix-blend-mode: luminosity; width: 23px; height: 23px; }
.reward-example-images > svg { color: #796672; }

.reward-breakdown { min-width: 0; }
.split-labels { grid-template-columns: 1.3fr 1.1fr 1fr; gap: 20px; margin-top: 20px; display: grid; }
.split-labels > div { flex-direction: column; gap: 13px; display: flex; }
.split-labels > div > span:first-child {
  color: #d2bac6; letter-spacing: -2px; font-size: 40px; font-weight: 450;
}
.split-labels > div > span:first-child > span { color: #9c7e8e; margin-left: 3px; font-size: 21px; }
.split-labels > div > .holder-percentage { color: #f26672; }
.split-labels > div > .holder-percentage > span { color: #cb4c5c; }
.split-labels > div > span:last-child {
  color: #9c8494; align-items: center; gap: 6px; font-size: 11px; display: flex;
}
.split-labels i { border-radius: 1px; width: 5px; height: 5px; }
.red-dot { background: #e85469; }
.muted-red-dot { background: #91415d; }
.gray-dot { background: #574454; }

.split-bar {
  border-radius: 3px; grid-template-columns: 7fr 2fr 1fr;
  gap: 4px; height: 12px; margin-top: 24px; display: grid; overflow: hidden;
}
.split-bar > span:first-child {
  background:
    repeating-linear-gradient(-55deg, #0000 0 2px, #ffffff15 2px 3px),
    linear-gradient(90deg, #c9334d, #ee6578);
}
.split-bar > span:nth-child(2) { background: #92405c; }
.split-bar > span:last-child { background: #514050; }
.split-footnote {
  color: #745f70; align-items: center; gap: 6px;
  margin-top: 17px; font-size: 10px; display: flex;
}

/* Final CTA */
.final-cta {
  isolation: isolate; justify-content: space-between; align-items: center;
  padding-block: 74px 73px; display: flex; position: relative;
}
.final-cta h2 { letter-spacing: -1.2px; margin: 13px 0 10px; font-size: 31px; font-weight: 550; }
.final-cta p { color: #887b8b; margin: 0; font-size: 13px; }
.cta-decoration {
  z-index: -1; color: #2a151d; opacity: .6;
  position: absolute; top: 35px; right: 30%; transform: rotate(-17deg);
}
.cta-decoration > svg { width: 185px; height: auto; }
.final-cta > a { flex-shrink: 0; }
.mobile-break { display: none; }

/* Footer */
.site-footer {
  border-top: 1px solid #ffffff0c; justify-content: space-between;
  align-items: center; gap: 25px; padding-block: 26px 30px; display: flex;
}
.site-footer > div { align-items: center; gap: 22px; display: flex; }
.site-footer .brand { gap: 6px; font-size: 21px; }
.site-footer .brand svg { width: 24px; height: 25px; }
.site-footer > div > span { color: #726473; font-size: 10px; }
.footer-copyright { color: #5f5262; font-size: 10px; }
.site-footer > a { color: #878; align-items: center; gap: 4px; font-size: 10px; display: flex; }
.site-footer > a > svg { width: 9px; margin-left: 3px; }
.site-footer > a:hover { color: #c4aebc; }

.bat-icon { width: 22px; height: auto; }

/* Breakpoints */
@media (width >= 1500px) {
  .hero { min-height: 620px; }
  .hero-copy > p { font-size: 17px; }
}
@media (width <= 1150px) {
  .container { width: calc(100% - 72px); }
  .header-inner { padding-inline: 36px; }
  .nav { gap: 20px; margin-left: 22px; }
  .header-actions { gap: 17px; }
  .solana-badge { display: none; }
  .hero { min-height: 560px; padding-block: 84px 92px; }
  .hero-copy > p { font-size: 15px; }
  .value-strip { gap: 40px; }
  .how-section { grid-template-columns: 1fr 3fr; gap: 23px; }
  .step { padding-left: 17px; }
  .step + .step { margin-left: 17px; }
  .step h3 { font-size: 13px; }
  .step p { font-size: 10px; }
  .step p br { display: none; }
  .how-intro h2 { font-size: 27px; }
  .rewards-section { gap: 40px; padding-inline: 30px; }
  .split-labels { gap: 14px; }
  .split-labels > div > span:last-child { font-size: 10px; }
}
@media (width <= 850px) {
  .container { width: calc(100% - 48px); }
  .header { height: 76px; }
  .header-inner { gap: 20px; padding-inline: 24px; }
  .nav, .header-create { display: none; }
  .header-actions { gap: 10px; margin-left: auto; }
  .header-wallet button { min-height: 44px; }
  .menu-toggle { display: flex; }
  .brand { font-size: 25px; }
  .hero { min-height: 500px; padding-block: 68px 76px; }
  .hero h1 { font-size: clamp(64px, 12vw, 92px); }
  .hero-eyebrow { letter-spacing: 1.3px; font-size: 9px; }
  .hero-copy > p { max-width: 470px; font-size: 14px; }
  .desktop-break { display: none; }
  .hero-actions { gap: 9px; margin-top: 30px; }
  .btn-primary, .btn-secondary { gap: 7px; padding-inline: 13px; font-size: 12px; }
  .btn-primary > svg:last-child { margin-left: 3px; }
  .ca-full { display: none; }
  .ca-short { display: inline; }
  .hero-pair { gap: 10px; margin-top: 36px; font-size: 10px; }
  .value-strip { gap: 20px; min-height: 60px; }
  .value-strip > div { gap: 6px; font-size: 11px; }
  .value-strip > div > svg { width: 18px; }
  .strip-diamond { font-size: 9px; }
  .how-section { grid-template-columns: 1fr; gap: 35px; }
  .how-intro h2 br, .how-intro > p br { display: none; }
  .how-intro h2 { font-size: 30px; }
  .how-intro > a { margin-top: 5px; }
  .step { padding-top: 10px; padding-left: 20px; }
  .step h3 { font-size: 14px; }
  .step p { font-size: 12px; }
  .step-detail { font-size: 9px; }
  .rewards-section { grid-template-columns: 1fr; gap: 12px; padding: 32px; }
  .rewards-copy h2 br { display: none; }
  .rewards-copy h2 { font-size: 27px; }
  .rewards-copy > p { max-width: 410px; }
  .split-labels { grid-template-columns: repeat(3, 1fr); }
  .split-labels > div > span:last-child { font-size: 12px; }
  .final-cta { gap: 20px; }
  .final-cta h2 { max-width: 360px; font-size: 26px; }
  .site-footer > div { gap: 12px; }
  .site-footer > div > span { display: none; }
}
@media (width <= 600px) {
  .container { width: calc(100% - 40px); }
  .wide-label { display: none; }
  .compact-label { display: inline; }
  .header { height: 73px; }
  .header-inner { gap: 10px; padding-inline: 20px; }
  .brand { gap: 6px; font-size: 25px; }
  .brand > svg { width: 39px; }
  .hero { min-height: auto; padding-block: 52px 62px; }
  .hero-backdrop { inset: -72px 0 0; }
  .hero-eyebrow { letter-spacing: 1.1px; padding: 6px 13px 6px 11px; font-size: 9px; }
  .hero h1 { margin-top: 24px; font-size: clamp(56px, 15vw, 82px); }
  .hero-copy > p { max-width: 380px; margin-top: 20px; font-size: 14px; line-height: 1.75; }
  .hero-actions { gap: 10px; margin-top: 28px; }
  .btn-primary, .btn-secondary { min-height: 44px; padding-inline: 12px; font-size: 12px; }
  .btn-primary > svg:last-child { margin-left: 5px; }
  .hero-pair { gap: 8px; margin-top: 32px; font-size: 9px; }
  .pair-node { gap: 7px; padding: 5px 12px 5px 5px; }
  .pair-node img, .pair-vamp { width: 19px; height: 19px; }
  .pair-vamp svg { width: 15px; }
  .pair-link > span { width: 14px; }
  .value-strip {
    grid-template-columns: 1fr 1fr; gap: 15px 10px;
    min-height: 95px; padding-block: 17px; display: grid;
  }
  .value-strip > div { justify-content: center; gap: 7px; font-size: 11px; }
  .value-strip > div:last-child { grid-column: 1 / -1; }
  .strip-diamond { display: none; }
  .explore-section { padding-top: 43px; padding-bottom: 46px; }
  .eyebrow { font-size: 9px; }
  .section-top { align-items: end; }
  .section-top h2 { letter-spacing: -1.2px; margin-top: 10px; font-size: 27px; }
  .section-top p { font-size: 12px; }
  .how-section { gap: 28px; padding-block: 41px; }
  .how-intro h2 { font-size: 29px; }
  .how-intro > p { font-size: 13px; }
  .steps { grid-template-columns: 1fr; }
  .step { border: 0; margin-left: 0; padding: 0 0 29px 68px; }
  .step + .step { margin-left: 0; }
  .step:not(:last-child)::before {
    content: ""; background: #ffffff0d; width: 1px;
    position: absolute; top: 47px; bottom: 7px; left: 22px;
  }
  .step:last-child { padding-bottom: 0; }
  .step-number { font-size: 10px; top: 3px; right: 4px; }
  .step-icon { width: 44px; height: 44px; margin: 0; position: absolute; top: 0; left: 0; }
  .step h3 { margin-bottom: 8px; font-size: 15px; }
  .step p { max-width: 240px; font-size: 13px; line-height: 1.8; }
  .step-detail { margin-top: 9px; font-size: 10px; }
  .rewards-section { gap: 9px; padding: 27px 22px; }
  .rewards-copy h2 { font-size: 27px; line-height: 1.22; }
  .rewards-copy h2 br { display: block; }
  .rewards-copy > p { font-size: 13px; }
  .reward-example { font-size: 11px; }
  .split-labels { gap: 9px; margin-top: 22px; }
  .split-labels > div > span:first-child { font-size: 35px; }
  .split-labels > div > span:first-child > span { font-size: 17px; }
  .split-labels > div > span:last-child { gap: 4px; font-size: 10px; }
  .split-labels i { width: 4px; height: 4px; }
  .split-bar { margin-top: 18px; }
  .split-footnote { font-size: 9px; }
  .final-cta { padding-block: 50px; display: block; }
  .final-cta h2 { max-width: 380px; font-size: 29px; line-height: 1.2; }
  .final-cta > a { margin-top: 24px; }
  .mobile-break { display: block; }
  .cta-decoration { opacity: .5; top: 94px; right: -10px; }
  .cta-decoration > svg { width: 155px; }
  .site-footer { flex-wrap: wrap; gap: 18px; padding-block: 22px 25px; }
  .site-footer .brand { font-size: 22px; }
  .site-footer .brand > svg { width: 34px; }
  .footer-copyright { margin-left: auto; font-size: 10px; }
  .site-footer > a { width: 100%; font-size: 10px; }
}
@media (width <= 360px) {
  .container { width: calc(100% - 32px); }
  .header-inner { padding-inline: 16px; }
  .header-actions { gap: 4px; }
  .header-wallet > button { padding-inline: 9px; }
  .hero h1 { font-size: 54px; }
  .hero-eyebrow { letter-spacing: .9px; font-size: 8px; }
  .btn-primary, .btn-secondary { padding-inline: 10px; font-size: 12px; }
  .section-top h2 { font-size: 24px; }
  .hero-pair { flex-wrap: wrap; justify-content: center; }
  .hero-actions { gap: 8px; }
  .hero-actions .btn-primary, .hero-actions .btn-secondary { padding-inline: 9px; font-size: 11px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .15s !important;
  }
}
