:root {
  color-scheme: dark;
  --bg: #050505;
  --text: #f7f1eb;
  --muted: rgba(247, 241, 235, 0.66);
  --soft: rgba(247, 241, 235, 0.42);
  --line: rgba(210, 193, 175, 0.18);
  --line-strong: rgba(210, 193, 175, 0.48);
  --gold: #d2c1af;
  --gold-soft: rgba(210, 193, 175, 0.12);
  --danger: #b84c42;
  --danger-soft: rgba(184, 76, 66, 0.2);
  --panel-x: 50%;
  --panel-y: 18%;
  --panel-light: 0;
  --field-x: 0px;
  --field-y: 0px;
  --field-x-inverse: 0px;
  --field-y-inverse: 0px;
  --star-x: 0px;
  --star-y: 0px;
  --ease: 0.4s ease;
}

@font-face {
  font-family: "Circular";
  src: url("./fonts/Circular-font-family/lineto-circular-book.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Circular";
  src: url("./fonts/Circular-font-family/lineto-circular-medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Geist Mono";
  src: url("./fonts/Geist_Mono/GeistMono-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.18) 48%, rgba(0, 0, 0, 0.68)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.76)),
    url("./assets/envocs-grid-comingsoon-bg-desktop-v1.webp") center / cover no-repeat;
  color: var(--text);
  font-family: "Circular", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before,
body::after {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
}

body::before {
  background:
    radial-gradient(circle at 43% 46%, rgba(210, 193, 175, 0.18), transparent 19%),
    radial-gradient(circle at 74% 35%, rgba(246, 241, 235, 0.08), transparent 24%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.2) 48%, rgba(0, 0, 0, 0.62));
  mix-blend-mode: screen;
  opacity: 0.72;
}

body::after {
  z-index: -1;
  background:
    radial-gradient(ellipse at center, transparent 35%, rgba(0, 0, 0, 0.46) 78%, rgba(0, 0, 0, 0.86)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 22%, rgba(0, 0, 0, 0.5));
}

body.mobile-info-collapsed .grid-intro {
  display: none;
}

a,
button,
input {
  font: inherit;
}

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

button,
.jupiter-button {
  border: 1px solid var(--line);
  cursor: pointer;
  transition: all var(--ease);
}

button:hover,
.jupiter-button:hover {
  border-color: var(--line-strong);
  color: var(--gold);
  box-shadow: none;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 4px;
}

.page-shell {
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: stretch;
  width: 100%;
  min-height: 100vh;
  padding: 0;
}

.access-panel {
  position: relative;
  align-self: center;
  justify-self: stretch;
  margin: 11vh 8% 11vh 13%;
  overflow-x: hidden;
  overflow-y: hidden;
  padding: clamp(24px, 2.55vw, 36px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018) 45%, rgba(0, 0, 0, 0.18)),
    rgba(8, 8, 8, 0.46);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -18px 54px rgba(0, 0, 0, 0.28),
    0 24px 72px rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(14px) saturate(116%);
  -webkit-backdrop-filter: blur(14px) saturate(116%);
  transition: all var(--ease);
}

.access-panel:hover,
.access-panel.is-glowing {
  --panel-light: 1;
  border-color: var(--line-strong);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.13),
    inset 0 -18px 54px rgba(0, 0, 0, 0.27),
    0 26px 76px rgba(0, 0, 0, 0.48);
}

.panel-corners,
.panel-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.panel-corners {
  opacity: 0;
  transition: all var(--ease);
  will-change: opacity;
}

.panel-corners::before,
.panel-corners::after {
  position: absolute;
  width: 46px;
  height: 46px;
  content: "";
}

.panel-corners::before {
  top: 18px;
  left: 18px;
  border-top: 1px solid rgba(210, 193, 175, 0.55);
  border-left: 1px solid rgba(210, 193, 175, 0.55);
  border-top-left-radius: 18px;
}

.panel-corners::after {
  right: 18px;
  bottom: 18px;
  border-right: 1px solid rgba(210, 193, 175, 0.55);
  border-bottom: 1px solid rgba(210, 193, 175, 0.55);
  border-bottom-right-radius: 18px;
}

.access-panel:hover .panel-corners,
.access-panel.is-glowing .panel-corners {
  opacity: 1;
}

.panel-glow {
  background:
    radial-gradient(circle at var(--panel-x) var(--panel-y), rgba(255, 255, 255, 0.14), transparent 18%),
    linear-gradient(120deg, rgba(210, 193, 175, 0.055), transparent 30%, rgba(255, 255, 255, 0.022));
  opacity: 0;
  transition: all var(--ease);
}

.access-panel:hover .panel-glow,
.access-panel.is-glowing .panel-glow {
  opacity: 0.72;
}

.brand-block,
.signup-card,
.gateway-grid {
  position: relative;
  z-index: 1;
}

.brand-block {
  display: block;
  margin-bottom: clamp(16px, 2.15vh, 24px);
}

.eyebrow,
.hero-kicker,
.token-symbol,
.status-message,
.site-footer,
.token-metrics,
.coming-more {
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.eyebrow,
.hero-kicker {
  margin: 0 0 9px;
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

.brand-block h1 {
  max-width: 24ch;
  margin-bottom: 0;
  color: rgba(247, 241, 235, 0.95);
  font-size: clamp(1.7rem, 2.1vw, 2.25rem);
  font-weight: 500;
  line-height: 1.02;
}

.signup-card,
.wallet-card,
.token-card {
  border: 1px solid rgba(210, 193, 175, 0.13);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.042), rgba(255, 255, 255, 0.012)),
    rgba(0, 0, 0, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 10px 28px rgba(0, 0, 0, 0.14);
  transition: all var(--ease);
}

.signup-card:hover,
.wallet-card:hover,
.token-card:hover {
  border-color: rgba(210, 193, 175, 0.34);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.015)),
    rgba(0, 0, 0, 0.21);
}

