:root {
  color-scheme: light;
  --page: #fbfcff;
  --page-2: #eef6ff;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --surface-muted: rgba(239, 246, 255, 0.78);
  --text: #07111f;
  --text-soft: #3a4657;
  --muted: #6b7788;
  --line: rgba(15, 31, 52, 0.11);
  --line-strong: rgba(15, 31, 52, 0.18);
  --blue: #056ff5;
  --blue-deep: #063d8f;
  --mint: #12e8a8;
  --mint-deep: #09a87b;
  --accent: linear-gradient(135deg, #056ff5 0%, #12e8a8 100%);
  --shadow-soft: 0 24px 80px rgba(5, 24, 51, 0.09);
  --shadow-tight: 0 14px 42px rgba(5, 24, 51, 0.08);
  --font-sans: "Geist", "Aptos", "Helvetica Neue", Arial, sans-serif;
  --font-nav: "Manrope", "Geist", "Aptos", sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
}

[data-theme="dark"] {
  color-scheme: dark;
  --page: #05070b;
  --page-2: #091421;
  --surface: rgba(13, 19, 30, 0.78);
  --surface-strong: #101826;
  --surface-muted: rgba(12, 28, 46, 0.74);
  --text: #f4f8ff;
  --text-soft: #c8d4e5;
  --muted: #91a0b5;
  --line: rgba(220, 235, 255, 0.12);
  --line-strong: rgba(220, 235, 255, 0.2);
  --blue: #2d8cff;
  --blue-deep: #67a9ff;
  --mint: #18f0b0;
  --mint-deep: #48ffd0;
  --shadow-soft: 0 28px 84px rgba(0, 0, 0, 0.34);
  --shadow-tight: 0 14px 46px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(
      135deg,
      color-mix(in srgb, var(--blue) 12%, transparent),
      transparent 28rem
    ),
    linear-gradient(180deg, var(--page) 0%, var(--page-2) 48%, var(--page) 100%);
  font-family: var(--font-sans);
  letter-spacing: 0;
  overflow-x: clip;
  transition:
    background 240ms ease,
    color 240ms ease;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(
      color-mix(in srgb, var(--text) 3%, transparent) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      color-mix(in srgb, var(--text) 3%, transparent) 1px,
      transparent 1px
    );
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 58%);
}

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

button,
input,
select {
  font: inherit;
}

button {
  color: inherit;
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.mesh {
  position: absolute;
  width: 46rem;
  height: 18rem;
  border-radius: 999px;
  filter: blur(74px);
  opacity: 0.2;
  transform: rotate(-14deg);
  animation: meshDrift 18s ease-in-out infinite alternate;
}

.mesh-one {
  top: -8rem;
  left: -18rem;
  background: var(--blue);
}

.mesh-two {
  top: 4rem;
  right: -20rem;
  background: var(--mint);
  animation-duration: 22s;
}

.mesh-three {
  bottom: 10rem;
  left: 16%;
  width: 36rem;
  height: 12rem;
  background: linear-gradient(135deg, var(--blue), var(--mint));
  opacity: 0.1;
  animation-duration: 26s;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 0.75rem;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1160px, 100%);
  min-height: 4rem;
  margin: 0 auto;
  padding: 0.5rem;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: color-mix(in srgb, var(--surface-strong) 78%, transparent);
  box-shadow: var(--shadow-tight);
  backdrop-filter: blur(18px) saturate(150%);
}

.brand-mark,
.nav-cta,
.button,
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-mark {
  min-width: 8rem;
  min-height: 3rem;
  padding: 0.35rem 0.9rem;
  color: var(--blue);
  font-family: var(--font-nav);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  text-shadow: none;
}

.nav-links {
  display: none;
  gap: 1.2rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 550;
}

.nav-links a {
  transition: color 180ms ease;
}

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

.nav-actions {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 0.5rem;
  align-items: center;
}

.nav-cta,
.button {
  min-height: 2.75rem;
  border-radius: 999px;
  font-weight: 650;
}

.nav-cta {
  padding: 0 1rem;
  background: var(--text);
  color: var(--page);
  font-size: 0.84rem;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--text) 16%, transparent);
}

.theme-toggle {
  position: relative;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface-muted);
  cursor: pointer;
}

.theme-icon {
  position: absolute;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.theme-sun {
  background: var(--mint);
  box-shadow: 0 0 0 0.32rem color-mix(in srgb, var(--mint) 18%, transparent);
}

.theme-moon {
  border: 0.18rem solid var(--text);
  border-left-color: transparent;
  opacity: 0;
  transform: rotate(-25deg) scale(0.7);
}

[data-theme="dark"] .theme-sun {
  opacity: 0;
  transform: scale(0.7);
}

[data-theme="dark"] .theme-moon {
  opacity: 1;
  transform: rotate(-25deg) scale(1);
}

.hero-section,
.section-shell,
.site-footer {
  width: min(1160px, calc(100% - 1.5rem));
  margin: 0 auto;
}

.hero-section {
  display: grid;
  gap: 2.4rem;
  min-height: calc(100svh - 5.5rem);
  padding: 4rem 0 3rem;
  align-items: center;
}

.eyebrow,
.section-kicker,
.card-label,
.live-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1;
}

