:root {
  color-scheme: dark;
  --ink: #07111f;
  --ink-2: #0d1d2d;
  --panel: #112337;
  --paper: #f4f7f2;
  --muted: #a9b8bd;
  --line: rgba(244, 247, 242, 0.16);
  --teal: #26d0b8;
  --amber: #f0b84a;
  --coral: #ff6b5f;
  --blue: #5ab0ff;
  --shadow: rgba(1, 8, 15, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 32px;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 17, 31, 0.88);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}

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

.brand-logo {
  width: 178px;
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #dce8e8;
  font-size: 0.92rem;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--teal);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.site-nav a.is-active {
  color: #ffffff;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(244, 247, 242, 0.08);
  color: var(--paper);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  padding: 128px 32px 48px;
}

.hero-canvas,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-canvas {
  background:
    radial-gradient(circle at 74% 36%, rgba(38, 208, 184, 0.22), transparent 26%),
    radial-gradient(circle at 88% 74%, rgba(255, 107, 95, 0.16), transparent 24%),
    #07111f;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.96) 0%, rgba(7, 17, 31, 0.74) 36%, rgba(7, 17, 31, 0.24) 72%, rgba(7, 17, 31, 0.58) 100%),
    linear-gradient(180deg, rgba(7, 17, 31, 0.18) 0%, rgba(7, 17, 31, 0.08) 54%, #07111f 100%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 34px;
  align-items: center;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding-top: 48px;
}

.hero-content,
.exchange-preview {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  max-width: 660px;
  font-size: 4.9rem;
}

h2 {
  color: #ffffff;
  font-size: 2.6rem;
}

h3 {
  color: #ffffff;
  font-size: 1.2rem;
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: #d8e8e6;
  font-size: 1.28rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 800;
}

.button.primary {
  background: var(--teal);
  color: #04100f;
}

.button.secondary {
  border: 1px solid rgba(244, 247, 242, 0.38);
  background: rgba(244, 247, 242, 0.08);
  color: #ffffff;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 150px));
  gap: 12px;
  max-width: 520px;
  margin: 54px 0 0;
}

.hero-stats div {
  min-height: 92px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(6, 18, 28, 0.58);
  box-shadow: 0 18px 60px var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-stats dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-stats dd {
  margin: 8px 0 0;
  color: #ffffff;
  font-size: 1.02rem;
  font-weight: 900;
}

.exchange-preview {
  min-height: 500px;
  perspective: 1100px;
}

.nft-card-deck {
  position: relative;
  height: 360px;
}

.nft-card {
  position: absolute;
  top: calc(42px + var(--lift));
  left: 50%;
  width: min(230px, 38vw);
  aspect-ratio: 0.72;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(244, 247, 242, 0.2);
  border-radius: 8px;
  background: rgba(7, 17, 31, 0.78);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
  color: #ffffff;
  cursor: pointer;
  transform:
    translateX(calc(-50% + var(--offset, 0px) + var(--focus-x, 0px)))
    translateY(var(--drift-y, 0px))
    rotate(calc(var(--rotate) + var(--drift-rot, 0deg)))
    rotateX(var(--tilt-y, 0deg))
    rotateY(var(--tilt-x, 0deg))
    scale(var(--focus-scale, 1));
  transform-style: preserve-3d;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.nft-card:nth-child(1) {
  --offset: -170px;
  z-index: 2;
}

.nft-card:nth-child(2) {
  --offset: 0px;
  z-index: 3;
}

.nft-card:nth-child(3) {
  --offset: 170px;
  z-index: 2;
}

.nft-card.is-selected {
  --focus-scale: 1.06;
  z-index: 5;
  border-color: rgba(38, 208, 184, 0.86);
  box-shadow: 0 34px 100px rgba(38, 208, 184, 0.24), 0 26px 80px rgba(0, 0, 0, 0.44);
  filter: saturate(1.12) contrast(1.04);
}

.nft-card:nth-child(1).is-selected {
  --focus-x: 34px;
}

.nft-card:nth-child(3).is-selected {
  --focus-x: -34px;
}

.nft-card:hover,
.nft-card:focus-visible {
  border-color: rgba(240, 184, 74, 0.86);
  transform:
    translateX(calc(-50% + var(--offset, 0px) + var(--focus-x, 0px)))
    translateY(calc(-10px + var(--drift-y, 0px)))
    rotate(calc(var(--rotate) + var(--drift-rot, 0deg)))
    rotateX(var(--tilt-y, 0deg))
    rotateY(var(--tilt-x, 0deg))
    scale(var(--focus-scale, 1));
}

.nft-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(26px) scale(1.04);
  transition: transform 260ms ease;
}

.nft-card.is-selected img {
  transform: translateZ(34px) scale(1.08);
}

.nft-card::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 46%, rgba(3, 9, 16, 0.88) 100%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.24), transparent 34%);
  content: "";
  pointer-events: none;
}