.signup-card {
  padding: 16px 18px;
}

.gateway-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 11px;
  margin-top: 11px;
}

.wallet-card,
.token-card {
  min-height: auto;
  padding: 16px 18px;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 9px;
}

.section-heading h2 {
  margin-bottom: 0;
  color: rgba(247, 241, 235, 0.9);
  font-size: 0.92rem;
  font-weight: 500;
}

.section-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  opacity: 0.84;
  filter: drop-shadow(0 0 12px rgba(210, 193, 175, 0.12));
}

.section-copy,
.token-description {
  margin-bottom: 12px;
  color: rgba(247, 241, 235, 0.58);
  font-size: 0.74rem;
  line-height: 1.45;
}

.input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

input {
  min-width: 0;
  height: 38px;
  border: 1px solid rgba(210, 193, 175, 0.15);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.24);
  color: var(--text);
  padding: 0 14px;
  transition: all var(--ease);
}

input::placeholder {
  color: rgba(247, 241, 235, 0.38);
}

input:focus {
  border-color: var(--line-strong);
  background: rgba(0, 0, 0, 0.36);
  box-shadow: 0 0 0 3px rgba(210, 193, 175, 0.06);
}

.input-row button,
.secondary-button,
.jupiter-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(247, 241, 235, 0.92);
  padding: 0 14px;
  gap: 8px;
  white-space: nowrap;
}

.input-row button {
  min-width: 112px;
  background: rgba(247, 241, 235, 0.9);
  color: #080808;
}

.input-row button:hover {
  border-color: rgba(247, 241, 235, 0.7);
  background: rgba(247, 241, 235, 0.96);
}

.wallet-card {
  display: flex;
  flex-direction: column;
}

.wallet-card p {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.42;
}

.wallet-card .small-note {
  margin-bottom: 12px;
  color: rgba(247, 241, 235, 0.44);
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.64rem;
}

.secondary-button,
.jupiter-button {
  width: 100%;
}

.wallet-button {
  margin-top: auto;
  min-height: 38px;
  text-align: center;
  white-space: normal;
}

.wallet-button.is-danger {
  border-color: rgba(255, 150, 132, 0.58);
  background: var(--danger-soft);
  color: #ffd8d0;
  box-shadow: 0 0 0 3px rgba(184, 76, 66, 0.06);
}