.eyebrow {
  gap: 0.48rem;
  padding: 0.5rem 0.7rem;
  box-shadow: var(--shadow-tight);
  backdrop-filter: blur(16px);
}

.status-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--mint) 16%, transparent);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: min(14ch, 100%);
  margin-top: 1.25rem;
  font-size: clamp(2.75rem, 6.6vw, 4.2rem);
  font-weight: 680;
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: normal;
}

h2 {
  max-width: min(12ch, 100%);
  font-size: clamp(2.15rem, 5.6vw, 4.35rem);
  font-weight: 640;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  letter-spacing: 0;
}

.hero-subheadline {
  max-width: 43rem;
  margin-top: 1.15rem;
  color: var(--text-soft);
  font-size: clamp(1.04rem, 2.4vw, 1.3rem);
  line-height: 1.55;
}

.hero-copy,
.hero-visual,
.section-heading {
  min-width: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.button {
  min-width: 10.5rem;
  min-height: 3.1rem;
  padding: 0 1.2rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

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

.button-primary {
  background: var(--accent);
  color: #03101c;
  box-shadow: 0 16px 38px color-mix(in srgb, var(--blue) 18%, transparent);
}

.button-primary:hover {
  box-shadow: 0 20px 48px color-mix(in srgb, var(--mint) 22%, transparent);
}

.button-secondary {
  border-color: var(--line);
  background: var(--surface);
  color: var(--text);
  backdrop-filter: blur(16px);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  max-width: 40rem;
  margin-top: 1.9rem;
}

.badge-row span {
  padding: 0.48rem 0.68rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 600;
  backdrop-filter: blur(12px);
}

.hero-visual {
  position: relative;
  min-height: 35rem;
  isolation: isolate;
}

.rail-field {
  position: absolute;
  inset: 8% 0 0 4%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 2rem;
  opacity: 0.42;
  background: var(--surface-muted);
}

.rail-field span {
  position: absolute;
  width: 1px;
  height: 82%;
  background: linear-gradient(
    to bottom,
    transparent,
    color-mix(in srgb, var(--blue) 45%, transparent),
    transparent
  );
  transform: rotate(34deg);
}

.rail-field span:nth-child(1) {
  left: 9%;
}

.rail-field span:nth-child(2) {
  left: 32%;
  background: linear-gradient(
    to bottom,
    transparent,
    color-mix(in srgb, var(--mint) 50%, transparent),
    transparent
  );
}

.rail-field span:nth-child(3) {
  left: 58%;
}

.rail-field span:nth-child(4) {
  left: 82%;
  background: linear-gradient(
    to bottom,
    transparent,
    color-mix(in srgb, var(--text) 25%, transparent),
    transparent
  );
}

.glass-panel,
.bento-card,
.problem-card,
.trust-card,
.team-card,
.merchant-console,
.waitlist-panel,
.token-info,
.roadmap-card,
.faq-list details {
  position: relative;
  border: 1px solid var(--line);
  background:
    linear-gradient(
      145deg,
      color-mix(in srgb, var(--surface-strong) 88%, transparent),
      color-mix(in srgb, var(--surface) 62%, transparent)
    ),
    radial-gradient(
      circle at 0% 0%,
      color-mix(in srgb, var(--blue) 8%, transparent),
      transparent 18rem
    );
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(22px) saturate(150%);
}

.glass-panel::after,
.bento-card::after,
.token-info::after,
.waitlist-panel::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  content: "";
  background: linear-gradient(
    115deg,
    color-mix(in srgb, #fff 38%, transparent),
    transparent 30%,
    color-mix(in srgb, #fff 12%, transparent) 58%,
    transparent
  );
  opacity: 0.8;
}

.dashboard-panel {
  position: absolute;
  top: 1.2rem;
  right: 0;
  z-index: 2;
  width: min(23.5rem, 88vw);
  padding: 1rem;
  border-radius: 1.4rem;
}

.panel-header,
.metric-row,
.flow-item,
.card-topline,
.card-footer,
.console-top,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.panel-header {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
}

.live-pill {
  padding: 0.42rem 0.52rem;
  color: var(--mint-deep);
}

.metric-row {
  margin-top: 1.15rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--surface);
}

.metric-label,
.mini-panel span,
.token-facts dt,
.console-grid small {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
}

.metric-row strong {
  display: block;
  margin-top: 0.3rem;
  font-size: 1.55rem;
}

.metric-trend {
  color: var(--mint-deep);
  font-weight: 700;
}

.flow-list {
  display: grid;
  gap: 0.62rem;
  margin-top: 0.72rem;
}

.flow-item {
  gap: 0.72rem;
  padding: 0.76rem;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: var(--surface);
}

.flow-item div {
  flex: 1;
  min-width: 0;
}

.flow-item strong,
.flow-item small {
  display: block;
}

.flow-item strong {
  font-size: 0.86rem;
}

.flow-item small {
  margin-top: 0.18rem;
  color: var(--muted);
  font-size: 0.74rem;
}

.flow-item em {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-style: normal;
}

.flow-node {
  flex: 0 0 auto;
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
}

.node-blue {
  background: var(--blue);
}

.node-mint {
  background: var(--mint);
}

.node-dark {
  background: var(--text);
}

.card-mockup {
  position: absolute;
  right: 5%;
  bottom: 5.6rem;
  z-index: 4;
  width: min(25rem, 88vw);
  min-height: 15.8rem;
  padding: 1.2rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1.65rem;
  background:
    radial-gradient(
      circle at 14% 8%,
      rgba(18, 232, 168, 0.34),
      transparent 10rem
    ),
    radial-gradient(
      circle at 88% 12%,
      rgba(5, 111, 245, 0.36),
      transparent 12rem
    ),
    linear-gradient(145deg, #101827, #02040a);
  color: #ffffff;
  box-shadow: 0 28px 74px rgba(5, 8, 18, 0.3);
  transform: rotate(-4deg);
}

.card-sheen {
  position: absolute;
  inset: -40% -20% auto auto;
  width: 16rem;
  height: 16rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  filter: blur(20px);
}

.card-topline,
.card-footer {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 650;
}

.card-chip {
  position: relative;
  z-index: 2;
  width: 3.1rem;
  height: 2.15rem;
  margin-top: 3.2rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0.55rem;
  background:
    linear-gradient(
      90deg,
      transparent 48%,
      rgba(255, 255, 255, 0.22) 49%,
      rgba(255, 255, 255, 0.22) 51%,
      transparent 52%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.1));
}

.card-number {
  position: relative;
  z-index: 2;
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-mono);
  font-size: 1.02rem;
}

.card-footer {
  margin-top: 2.5rem;
}

.mini-panel {
  position: absolute;
  z-index: 5;
  width: 12.5rem;
  padding: 0.9rem;
  border-radius: 1rem;
}

.mini-panel strong {
  display: block;
  margin-top: 0.24rem;
  font-size: 0.92rem;
}

.settlement-panel {
  left: 0.2rem;
  bottom: 10.8rem;
}

.reward-panel {
  right: 0.2rem;
  bottom: 0.8rem;
}

.section-shell {
  padding: 5rem 0;
}

.section-heading {
  max-width: 52rem;
  margin-bottom: 2rem;
}

.section-heading h2 {
  max-width: 13ch;
}

.section-kicker,
.card-label {
  padding: 0.42rem 0.58rem;
  margin-bottom: 1rem;
}

.section-heading p,
.bento-card p,
.problem-card p,
.trust-card p,
.team-card p,
.utility-row p,
.token-info p,
.community-inner p,
.waitlist-panel p,
.faq-list p {
  color: var(--muted);
  line-height: 1.65;
}

.section-heading p,
.community-inner p,
.waitlist-panel p {
  max-width: 42rem;
  margin-top: 1.1rem;
  font-size: 1.04rem;
}

.problem-grid,
.trust-grid,
.team-grid,
.bento-grid,
.token-grid,
.utility-stack,
.faq-list {
  display: grid;
  gap: 0.9rem;
}

.problem-card,
.bento-card,
.trust-card,
.team-card,
.token-info,
.roadmap-card {
  min-width: 0;
  border-radius: 1.25rem;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.problem-card,
.trust-card,
.team-card {
  min-height: 14rem;
  padding: 1.25rem;
}

.bento-card,
.token-info {
  min-height: 15rem;
  padding: 1.25rem;
}

.problem-card:hover,
.bento-card:hover,
.trust-card:hover,
.team-card:hover,
.token-info:hover,
.roadmap-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--blue) 28%, transparent);
  box-shadow: 0 30px 90px color-mix(in srgb, var(--text) 10%, transparent);
}

