:root {
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ink: #0d2230;
  --ink-2: #254757;
  --muted: #657d88;
  --paper: #ffffff;
  --wash: #ecfbf8;
  --line: #c9e7e3;
  --teal: #19bdb4;
  --teal-deep: #087a73;
  --mint: #d9fff7;
  --cyan: #2b8da7;
  --discord: #5865f2;
  --telegram: #2aabee;
  --coral: #f47d42;
  --gold: #f2b84b;
  --lemon: #fff4a8;
  --green: #17a767;
  --night: #0e1d29;
  --shadow: 0 24px 60px rgba(16, 33, 43, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 8% 2%, rgba(25, 189, 180, 0.22), transparent 30%),
    radial-gradient(circle at 76% 4%, rgba(255, 244, 168, 0.72), transparent 28%),
    radial-gradient(circle at 92% 16%, rgba(244, 125, 66, 0.16), transparent 30%),
    linear-gradient(180deg, #f7fffd 0%, #eafff9 48%, #fff8df 100%);
  color: var(--ink);
  margin: 0;
  overflow-x: hidden;
}

button,
input,
select {
  font: inherit;
}

a {
  color: inherit;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(201, 231, 227, 0.9);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 14px 28px;
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
}

.site-brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  font-size: 23px;
  font-weight: 950;
  text-decoration: none;
}

.site-brand img {
  border: 3px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(8, 122, 115, 0.22);
  height: 48px;
  object-fit: cover;
  width: 48px;
}

.primary-nav {
  align-items: center;
  display: flex;
  gap: 8px;
}

.nav-toggle {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  cursor: pointer;
  display: none;
  font-size: 14px;
  font-weight: 900;
  min-height: 40px;
  padding: 0 14px;
}

.nav-group {
  position: relative;
}

.nav-group-trigger {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 8px;
  color: var(--ink-2);
  cursor: pointer;
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px;
}

.nav-group-trigger::after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  content: "";
}

.nav-group-trigger:hover,
.nav-group.is-open .nav-group-trigger {
  background: #effffb;
  color: var(--teal-deep);
}

.nav-dropdown {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 4px;
  left: 0;
  min-width: 260px;
  opacity: 0;
  padding: 8px;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 10px);
  transform: translateY(-5px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.nav-dropdown-right {
  left: auto;
  right: 0;
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown,
.nav-group.is-open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown a {
  border-radius: 6px;
  display: grid;
  gap: 3px;
  padding: 10px;
  text-decoration: none;
}

.nav-dropdown a:hover {
  background: #f1fffc;
}

.nav-dropdown strong,
.nav-dropdown span {
  display: block;
}

.nav-dropdown strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 950;
}

.nav-dropdown span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.header-cta,
.primary-action,
.secondary-action,
.command-actions button,
.sponsor-large a {
  align-items: center;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font-size: 15px;
  font-weight: 950;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  text-decoration: none;
}

.header-cta,
.primary-action,
.command-actions button.is-active,
.sponsor-large a {
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  border: 0;
  box-shadow: 0 14px 30px rgba(8, 122, 115, 0.24);
  color: #ffffff;
}

.secondary-action,
.command-actions button {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  color: var(--ink);
}

.eyebrow {
  color: var(--teal-deep);
  display: inline-flex;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.hero,
.sponsor-rail,
.platforms-section,
.gaming-section,
.use-cases-section,
.web3-section,
.audit-section,
.sponsor-section,
.pricing,
.final-cta {
  margin: 0 auto;
  max-width: 1220px;
  padding: 64px 28px;
}

.hero {
  align-items: center;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 0.86fr) minmax(500px, 0.9fr);
  min-height: calc(100vh - 78px);
  padding-top: 58px;
}

.hero h1 {
  font-size: clamp(48px, 6vw, 86px);
  letter-spacing: 0;
  line-height: 0.94;
  margin: 0 0 22px;
  max-width: 760px;
}

.blunt-subtitle {
  color: var(--ink-2);
  display: block;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.28;
  margin: 0 0 18px;
  max-width: 760px;
}

.hero p,
.section-copy p,
.section-heading p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
  margin: 0;
  max-width: 720px;
}