.wallet-button.is-shaking {
  animation: wallet-shake 0.4s ease;
}

@keyframes wallet-shake {
  0%,
  100% {
    transform: translateX(0);
  }

  26% {
    transform: translateX(-3px);
  }

  52% {
    transform: translateX(3px);
  }

  76% {
    transform: translateX(-1px);
  }
}

.button-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  opacity: 0.82;
  transition: all var(--ease);
}

.token-card {
  display: grid;
  gap: 8px;
  align-content: start;
}

.token-topline,
.token-title-group {
  display: flex;
  align-items: center;
}

.token-topline {
  justify-content: space-between;
  gap: 14px;
}

.token-title-group {
  min-width: 0;
  gap: 11px;
}

.token-icon {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(210, 193, 175, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 24px rgba(210, 193, 175, 0.1);
}

.token-symbol {
  margin-bottom: 0;
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.token-description {
  margin-bottom: 0;
  font-size: 0.7rem;
}

.onchain-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 20px;
  padding: 0 9px;
  border: 1px solid rgba(116, 227, 179, 0.22);
  border-radius: 999px;
  background: rgba(116, 227, 179, 0.075);
  color: #b8f3dd;
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.56rem;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.onchain-badge span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #74e3b3;
  box-shadow: 0 0 0 rgba(116, 227, 179, 0);
  animation: onchain-pulse 2.8s ease-in-out infinite;
}

@keyframes onchain-pulse {
  0%,
  100% {
    opacity: 0.58;
    transform: scale(0.92);
    box-shadow: 0 0 0 rgba(116, 227, 179, 0);
  }

  48% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 10px rgba(116, 227, 179, 0.48);
  }
}

.token-metrics {
  display: grid;
  gap: 5px;
}

.token-metrics p {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 0;
  color: rgba(247, 241, 235, 0.68);
  font-size: 0.65rem;
  line-height: 1.45;
}

.token-metrics strong {
  color: rgba(247, 241, 235, 0.66);
  font-weight: 400;
  text-align: right;
}

.token-metrics strong.is-positive {
  color: rgba(116, 227, 179, 0.88);
}

.token-metrics strong.is-negative {
  color: rgba(240, 183, 164, 0.88);
}

.token-metrics span {
  color: rgba(247, 241, 235, 0.42);
}

.token-market-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: rgba(247, 241, 235, 0.36);
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.6rem;
  line-height: 1.4;
}

.sparkline {
  position: relative;
  height: 58px;
  overflow: hidden;
  border: 1px solid rgba(210, 193, 175, 0.095);
  border-radius: 14px;
  background:
    radial-gradient(circle at 78% 34%, rgba(210, 193, 175, 0.13), transparent 28%),
    rgba(0, 0, 0, 0.17);
}

.chart-label {
  position: absolute;
  right: 10px;
  bottom: 7px;
  color: rgba(247, 241, 235, 0.36);
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.56rem;
  opacity: 0.82;
}

.sparkline svg {
  width: 100%;
  height: 100%;
}

.sparkline path {
  fill: none;
  stroke: rgba(247, 241, 235, 0.48);
  stroke-linecap: round;
  stroke-width: 1.35;
}

.sparkline .sparkline-shadow {
  stroke: rgba(247, 241, 235, 0.1);
  stroke-width: 7;
}

.sparkline.is-positive path {
  stroke: var(--gold);
}

.sparkline.is-positive .sparkline-shadow {
  stroke: rgba(210, 193, 175, 0.16);
}

.sparkline.is-negative path {
  stroke: rgba(145, 64, 67, 0.82);
}

.sparkline.is-negative .sparkline-shadow {
  stroke: rgba(145, 64, 67, 0.18);
}

.jupiter-button {
  min-height: 38px;
  margin-top: 0;
}

.status-message {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--gold);
  font-size: 0.68rem;
  line-height: 1.45;
  opacity: 0;
  transition: all var(--ease);
}

.status-message.is-visible {
  max-height: 76px;
  margin-top: 10px;
  opacity: 1;
}

.status-message.is-error {
  color: #f0b7a4;
}

.right-scroll {
  position: relative;
  height: calc(100vh - 76px);
  overflow-y: auto;
  scroll-behavior: smooth;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(210, 193, 175, 0.24) transparent;
}