.problem-card span,
.trust-card span,
.team-card span,
.utility-row span,
.roadmap-year {
  display: inline-flex;
  margin-bottom: 1.7rem;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.bento-card h3,
.problem-card h3,
.trust-card h3,
.team-card h3,
.token-info h3,
.utility-row h3,
.roadmap-card h3 {
  max-width: 28rem;
  font-size: 1.32rem;
  font-weight: 640;
  line-height: 1.14;
}

.bento-card p,
.problem-card p,
.trust-card p,
.team-card p {
  margin-top: 0.9rem;
  max-width: 32rem;
  font-size: 0.95rem;
}

.mini-ledger {
  display: grid;
  gap: 0.5rem;
  margin-top: 2rem;
}

.mini-ledger span,
.code-card span {
  display: flex;
  min-height: 2.6rem;
  align-items: center;
  padding: 0 0.78rem;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: var(--surface);
  color: var(--text-soft);
  font-size: 0.86rem;
  font-weight: 550;
}

.code-card {
  display: grid;
  gap: 0.55rem;
  margin-top: 2rem;
  font-family: var(--font-mono);
}

.code-card span {
  color: var(--muted);
  font-size: 0.76rem;
}

.token-grid {
  align-items: start;
}

.token-info {
  overflow: hidden;
}

.token-info h3 {
  font-size: clamp(1.75rem, 4.6vw, 2.55rem);
  line-height: 1.03;
}

.token-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 2rem 0 0;
}

.token-facts div {
  min-width: 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--surface);
}

.token-facts dd {
  margin: 0.32rem 0 0;
  color: var(--text);
  font-size: 1.18rem;
  font-weight: 700;
}

.token-actions,
.community-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.utility-stack {
  align-self: start;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: var(--surface);
  box-shadow: var(--shadow-tight);
  backdrop-filter: blur(18px);
}