.hero-actions,
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-proof span {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 950;
  padding: 10px 13px;
}

.hero-stage {
  display: grid;
  gap: 14px;
  position: relative;
}

.hero-stage::before {
  background:
    radial-gradient(circle, rgba(255, 244, 168, 0.92), transparent 56%),
    radial-gradient(circle, rgba(25, 189, 180, 0.28), transparent 62%);
  border-radius: 50%;
  content: "";
  filter: blur(4px);
  height: 320px;
  position: absolute;
  right: -86px;
  top: -80px;
  width: 320px;
  z-index: -1;
}

.hero-art-card {
  background:
    linear-gradient(135deg, rgba(217, 255, 247, 0.88), rgba(255, 249, 227, 0.8)),
    #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 12px;
  position: relative;
}

.hero-art-card img {
  aspect-ratio: 16 / 7;
  border-radius: 6px;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.hero-art-caption {
  align-items: center;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(201, 231, 227, 0.9);
  border-radius: 8px;
  bottom: 26px;
  box-shadow: 0 16px 36px rgba(16, 33, 43, 0.12);
  display: grid;
  gap: 5px;
  left: 26px;
  max-width: min(430px, calc(100% - 52px));
  padding: 13px 15px;
  position: absolute;
}

.hero-art-caption span,
.hero-sponsor-card span {
  color: var(--coral);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-art-caption strong,
.hero-sponsor-card strong {
  color: var(--ink);
  line-height: 1.25;
}

.hero-command-center {
  background:
    linear-gradient(135deg, rgba(14, 29, 41, 0.96), rgba(12, 42, 50, 0.94)),
    var(--night);
  border: 1px solid rgba(25, 189, 180, 0.26);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: #eafffb;
  overflow: hidden;
  padding: 18px;
  position: relative;
}

.command-top {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  margin-bottom: 16px;
}

.bot-id {
  align-items: center;
  display: flex;
  gap: 12px;
}

.bot-id img {
  border: 3px solid #ffffff;
  border-radius: 50%;
  height: 56px;
  object-fit: cover;
  width: 56px;
}

.bot-id strong,
.bot-id span,
.command-card span,
.command-card strong,
.command-card p {
  display: block;
}

.bot-id span {
  color: #9ec4c9;
  font-size: 13px;
  margin-top: 3px;
}

.status-pill {
  background: rgba(25, 189, 180, 0.18);
  border: 1px solid rgba(25, 189, 180, 0.34);
  border-radius: 999px;
  color: #9ff4ed;
  font-size: 12px;
  font-weight: 950;
  padding: 8px 10px;
  text-transform: uppercase;
}

.command-screen {
  display: grid;
  gap: 12px;
}

.command-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 5px solid rgba(25, 189, 180, 0.6);
  border-radius: 8px;
  padding: 16px;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.command-card.active {
  background:
    linear-gradient(135deg, rgba(25, 189, 180, 0.22), rgba(242, 184, 75, 0.14));
  border-color: rgba(255, 244, 168, 0.46);
  transform: translateX(4px);
}

.command-card span {
  color: var(--lemon);
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.command-card strong {
  color: #ffffff;
  font-size: 23px;
  line-height: 1.1;
}

.command-card p {
  color: #b8d3d7;
  line-height: 1.5;
  margin: 10px 0 0;
}

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

.hero-sponsor-card {
  align-items: start;
  background:
    linear-gradient(135deg, rgba(255, 244, 168, 0.92), rgba(255, 255, 255, 0.92) 58%, rgba(217, 255, 247, 0.9)),
    #ffffff;
  border: 1px dashed rgba(244, 125, 66, 0.58);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(8, 122, 115, 0.1);
  display: grid;
  gap: 8px;
  grid-template-columns: 180px minmax(0, 1fr);
  padding: 16px;
}

.hero-sponsor-card::before {
  align-items: center;
  background:
    linear-gradient(135deg, var(--teal), var(--teal-deep) 55%, var(--gold));
  border-radius: 8px;
  color: #ffffff;
  content: "AD";
  display: inline-flex;
  font-size: 38px;
  font-weight: 950;
  grid-row: span 3;
  height: 100%;
  justify-content: center;
  min-height: 104px;
}

.hero-sponsor-card p {
  color: var(--ink-2);
  line-height: 1.45;
  margin: 0;
}

.command-actions button {
  min-height: 40px;
}

.sponsor-rail {
  padding-top: 20px;
}

.sponsor-rail {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(217, 255, 247, 0.88), rgba(255, 244, 168, 0.46)),
    #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 48px rgba(8, 122, 115, 0.08);
  display: grid;
  gap: 18px;
  grid-template-columns: 320px minmax(0, 1fr);
  padding: 18px;
}

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

.rail-copy span {
  color: var(--coral);
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.rail-copy strong {
  color: var(--ink);
  line-height: 1.25;
}

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

.rail-track article {
  background:
    linear-gradient(180deg, #ffffff, #f7fffd);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 88px;
  padding: 14px;
  position: relative;
}

.rail-track article::after {
  background: linear-gradient(135deg, var(--teal), var(--gold));
  border-radius: 999px;
  content: "";
  height: 9px;
  position: absolute;
  right: 14px;
  top: 14px;
  width: 34px;
}

.rail-track span,
.rail-track b {
  display: block;
}

.rail-track span {
  color: var(--teal-deep);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.rail-track b {
  color: var(--ink);
  line-height: 1.25;
  margin-top: 7px;
}

.section-heading {
  margin-bottom: 22px;
}

.section-heading h2,
.section-copy h2,
.final-cta h2 {
  font-size: clamp(34px, 4vw, 58px);
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0 0 16px;
}

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

.platform-card,
.timer-board article,
.use-case-grid article,
.web3-grid article,
.audit-card,
.sponsor-grid article,
.price-grid article,
.final-cta {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(16, 33, 43, 0.08);
}

.platform-card {
  display: grid;
  min-height: 440px;
  padding: 26px;
}

.discord-card {
  border-top: 7px solid var(--discord);
}

.telegram-card {
  border-top: 7px solid var(--telegram);
}

.platform-icon {
  align-items: center;
  border-radius: 50%;
  display: inline-flex;
  height: 70px;
  justify-content: center;
  width: 70px;
}

.discord-card .platform-icon {
  background: #eef0ff;
  color: var(--discord);
}

.telegram-card .platform-icon {
  background: #e7f6ff;
  color: var(--telegram);
}

.platform-icon svg {
  height: 38px;
  width: 38px;
}

.platform-icon path {
  fill: currentColor;
}

.platform-card span,
.use-case-grid span,
.web3-grid b,
.sponsor-grid span {
  color: var(--teal-deep);
  display: block;
  font-size: 12px;
  font-weight: 950;
  margin-top: 18px;
  text-transform: uppercase;
}

.platform-card h3,
.use-case-grid h3,
.sponsor-grid h3 {
  color: var(--ink);
  font-size: 31px;
  line-height: 1.04;
  margin: 10px 0 12px;
}

.platform-card p,
.platform-card li,
.use-case-grid p,
.web3-grid span,
.sponsor-grid p,
.price-grid p,
.price-grid li,
.final-cta p {
  color: var(--ink-2);
  line-height: 1.55;
}

.platform-card ul,
.price-grid ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 18px;
}

.gaming-section,
.web3-section,
.audit-section,
.final-cta {
  align-items: center;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 0.72fr) minmax(460px, 0.9fr);
}

.timer-board {
  display: grid;
  gap: 14px;
}

.timer-board article {
  border-left: 6px solid var(--coral);
  padding: 20px;
}

.timer-board span,
.timer-board strong,
.timer-board b,
.timer-board p {
  display: block;
}

.timer-board span {
  color: var(--teal-deep);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.timer-board strong {
  font-size: 22px;
  margin-top: 6px;
}

.timer-board b {
  color: var(--coral);
  font-size: 42px;
  line-height: 1;
  margin: 8px 0;
}

.use-case-grid,
.web3-grid,
.price-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.use-case-grid article,
.web3-grid article,
.price-grid article {
  min-height: 255px;
  padding: 20px;
}

.web3-section {
  background:
    linear-gradient(135deg, rgba(14, 29, 41, 0.97), rgba(11, 54, 59, 0.95)),
    var(--night);
  border-radius: 8px;
  color: #eafffb;
  max-width: 1164px;
  padding: 34px;
}

.web3-section .section-copy p,
.web3-grid span {
  color: #b8d3d7;
}

.web3-section h2 {
  color: #ffffff;
}

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

.web3-grid article {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
  min-height: 150px;
}

.web3-grid b {
  color: #9ff4ed;
  font-size: 18px;
  margin: 0 0 8px;
}

.audit-section {
  grid-template-columns: minmax(420px, 0.82fr) minmax(0, 0.75fr);
}

.audit-card {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.audit-card-top {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.audit-card-top span {
  color: var(--teal-deep);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.audit-card-top strong {
  background: #fff1df;
  border: 1px solid #ffd19a;
  border-radius: 999px;
  color: #9a4a08;
  font-size: 12px;
  padding: 8px 10px;
  text-transform: uppercase;
}

.audit-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.audit-checks span {
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  padding: 8px 10px;
}

.is-good {
  background: #ddf8ef;
  color: #086246;
}

.needs-work {
  background: #fff1df;
  color: #9a4a08;
}

.audit-card code {
  background: #effffb;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--teal-deep);
  font-weight: 950;
  padding: 2px 7px;
}

.sponsor-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1.35fr 0.8fr 0.8fr;
}

.sponsor-grid article {
  min-height: 230px;
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.sponsor-large {
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 244, 168, 0.86), transparent 24%),
    linear-gradient(135deg, rgba(25, 189, 180, 0.18), rgba(255, 247, 233, 0.94)),
    #ffffff !important;
}

.sponsor-grid article:not(.sponsor-large)::before {
  background: linear-gradient(135deg, var(--teal), var(--gold));
  border-radius: 999px;
  content: "";
  height: 42px;
  opacity: 0.24;
  position: absolute;
  right: -12px;
  top: -12px;
  width: 42px;
}

.sponsor-large a {
  justify-self: start;
  margin-top: 18px;
}

.pricing {
  padding-top: 36px;
}

.price-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-grid article {
  min-height: 320px;
}

.price-grid h3 {
  font-size: 23px;
  margin: 0 0 10px;
}

.price-grid strong {
  color: var(--ink);
  display: block;
  font-size: 52px;
  line-height: 1;
}

.featured-price {
  border-color: rgba(244, 125, 66, 0.8) !important;
  transform: translateY(-8px);
}

.final-cta {
  background:
    linear-gradient(135deg, rgba(25, 189, 180, 0.12), rgba(255, 247, 233, 0.96)),
    #ffffff;
  grid-template-columns: 180px minmax(0, 1fr);
  margin-bottom: 24px;
  padding: 30px;
}

.final-cta img {
  border: 8px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 18px 42px rgba(8, 122, 115, 0.2);
  height: 150px;
  object-fit: cover;
  width: 150px;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  line-height: 1.55;
  margin: 0 auto;
  max-width: 1220px;
  padding: 24px 28px 34px;
}

.site-footer a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--teal-deep);
}

.join-modal {
  align-items: center;
  display: none;
  inset: 0;
  justify-content: center;
  padding: 18px;
  position: fixed;
  z-index: 100;
}

.join-modal.is-open {
  display: flex;
}

.join-modal-backdrop {
  background: rgba(11, 27, 36, 0.56);
  inset: 0;
  position: absolute;
}

.join-modal-panel {
  background:
    linear-gradient(135deg, rgba(25, 189, 180, 0.14), rgba(255, 247, 233, 0.98)),
    #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(10, 31, 42, 0.28);
  max-width: 760px;
  padding: 28px;
  position: relative;
  width: min(100%, 760px);
}

.join-modal-close {
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font-size: 20px;
  font-weight: 900;
  height: 40px;
  justify-content: center;
  position: absolute;
  right: 16px;
  top: 16px;
  width: 40px;
}

.join-modal-panel h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  margin: 0 48px 14px 0;
}

.join-modal-panel p {
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.55;
  margin: 0;
  max-width: 640px;
}

.join-options {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.join-option {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-left: 6px solid var(--teal);
  border-radius: 8px;
  color: var(--ink);
  display: grid;
  gap: 8px;
  min-height: 156px;
  padding: 18px;
  text-decoration: none;
}

.join-option.discord {
  border-left-color: var(--discord);
}

.join-option b {
  font-size: 22px;
}

.join-option span {
  color: var(--ink-2);
  line-height: 1.45;
}

.join-option:hover {
  box-shadow: 0 18px 34px rgba(8, 122, 115, 0.16);
  transform: translateY(-2px);
}

@media (max-width: 1020px) {
  .site-header {
    flex-wrap: wrap;
  }

  .site-brand {
    margin-right: auto;
  }

  .nav-toggle {
    display: inline-flex;
    order: 2;
  }

  .header-cta {
    order: 3;
  }

  .primary-nav {
    align-items: stretch;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 8px;
    display: none;
    flex-direction: column;
    gap: 8px;
    order: 4;
    padding: 8px;
    width: 100%;
  }

  .primary-nav.is-open {
    display: flex;
  }

  .nav-group-trigger {
    background: #f7fffd;
    border: 1px solid var(--line);
    justify-content: space-between;
    width: 100%;
  }

  .nav-dropdown,
  .nav-dropdown-right {
    box-shadow: none;
    display: none;
    left: auto;
    margin-top: 6px;
    min-width: 0;
    opacity: 1;
    pointer-events: auto;
    position: static;
    right: auto;
    transform: none;
  }

  .nav-group:hover .nav-dropdown,
  .nav-group:focus-within .nav-dropdown {
    display: none;
  }

  .nav-group.is-open .nav-dropdown {
    display: grid;
  }

  .hero,
  .hero-sponsor-card,
  .sponsor-rail,
  .gaming-section,
  .web3-section,
  .audit-section,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .platform-grid,
  .use-case-grid,
  .price-grid,
  .sponsor-grid {
    grid-template-columns: 1fr;
  }

  .rail-track,
  .web3-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header,
  .hero,
  .sponsor-rail,
  .platforms-section,
  .gaming-section,
  .use-cases-section,
  .web3-section,
  .audit-section,
  .sponsor-section,
  .pricing,
  .final-cta,
  .site-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    min-height: auto;
    padding-top: 38px;
  }

  .hero h1 {
    font-size: 40px;
    line-height: 0.98;
  }

  .hero p,
  .section-copy p,
  .section-heading p {
    font-size: 16px;
  }

  .header-cta,
  .hero-actions > *,
  .command-actions button {
    width: 100%;
  }

  .hero-actions,
  .hero-proof,
  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
  }

  .command-top,
  .audit-card-top {
    align-items: start;
    flex-direction: column;
  }

  .command-actions,
  .rail-track,
  .web3-grid,
  .join-options {
    grid-template-columns: 1fr;
  }

  .platform-card,
  .sponsor-grid article,
  .price-grid article {
    min-height: auto;
  }

  .timer-board b {
    font-size: 34px;
  }

  .final-cta {
    justify-items: start;
  }
}