.cosmic-field {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50vw;
  pointer-events: none;
  overflow: hidden;
}

.cosmic-field::before,
.cosmic-field::after {
  position: absolute;
  content: "";
}

.cosmic-field::before {
  inset: 10% -8% 8% 6%;
  background:
    radial-gradient(circle at 52% 42%, rgba(210, 193, 175, 0.095), transparent 18%),
    radial-gradient(circle at 76% 64%, rgba(247, 241, 235, 0.05), transparent 20%),
    radial-gradient(circle at 38% 74%, rgba(210, 193, 175, 0.045), transparent 19%),
    linear-gradient(110deg, transparent, rgba(210, 193, 175, 0.028), transparent);
  filter: blur(2px);
  opacity: 0.62;
  animation: haze-drift 12s ease-in-out infinite alternate;
}

.cosmic-field::after {
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(247, 241, 235, 0.34) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(210, 193, 175, 0.28) 0 1px, transparent 1.4px),
    radial-gradient(circle, rgba(247, 241, 235, 0.16) 0 1px, transparent 1.7px);
  background-position:
    12% 18%,
    72% 62%,
    48% 38%;
  background-size:
    220px 180px,
    310px 240px,
    170px 210px;
  opacity: 0.2;
  animation: dust-drift 18s ease-in-out infinite alternate;
}

.cosmic-field span {
  position: absolute;
  left: var(--px, 50%);
  top: var(--py, 50%);
  width: var(--size, 2px);
  height: var(--size, 2px);
  border-radius: 50%;
  background: rgba(247, 241, 235, 0.74);
  box-shadow: 0 0 10px rgba(210, 193, 175, 0.38);
  opacity: 0;
  animation:
    particle-fade var(--dur, 8s) ease-in-out infinite,
    particle-drift var(--drift-dur, 14s) ease-in-out infinite alternate;
  animation-delay: var(--delay, 0s);
  filter: blur(var(--blur, 0px));
  transition: all var(--ease);
  transform: translate3d(var(--mx, 0px), var(--my, 0px), 0);
  will-change: transform, opacity;
}

.cosmic-field span:nth-child(1) {
  top: 22%;
  left: 21%;
  animation-delay: 0.2s;
}

.cosmic-field span:nth-child(2) {
  top: 34%;
  left: 71%;
  animation-delay: 1.2s;
}

.cosmic-field span:nth-child(3) {
  top: 58%;
  left: 54%;
  animation-delay: 2.4s;
}

.cosmic-field span:nth-child(4) {
  top: 18%;
  left: 86%;
  animation-delay: 3.1s;
}

.cosmic-field span:nth-child(5) {
  top: 74%;
  left: 27%;
  animation-delay: 4s;
}

.cosmic-field span:nth-child(6) {
  top: 46%;
  left: 91%;
  animation-delay: 0.9s;
}

.cosmic-field span:nth-child(7) {
  top: 67%;
  left: 76%;
  animation-delay: 2.8s;
}

.cosmic-field span:nth-child(8) {
  top: 12%;
  left: 45%;
  animation-delay: 4.8s;
}

.cosmic-field span:nth-child(9) {
  top: 82%;
  left: 58%;
  animation-delay: 1.7s;
}

.cosmic-field span:nth-child(10) {
  top: 40%;
  left: 36%;
  animation-delay: 5.2s;
}

.cosmic-field span:nth-child(11) {
  top: 28%;
  left: 58%;
  animation-delay: 3.8s;
}

.cosmic-field span:nth-child(12) {
  top: 52%;
  left: 22%;
  animation-delay: 6.1s;
}

.cosmic-field span:nth-child(13) {
  top: 76%;
  left: 88%;
  animation-delay: 2.1s;
}

.cosmic-field span:nth-child(14) {
  top: 9%;
  left: 69%;
  animation-delay: 4.3s;
}

.cosmic-field span:nth-child(15) {
  top: 63%;
  left: 41%;
  animation-delay: 0.6s;
}

.cosmic-field span:nth-child(16) {
  top: 87%;
  left: 47%;
  animation-delay: 5.6s;
}

