:root {
  --bg: #050906;
  --panel: #09110c;
  --panel-2: #0d1711;
  --line: rgba(255,255,255,.09);
  --line-strong: rgba(255,255,255,.15);
  --text: #f4f5f1;
  --muted: #9ca69f;
  --green: #75e59f;
  --green-bright: #9af4ba;
  --gold: #c9a769;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(43,99,63,.16), transparent 32%),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

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

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

.skip {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 1000;
  padding: 12px 18px;
  color: #061009;
  background: var(--green);
}

.skip:focus {
  top: 20px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}

.site-header.scrolled {
  background: rgba(5,9,6,.85);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(calc(100% - 48px), var(--max));
  height: 88px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand span {
  display: grid;
  line-height: 1;
}

.brand strong {
  font-size: 18px;
  letter-spacing: -.03em;
}

.brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .28em;
}

.desktop-nav {
  display: flex;
  gap: 34px;
}

.desktop-nav a {
  color: #bac2bc;
  font-size: 13px;
  transition: color .2s ease;
}

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

.header-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: #b7c0ba;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px var(--green);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: white;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 950px;
  padding-top: 88px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.grid-lines {
  position: absolute;
  inset: 0;
  opacity: .34;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 90%);
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.glow-one {
  width: 650px;
  height: 650px;
  top: 60px;
  right: -180px;
  background: radial-gradient(circle, rgba(48,128,80,.25), transparent 68%);
}

.glow-two {
  width: 500px;
  height: 500px;
  left: -250px;
  bottom: 0;
  background: radial-gradient(circle, rgba(201,167,105,.08), transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), var(--max));
  min-height: 760px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  align-items: center;
  gap: 78px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 25px;
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 35px;
  height: 1px;
  background: currentColor;
}

.hero h1,
.section-heading h2,
.market-copy h2,
.season-copy h2,
.capital-copy h2,
.closing h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.055em;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(70px, 7.3vw, 112px);
  line-height: .9;
}

.hero h1 em,
.section h2 em {
  display: block;
  color: var(--green-bright);
  font-weight: 400;
}

.hero-lead {
  max-width: 640px;
  margin: 34px 0 0;
  color: #abb5ae;
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 38px;
}

.button {
  min-height: 54px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid var(--line-strong);
  font-size: 13px;
  font-weight: 700;
}

.button.primary {
  color: #061009;
  border-color: var(--green);
  background: var(--green);
}

.button.secondary {
  color: #d5dbd7;
  background: rgba(255,255,255,.025);
}

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

.hero-stats {
  margin-top: 56px;
  display: flex;
  gap: 0;
}

.hero-stats div {
  min-width: 145px;
  padding-right: 30px;
  margin-right: 30px;
  border-right: 1px solid var(--line);
}

.hero-stats div:last-child {
  border: 0;
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 400;
}

.hero-stats span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.hero-visual {
  position: relative;
  min-height: 610px;
  display: grid;
  place-items: center;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(116,229,159,.13);
  border-radius: 50%;
}

.orbit-one {
  width: 540px;
  height: 540px;
}

.orbit-two {
  width: 410px;
  height: 410px;
}

.product-card {
  position: relative;
  z-index: 2;
  width: min(430px, 88%);
  min-height: 530px;
  padding: 25px;
  border: 1px solid rgba(255,255,255,.13);
  background:
    linear-gradient(145deg, rgba(255,255,255,.06), transparent 35%),
    linear-gradient(180deg, #101a13, #070d09);
  box-shadow: 0 45px 100px rgba(0,0,0,.55);
  transform: rotate(2deg);
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(201,167,105,.18);
  pointer-events: none;
}

.product-top,
.product-footer {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  color: #89948c;
  font-size: 9px;
  letter-spacing: .16em;
}

.logo-stage {
  position: relative;
  height: 340px;
  display: grid;
  place-items: center;
}

.logo-stage img {
  position: relative;
  z-index: 2;
  width: 275px;
  filter: drop-shadow(0 25px 30px rgba(0,0,0,.55));
}

.logo-halo {
  position: absolute;
  width: 290px;
  height: 290px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96,221,142,.18), transparent 68%);
}