.nft-card span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 1;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(7, 17, 31, 0.72);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.exchange-panel {
  width: min(420px, 100%);
  margin: -10px auto 0;
  padding: 18px;
  border: 1px solid rgba(38, 208, 184, 0.24);
  border-radius: 8px;
  background: rgba(6, 18, 28, 0.72);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
}

.exchange-panel > p {
  margin: 0 0 8px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.exchange-panel h2 {
  font-size: 1.55rem;
}

.exchange-panel dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0 0;
}

.exchange-panel dl div {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(244, 247, 242, 0.06);
}

.exchange-panel dt {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.exchange-panel dd {
  margin: 6px 0 0;
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 900;
}

.exchange-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.exchange-actions button {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  background: rgba(38, 208, 184, 0.14);
  color: #ddfff9;
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 900;
  font-family: inherit;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.exchange-actions button:hover,
.exchange-actions button:focus-visible {
  background: var(--teal);
  color: #04100f;
  transform: translateY(-2px);
}

.launch-marquee {
  overflow: hidden;
  border-top: 1px solid rgba(240, 184, 74, 0.35);
  border-bottom: 1px solid rgba(240, 184, 74, 0.35);
  background: #f0b84a;
  color: #11140c;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 36s linear infinite;
}

.marquee-track p {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: max-content;
  margin: 0;
  padding: 14px 11px;
  font-size: 0.98rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-track strong {
  position: relative;
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 5px 10px;
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(120deg, #07111f 0%, #143329 42%, #07111f 100%);
  color: #ffffff;
  box-shadow: 0 0 0 1px rgba(38, 208, 184, 0.28), 0 0 24px rgba(38, 208, 184, 0.38);
  text-shadow: 0 0 14px rgba(38, 208, 184, 0.7);
}

.marquee-track strong::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.38) 45%, transparent 76%);
  content: "";
  transform: translateX(-130%);
  animation: badge-shine 2.6s ease-in-out infinite;
}

.marquee-track span {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.marquee-track span::before {
  width: 8px;
  height: 8px;
  margin-right: 22px;
  border-radius: 50%;
  background: #07111f;
  content: "";
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

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

@keyframes badge-shine {
  0%,
  45% {
    transform: translateX(-130%);
  }

  100% {
    transform: translateX(130%);
  }
}

.launch-countdown {
  border-bottom: 1px solid var(--line);
  background: #0b1521;
}

.countdown-shell {
  display: grid;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
}

.countdown-shell h2 {
  font-size: 1.45rem;
}

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

.countdown-grid div {
  min-height: 96px;
  padding: 16px 12px;
  border: 1px solid rgba(38, 208, 184, 0.24);
  border-radius: 8px;
  background: rgba(244, 247, 242, 0.06);
  text-align: center;
}

.countdown-grid span {
  display: block;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 950;
  line-height: 1;
}

.countdown-grid small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 88px 0;
}

.intro-band,
.trade-band {
  background: var(--paper);
  color: #182531;
}

.intro-band .section-shell {
  padding-top: 40px;
}

.intro-band h2,
.trade-band h2,
.intro-band h3,
.trade-band h3 {
  color: #07111f;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}

.lead-stack p,
.section-heading p,
.trade-panel p {
  margin: 0;
  color: inherit;
}

.lead-stack {
  display: grid;
  gap: 18px;
  color: #324552;
  font-size: 1.06rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p:last-child {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.06rem;
}

.section-heading.compact {
  max-width: 680px;
}

.action-flow,
.future-grid {
  display: grid;
  gap: 18px;
}

.action-flow,
.future-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.flow article,
.action-flow article,
.future-grid article,
.trade-panel article,
.roadmap li {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(244, 247, 242, 0.06);
  box-shadow: 0 18px 50px rgba(1, 8, 15, 0.18);
}

.action-flow article,
.future-grid article {
  min-height: 230px;
  padding: 24px;
}

.flow p,
.action-flow p,
.future-grid p,
.roadmap p {
  margin: 14px 0 0;
  color: var(--muted);
}

.action-flow span,
.future-grid span,
.roadmap span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 32px;
  margin-bottom: 22px;
  border-radius: 8px;
  background: rgba(38, 208, 184, 0.12);
  color: var(--teal);
  font-weight: 900;
}

.process-section {
  padding-bottom: 28px;
}

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

.flow article {
  min-height: 116px;
  padding: 22px 24px;
  border-left: 4px solid var(--coral);
}

.action-flow article {
  min-height: 244px;
  background: rgba(244, 247, 242, 0.045);
}

.action-flow span {
  background: rgba(255, 107, 95, 0.14);
  color: var(--coral);
}

.future-band {
  background: #0b1720;
}

.future-grid article {
  min-height: 238px;
  background: rgba(244, 247, 242, 0.055);
}

.future-grid span {
  min-width: 0;
  background: rgba(240, 184, 74, 0.14);
  color: var(--amber);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.trade-panel {
  display: grid;
  gap: 14px;
}

.trade-panel article {
  min-height: 116px;
  padding: 22px 24px;
  border-color: rgba(7, 17, 31, 0.12);
  background: #ffffff;
  box-shadow: 0 14px 35px rgba(7, 17, 31, 0.08);
}

.trade-panel p {
  margin-top: 10px;
  color: #465b68;
}

.roadmap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.roadmap li {
  min-height: 250px;
  padding: 24px;
}

.roadmap span {
  background: rgba(255, 107, 95, 0.14);
  color: var(--coral);
}

.contact-band {
  background: #0b1720;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 42px;
  align-items: center;
}

.contact-layout > div:first-child > p:last-of-type {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.social-links a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  border: 1px solid rgba(38, 208, 184, 0.28);
  border-radius: 8px;
  background: rgba(244, 247, 242, 0.06);
  color: #ddfff9;
  font-size: 0.82rem;
  font-weight: 900;
}

.social-links a:hover,
.social-links a:focus-visible {
  background: rgba(38, 208, 184, 0.16);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(38, 208, 184, 0.24);
  border-radius: 8px;
  background: rgba(244, 247, 242, 0.06);
  box-shadow: 0 18px 50px rgba(1, 8, 15, 0.18);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 17, 31, 0.7);
  color: #ffffff;
  font: inherit;
  min-height: 46px;
  padding: 12px 14px;
  outline: none;
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(38, 208, 184, 0.78);
  box-shadow: 0 0 0 3px rgba(38, 208, 184, 0.12);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8ea1a7;
}

.contact-form button {
  width: fit-content;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #050d17;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 0;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 900px) {
  .site-header {
    min-height: 66px;
    padding: 0 20px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 16px;
    left: 16px;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(7, 17, 31, 0.96);
    box-shadow: 0 24px 80px var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    min-height: 44px;
    padding: 10px 12px;
  }

  .hero {
    min-height: 86svh;
    padding: 110px 20px 38px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 20px;
  }

  .exchange-preview {
    min-height: 470px;
  }

  .nft-card-deck {
    height: 324px;
  }

  .nft-card {
    width: min(210px, 36vw);
  }

  .nft-card:nth-child(1) {
    --offset: -145px;
  }

  .nft-card:nth-child(3) {
    --offset: 145px;
  }

  h1 {
    font-size: 3.7rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-copy {
    font-size: 1.1rem;
  }

  .two-column,
  .countdown-shell,
    .action-flow,
    .future-grid,
    .contact-layout,
    .roadmap {
      grid-template-columns: 1fr;
    }

  .section-shell {
    width: min(100% - 32px, 720px);
    padding: 64px 0;
  }

  .process-section {
    padding-bottom: 18px;
  }

    .action-flow article,
    .future-grid article,
    .roadmap li {
      min-height: 0;
    }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .site-header {
    padding: 0 16px;
  }

  .brand-logo {
    width: 148px;
    height: auto;
  }

  .hero {
    min-height: 84svh;
    padding: 96px 16px 34px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 17, 31, 0.94) 0%, rgba(7, 17, 31, 0.74) 55%, rgba(7, 17, 31, 0.58) 100%),
      linear-gradient(180deg, rgba(7, 17, 31, 0.18) 0%, #07111f 100%);
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

  .contact-form {
    padding: 16px;
  }

  .contact-form button {
    width: 100%;
  }

  .exchange-preview {
    min-height: 430px;
  }

  .nft-card-deck {
    height: 286px;
  }

  .nft-card {
    width: 160px;
  }

  .nft-card:nth-child(1) {
    --offset: -96px;
  }

  .nft-card:nth-child(3) {
    --offset: 96px;
  }

  .nft-card:nth-child(1).is-selected {
    --focus-x: 20px;
  }

  .nft-card:nth-child(3).is-selected {
    --focus-x: -20px;
  }

  .exchange-panel {
    padding: 14px;
  }

  .exchange-panel dl {
    gap: 8px;
  }

  .exchange-panel dl div {
    padding: 8px;
  }

  .exchange-panel dd {
    font-size: 0.76rem;
  }

  .exchange-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 24px;
  }

  .hero-stats div {
    min-height: 72px;
    padding: 10px;
  }

  .hero-stats dt {
    font-size: 0.68rem;
  }

  .hero-stats dd {
    font-size: 0.88rem;
    line-height: 1.2;
  }

  .marquee-track {
    animation-duration: 22s;
  }

  .marquee-track p {
    gap: 16px;
    padding: 12px 8px;
    font-size: 0.82rem;
  }

  .marquee-track span::before {
    margin-right: 16px;
  }

  .countdown-shell {
    width: min(100% - 32px, 720px);
    padding: 22px 0;
    gap: 18px;
  }

  .countdown-shell h2 {
    font-size: 1.18rem;
  }

  .countdown-grid {
    gap: 8px;
  }

  .countdown-grid div {
    min-height: 76px;
    padding: 12px 8px;
  }

  .countdown-grid span {
    font-size: 1.46rem;
  }

  .countdown-grid small {
    font-size: 0.66rem;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .marquee-track {
    animation: none;
    transform: none;
  }

  .marquee-track strong::after {
    animation: none;
  }
}