.cosmic-field span:nth-child(17) {
  top: 31%;
  left: 14%;
  animation-delay: 7s;
}

.cosmic-field span:nth-child(18) {
  top: 70%;
  left: 66%;
  animation-delay: 1.4s;
}

.cosmic-field .particle {
  left: var(--px, 50%);
  top: var(--py, 50%);
  animation-delay: var(--delay, 0s);
}

@keyframes particle-fade {
  0%,
  100% {
    opacity: 0;
  }

  42%,
  62% {
    opacity: var(--opacity, 0.42);
  }
}

@keyframes particle-drift {
  from {
    margin-left: -6px;
    margin-top: 4px;
  }

  to {
    margin-left: 8px;
    margin-top: -7px;
  }
}

@keyframes haze-drift {
  from {
    transform: translate3d(calc(var(--field-x) - 10px), calc(var(--field-y) + 4px), 0);
  }

  to {
    transform: translate3d(calc(var(--field-x) + 14px), calc(var(--field-y) - 8px), 0);
  }
}

@keyframes dust-drift {
  from {
    transform: translate3d(var(--field-x-inverse), var(--field-y-inverse), 0);
  }

  to {
    transform: translate3d(calc(var(--field-x-inverse) - 18px), calc(var(--field-y-inverse) - 10px), 0);
  }
}

.right-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: calc(100vh - 152px);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 8vh 9% 116px 8%;
}

.hero-copy {
  width: min(580px, 100%);
  text-align: left;
}

.hero-copy h2 {
  max-width: 14ch;
  margin-bottom: 16px;
  color: rgba(247, 241, 235, 0.96);
  font-size: clamp(2.35rem, 3.35vw, 3.85rem);
  font-weight: 500;
  line-height: 0.98;
  text-wrap: balance;
  text-shadow: 0 0 42px rgba(210, 193, 175, 0.12);
}

.hero-copy p {
  max-width: 560px;
  margin-bottom: 14px;
  color: rgba(247, 241, 235, 0.76);
  font-size: clamp(0.9rem, 0.95vw, 1rem);
  line-height: 1.55;
}

.hero-copy span {
  display: block;
  max-width: 560px;
  color: rgba(247, 241, 235, 0.58);
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: clamp(0.72rem, 0.76vw, 0.82rem);
  line-height: 1.65;
}

.coming-more {
  width: min(520px, 100%);
  margin-top: clamp(50px, 7vh, 84px);
  padding-top: 20px;
  border-top: 1px solid rgba(210, 193, 175, 0.18);
  color: rgba(247, 241, 235, 0.5);
  font-size: 0.74rem;
}

.coming-more p {
  margin-bottom: 0;
}

.grid-intro {
  width: min(680px, 100%);
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(210, 193, 175, 0.16);
}

.content-label {
  margin-bottom: 11px;
  color: var(--gold);
  font-family: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
}

.grid-intro p:not(.content-label) {
  margin-bottom: 12px;
  color: rgba(247, 241, 235, 0.62);
  font-size: 0.84rem;
  line-height: 1.6;
}

.grid-intro p:last-child {
  margin-bottom: 0;
}

.mobile-info-toggle {
  display: none;
}

.module-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.module-list li {
  display: grid;
  gap: 4px;
}

.module-list strong {
  color: rgba(247, 241, 235, 0.82);
  font-size: 0.9rem;
  font-weight: 500;
}

.module-list span {
  color: rgba(247, 241, 235, 0.52);
  font-size: 0.84rem;
  line-height: 1.5;
}

.site-footer {
  position: fixed;
  right: clamp(18px, 4vw, 56px);
  bottom: 18px;
  left: clamp(18px, 4vw, 56px);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(247, 241, 235, 0.46);
  font-size: 0.66rem;
  pointer-events: none;
}

.site-footer p {
  max-width: min(980px, calc(100vw - 190px));
  margin-bottom: 0;
  white-space: nowrap;
}

.site-footer nav {
  display: flex;
  align-items: center;
  gap: 14px;
  pointer-events: auto;
}

.site-footer a {
  display: inline-flex;
  width: 15px;
  height: 15px;
  opacity: 0.42;
  transition: all var(--ease);
}