.utility-heading {
  padding: 0.35rem 0.35rem 0.6rem;
}

.utility-heading h3 {
  font-size: 1.28rem;
}

.utility-row {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 0.9rem;
  padding: 1rem;
  border-radius: 1rem;
  background: var(--surface-muted);
}

.utility-row span {
  margin: 0.25rem 0 0;
}

.utility-row p {
  margin-top: 0.5rem;
  font-size: 0.93rem;
}

.roadmap-track {
  position: relative;
  display: grid;
  gap: 1rem;
}

.roadmap-track::before {
  position: absolute;
  inset: 1.35rem auto 1.35rem 1.28rem;
  width: 2px;
  content: "";
  background: linear-gradient(to bottom, var(--mint), var(--blue), var(--line));
}

.roadmap-card {
  margin-left: 2.2rem;
  padding: 1.25rem;
}

.roadmap-card::before {
  position: absolute;
  top: 1.2rem;
  left: -2.02rem;
  width: 0.85rem;
  height: 0.85rem;
  border: 0.25rem solid var(--page);
  border-radius: 50%;
  content: "";
  background: var(--blue);
  box-shadow: 0 0 0 0.35rem color-mix(in srgb, var(--blue) 16%, transparent);
}

.roadmap-card.is-current::before {
  background: var(--mint);
  box-shadow: 0 0 0 0.35rem color-mix(in srgb, var(--mint) 18%, transparent);
}

.roadmap-year {
  margin-bottom: 0.9rem;
  color: var(--mint-deep);
  font-size: 0.9rem;
  font-weight: 700;
}