.product-title {
  position: relative;
  z-index: 2;
  text-align: center;
}

.product-title small,
.product-title strong {
  display: block;
}

.product-title small {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.product-title strong {
  margin-top: 8px;
  font-family: Georgia, serif;
  font-size: 29px;
  font-weight: 400;
}

.product-footer {
  margin-top: 33px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.float-card {
  position: absolute;
  z-index: 3;
  min-width: 165px;
  padding: 17px 19px;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(8,15,10,.9);
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
  backdrop-filter: blur(14px);
}

.float-card span,
.float-card strong,
.float-card small {
  display: block;
}

.float-card span {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.float-card strong {
  margin-top: 7px;
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 400;
}

.float-card small {
  margin-top: 4px;
  color: var(--green);
}

.rank-card {
  top: 155px;
  left: -10px;
}

.value-card {
  right: -22px;
  bottom: 125px;
}

.ticker {
  position: absolute;
  inset: auto 0 0;
  z-index: 4;
  height: 72px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: rgba(5,9,6,.8);
}

.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 25px;
  animation: ticker 30s linear infinite;
}

.ticker span {
  color: #8f9992;
  font-size: 11px;
  letter-spacing: .17em;
}

.ticker i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green);
}

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

.roadmap-banner {
  position: relative;
  padding: 34px 0 0;
  overflow: hidden;
}

.roadmap-banner__inner {
  position: relative;
  padding: 52px;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 58px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(213, 174, 76, .28);
  background:
    radial-gradient(
      circle at 0 0,
      rgba(213, 174, 76, .12),
      transparent 38%
    ),
    linear-gradient(135deg, #10110d, #070906 62%, #0b100c);
}

.roadmap-banner__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, .025),
      transparent
    );
}

.roadmap-banner__copy,
.roadmap-banner__features {
  position: relative;
  z-index: 1;
}

.roadmap-banner__copy h2 {
  margin-top: 20px;
  max-width: 560px;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1;
}

.roadmap-banner__copy h2 em {
  display: block;
  color: #d5ae4c;
  font-style: normal;
}

.roadmap-banner__copy > p:last-child {
  max-width: 530px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.roadmap-banner__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.roadmap-feature {
  min-height: 142px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .018);
}

.roadmap-feature--pro {
  background:
    linear-gradient(
      135deg,
      rgba(213, 174, 76, .13),
      rgba(213, 174, 76, .025)
    );
}

.roadmap-feature:last-child {
  grid-column: 1 / -1;
  min-height: 124px;
}

.roadmap-feature small {
  color: #d5ae4c;
  font-size: 9px;
  letter-spacing: .18em;
}

.roadmap-feature strong {
  margin-top: 14px;
  color: var(--white);
  font-size: 18px;
}

.roadmap-feature span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.section {
  padding: 135px 0;
}

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

.section-heading {
  max-width: 780px;
}

.section-heading h2,
.market-copy h2,
.season-copy h2,
.capital-copy h2 {
  font-size: clamp(50px, 5vw, 76px);
  line-height: 1;
}

.section-heading > p:last-child,
.market-copy > p,
.season-copy > p,
.capital-copy > p {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.feature-grid {
  margin-top: 75px;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 18px;
}

.feature-card {
  position: relative;
  min-height: 390px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255,255,255,.025), transparent 45%),
    var(--panel);
}

.feature-large {
  grid-row: span 2;
  min-height: 798px;
}

.card-number {
  position: absolute;
  top: 24px;
  right: 26px;
  color: #4e5a52;
  font-size: 11px;
  letter-spacing: .14em;
}

.chart-window {
  margin-top: 30px;
  border: 1px solid var(--line);
  background: #060b08;
}

.chart-head {
  height: 48px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  color: #748078;
  font-size: 9px;
  letter-spacing: .12em;
}