.site-footer a:hover {
  opacity: 1;
  filter: drop-shadow(0 0 8px rgba(210, 193, 175, 0.55));
}

.site-footer img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1) brightness(1.8) sepia(0.08);
  transition: all var(--ease);
}

.site-footer a:hover img {
  filter: grayscale(1) brightness(1.9) sepia(1) saturate(0.9) hue-rotate(345deg);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .page-shell {
    grid-template-columns: 50% 50%;
  }

  .access-panel {
    margin: 13vh 6% 13vh 8%;
    padding: 26px;
  }
}

@media (max-width: 980px) {
  body {
    overflow-x: hidden;
    overflow-y: auto;
    background:
      radial-gradient(ellipse at center, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.82) 72%, rgba(0, 0, 0, 0.94)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.88)),
      url("./assets/envocs-grid-comingsoon-bg-mobile-v1.webp") center / cover no-repeat;
  }

  .page-shell {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: 100svh;
    padding: 28px 16px 24px;
  }

  .access-panel {
    width: min(100%, 620px);
    justify-self: center;
    margin: 0;
    overflow: visible;
    padding: 22px;
    border-radius: 28px;
  }

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

  .wallet-card,
  .token-card {
    min-height: auto;
  }

  .right-scroll {
    order: -1;
    height: auto;
    overflow: visible;
  }

  .cosmic-field {
    width: 100vw;
    opacity: 0.66;
  }

  .right-content {
    min-height: auto;
    align-items: center;
    padding: 10px 0 0;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy h2,
  .hero-copy p {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-copy h2 {
    max-width: 13ch;
    font-size: clamp(2.4rem, 10vw, 4rem);
  }

  .mobile-info-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    border: 1px solid rgba(210, 193, 175, 0.22);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.46);
    color: rgba(247, 241, 235, 0.86);
    padding: 0 18px;
    font-size: 0.82rem;
    transition: all var(--ease);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .mobile-read-more {
    margin-top: 22px;
  }

  body:not(.mobile-info-collapsed) .mobile-read-more {
    display: none;
  }

  .mobile-collapse {
    position: fixed;
    right: 18px;
    bottom: calc(104px + env(safe-area-inset-bottom));
    z-index: 6;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
  }

  body.mobile-info-expanded .mobile-collapse.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  body.mobile-info-collapsed .mobile-collapse {
    display: none;
  }

  body.mobile-info-expanded .right-content {
    padding-bottom: 156px;
  }

  .site-footer,
  body.mobile-info-expanded .site-footer {
    position: static;
    margin: 16px 16px max(18px, env(safe-area-inset-bottom));
    padding: 12px 14px;
    border: 1px solid rgba(210, 193, 175, 0.13);
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.48);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    pointer-events: auto;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
  }

  .site-footer nav,
  body.mobile-info-expanded .site-footer nav {
    pointer-events: auto;
    align-items: center;
    align-self: center;
  }

  .coming-more {
    text-align: center;
  }

  .grid-intro {
    text-align: left;
  }

  .site-footer p {
    max-width: calc(100vw - 120px);
    white-space: normal;
    line-height: 1.45;
  }
}

@media (max-width: 540px) {
  .access-panel {
    padding: 28px 18px 18px;
  }

  .panel-corners {
    display: none;
  }

  .brand-block {
    display: block;
    margin-bottom: 20px;
  }

  .brand-block h1 {
    font-size: 2.22rem;
  }

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

  .input-row button,
  .secondary-button,
  .jupiter-button {
    width: 100%;
  }

  .token-metrics p {
    flex-direction: column;
    gap: 3px;
  }

  .site-footer {
    align-items: center;
    gap: 12px;
  }

  .site-footer p {
    max-width: 100%;
  }
}

@supports (-webkit-backdrop-filter: blur(1px)) {
  .access-panel {
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.016) 45%, rgba(0, 0, 0, 0.22)),
      rgba(8, 8, 8, 0.52);
    backdrop-filter: blur(12px) saturate(112%);
    -webkit-backdrop-filter: blur(12px) saturate(112%);
  }
}

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