.roadmap-card ul {
  display: grid;
  gap: 0.62rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.roadmap-card li {
  position: relative;
  padding-left: 1.1rem;
}

.roadmap-card li::before {
  position: absolute;
  left: 0;
  color: var(--mint-deep);
  content: "•";
}

.community-section {
  margin: 4rem 0;
  background:
    linear-gradient(135deg, rgba(5, 111, 245, 0.18), transparent 42%),
    linear-gradient(145deg, #061120, #020409);
  color: #ffffff;
}

.community-inner {
  padding: 5rem 0;
}

.community-inner h2 {
  color: #ffffff;
}

.community-inner p {
  color: rgba(255, 255, 255, 0.72);
}

.community-inner .section-kicker,
.community-inner .button-secondary {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.faq-section .section-heading h2 {
  max-width: 16ch;
}

.faq-list {
  max-width: 52rem;
}

.faq-list details {
  padding: 1.1rem 1.25rem;
  border-radius: 1rem;
}

.faq-list summary {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  color: var(--text);
  cursor: pointer;
  font-weight: 650;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  flex: 0 0 auto;
  width: 1.7rem;
  height: 1.7rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  content: "+";
  display: grid;
  place-items: center;
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list p {
  max-width: 42rem;
  margin-top: 0.85rem;
  font-size: 0.94rem;
}

.waitlist-section {
  padding-bottom: 3rem;
}

.waitlist-panel {
  display: grid;
  gap: 2rem;
  padding: 1.25rem;
  border-radius: 1.6rem;
  overflow: hidden;
}

.waitlist-panel::before {
  position: absolute;
  inset: auto -8rem -12rem auto;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  content: "";
  background: var(--accent);
  filter: blur(44px);
  opacity: 0.12;
}

.waitlist-form {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.85rem;
}

.waitlist-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
}

.waitlist-form input,
.waitlist-form select {
  width: 100%;
  min-height: 3.2rem;
  padding: 0 0.95rem;
  border: 1px solid var(--line-strong);
  border-radius: 0.9rem;
  outline: none;
  background: var(--surface-strong);
  color: var(--text);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.waitlist-form input:focus,
.waitlist-form select:focus {
  border-color: color-mix(in srgb, var(--blue) 58%, transparent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--blue) 13%, transparent);
}

.form-note {
  min-height: 1.5rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.site-footer {
  gap: 1rem;
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

.site-footer span {
  min-width: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes meshDrift {
  0% {
    transform: translate3d(0, 0, 0) rotate(-14deg) scale(1);
  }

  100% {
    transform: translate3d(3rem, 2rem, 0) rotate(-10deg) scale(1.06);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 720px) {
  .site-header {
    padding: 1rem;
  }

  .nav-links {
    display: flex;
  }

  .hero-section {
    grid-template-columns: minmax(0, 1.12fr) minmax(21rem, 0.88fr);
    gap: 2rem;
    padding-top: 3.25rem;
  }

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

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

  .bento-card {
    grid-column: span 3;
  }

  .bento-large {
    grid-column: span 4;
    min-height: 22rem;
  }

  .bento-tall {
    grid-column: span 2;
    grid-row: span 2;
  }

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

  .token-grid,
  .waitlist-panel {
    grid-template-columns: minmax(0, 0.95fr) minmax(20rem, 0.85fr);
    align-items: start;
  }

  .roadmap-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }

  .roadmap-track::before {
    inset: 1.58rem 9% auto 9%;
    width: auto;
    height: 2px;
  }

  .roadmap-card {
    margin: 2.2rem 0 0;
    min-height: 22rem;
  }

  .roadmap-card::before {
    top: -1.1rem;
    left: 1.25rem;
  }

  .waitlist-panel {
    padding: 2rem;
  }

  .site-footer {
    grid-template-columns: auto 1fr auto;
  }
}

@media (min-width: 980px) {
  .section-shell {
    padding: 6.25rem 0;
  }

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

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

  .problem-card,
  .bento-card,
  .trust-card,
  .team-card,
  .token-info,
  .roadmap-card {
    padding: 1.5rem;
  }
}

@media (max-width: 860px) {
  .nav-links {
    gap: 0.8rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 0.55rem;
  }

  .nav-shell {
    border-radius: 1rem;
  }

  .nav-actions {
    gap: 0.35rem;
  }

  .nav-cta {
    min-height: 2.5rem;
    padding: 0 0.82rem;
  }

  .theme-toggle {
    width: 2.5rem;
    height: 2.5rem;
  }

  .hero-section {
    padding-top: 2.5rem;
  }

  h1 {
    max-width: min(11ch, 100%);
    font-size: clamp(2.55rem, 12vw, 3.1rem);
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  h2 {
    max-width: 13ch;
    font-size: clamp(2rem, 11vw, 3.25rem);
  }

  .hero-actions .button,
  .token-actions .button,
  .community-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 32rem;
  }

  .dashboard-panel {
    right: 50%;
    width: min(21rem, calc(100vw - 2rem));
    transform: translateX(50%);
  }

  .card-mockup {
    right: 50%;
    bottom: 5rem;
    width: min(20.8rem, calc(100vw - 2.3rem));
    transform: translateX(50%) rotate(-3deg);
  }

  .mini-panel {
    width: min(10.7rem, 46vw);
  }

  .settlement-panel {
    left: 0;
    bottom: 10.3rem;
  }

  .reward-panel {
    right: 0;
    bottom: 0.4rem;
  }

  .token-facts {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
    justify-content: start;
  }
}

/* Requested visual refresh: liquid glass system, icon toggle, hero image, bento repair. */
.nav-shell {
  min-height: 4.35rem;
  padding: 0.55rem 0.65rem;
  border-color: color-mix(in srgb, #ffffff 58%, var(--line));
  border-radius: 1.45rem;
  background:
    linear-gradient(
      135deg,
      color-mix(in srgb, var(--surface-strong) 46%, transparent),
      color-mix(in srgb, var(--surface) 24%, transparent)
    ),
    linear-gradient(
      180deg,
      color-mix(in srgb, #ffffff 18%, transparent),
      transparent
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 18px 58px rgba(7, 17, 31, 0.1);
  backdrop-filter: blur(30px) saturate(190%);
}

[data-theme="dark"] .nav-shell {
  border-color: rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(135deg, rgba(15, 28, 44, 0.52), rgba(10, 16, 27, 0.34)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 18px 58px rgba(0, 0, 0, 0.34);
}

.nav-links {
  gap: 0.45rem;
  padding: 0.34rem;
  border: 1px solid color-mix(in srgb, var(--line) 72%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 42%, transparent);
  color: color-mix(in srgb, var(--text) 68%, var(--muted));
  font-family: var(--font-nav);
  font-size: 0.79rem;
  font-weight: 600;
  letter-spacing: 0;
}

.nav-links a {
  padding: 0.55rem 0.72rem;
  border-radius: 999px;
}

.nav-links a:hover {
  background: color-mix(in srgb, var(--surface-strong) 62%, transparent);
}

.theme-toggle {
  width: 2.65rem;
  height: 2.65rem;
  border-color: color-mix(in srgb, var(--line) 88%, rgba(255, 255, 255, 0.34));
  background: linear-gradient(
    145deg,
    color-mix(in srgb, var(--surface-strong) 48%, transparent),
    color-mix(in srgb, var(--surface) 30%, transparent)
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    0 10px 28px rgba(7, 17, 31, 0.08);
}

.theme-icon {
  width: 1.1rem;
  height: 1.1rem;
  border: 0;
  border-radius: 0;
  color: var(--text);
  stroke-width: 1.85;
}

.theme-sun {
  background: none;
  box-shadow: none;
}

.theme-moon {
  border: 0;
  color: var(--mint);
}

[data-theme="dark"] .theme-moon {
  transform: scale(1);
}

.nav-cta,
.button {
  min-height: 3rem;
  border-radius: 999px;
  overflow: hidden;
  white-space: nowrap;
}

.nav-cta,
.button-primary {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background:
    linear-gradient(135deg, rgba(4, 91, 222, 0.86), rgba(13, 221, 174, 0.82)),
    rgba(255, 255, 255, 0.18);
  color: #ffffff;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -18px 36px rgba(1, 8, 20, 0.14),
    0 18px 44px rgba(5, 111, 245, 0.2);
  backdrop-filter: blur(20px) saturate(170%);
}

.nav-cta {
  min-width: 8.35rem;
  padding: 0 1rem;
  font-family: var(--font-nav);
  font-size: 0.82rem;
  font-weight: 700;
}

.button-primary:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    inset 0 -18px 36px rgba(1, 8, 20, 0.12),
    0 22px 54px rgba(18, 232, 168, 0.24);
}

.button-secondary,
.badge-row span,
.eyebrow,
.section-kicker,
.card-label,
.token-facts div,
.mini-ledger span,
.code-card span,
.utility-row,
.faq-list summary::after {
  border-color: color-mix(in srgb, var(--line) 72%, rgba(255, 255, 255, 0.32));
  background: linear-gradient(
    145deg,
    color-mix(in srgb, var(--surface-strong) 54%, transparent),
    color-mix(in srgb, var(--surface) 32%, transparent)
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    0 10px 30px rgba(7, 17, 31, 0.055);
  backdrop-filter: blur(22px) saturate(175%);
}

[data-theme="dark"] .button-secondary,
[data-theme="dark"] .badge-row span,
[data-theme="dark"] .eyebrow,
[data-theme="dark"] .section-kicker,
[data-theme="dark"] .card-label,
[data-theme="dark"] .token-facts div,
[data-theme="dark"] .mini-ledger span,
[data-theme="dark"] .code-card span,
[data-theme="dark"] .utility-row,
[data-theme="dark"] .faq-list summary::after {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 12px 34px rgba(0, 0, 0, 0.22);
}

h2 {
  max-width: min(15ch, 100%);
  font-size: clamp(1.9rem, 4.4vw, 3.35rem);
  line-height: 1.06;
}

.section-heading h2,
.faq-section .section-heading h2 {
  max-width: 18ch;
}

.section-heading p,
.community-inner p,
.waitlist-panel p {
  font-size: 0.98rem;
}

.hero-section {
  grid-template-columns: minmax(0, 0.86fr) minmax(22rem, 1.14fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  min-height: auto;
  padding-top: clamp(3.2rem, 8vw, 6.2rem);
}

.hero-visual {
  display: flex;
  min-height: 0;
  align-items: center;
  justify-content: center;
  border-radius: 2rem;
}

.hero-visual img {
  display: block;
  width: min(100%, 52rem);
  height: auto;
  border-radius: 1.7rem;
  filter: drop-shadow(0 28px 60px rgba(5, 28, 61, 0.16));
}

[data-theme="dark"] .hero-visual img {
  filter: drop-shadow(0 28px 70px rgba(0, 0, 0, 0.42)) brightness(0.9)
    contrast(1.06);
  mix-blend-mode: screen;
}

.glass-panel,
.bento-card,
.problem-card,
.trust-card,
.team-card,
.waitlist-panel,
.token-info,
.roadmap-card,
.faq-list details {
  border-color: color-mix(in srgb, var(--line) 78%, rgba(255, 255, 255, 0.3));
  background:
    linear-gradient(
      145deg,
      color-mix(in srgb, var(--surface-strong) 58%, transparent),
      color-mix(in srgb, var(--surface) 30%, transparent)
    ),
    radial-gradient(
      circle at 12% 0%,
      color-mix(in srgb, var(--blue) 10%, transparent),
      transparent 16rem
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    inset 0 -28px 70px color-mix(in srgb, var(--blue) 4%, transparent),
    0 26px 76px rgba(6, 22, 46, 0.09);
  backdrop-filter: blur(26px) saturate(180%);
}

[data-theme="dark"] .glass-panel,
[data-theme="dark"] .bento-card,
[data-theme="dark"] .problem-card,
[data-theme="dark"] .trust-card,
[data-theme="dark"] .team-card,
[data-theme="dark"] .waitlist-panel,
[data-theme="dark"] .token-info,
[data-theme="dark"] .roadmap-card,
[data-theme="dark"] .faq-list details {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    inset 0 -28px 70px rgba(45, 140, 255, 0.04),
    0 26px 76px rgba(0, 0, 0, 0.32);
}

.bento-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(17rem, auto);
  gap: 1rem;
}

.bento-card {
  grid-column: auto;
  grid-row: auto;
  display: flex;
  min-height: 17rem;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 1.5rem;
  border-radius: 1.65rem;
}

.bento-large {
  grid-column: span 1;
  grid-row: span 2;
  min-height: 35rem;
}

.bento-tall {
  grid-column: span 1;
  grid-row: span 2;
  min-height: 35rem;
}

.bento-card h3,
.problem-card h3,
.trust-card h3,
.team-card h3,
.utility-row h3,
.roadmap-card h3 {
  font-size: 1.12rem;
  line-height: 1.2;
}

.bento-card p,
.problem-card p,
.trust-card p,
.team-card p {
  font-size: 0.9rem;
}

.bento-visual,
.bento-mini-icon {
  position: absolute;
  top: 1.35rem;
  left: 1.35rem;
  right: 1.35rem;
  border: 1px solid
    color-mix(in srgb, var(--line) 72%, rgba(255, 255, 255, 0.36));
  border-radius: 1.2rem;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.5),
    rgba(255, 255, 255, 0.16)
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    0 18px 44px rgba(4, 33, 78, 0.1);
  backdrop-filter: blur(22px) saturate(180%);
}

[data-theme="dark"] .bento-visual,
[data-theme="dark"] .bento-mini-icon {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.04)
  );
}

.bento-visual {
  display: grid;
  gap: 0.4rem;
  padding: 1rem;
}

.bento-visual span,
.bento-visual small,
.bento-visual em {
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
}

.bento-visual strong {
  color: var(--text);
  font-size: 1.12rem;
}

.bento-wallet {
  top: 3rem;
}

.merchant-ticket {
  top: 3.2rem;
}

.bento-mini-icon {
  display: grid;
  width: 3.1rem;
  height: 3.1rem;
  right: auto;
  place-items: center;
  color: var(--blue);
}

.bento-mini-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  stroke-width: 1.8;
}

.token-info h3 {
  font-size: clamp(1.5rem, 3.2vw, 2.05rem);
}

.token-facts {
  margin-top: 1.25rem;
}

.roadmap-section .section-heading {
  margin-bottom: 2.4rem;
}

.roadmap-track {
  max-width: 50rem;
  gap: 1.1rem;
  margin: 0 auto;
}

.roadmap-track::before {
  inset: 0.7rem auto 0.7rem 1.55rem;
  width: 1px;
  height: auto;
  background: linear-gradient(
    to bottom,
    rgba(18, 232, 168, 0.8),
    rgba(45, 140, 255, 0.75),
    transparent
  );
}

.roadmap-card {
  display: grid;
  min-height: auto;
  margin: 0 0 0 3.6rem;
  padding: 1.35rem;
  border-radius: 1.45rem;
}

.roadmap-card::before {
  top: 1.35rem;
  left: -2.55rem;
  width: 0.82rem;
  height: 0.82rem;
  border-color: var(--page);
}

.roadmap-card p {
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.roadmap-card ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 1rem;
}

.faq-list {
  max-width: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.waitlist-panel {
  max-width: 42rem;
  margin: 0 auto;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  padding: 2rem;
  text-align: center;
}

.waitlist-panel .section-kicker {
  margin-inline: auto;
}

.waitlist-panel h2 {
  max-width: 15ch;
  margin-inline: auto;
}

.waitlist-panel p {
  margin-inline: auto;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  max-width: 30rem;
  width: 100%;
  margin: 0 auto;
}

.waitlist-form input {
  min-height: 3.35rem;
  border-radius: 999px;
  text-align: center;
}

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

.site-footer {
  display: block;
  width: 100%;
  margin-top: 3rem;
  padding: 3.2rem max(1.5rem, calc((100vw - 1160px) / 2)) 2rem;
  border-top: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface-strong) 52%, transparent);
  backdrop-filter: blur(22px);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(14rem, 1.3fr) repeat(4, minmax(8rem, 1fr));
  gap: 2rem;
}

.footer-brand-block p,
.site-footer a,
.site-footer span,
.footer-note {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.site-footer h4 {
  margin: 0 0 0.85rem;
  color: var(--text);
  font-size: 0.88rem;
}

.site-footer a,
.site-footer span {
  display: block;
  margin-top: 0.42rem;
}

.footer-note {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  text-align: center;
}

@media (min-width: 720px) {
  .hero-section {
    grid-template-columns: minmax(0, 0.84fr) minmax(22rem, 1.16fr);
  }

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

@media (max-width: 980px) {
  .hero-section {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 44rem;
  }

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

  .bento-large,
  .bento-tall {
    grid-row: span 1;
    min-height: 26rem;
  }

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

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

  .bento-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .bento-large,
  .bento-tall,
  .bento-card {
    min-height: 20rem;
  }

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

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

@media (max-width: 560px) {
  .nav-cta {
    min-width: 7.9rem;
  }

  h2 {
    max-width: 16ch;
    font-size: clamp(1.8rem, 9vw, 2.65rem);
  }

  .hero-visual img {
    width: min(145%, 38rem);
    max-width: none;
    margin-inline: -20%;
  }

  .waitlist-panel {
    padding: 1.35rem;
  }
}

.nav-shell {
  background:
    linear-gradient(
      135deg,
      color-mix(in srgb, var(--surface-strong) 34%, transparent),
      color-mix(in srgb, var(--surface) 16%, transparent)
    ),
    linear-gradient(
      180deg,
      color-mix(in srgb, #ffffff 12%, transparent),
      transparent
    );
}

.nav-cta,
.button {
  font-weight: 500;
  letter-spacing: 0;
}

.nav-cta {
  font-weight: 500;
}

.eyebrow,
.section-kicker,
.card-label,
.badge-row span {
  min-height: 2rem;
  padding: 0.62rem 0.86rem;
  border-radius: 999px;
  color: color-mix(in srgb, var(--text) 68%, var(--muted));
  font-family: var(--font-nav);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0;
}

.eyebrow {
  gap: 0.58rem;
}

.badge-row {
  gap: 0.7rem;
}

.badge-row span {
  font-size: 0.84rem;
}

.hero-visual {
  position: relative;
  padding: clamp(0.65rem, 1.5vw, 1.1rem);
  border: 1px solid
    color-mix(in srgb, var(--line) 80%, rgba(255, 255, 255, 0.28));
  background:
    radial-gradient(
      circle at 18% 16%,
      color-mix(in srgb, var(--mint) 10%, transparent),
      transparent 22rem
    ),
    linear-gradient(
      145deg,
      color-mix(in srgb, var(--surface-strong) 50%, transparent),
      color-mix(in srgb, var(--surface) 18%, transparent)
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 28px 88px rgba(5, 28, 61, 0.12);
  backdrop-filter: blur(26px) saturate(180%);
}

[data-theme="dark"] .hero-visual {
  background:
    radial-gradient(
      circle at 18% 16%,
      rgba(24, 240, 176, 0.11),
      transparent 22rem
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.025)
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 28px 88px rgba(0, 0, 0, 0.34);
}

.hero-visual img {
  width: min(100%, 54rem);
  border-radius: 1.35rem;
}

[data-theme="dark"] .hero-visual img {
  mix-blend-mode: normal;
}

.bento-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: 14rem;
  gap: 1rem;
}

.bento-card,
.bento-large,
.bento-tall {
  grid-column: span 2;
  grid-row: span 1;
  min-height: 0;
}

.bento-card {
  justify-content: flex-end;
  padding: 1.45rem;
}

.bento-card .card-label,
.bento-card h3,
.bento-card p {
  position: relative;
  z-index: 2;
}

.bento-spend {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-route-card {
  grid-column: span 2;
  grid-row: span 1;
}

.bento-merchant-card {
  grid-column: span 2;
  grid-row: span 1;
}

.bento-rewards,
.bento-security-card {
  grid-column: span 2;
  grid-row: span 1;
}

.bento-wallet,
.merchant-ticket,
.route-ticket {
  top: 1.45rem;
}

.bento-visual {
  top: 1.25rem;
  min-height: 5.8rem;
}

.bento-spend .bento-visual {
  min-height: 10rem;
}

.bento-route-card .bento-visual,
.bento-merchant-card .bento-visual {
  min-height: 4.9rem;
  padding: 0.8rem;
}

.bento-route-card p,
.bento-merchant-card p {
  display: none;
}

.bento-merchant-card .bento-list {
  display: none;
}

.bento-list {
  display: grid;
  gap: 0.42rem;
  margin-top: 0.45rem;
}

.bento-list small {
  display: flex;
  min-height: 1.8rem;
  align-items: center;
  padding: 0 0.65rem;
  border: 1px solid color-mix(in srgb, var(--line) 70%, rgba(255, 255, 255, 0.36));
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface-strong) 40%, transparent);
}

.bento-mini-icon {
  top: 1.45rem;
  width: 3.15rem;
  height: 3.15rem;
}

.token-grid {
  grid-template-columns: 1fr;
  max-width: 54rem;
  margin: 0 auto;
  gap: 1rem;
}

.token-info {
  min-height: auto;
}

.token-info h3 {
  max-width: none;
  font-size: clamp(1.55rem, 3vw, 2rem);
}

.token-facts {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.utility-stack {
  grid-template-columns: 1fr;
  padding: 1rem;
}

.utility-heading {
  padding: 0.4rem 0.4rem 0.8rem;
}

.utility-row {
  grid-template-columns: 2.3rem minmax(0, 1fr);
}

.roadmap-track::before {
  left: 1.5rem;
}

.roadmap-card::before {
  display: none;
}

.roadmap-icon {
  position: absolute;
  top: 1.22rem;
  left: -2.85rem;
  z-index: 2;
  display: grid;
  width: 2rem;
  height: 2rem;
  margin: 0;
  place-items: center;
  border: 1px solid
    color-mix(in srgb, var(--line) 72%, rgba(255, 255, 255, 0.4));
  border-radius: 999px;
  background: linear-gradient(
    145deg,
    color-mix(in srgb, var(--surface-strong) 72%, transparent),
    color-mix(in srgb, var(--surface) 44%, transparent)
  );
  color: var(--blue);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.56),
    0 0 0 0.42rem color-mix(in srgb, var(--blue) 10%, transparent);
  backdrop-filter: blur(18px) saturate(160%);
}

.roadmap-card.is-current .roadmap-icon {
  color: var(--mint-deep);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.56),
    0 0 0 0.42rem color-mix(in srgb, var(--mint) 14%, transparent);
}

.roadmap-icon svg {
  width: 1rem;
  height: 1rem;
  stroke-width: 1.9;
}

@media (max-width: 980px) {
  .bento-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(16rem, auto);
  }

  .bento-card,
  .bento-spend,
  .bento-route-card,
  .bento-merchant-card,
  .bento-rewards,
  .bento-security-card {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 18rem;
  }

  .bento-spend,
  .bento-merchant-card {
    min-height: 24rem;
  }

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

@media (max-width: 720px) {
  .bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .bento-card,
  .bento-spend,
  .bento-route-card,
  .bento-merchant-card,
  .bento-rewards,
  .bento-security-card {
    grid-column: auto;
    grid-row: auto;
    min-height: 18rem;
  }

  .bento-spend {
    min-height: 25rem;
  }

  .bento-spend .bento-visual {
    min-height: 8.8rem;
  }

  .token-facts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .eyebrow,
  .section-kicker,
  .card-label,
  .badge-row span {
    font-size: 0.78rem;
  }

  .hero-visual img {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
  }
}

[data-theme="dark"] .brand-mark,
[data-theme="dark"] .footer-brand {
  color: var(--blue-deep);
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0;
  min-width: 0;
  min-height: auto;
  justify-content: flex-start;
  font-size: 1.6rem;
}

@media (max-width: 560px) {
  .brand-mark {
    min-width: 6.2rem;
    min-height: 2.65rem;
    padding: 0.25rem 0.45rem;
    font-size: 1.35rem;
  }
}