.chart {
  position: relative;
  height: 390px;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.chart svg {
  position: absolute;
  inset: 70px 0 0;
  width: 100%;
  height: 280px;
}

.chart-area {
  fill: url(#chartFill);
}

.chart-line {
  fill: none;
  stroke: var(--green);
  stroke-width: 3;
}

.chart-copy {
  position: absolute;
  top: 30px;
  left: 28px;
}

.chart-copy span,
.chart-copy strong,
.chart-copy small {
  display: block;
}

.chart-copy span {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.chart-copy strong {
  margin-top: 8px;
  font-family: Georgia, serif;
  font-size: 34px;
  font-weight: 400;
}

.chart-copy small {
  margin-top: 8px;
  color: var(--green);
}

.feature-copy {
  position: relative;
  z-index: 2;
}

.feature-copy > span {
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.feature-copy h3 {
  max-width: 570px;
  margin: 11px 0 0;
  font-family: Georgia, serif;
  font-size: 31px;
  font-weight: 400;
  line-height: 1.1;
}

.feature-copy p {
  max-width: 570px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.icon-box {
  width: 150px;
  height: 150px;
  margin: 35px auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(117,229,159,.15);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(117,229,159,.1), transparent 65%);
}

.ledger-icon span {
  width: 60px;
  height: 35px;
  position: relative;
}

.ledger-icon span::before,
.ledger-icon span::after {
  content: "";
  position: absolute;
  width: 42px;
  height: 20px;
  border: 4px solid var(--green);
  border-left: 0;
  border-right: 0;
  transform: rotate(25deg);
}

.ledger-icon span::after {
  transform: rotate(-25deg);
}

.shield-icon span {
  width: 55px;
  height: 66px;
  border: 3px solid var(--green);
  border-radius: 28px 28px 34px 34px;
  clip-path: polygon(50% 0, 100% 17%, 88% 76%, 50% 100%, 12% 76%, 0 17%);
}

.leader-preview {
  margin: 38px 0;
  border: 1px solid var(--line);
}

.leader-preview div {
  padding: 14px;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: #aab3ad;
  font-size: 11px;
}

.leader-preview div:last-child {
  border-bottom: 0;
}

.leader-preview b {
  color: var(--green);
}

.leader-preview strong {
  color: var(--text);
  font-weight: 500;
}

.markets {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 80% 50%, rgba(44,104,65,.13), transparent 30%),
    #060a07;
}

.market-layout {
  display: grid;
  grid-template-columns: .84fr 1.16fr;
  gap: 90px;
  align-items: center;
}

.market-principle {
  margin-top: 40px;
  padding: 22px 0 22px 22px;
  border-left: 2px solid var(--green);
}

.market-principle span,
.market-principle strong {
  display: block;
}

.market-principle span {
  color: var(--green);
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.market-principle strong {
  margin-top: 8px;
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 400;
}

.token-board {
  border: 1px solid var(--line);
  background: rgba(7,13,9,.7);
}

.token-row {
  min-height: 78px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr .9fr .7fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.token-row:last-child {
  border-bottom: 0;
}

.token-row > span:first-child {
  display: flex;
  align-items: center;
  gap: 13px;
}

.token-row strong {
  color: var(--text);
  font-size: 14px;
}

.board-head {
  min-height: 49px;
  color: #667168;
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.token-symbol {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--text);
  font-family: Georgia, serif;
  font-weight: 400;
}

.token-symbol.bag {
  color: #061009;
  border-color: var(--green);
  background: var(--green);
}

.active {
  color: var(--green);
}

.season-panel {
  padding: 70px;
  border: 1px solid var(--line);
  background:
    linear-gradient(130deg, rgba(117,229,159,.07), transparent 40%),
    var(--panel);
}

.season-copy {
  max-width: 820px;
}

.season-steps {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.season-steps div {
  min-height: 220px;
  padding: 28px 25px;
  border-right: 1px solid var(--line);
}

.season-steps div:last-child {
  border-right: 0;
}

.season-steps span {
  color: var(--green);
  font-size: 10px;
  letter-spacing: .15em;
}

.season-steps strong {
  display: block;
  margin-top: 45px;
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 400;
}

.season-steps p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.capital {
  padding-top: 0;
}

.capital-card {
  min-height: 410px;
  padding: 55px;
  display: grid;
  grid-template-columns: 210px 1fr 245px;
  gap: 55px;
  align-items: center;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 10% 50%, rgba(117,229,159,.11), transparent 25%),
    #080e0a;
}

.capital-mark img {
  width: 190px;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,.45));
}

.capital-stamp {
  padding: 35px 25px;
  border: 1px solid rgba(201,167,105,.28);
  text-align: center;
}

.capital-stamp span,
.capital-stamp strong,
.capital-stamp small {
  display: block;
}

.capital-stamp span {
  color: var(--gold);
  font-size: 9px;
  letter-spacing: .18em;
}

.capital-stamp strong {
  margin: 13px 0;
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 400;
}

.capital-stamp small {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: .13em;
}

.closing {
  position: relative;
  padding: 160px 24px;
  overflow: hidden;
  text-align: center;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 50%, rgba(65,154,94,.15), transparent 36%),
    #050806;
}

.closing-inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: auto;
}

.closing .eyebrow {
  justify-content: center;
}

.closing h2 {
  font-size: clamp(55px, 7vw, 95px);
  line-height: .96;
}

.closing > div > strong {
  display: block;
  margin-top: 10px;
  color: var(--green);
  font-family: Georgia, serif;
  font-size: clamp(38px, 5vw, 70px);
  font-weight: 400;
}

.coming-soon {
  display: inline-block;
  margin-top: 45px;
  padding: 13px 18px;
  border: 1px solid var(--line-strong);
  color: #aeb7b1;
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

footer {
  border-top: 1px solid var(--line);
  background: #040604;
}

.footer-inner {
  width: min(calc(100% - 48px), var(--max));
  min-height: 190px;
  margin: auto;
  display: grid;
  grid-template-columns: 240px 1fr auto;
  gap: 45px;
  align-items: center;
}

.footer-brand img {
  width: 42px;
  height: 42px;
}

.footer-inner > p {
  max-width: 510px;
  margin: 0;
  color: #7e8981;
  font-size: 12px;
  line-height: 1.7;
}

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

.footer-links a {
  color: #929c95;
  font-size: 11px;
}

.footer-bottom {
  width: min(calc(100% - 48px), var(--max));
  min-height: 62px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: #5d675f;
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

@media (max-width: 1050px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .mobile-nav {
    padding: 0 24px 22px;
    background: rgba(5,9,6,.96);
    border-bottom: 1px solid var(--line);
  }

  .mobile-nav.open {
    display: grid;
  }

  .mobile-nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    color: #b8c0ba;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 120px 0 150px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    width: min(680px, 100%);
    margin: 0 auto;
  }

  .market-layout {
    grid-template-columns: 1fr;
  }

  .capital-card {
    grid-template-columns: 170px 1fr;
  }

  .capital-stamp {
    grid-column: 1 / -1;
  }

  .season-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .season-steps div:nth-child(2) {
    border-right: 0;
  }

  .season-steps div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  .header-inner,
  .section-inner,
  .hero-inner,
  .footer-inner,
  .footer-bottom {
    width: min(calc(100% - 30px), var(--max));
  }

  .header-inner {
    height: 74px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .status {
    display: none;
  }

  .hero {
    padding-top: 74px;
  }

  .hero-inner {
    padding: 95px 0 135px;
    gap: 65px;
  }

  .hero h1 {
    font-size: clamp(58px, 18vw, 84px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-stats div {
    min-width: 0;
    padding-right: 14px;
    margin-right: 14px;
  }

  .hero-stats strong {
    font-size: 20px;
  }

  .hero-stats span {
    font-size: 8px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .product-card {
    min-height: 460px;
    padding: 21px;
  }

  .logo-stage {
    height: 290px;
  }

  .logo-stage img {
    width: 225px;
  }

  .rank-card {
    top: 110px;
    left: -4px;
  }

  .value-card {
    right: -2px;
    bottom: 60px;
  }

  .float-card {
    min-width: 140px;
    padding: 14px;
  }

  .roadmap-banner {
    padding-top: 24px;
  }

  .roadmap-banner__inner {
    padding: 30px 22px;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .roadmap-banner__copy h2 {
    font-size: 42px;
  }

  .roadmap-banner__features {
    grid-template-columns: 1fr;
  }

  .roadmap-feature,
  .roadmap-feature:last-child {
    grid-column: auto;
    min-height: 124px;
  }

  .section {
    padding: 95px 0;
  }

  .section-heading h2,
  .market-copy h2,
  .season-copy h2,
  .capital-copy h2 {
    font-size: 49px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-large {
    grid-row: auto;
    min-height: 690px;
  }

  .chart {
    height: 330px;
  }

  .market-layout {
    gap: 55px;
  }

  .token-row {
    padding: 0 14px;
    grid-template-columns: 1.15fr .75fr;
  }

  .token-row > span:nth-child(2) {
    display: none;
  }

  .season-panel {
    padding: 42px 25px;
  }

  .season-steps {
    grid-template-columns: 1fr;
  }

  .season-steps div,
  .season-steps div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .season-steps div:last-child {
    border-bottom: 0;
  }

  .capital-card {
    padding: 38px 25px;
    grid-template-columns: 1fr;
  }

  .capital-mark img {
    width: 150px;
  }

  .footer-inner {
    padding: 55px 0;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

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

  .ticker-track {
    animation: none;
  }

  * {
    transition: none !important;
  }
}


/* Canonical $BAG AMM actions */
.header-buy {
  min-height: 40px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(201, 167, 105, .68);
  background: linear-gradient(135deg, rgba(201, 167, 105, .18), rgba(116, 229, 159, .08));
  color: #ead7ad;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.header-buy:hover {
  transform: translateY(-2px);
  border-color: #d8b979;
}

.button.bag-buy {
  min-width: 210px;
  min-height: 64px;
  padding: 10px 18px;
  justify-content: space-between;
  border-color: rgba(201, 167, 105, .76);
  background: linear-gradient(135deg, rgba(201, 167, 105, .2), rgba(20, 66, 39, .32));
  color: #f3e4c3;
}

.bag-buy-copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 3px;
}

.bag-buy-copy small {
  color: #9ba69e;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.bag-buy-copy strong {
  color: #f0d9a6;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
}

.bag-buy-arrow {
  color: var(--green-bright);
  font-size: 16px;
}

.mobile-buy {
  margin-top: 8px;
  border: 1px solid rgba(201, 167, 105, .64);
  background: rgba(201, 167, 105, .09);
  color: #ecd6a5 !important;
}

.footer-buy {
  color: #dfc58f !important;
  font-weight: 800;
}

@media (max-width: 1050px) {
  .header-buy { display: none; }
}

@media (max-width: 720px) {
  .button.bag-buy { width: 100%; }
}

    
/* XRPL_TOKEN_PRICE_LOADERS */
.market-price {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green);
  font-variant-numeric: tabular-nums;
}

.market-price.loading {
  color: var(--muted);
}

.market-price.unavailable {
  color: #8f9891;
}

.price-spinner {
  display: inline-block;
  box-sizing: border-box;
  width: 15px;
  height: 15px;
  min-width: 15px;
  flex: 0 0 15px;
  border: 2px solid rgba(117, 229, 159, .18);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: token-price-spin .75s linear infinite;
}

.market-price:not(.loading) .price-spinner {
  display: none;
}

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

/* XRPL_TOKEN_LOADER_VISIBILITY */
.market-price.loading .price-spinner {
  display: inline-block;
}

.market-price.loading .price-value {
  visibility: hidden;
  width: 0;
  overflow: hidden;
}

/* XRPL_FORCED_VISIBLE_PRICE_WHEEL */
.market-price .price-spinner {
  display: none !important;
}

.market-price.loading::before {
  content: "";
  display: inline-block !important;
  box-sizing: border-box;
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-right: 8px;
  vertical-align: middle;
  border: 2px solid rgba(117, 229, 159, 0.22);
  border-top-color: #75e59f;
  border-right-color: #75e59f;
  border-radius: 50%;
  animation: xrpl-forced-price-spin 0.7s linear infinite;
}

@keyframes xrpl-forced-price-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* XRPL_TRADING_SOON_BANNER_V2 */
.trading-launch {
  position: relative;
  isolation: isolate;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(105, 255, 167, 0.42);
  border-bottom: 1px solid rgba(105, 255, 167, 0.42);
  background:
    radial-gradient(circle at 12% 50%, rgba(64, 255, 142, 0.16), transparent 34%),
    radial-gradient(circle at 88% 20%, rgba(44, 126, 89, 0.14), transparent 30%),
    linear-gradient(115deg, #07110c 0%, #091a11 48%, #050b08 100%);
  box-shadow:
    0 18px 60px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.trading-launch::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(106, 255, 168, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(106, 255, 168, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to right, transparent, black 18%, black 82%, transparent);
}

.trading-launch__glow {
  position: absolute;
  top: -90px;
  left: 7%;
  width: 320px;
  height: 220px;
  z-index: -1;
  border-radius: 50%;
  background: rgba(77, 255, 151, 0.17);
  filter: blur(85px);
  pointer-events: none;
}

.trading-launch__inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 26px 0 30px;
}

.trading-launch__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #75f2a8;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.trading-launch__pulse {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 50%;
  background: #69ffa7;
  box-shadow:
    0 0 0 6px rgba(105, 255, 167, 0.1),
    0 0 20px rgba(105, 255, 167, 0.7);
  animation: trading-launch-pulse 1.8s ease-in-out infinite;
}

.trading-launch__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 255px;
  align-items: end;
  gap: 42px;
}

.trading-launch__copy {
  min-width: 0;
}

.trading-launch__label {
  margin: 0 0 8px;
  color: rgba(198, 255, 221, 0.68);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.trading-launch h2 {
  margin: 0;
  max-width: 780px;
  color: #f5fff8;
  font-size: clamp(30px, 5vw, 58px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.035em;
  text-shadow:
    0 0 28px rgba(105, 255, 167, 0.11),
    0 4px 30px rgba(0, 0, 0, 0.38);
}

.trading-launch__description {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(226, 237, 230, 0.7);
  font-size: 14px;
  line-height: 1.7;
}

.trading-launch__status {
  position: relative;
  padding: 18px 18px 17px;
  border: 1px solid rgba(105, 255, 167, 0.26);
  background:
    linear-gradient(145deg, rgba(105, 255, 167, 0.1), rgba(105, 255, 167, 0.025)),
    rgba(4, 10, 7, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 12px 34px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.trading-launch__status::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 16px;
  width: 54px;
  height: 2px;
  background: #69ffa7;
  box-shadow: 0 0 16px rgba(105, 255, 167, 0.8);
}

.trading-launch__status span,
.trading-launch__status strong,
.trading-launch__status small {
  display: block;
}

.trading-launch__status span {
  color: rgba(205, 224, 213, 0.5);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.trading-launch__status strong {
  margin-top: 8px;
  color: #78f8ad;
  font-size: 13px;
  line-height: 1.3;
  letter-spacing: 0.045em;
}

.trading-launch__status small {
  margin-top: 8px;
  color: rgba(224, 235, 227, 0.58);
  font-size: 11px;
  line-height: 1.5;
}

@keyframes trading-launch-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.48;
    transform: scale(0.72);
  }
}

@media (max-width: 760px) {
  .trading-launch__inner {
    width: min(100% - 30px, 1180px);
    padding: 24px 0 26px;
  }

  .trading-launch__eyebrow {
    margin-bottom: 15px;
    font-size: 9px;
  }

  .trading-launch__content {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .trading-launch h2 {
    font-size: clamp(34px, 10.5vw, 48px);
    line-height: 0.97;
  }

  .trading-launch__description {
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.65;
  }

  .trading-launch__status {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .trading-launch__inner {
    width: min(100% - 26px, 1180px);
  }

  .trading-launch h2 {
    font-size: 32px;
  }

  .trading-launch__description {
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .trading-launch__pulse {
    animation: none;
  }
}

/* MOBILE_HEADER_BANNER_FIX_V4 */
@media (max-width: 760px) {
  .site-header {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
  }

  .trading-launch {
    margin-top: 0 !important;
  }

  .hero {
    min-height: 0 !important;
    height: auto !important;
    padding-top: 42px !important;
    padding-bottom: 48px !important;
  }

  .hero-inner {
    min-height: 0 !important;
    height: auto !important;
  }
}

/* MOBILE_HERO_SPACE_FIX_V5 */
@media (max-width: 760px) {
  .hero {
    padding-top: 18px !important;
    padding-bottom: 24px !important;
    margin-top: 0 !important;
  }

  .hero-inner {
    gap: 18px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .hero-copy {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}
