:root {
  color-scheme: dark;
  --bg: #06100d;
  --surface: rgba(12, 25, 22, 0.88);
  --surface-soft: rgba(18, 38, 34, 0.86);
  --surface-strong: #effff7;
  --text: #edf7f1;
  --muted: #91aaa0;
  --line: rgba(125, 233, 196, 0.16);
  --green: #54e69c;
  --green-strong: #74f7b1;
  --cyan: #49dced;
  --violet: #9b7cff;
  --amber: #f4c465;
  --red: #ff6f62;
  --glow: rgba(73, 220, 237, 0.34);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --radius: 8px;
}

[data-theme="dark"] {
  color-scheme: dark;
  --bg: #030807;
  --surface: rgba(11, 19, 18, 0.92);
  --surface-soft: rgba(19, 29, 28, 0.9);
  --surface-strong: #f3f7ef;
  --text: #f2f7ef;
  --muted: #9aaea7;
  --line: rgba(148, 239, 208, 0.14);
  --green: #4bd188;
  --green-strong: #64e39d;
  --cyan: #4ad7e9;
  --violet: #a492ff;
  --amber: #f2b849;
  --red: #ff7565;
  --glow: rgba(74, 215, 233, 0.24);
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 0;
  color: var(--text);
  background:
    linear-gradient(115deg, rgba(84, 230, 156, 0.12), transparent 28%),
    linear-gradient(245deg, rgba(73, 220, 237, 0.12), transparent 30%),
    linear-gradient(180deg, #050d0b 0%, #060c0b 42%, #030605 100%),
    var(--bg);
  font-family: Inter, "Noto Sans SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(rgba(125, 233, 196, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 233, 196, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.86), transparent 74%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(115deg, transparent 0 28%, rgba(244, 196, 101, 0.08) 33%, transparent 39%),
    linear-gradient(290deg, transparent 0 63%, rgba(73, 220, 237, 0.1) 70%, transparent 76%),
    repeating-linear-gradient(90deg, transparent 0 92px, rgba(125, 233, 196, 0.035) 93px, transparent 94px);
  opacity: 0.72;
}

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

button,
input,
select {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 12px 32px;
  background:
    linear-gradient(90deg, rgba(7, 17, 14, 0.9), rgba(11, 28, 25, 0.78), rgba(7, 17, 14, 0.9)),
    rgba(7, 17, 14, 0.84);
  border-bottom: 1px solid rgba(125, 233, 196, 0.14);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(22px);
}

.brand,
.header-actions,
.nav-links,
.hero-actions,
.actions-row,
.quick-amounts {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  width: 38px;
  height: 38px;
  padding: 7px;
  overflow: hidden;
  background: linear-gradient(135deg, #07120e, #0b6345 40%, #166c91 68%, #f4c465);
  border-radius: var(--radius);
  box-shadow:
    0 0 0 1px rgba(125, 233, 196, 0.18),
    0 16px 36px rgba(73, 220, 237, 0.2);
}

.brand-mark::after {
  position: absolute;
  inset: -45% auto -45% -70%;
  width: 42%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.82), transparent);
  pointer-events: none;
  transform: rotate(18deg);
  animation: iconShine 4.8s ease-in-out infinite;
}

.brand-mark span {
  position: relative;
  z-index: 1;
  width: 6px;
  background: var(--green);
  border-radius: 2px 2px 0 0;
}

.brand-mark span:nth-child(1) {
  height: 14px;
}

.brand-mark span:nth-child(2) {
  height: 22px;
  background: var(--amber);
}

.brand-mark span:nth-child(3) {
  height: 10px;
  background: #245fc7;
}

.brand-avatar {
  padding: 0;
  background: #020202;
}

.brand-avatar img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
  line-height: 1.1;
}

.brand strong,
.hero h1,
.section-title h2,
.console-head h2,
.prediction-head strong {
  color: transparent;
  background-image:
    linear-gradient(100deg, var(--text), var(--green-strong) 28%, var(--cyan) 45%, var(--violet) 61%, var(--amber) 78%, var(--text)),
    linear-gradient(105deg, transparent 0 39%, rgba(255, 255, 255, 0.95) 48%, transparent 58%);
  background-size: 240% 100%, 180% 100%;
  background-position: 0 0, -130% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 24px color-mix(in srgb, var(--glow) 70%, transparent);
  animation: textSweep 4.8s ease-in-out infinite;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  justify-content: center;
  gap: 4px;
  flex: 1;
}

.nav-links a {
  min-height: 38px;
  padding: 10px 14px;
  color: rgba(237, 247, 241, 0.68);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(125, 233, 196, 0.08);
  box-shadow: inset 0 0 0 1px rgba(125, 233, 196, 0.12);
}

.header-actions,
.hero-actions,
.actions-row,
.quick-amounts {
  gap: 10px;
  flex-wrap: wrap;
}

.icon-button,
.wallet-button,
.twitter-button,
.primary-button,
.secondary-button,
.quick-amounts button,
.pool-option {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.icon-button {
  width: 42px;
  color: var(--text);
  background: rgba(12, 25, 22, 0.72);
}

.mobile-menu-button {
  display: none;
}

.wallet-button,
.twitter-button,
.secondary-button {
  padding: 0 16px;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(125, 233, 196, 0.035)),
    var(--surface);
  font-weight: 800;
}

.primary-button {
  min-height: 48px;
  padding: 0 18px;
  color: #ffffff;
  background: linear-gradient(110deg, #0ecb83, var(--cyan) 42%, #4266ff 78%, #0ecb83);
  background-size: 180% 100%;
  border-color: color-mix(in srgb, var(--cyan) 58%, var(--green-strong));
  box-shadow:
    0 14px 34px rgba(14, 203, 131, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  font-weight: 900;
  animation: buttonGlow 7s ease-in-out infinite;
}

.primary-button::after,
.secondary-button::after,
.wallet-button::after,
.twitter-button::after {
  position: absolute;
  inset: -120% auto -120% -55%;
  width: 42%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62), transparent);
  pointer-events: none;
  transform: rotate(18deg);
  transition: transform 380ms ease;
}

.primary-button > *,
.secondary-button > *,
.wallet-button > *,
.twitter-button > * {
  position: relative;
  z-index: 1;
}

.primary-button:hover::after,
.secondary-button:hover::after,
.wallet-button:hover::after,
.twitter-button:hover::after {
  transform: translateX(310%) rotate(18deg);
}

.primary-button:hover,
.secondary-button:hover,
.wallet-button:hover,
.twitter-button:hover,
.quick-amounts button:hover,
.pool-option:hover,
.icon-button:hover {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--green) 42%, var(--line));
  box-shadow: 0 12px 28px color-mix(in srgb, var(--glow) 42%, transparent);
}

.mobile-menu {
  position: fixed;
  top: 74px;
  left: 20px;
  z-index: 30;
  display: grid;
  gap: 6px;
  width: 158px;
  padding: 8px;
  background: color-mix(in srgb, var(--surface) 96%, transparent);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  color: var(--text);
  background: var(--surface-soft);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 900;
}

.ticker-tape {
  overflow: hidden;
  border-bottom: 1px solid rgba(125, 233, 196, 0.1);
  background:
    linear-gradient(90deg, rgba(7, 18, 14, 0.92), rgba(11, 42, 36, 0.92) 35%, rgba(20, 29, 73, 0.9) 72%, rgba(61, 39, 12, 0.88)),
    #07110e;
  color: var(--bg);
  box-shadow:
    inset 0 -1px rgba(255, 255, 255, 0.08),
    0 10px 40px rgba(0, 0, 0, 0.18);
}

.ticker-tape div {
  display: flex;
  gap: 34px;
  width: max-content;
  padding: 9px 0;
  animation: ticker 28s linear infinite;
}

.ticker-tape span {
  min-width: max-content;
  color: transparent;
  background-image:
    linear-gradient(90deg, #f7fff4, #7ff2c0, #65d9ff, #f3cc65, #f7fff4),
    linear-gradient(100deg, transparent 0 42%, rgba(255, 255, 255, 0.9) 50%, transparent 58%);
  background-size: 220% 100%, 170% 100%;
  background-position: 0 0, -110% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 13px;
  font-weight: 900;
  animation: textSweep 4.8s ease-in-out infinite;
}

@keyframes ticker {
  from {
    transform: translateX(100vw);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes gradientDrift {
  0%,
  100% {
    background-position: 0% 0, -130% 0;
  }
  50% {
    background-position: 100% 0, -130% 0;
  }
}

@keyframes textSweep {
  0%,
  35% {
    background-position: 0% 0, -130% 0;
  }
  66% {
    background-position: 100% 0, 145% 0;
  }
  100% {
    background-position: 0% 0, 145% 0;
  }
}

@keyframes iconShine {
  0%,
  45% {
    transform: translateX(0) rotate(18deg);
  }
  72% {
    transform: translateX(350%) rotate(18deg);
  }
  100% {
    transform: translateX(350%) rotate(18deg);
  }
}

@keyframes buttonGlow {
  0%,
  100% {
    background-position: 0% 0;
  }
  50% {
    background-position: 100% 0;
  }
}

@keyframes terminalSweep {
  0%,
  42% {
    transform: translateX(0) rotate(18deg);
  }
  72%,
  100% {
    transform: translateX(420%) rotate(18deg);
  }
}

@keyframes terminalBar {
  0%,
  100% {
    transform: scaleY(0.9);
    filter: saturate(0.95);
  }
  48% {
    transform: scaleY(1.04);
    filter: saturate(1.22);
  }
}

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

.hero {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: min(680px, calc(100vh - 128px));
  margin: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.72fr);
  gap: 42px;
  align-items: center;
  padding: 70px max(20px, calc((100vw - 1240px) / 2)) 54px;
  background:
    linear-gradient(90deg, rgba(3, 8, 7, 0.95) 0%, rgba(3, 8, 7, 0.78) 43%, rgba(3, 8, 7, 0.3) 100%),
    linear-gradient(180deg, rgba(3, 8, 7, 0.1) 0%, rgba(3, 8, 7, 0.14) 62%, var(--bg) 100%),
    url("assets/alpha-radar-hero.png") center / cover no-repeat;
  border-bottom: 1px solid rgba(125, 233, 196, 0.12);
}

.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.hero::before {
  z-index: 0;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 7px),
    linear-gradient(118deg, transparent 0 31%, rgba(73, 220, 237, 0.18) 42%, transparent 54%),
    linear-gradient(287deg, transparent 0 67%, rgba(244, 196, 101, 0.13) 76%, transparent 86%);
  mix-blend-mode: screen;
  opacity: 0.54;
}

.hero::after {
  z-index: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(90deg, rgba(125, 233, 196, 0.08), transparent 22% 78%, rgba(73, 220, 237, 0.08)),
    linear-gradient(180deg, transparent, rgba(3, 8, 7, 0.72));
  mask-image: linear-gradient(180deg, transparent 0%, #000 22%, #000 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: auto;
  padding: 18px 0 28px;
}

.eyebrow {
  margin: 0 0 8px;
  color: transparent;
  background: linear-gradient(90deg, var(--green-strong), var(--cyan), var(--amber));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  line-height: 1.12;
}

h1 {
  max-width: 760px;
  font-size: 68px;
  letter-spacing: 0;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 17px;
}

.lead {
  max-width: 680px;
  margin: 20px 0 24px;
  color: rgba(237, 247, 241, 0.72);
  font-size: 17px;
  line-height: 1.8;
}

.growth-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -8px 0 22px;
}

.growth-badges span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 0 11px;
  color: rgba(237, 247, 241, 0.88);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(84, 230, 156, 0.05)),
    rgba(12, 25, 22, 0.78);
  border: 1px solid rgba(125, 233, 196, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
  font-size: 13px;
  font-weight: 900;
}

.growth-badges i {
  width: 16px;
  height: 16px;
}

.hero-terminal {
  position: relative;
  z-index: 2;
  align-self: center;
  overflow: hidden;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), transparent 18%),
    linear-gradient(180deg, rgba(11, 23, 21, 0.78), rgba(4, 10, 9, 0.9)),
    rgba(6, 14, 12, 0.84);
  border: 1px solid rgba(125, 233, 196, 0.2);
  border-radius: var(--radius);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.52),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 0 72px rgba(73, 220, 237, 0.12);
  backdrop-filter: blur(22px);
}

.hero-terminal::before,
.hero-terminal::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.hero-terminal::before {
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(125, 233, 196, 0.26), transparent) 0 0 / 100% 1px no-repeat,
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 34px);
  opacity: 0.76;
}

.hero-terminal::after {
  inset: -45% auto -45% -55%;
  width: 32%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  transform: rotate(18deg);
  animation: terminalSweep 7.2s ease-in-out infinite;
}

.terminal-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(125, 233, 196, 0.13);
}

.terminal-head strong {
  color: rgba(237, 247, 241, 0.94);
  font-size: 18px;
}

.terminal-chart {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  align-items: end;
  gap: 8px;
  height: 178px;
  margin-bottom: 12px;
  padding: 16px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(125, 233, 196, 0.08), rgba(73, 220, 237, 0.035)),
    rgba(2, 8, 7, 0.58);
  border: 1px solid rgba(125, 233, 196, 0.14);
  border-radius: var(--radius);
  box-shadow: inset 0 0 36px rgba(73, 220, 237, 0.06);
}

.terminal-chart::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(125, 233, 196, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 233, 196, 0.06) 1px, transparent 1px);
  background-size: 100% 25%, 12.5% 100%;
  opacity: 0.6;
}

.terminal-chart span {
  position: relative;
  z-index: 1;
  display: block;
  height: var(--h);
  min-height: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(116, 247, 177, 0.84) 22%, rgba(73, 220, 237, 0.64) 68%, rgba(36, 95, 199, 0.5)),
    var(--green);
  border-radius: 5px 5px 2px 2px;
  box-shadow:
    0 0 24px rgba(73, 220, 237, 0.18),
    inset 0 1px rgba(255, 255, 255, 0.42);
  transform-origin: bottom;
  animation: terminalBar 3.8s ease-in-out infinite;
}

.terminal-chart span:nth-child(2n) {
  animation-delay: 420ms;
}

.terminal-chart span:nth-child(3n) {
  animation-delay: 820ms;
}

.hero-visual,
.console-card,
.pool-card,
.table-panel {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(125, 233, 196, 0.025)),
    var(--surface);
  border: 1px solid rgba(125, 233, 196, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-visual,
.console-card,
.pool-card,
.table-panel,
.launch-form,
.token-directory,
.prediction-form,
.prediction-panel,
.airdrop-form,
.airdrop-log {
  position: relative;
}

.console-card::after,
.pool-card::after,
.table-panel::after,
.launch-form::after,
.token-directory::after,
.prediction-form::after,
.prediction-panel::after,
.airdrop-form::after,
.airdrop-log::after {
  position: absolute;
  inset: 1px;
  pointer-events: none;
  content: "";
  border-radius: calc(var(--radius) - 1px);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.06),
    inset 0 -1px rgba(0, 0, 0, 0.26);
}

.console-card::before,
.pool-card::before,
.table-panel::before,
.launch-form::before,
.token-directory::before,
.prediction-form::before,
.prediction-panel::before,
.airdrop-form::before,
.airdrop-log::before {
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(73, 220, 237, 0.78), rgba(116, 247, 177, 0.92), rgba(244, 196, 101, 0.62), transparent);
  opacity: 0.82;
  pointer-events: none;
}

.console-card,
.pool-card,
.table-panel,
.launch-form,
.token-directory,
.prediction-form,
.prediction-panel,
.airdrop-form,
.airdrop-log {
  overflow: hidden;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-color: rgba(73, 220, 237, 0.22);
  box-shadow:
    0 26px 78px rgba(0, 0, 0, 0.42),
    0 0 80px rgba(73, 220, 237, 0.14);
}

.hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.hero-visual::after {
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  content: "";
  background:
    linear-gradient(180deg, transparent, rgba(10, 18, 12, 0.72)),
    linear-gradient(110deg, rgba(18, 150, 168, 0.16), transparent 52%, rgba(216, 145, 33, 0.18));
}

.hero-visual::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 10, 8, 0.34), transparent 28%),
    radial-gradient(circle at 68% 28%, rgba(73, 220, 237, 0.22), transparent 18rem);
}

.hero-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.hero-metrics div {
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(73, 220, 237, 0.035)),
    rgba(6, 16, 13, 0.74);
  border: 1px solid rgba(125, 233, 196, 0.16);
  border-radius: var(--radius);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.hero-metrics span,
.estimate-panel span,
.field span,
.card-stats span,
.table-row span,
.label {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.hero-metrics strong {
  display: block;
  margin-top: 5px;
  color: var(--text);
  font-size: 24px;
}

.terminal-feed {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.terminal-feed div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 42px;
  padding: 0 12px;
  background: rgba(2, 8, 7, 0.48);
  border: 1px solid rgba(125, 233, 196, 0.1);
  border-radius: var(--radius);
}

.terminal-feed span {
  color: rgba(237, 247, 241, 0.6);
  font-size: 12px;
  font-weight: 900;
}

.terminal-feed strong {
  color: var(--green-strong);
  font-size: 13px;
}

.console-card {
  padding: 24px;
  border-color: rgba(125, 233, 196, 0.18);
  box-shadow:
    0 28px 78px rgba(0, 0, 0, 0.4),
    0 0 54px rgba(73, 220, 237, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}

.console-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.console-head h2 {
  margin-top: 5px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  color: var(--green-strong);
  background: rgba(84, 230, 156, 0.1);
  border: 1px solid rgba(84, 230, 156, 0.22);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.status-pill.amber {
  color: var(--amber);
  background: rgba(244, 196, 101, 0.1);
  border-color: rgba(244, 196, 101, 0.24);
}

.status-pill.danger {
  color: var(--red);
  background: rgba(255, 111, 98, 0.1);
  border-color: rgba(255, 111, 98, 0.24);
}

.pool-selector,
.console-grid,
.estimate-panel,
.pool-grid {
  display: grid;
  gap: 12px;
}

.pool-selector {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 16px;
}

.pool-option {
  justify-content: start;
  min-height: 64px;
  padding: 11px;
  color: var(--text);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(84, 230, 156, 0.025)),
    var(--surface-soft);
  border-color: rgba(125, 233, 196, 0.12);
  text-align: left;
}

.pool-option.is-active {
  color: #ffffff;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(112deg, #06100d, #08704f 39%, #174f9d 74%, #06100d);
  background-size: 160% 100%;
  border-color: color-mix(in srgb, var(--cyan) 56%, var(--surface-strong));
  box-shadow:
    0 16px 36px rgba(15, 104, 64, 0.26),
    0 0 38px rgba(73, 220, 237, 0.1);
  animation: buttonGlow 7s ease-in-out infinite;
}

.pool-option strong,
.pool-option span {
  display: block;
}

.pool-option span {
  margin-bottom: 4px;
  color: currentColor;
  opacity: 0.72;
  font-size: 12px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field input,
.field select,
.field textarea,
.search-field input {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(125, 233, 196, 0.025)),
    var(--surface-soft);
  border: 1px solid rgba(125, 233, 196, 0.14);
  border-radius: var(--radius);
  outline: none;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
}

.field textarea {
  min-height: 96px;
  padding-block: 12px;
  resize: vertical;
  line-height: 1.5;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.search-field input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--green) 16%, transparent);
}

.quick-amounts {
  margin: 14px 0;
}

.quick-amounts button {
  min-height: 38px;
  padding: 0 13px;
  color: var(--muted);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(125, 233, 196, 0.03)),
    var(--surface);
  font-weight: 900;
}

.quick-amounts button.is-active {
  color: #ffffff;
  background: linear-gradient(110deg, #052019, #0ecb83, #245fc7);
  border-color: color-mix(in srgb, var(--cyan) 48%, var(--surface-strong));
}

.estimate-panel {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  margin-bottom: 16px;
  background: linear-gradient(90deg, rgba(73, 220, 237, 0.22), rgba(125, 233, 196, 0.12), rgba(244, 196, 101, 0.2));
  border: 1px solid rgba(125, 233, 196, 0.16);
  border-radius: var(--radius);
}

.estimate-panel div {
  min-height: 76px;
  padding: 13px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(125, 233, 196, 0.025)),
    var(--surface);
}

.estimate-panel strong {
  display: block;
  margin-top: 7px;
  font-size: 20px;
}

.actions-row .primary-button,
.actions-row .secondary-button {
  flex: 1;
}

.estimate-note {
  margin: -6px 0 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}

.observation-panel {
  margin-top: 16px;
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(73, 220, 237, 0.035)),
    var(--surface);
  border: 1px solid rgba(73, 220, 237, 0.16);
  border-radius: var(--radius);
}

.observation-head,
.observation-row {
  display: grid;
  gap: 10px;
  align-items: center;
}

.observation-head {
  grid-template-columns: minmax(0, 1fr) auto;
  margin-bottom: 10px;
}

.observation-head strong {
  display: block;
  margin-top: 3px;
  font-size: 17px;
}

.mini-button {
  min-height: 34px;
  padding: 0 12px;
  color: var(--muted);
  background: rgba(6, 16, 13, 0.56);
  border: 1px solid rgba(125, 233, 196, 0.14);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 900;
}

.observation-list {
  display: grid;
  gap: 8px;
}

.observation-empty,
.observation-row {
  border: 1px solid rgba(125, 233, 196, 0.12);
  border-radius: var(--radius);
}

.observation-empty {
  display: grid;
  gap: 5px;
  min-height: 76px;
  padding: 13px;
  color: var(--muted);
  background: rgba(18, 38, 34, 0.52);
}

.observation-empty strong {
  color: var(--text);
}

.observation-row {
  grid-template-columns: minmax(190px, 1.5fr) repeat(3, minmax(110px, 0.8fr)) auto;
  padding: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(125, 233, 196, 0.025)),
    var(--surface);
}

.observation-row > small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 12px;
}

.observation-row span,
.observation-row small {
  color: var(--muted);
}

.observation-row strong {
  display: block;
  overflow-wrap: anywhere;
}

.observation-row div small {
  display: block;
  margin-bottom: 4px;
  font-size: 11px;
  font-weight: 900;
}

.status-pill.safe {
  color: var(--green-strong);
  background: color-mix(in srgb, var(--green) 13%, var(--surface));
  border-color: color-mix(in srgb, var(--green) 28%, var(--line));
}

.section-title {
  position: relative;
  margin-bottom: 18px;
  padding-left: 16px;
}

.section-title::before {
  position: absolute;
  top: 3px;
  bottom: 4px;
  left: 0;
  width: 3px;
  content: "";
  background: linear-gradient(180deg, var(--green-strong), var(--cyan), var(--amber));
  border-radius: 999px;
  box-shadow: 0 0 22px rgba(73, 220, 237, 0.28);
}

.section-title::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 16px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(125, 233, 196, 0.32), transparent);
}

.section-copy {
  max-width: 560px;
  margin: 8px 0 0;
  color: rgba(237, 247, 241, 0.66);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}

.split-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.search-field {
  position: relative;
  display: block;
  width: min(100%, 340px);
}

.search-field i {
  position: absolute;
  top: 50%;
  left: 12px;
  width: 17px;
  height: 17px;
  color: var(--muted);
  transform: translateY(-50%);
}

.search-field input {
  padding-left: 38px;
  background: var(--surface);
}

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

.pool-card {
  padding: 18px;
  border-color: rgba(125, 233, 196, 0.15);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.pool-card:hover {
  transform: translateY(-2px);
  border-color: rgba(73, 220, 237, 0.34);
  box-shadow:
    0 26px 64px rgba(0, 0, 0, 0.36),
    0 0 44px rgba(73, 220, 237, 0.12);
}

.pool-card header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.pool-card p {
  margin: 8px 0 0;
  color: rgba(237, 247, 241, 0.62);
  font-size: 13px;
  line-height: 1.6;
}

.card-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 14px;
  background: linear-gradient(90deg, rgba(84, 230, 156, 0.18), rgba(125, 233, 196, 0.1), rgba(73, 220, 237, 0.18));
  border: 1px solid rgba(125, 233, 196, 0.12);
  border-radius: var(--radius);
}

.card-stats div {
  min-height: 60px;
  padding: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(125, 233, 196, 0.025)),
    var(--surface);
}

.card-stats strong {
  display: block;
  margin-top: 5px;
}

.launchpad-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  gap: 16px;
  align-items: start;
}

.predictor-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: 16px;
  align-items: start;
}

.airdrop-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  gap: 16px;
  align-items: start;
}

.launch-form,
.token-directory,
.prediction-form,
.prediction-panel,
.airdrop-form,
.airdrop-log {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(125, 233, 196, 0.025)),
    var(--surface);
  border: 1px solid rgba(125, 233, 196, 0.15);
  border-radius: var(--radius);
  box-shadow:
    0 28px 78px rgba(0, 0, 0, 0.38),
    0 0 50px rgba(73, 220, 237, 0.07);
  backdrop-filter: blur(18px);
}

.launch-form,
.prediction-form,
.airdrop-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
}

.wide {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(237, 247, 241, 0.64);
  font-size: 13px;
  line-height: 1.6;
}

.prediction-panel {
  overflow: hidden;
}

.prediction-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px 14px;
  background:
    linear-gradient(110deg, rgba(84, 230, 156, 0.12), rgba(73, 220, 237, 0.075) 52%, rgba(244, 196, 101, 0.08)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent),
    var(--surface);
  border-bottom: 1px solid rgba(125, 233, 196, 0.14);
}

.prediction-head strong {
  display: block;
  margin-top: 4px;
  font-size: 18px;
}

.signal-meter {
  height: 8px;
  margin: 14px 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(125, 233, 196, 0.12);
  border-radius: 999px;
  box-shadow: inset 0 1px 3px rgba(20, 29, 22, 0.08);
}

.signal-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--amber), var(--green), var(--cyan));
  background-size: 170% 100%;
  border-radius: inherit;
  box-shadow: 0 0 18px color-mix(in srgb, var(--green) 55%, transparent);
  transition: width 240ms ease;
  animation: buttonGlow 6s ease-in-out infinite;
}

.prediction-score {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 0 18px 14px;
}

.prediction-score strong {
  font-size: 40px;
  line-height: 1;
}

.prediction-score span {
  color: rgba(237, 247, 241, 0.62);
  font-size: 13px;
  font-weight: 900;
}

.prediction-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 0 18px 14px;
  background: linear-gradient(90deg, rgba(255, 111, 98, 0.16), rgba(125, 233, 196, 0.1), rgba(73, 220, 237, 0.18));
  border: 1px solid rgba(125, 233, 196, 0.12);
  border-radius: var(--radius);
}

.prediction-metrics div {
  min-height: 64px;
  padding: 10px 11px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(125, 233, 196, 0.025)),
    var(--surface);
}

.prediction-metrics span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.prediction-metrics strong {
  display: block;
  margin-top: 6px;
  font-size: 17px;
  overflow-wrap: anywhere;
}

.kline-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  padding: 0 18px 14px;
}

.kline-chip {
  min-height: 48px;
  padding: 8px 9px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(84, 230, 156, 0.04)),
    var(--surface-soft);
  border: 1px solid rgba(73, 220, 237, 0.14);
  border-radius: var(--radius);
}

.kline-chip span,
.kline-chip strong {
  display: block;
}

.kline-chip span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.kline-chip strong {
  margin-top: 6px;
  font-size: 15px;
}

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

.prediction-columns > div,
.dealer-panel > div,
.trust-panel > div,
.narrative-panel > div {
  padding: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(84, 230, 156, 0.02)),
    var(--surface-soft);
  border: 1px solid rgba(125, 233, 196, 0.12);
  border-radius: var(--radius);
}

.prediction-columns ul,
.dealer-panel ul,
.trust-panel ul,
.narrative-panel ul {
  display: grid;
  gap: 7px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.prediction-columns li,
.dealer-panel li,
.trust-panel li,
.narrative-panel li {
  padding: 2px 0 2px 9px;
  color: rgba(237, 247, 241, 0.62);
  border-left: 3px solid rgba(73, 220, 237, 0.2);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
}

.dealer-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0 18px 12px;
}

.dealer-overview {
  grid-column: 1 / -1;
}

.dealer-panel strong {
  display: block;
  margin-top: 8px;
  font-size: 23px;
  overflow-wrap: anywhere;
}

.dealer-panel p {
  margin: 8px 0 0;
  color: rgba(237, 247, 241, 0.62);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.6;
}

.trust-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0 18px 12px;
}

.trust-overview {
  grid-column: 1 / -1;
}

.trust-panel strong {
  display: block;
  margin-top: 8px;
  font-size: 22px;
  overflow-wrap: anywhere;
}

.trust-panel p {
  margin: 8px 0 0;
  color: rgba(237, 247, 241, 0.62);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.6;
}

.narrative-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 10px;
  padding: 0 18px 12px;
}

.narrative-panel p {
  margin: 8px 0 0;
  color: rgba(237, 247, 241, 0.62);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.6;
}

.narrative-panel strong {
  display: block;
  margin-top: 8px;
  font-size: 24px;
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0 18px 14px;
}

.source-links a,
.source-links span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  color: rgba(237, 247, 241, 0.62);
  background: rgba(18, 38, 34, 0.62);
  border: 1px solid rgba(125, 233, 196, 0.12);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 900;
}

.source-links a {
  color: var(--green-strong);
}

.token-directory {
  overflow: hidden;
}

.airdrop-log {
  overflow: hidden;
}

.directory-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 56px;
  padding: 0 16px;
  background:
    linear-gradient(90deg, rgba(84, 230, 156, 0.08), rgba(73, 220, 237, 0.05)),
    var(--surface-soft);
  border-bottom: 1px solid rgba(125, 233, 196, 0.14);
}

.token-list {
  display: grid;
}

.token-row {
  display: grid;
  grid-template-columns: minmax(130px, 1fr) 110px minmax(120px, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 76px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(125, 233, 196, 0.11);
}

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

.token-row strong,
.token-row span,
.token-row small {
  display: block;
}

.token-row strong {
  font-size: 15px;
}

.token-row span,
.token-row small {
  color: rgba(237, 247, 241, 0.58);
  font-size: 12px;
  font-weight: 800;
}

.token-row code {
  padding: 5px 7px;
  color: var(--green-strong);
  background: rgba(84, 230, 156, 0.08);
  border: 1px solid rgba(84, 230, 156, 0.18);
  border-radius: 999px;
  font-family: Inter, "Noto Sans SC", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 900;
}

.airdrop-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: rgba(125, 233, 196, 0.12);
  border: 1px solid rgba(125, 233, 196, 0.12);
  border-radius: var(--radius);
}

.airdrop-summary div {
  min-height: 70px;
  padding: 12px;
  background: var(--surface);
}

.airdrop-summary span,
.airdrop-row span,
.airdrop-row small {
  display: block;
  color: rgba(237, 247, 241, 0.58);
  font-size: 12px;
  font-weight: 800;
}

.airdrop-summary strong {
  display: block;
  margin-top: 7px;
  font-size: 20px;
}

.airdrop-list {
  display: grid;
}

.airdrop-row {
  display: grid;
  grid-template-columns: minmax(130px, 1fr) 90px minmax(130px, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 76px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(125, 233, 196, 0.11);
}

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

.airdrop-row strong,
.airdrop-row span,
.airdrop-row small {
  display: block;
}

.airdrop-row strong {
  font-size: 15px;
}

.table-panel {
  overflow: hidden;
}

.table-row {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(170px, 1fr) 130px;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(125, 233, 196, 0.11);
}

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

.notice {
  margin-top: 14px;
  color: rgba(237, 247, 241, 0.58);
  font-size: 13px;
  line-height: 1.7;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0 36px;
  color: rgba(237, 247, 241, 0.54);
  border-top: 1px solid rgba(125, 233, 196, 0.12);
  font-size: 13px;
}

.site-footer a {
  color: var(--green-strong);
  font-weight: 900;
}

@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;
  }
}

@media (max-width: 980px) {
  .site-header {
    padding-inline: 20px;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-button {
    display: inline-flex;
    flex: 0 0 auto;
  }

  .section {
    width: min(100% - 28px, 760px);
    padding: 22px 0;
  }

  .hero {
    width: 100%;
    max-width: none;
    min-height: auto;
    margin: 0;
    gap: 24px;
    padding: 54px 20px 32px;
    background-position: center top;
  }

  .hero,
  .launchpad-grid,
  .predictor-grid,
  .airdrop-grid {
    grid-template-columns: 1fr;
  }

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

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

  .hero-copy {
    min-height: auto;
    padding: 0;
  }

  .hero-terminal {
    max-width: 640px;
  }

  .terminal-chart {
    height: 146px;
  }

  h1 {
    font-size: 38px;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 64px;
    gap: 8px;
    padding: 10px;
  }

  .mobile-menu {
    top: 70px;
    left: 10px;
  }

  .brand {
    gap: 8px;
  }

  .brand small,
  .twitter-button span,
  .wallet-button span {
    display: none;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand-mark,
  .icon-button,
  .twitter-button,
  .wallet-button {
    width: 38px;
    min-height: 38px;
    padding: 0;
  }

  .brand-mark {
    height: 38px;
    padding: 7px;
  }

  h1 {
    font-size: 32px;
  }

  .hero {
    gap: 16px;
    padding: 34px 14px 20px;
  }

  .hero-terminal {
    padding: 12px;
  }

  .lead {
    margin: 14px 0 16px;
    font-size: 15px;
    line-height: 1.68;
  }

  .growth-badges {
    gap: 6px;
    margin: -4px 0 16px;
  }

  .growth-badges span {
    min-height: 32px;
    padding: 0 9px;
    font-size: 12px;
  }

  .terminal-head {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }

  .terminal-chart {
    height: 96px;
    gap: 6px;
    padding: 12px;
  }

  .pool-selector,
  .hero-metrics,
  .console-grid,
  .estimate-panel,
  .pool-grid,
  .prediction-form,
  .prediction-metrics,
  .prediction-columns,
  .dealer-panel,
  .trust-panel,
  .narrative-panel,
  .kline-strip,
  .launch-form,
  .token-row,
  .airdrop-form,
  .airdrop-summary,
  .airdrop-row,
  .observation-row,
  .table-row {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-metrics div {
    padding: 10px;
  }

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

  .terminal-feed {
    display: none;
  }

  .split-title {
    align-items: start;
    flex-direction: column;
  }

  .search-field {
    width: 100%;
  }

  .console-card,
  .pool-card,
  .launch-form,
  .airdrop-form {
    padding: 16px;
  }

  .table-row {
    gap: 5px;
    min-height: 100px;
    padding: 14px 16px;
  }

  .dealer-overview {
    grid-row: auto;
  }

  .trust-overview {
    grid-row: auto;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 380px) {
  .site-header {
    gap: 6px;
  }

  .header-actions {
    gap: 4px;
  }

  .brand {
    min-width: auto;
  }

  .brand strong {
    display: none;
  }
}

/* Hookscribe-inspired control console: structure borrowed, visuals rebuilt for AlphaGate. */
body.mint-inspired {
  color-scheme: dark;
  --bg: #020504;
  --surface: rgba(7, 12, 11, 0.82);
  --surface-soft: rgba(10, 18, 16, 0.86);
  --surface-strong: rgba(17, 27, 24, 0.92);
  --text: #fafafa;
  --muted: #9daaa5;
  --line: rgba(196, 255, 227, 0.12);
  --green: #d8fff1;
  --green-strong: #fafafa;
  --cyan: #87fff0;
  --violet: #b8c2ff;
  --amber: #e7fff5;
  --red: #e5e5e5;
  --glow: rgba(98, 255, 201, 0.18);
  --shadow: 0 1px 0 rgba(255, 255, 255, 0.05) inset, 0 18px 52px rgba(0, 0, 0, 0.6);
  background: var(--bg);
  font-feature-settings: "ss01", "cv11";
  letter-spacing: -0.011em;
  overflow-x: hidden;
}

body.mint-inspired::before {
  background:
    linear-gradient(90deg, rgba(2, 5, 4, 0.94) 0%, rgba(2, 5, 4, 0.72) 38%, rgba(2, 5, 4, 0.24) 74%, rgba(2, 5, 4, 0.76) 100%),
    linear-gradient(180deg, rgba(2, 5, 4, 0.1) 0%, rgba(2, 5, 4, 0.28) 58%, var(--bg) 100%),
    url("assets/mint-launch-hero.png") top center / cover no-repeat;
  opacity: 0.95;
  mask-image: linear-gradient(180deg, #000 0%, #000 58%, transparent 96%);
}

body.mint-inspired::after {
  display: block;
  background:
    linear-gradient(rgba(196, 255, 227, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 255, 227, 0.03) 1px, transparent 1px),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 9px);
  background-size: 72px 72px, 72px 72px, 100% 10px;
  opacity: 0.48;
  mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.72) 48%, transparent 92%);
}

body.mint-inspired .site-header {
  position: fixed;
  display: grid;
  grid-template-columns: minmax(170px, 1fr) auto minmax(320px, 1fr);
  align-items: center;
  gap: 18px;
  width: 100%;
  min-height: 60px;
  padding: 9px clamp(18px, 3vw, 36px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    rgba(2, 5, 4, 0.74);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
  backdrop-filter: saturate(140%) blur(18px);
}

body.mint-inspired .brand {
  gap: 10px;
  justify-self: start;
  min-width: 0;
}

body.mint-inspired .brand-mark {
  width: 28px;
  height: 28px;
  padding: 5px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent 34%),
    #111118;
  border: 1px solid #2b2b33;
  border-radius: 7px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

body.mint-inspired .brand-mark span {
  width: 5px;
  background: #fafafa;
  border-radius: 1px 1px 0 0;
}

body.mint-inspired .brand-mark span:nth-child(2) {
  background: #d8fff1;
}

body.mint-inspired .brand-mark span:nth-child(3) {
  background: #71717a;
}

body.mint-inspired .brand strong,
body.mint-inspired .hero h1,
body.mint-inspired .section-title h2,
body.mint-inspired .console-head h2,
body.mint-inspired .prediction-head strong {
  color: var(--text);
  background: none;
  -webkit-text-fill-color: currentColor;
  text-shadow: none;
  animation: none;
}

body.mint-inspired .brand strong {
  font-size: 19px;
  letter-spacing: -0.04em;
}

body.mint-inspired .brand small {
  color: var(--muted);
  font-size: 11px;
}

body.mint-inspired .nav-links {
  justify-self: center;
  flex: 0 0 auto;
  gap: 4px;
  padding: 4px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.22),
    inset 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

body.mint-inspired .nav-links a {
  min-height: 36px;
  padding: 8px 13px;
  color: var(--muted);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
}

body.mint-inspired .nav-links a:hover,
body.mint-inspired .nav-links a.is-active {
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07)),
    rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.13);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.24),
    inset 0 1px rgba(255, 255, 255, 0.14);
}

body.mint-inspired .mobile-menu a.is-active {
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(216, 255, 241, 0.16), rgba(147, 245, 255, 0.1)),
    var(--surface-soft);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

body.mint-inspired .header-actions {
  justify-self: end;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  gap: 12px;
  min-width: 0;
}

body.mint-inspired .icon-button,
body.mint-inspired .twitter-button,
body.mint-inspired .wallet-button,
body.mint-inspired .primary-button,
body.mint-inspired .secondary-button,
body.mint-inspired .quick-amounts button,
body.mint-inspired .mini-button {
  min-height: 44px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid #2b2b33;
  border-radius: 10px;
  box-shadow: none;
  font-weight: 600;
}

body.mint-inspired .wallet-button,
body.mint-inspired .primary-button {
  color: #08080a;
  background: #fafafa;
  border-color: #fafafa;
}

body.mint-inspired .wallet-status {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  max-width: 126px;
  padding: 0 12px;
  overflow: hidden;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.mint-inspired .wallet-button:hover,
body.mint-inspired .primary-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2), 0 14px 34px rgba(255, 255, 255, 0.12);
}

body.mint-inspired .secondary-button:hover,
body.mint-inspired .twitter-button:hover,
body.mint-inspired .icon-button:hover,
body.mint-inspired .quick-amounts button:hover,
body.mint-inspired .mini-button:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.12);
  border-color: #34343c;
  box-shadow: none;
}

body.mint-inspired main#top {
  display: flex;
  flex-direction: column;
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: 126px 28px 96px;
}

body.mint-inspired .ticker-tape {
  display: none;
}

body.mint-inspired .section {
  width: 100%;
  margin: 0 0 28px;
  padding: 0;
}

body.mint-inspired .hero {
  order: 0;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 44px;
  min-height: 520px;
  padding: 34px 0 46px;
  overflow: visible;
  background: none;
  border: 0;
}

body.mint-inspired .hero::before,
body.mint-inspired .hero::after {
  display: block;
  pointer-events: none;
  content: "";
}

body.mint-inspired .hero::before {
  position: absolute;
  inset: 0 auto 0 -44px;
  width: min(720px, 68vw);
  background:
    linear-gradient(90deg, rgba(6, 16, 13, 0.64), rgba(6, 16, 13, 0.18), transparent),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 44%);
  border: 1px solid rgba(216, 255, 241, 0.08);
  border-radius: 24px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.42);
}

body.mint-inspired .hero::after {
  position: absolute;
  inset: auto 8% 40px auto;
  width: min(360px, 34vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 255, 241, 0.92), transparent);
  box-shadow: 0 0 44px rgba(98, 255, 201, 0.34);
}

body.mint-inspired .hero-copy {
  position: relative;
  min-height: auto;
  padding: 18px 0;
}

body.mint-inspired .eyebrow,
body.mint-inspired .label,
body.mint-inspired .hero-metrics span,
body.mint-inspired .estimate-panel span,
body.mint-inspired .field span,
body.mint-inspired .card-stats span,
body.mint-inspired .table-row span {
  color: var(--muted);
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 600;
}

body.mint-inspired .hero h1 {
  max-width: 860px;
  font-size: clamp(2.55rem, 5.1vw, 3.9rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.045em;
}

body.mint-inspired .lead {
  max-width: 720px;
  margin: 16px 0 20px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

body.mint-inspired .growth-badges {
  gap: 10px;
  margin: 0 0 24px;
}

body.mint-inspired .growth-badges span {
  min-height: 34px;
  padding: 0 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: none;
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  font-weight: 600;
}

body.mint-inspired .growth-badges i {
  color: var(--text);
}

body.mint-inspired .hero-terminal {
  align-self: center;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  backdrop-filter: none;
}

body.mint-inspired .hero-terminal::before,
body.mint-inspired .hero-terminal::after {
  display: none;
}

body.mint-inspired .terminal-head {
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

body.mint-inspired .terminal-head strong {
  color: var(--text);
  font-size: 15px;
}

body.mint-inspired .terminal-chart {
  height: 82px;
  padding: 12px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    var(--surface-soft);
  background-size: 28px 28px;
  border-color: var(--line);
  box-shadow: none;
}

body.mint-inspired .terminal-chart::before {
  display: none;
}

body.mint-inspired .terminal-chart span {
  background: linear-gradient(180deg, #fafafa, #d8fff1 44%, #71717a);
  border-radius: 2px;
  box-shadow: 0 0 14px rgba(216, 255, 241, 0.16);
}

body.mint-inspired .hero-metrics div {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: none;
}

body.mint-inspired .hero-metrics strong {
  color: var(--text);
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 18px;
}

body.mint-inspired .terminal-feed div {
  background: transparent;
  border-color: var(--line);
}

body.mint-inspired .terminal-feed strong {
  color: var(--text);
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
}

body.mint-inspired .terminal-feed {
  display: none;
}

body.mint-inspired .predictor-section {
  order: 1;
}

body.mint-inspired .console-section {
  order: 2;
}

body.mint-inspired .market-section {
  order: 3;
}

body.mint-inspired .launchpad-section {
  order: 4;
}

body.mint-inspired .section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
  padding-left: 0;
}

body.mint-inspired .section-title::before,
body.mint-inspired .section-title::after {
  display: none;
}

body.mint-inspired .section-title h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
}

body.mint-inspired .section-copy {
  max-width: 720px;
  color: var(--muted);
  font-size: 14px;
}

body.mint-inspired .console-card,
body.mint-inspired .prediction-panel,
body.mint-inspired .token-directory,
body.mint-inspired .table-panel,
body.mint-inspired .launch-form,
body.mint-inspired .prediction-form,
body.mint-inspired .pool-card,
body.mint-inspired .observation-panel,
body.mint-inspired .airdrop-form,
body.mint-inspired .airdrop-log,
body.mint-inspired .token-admin-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: none;
}

body.mint-inspired .console-card::before,
body.mint-inspired .console-card::after,
body.mint-inspired .prediction-panel::before,
body.mint-inspired .prediction-panel::after,
body.mint-inspired .token-directory::before,
body.mint-inspired .token-directory::after,
body.mint-inspired .table-panel::before,
body.mint-inspired .table-panel::after,
body.mint-inspired .launch-form::before,
body.mint-inspired .launch-form::after,
body.mint-inspired .prediction-form::before,
body.mint-inspired .prediction-form::after,
body.mint-inspired .pool-card::before,
body.mint-inspired .pool-card::after,
body.mint-inspired .airdrop-form::before,
body.mint-inspired .airdrop-form::after,
body.mint-inspired .airdrop-log::before,
body.mint-inspired .airdrop-log::after,
body.mint-inspired .token-admin-panel::before,
body.mint-inspired .token-admin-panel::after {
  display: none;
}

body.mint-inspired .predictor-grid {
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  gap: 20px;
}

body.mint-inspired .prediction-form {
  align-content: start;
  gap: 16px;
  padding: 26px;
}

body.mint-inspired .prediction-panel {
  overflow: hidden;
}

body.mint-inspired .prediction-head,
body.mint-inspired .directory-head {
  min-height: 56px;
  padding: 18px 22px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

body.mint-inspired .signal-meter {
  height: 4px;
  margin: 18px 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 0;
  box-shadow: none;
}

body.mint-inspired .signal-fill {
  background: linear-gradient(90deg, #71717a, #d8fff1, #fafafa);
  box-shadow: 0 0 18px rgba(216, 255, 241, 0.18);
}

body.mint-inspired .prediction-score,
body.mint-inspired .prediction-metrics,
body.mint-inspired .kline-strip,
body.mint-inspired .prediction-columns,
body.mint-inspired .dealer-panel,
body.mint-inspired .trust-panel,
body.mint-inspired .narrative-panel,
body.mint-inspired .source-links {
  margin-inline: 22px;
  padding-inline: 0;
}

body.mint-inspired .prediction-metrics,
body.mint-inspired .estimate-panel,
body.mint-inspired .card-stats,
body.mint-inspired .airdrop-summary {
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 12px;
}

body.mint-inspired .prediction-metrics div,
body.mint-inspired .estimate-panel div,
body.mint-inspired .card-stats div,
body.mint-inspired .airdrop-summary div {
  background: var(--surface-soft);
  box-shadow: none;
}

body.mint-inspired .prediction-columns > div,
body.mint-inspired .dealer-panel > div,
body.mint-inspired .trust-panel > div,
body.mint-inspired .narrative-panel > div,
body.mint-inspired .observation-panel,
body.mint-inspired .ref-like-panel {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: none;
}

body.mint-inspired .console-card {
  padding: 0 0 30px;
  border-radius: 20px;
  overflow: hidden;
}

body.mint-inspired .console-head {
  align-items: end;
  min-height: 74px;
  margin: 0;
  padding: 20px 28px 0;
}

body.mint-inspired .pool-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 18px 0 0;
  padding: 0 8px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

body.mint-inspired .pool-option {
  min-height: 56px;
  padding: 0 22px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  box-shadow: none;
}

body.mint-inspired .pool-option:hover {
  color: var(--text);
  background: transparent;
  transform: none;
}

body.mint-inspired .pool-option.is-active {
  color: var(--text);
  background: transparent;
  border-bottom-color: var(--text);
  box-shadow: none;
  animation: none;
}

body.mint-inspired .console-grid,
body.mint-inspired .quick-amounts,
body.mint-inspired .estimate-panel,
body.mint-inspired .actions-row,
body.mint-inspired .estimate-note,
body.mint-inspired .observation-panel {
  margin-inline: 28px;
}

body.mint-inspired .console-grid {
  padding-top: 24px;
}

body.mint-inspired .quick-amounts button.is-active {
  color: #08080a;
  background: #fafafa;
  border-color: #fafafa;
}

body.mint-inspired .field input,
body.mint-inspired .field select,
body.mint-inspired .field textarea,
body.mint-inspired .search-field input {
  min-height: 48px;
  color: var(--text);
  background: var(--surface-soft);
  border: 1px solid #2b2b33;
  border-radius: 10px;
  box-shadow: none;
}

body.mint-inspired .field input:focus,
body.mint-inspired .field select:focus,
body.mint-inspired .field textarea:focus,
body.mint-inspired .search-field input:focus {
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16), 0 0 0 4px rgba(255, 255, 255, 0.06);
}

body.mint-inspired .status-pill {
  min-height: 30px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid #2b2b33;
  border-radius: 999px;
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
}

body.mint-inspired .status-pill.amber,
body.mint-inspired .status-pill.danger,
body.mint-inspired .status-pill.safe {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border-color: #2b2b33;
}

body.mint-inspired .pool-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

body.mint-inspired .pool-card {
  min-height: 188px;
  padding: 22px;
  border-radius: 16px;
  cursor: pointer;
}

body.mint-inspired .pool-card:hover {
  border-color: #34343c;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.07) inset, 0 18px 50px rgba(0, 0, 0, 0.65);
  transform: translateY(-3px);
}

body.mint-inspired .launchpad-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 20px;
}

body.mint-inspired .launch-form {
  grid-row: span 2;
  padding: 26px;
}

body.mint-inspired .token-admin-panel {
  display: grid;
  gap: 14px;
  padding: 22px;
}

body.mint-inspired .token-admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

body.mint-inspired .token-admin-actions {
  margin: 0;
  flex-wrap: wrap;
}

body.mint-inspired .token-admin-actions .primary-button,
body.mint-inspired .token-admin-actions .secondary-button {
  flex: 1 1 120px;
  justify-content: center;
  min-width: 112px;
  padding-inline: 12px;
  white-space: nowrap;
}

body.mint-inspired .factory-config {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
}

body.mint-inspired .factory-config .form-note {
  grid-column: 1 / -1;
}

body.mint-inspired .factory-actions {
  margin: 0;
  align-items: end;
  flex-wrap: nowrap;
}

body.mint-inspired .token-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

body.mint-inspired .token-actions .mini-button {
  min-height: 30px;
  padding: 0 10px;
  font-size: 12px;
}

body.mint-inspired button:disabled,
body.mint-inspired .mini-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}

body.mint-inspired .token-list,
body.mint-inspired .airdrop-list,
body.mint-inspired .table-panel {
  display: grid;
}

body.mint-inspired .token-row,
body.mint-inspired .airdrop-row,
body.mint-inspired .table-row {
  min-height: 56px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

body.mint-inspired .table-row:hover,
body.mint-inspired .token-row:hover,
body.mint-inspired .airdrop-row:hover {
  background: rgba(255, 255, 255, 0.04);
}

body.mint-inspired .notice,
body.mint-inspired .form-note,
body.mint-inspired .estimate-note,
body.mint-inspired .section-copy,
body.mint-inspired .prediction-columns li,
body.mint-inspired .dealer-panel li,
body.mint-inspired .trust-panel li,
body.mint-inspired .narrative-panel li,
body.mint-inspired .dealer-panel p,
body.mint-inspired .trust-panel p,
body.mint-inspired .narrative-panel p,
body.mint-inspired .pool-card p {
  color: var(--muted);
}

body.mint-inspired .site-footer {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 44px 28px 28px;
  background: #050506;
  border-top: 1px solid var(--line);
  color: #71717a;
}

body.mint-inspired .site-footer a {
  color: var(--text);
}

body.mint-inspired.light-mode {
  --bg: #f5f6f2;
  --surface: #ffffff;
  --surface-soft: #f0f2ed;
  --surface-strong: #e6e9e0;
  --text: #111318;
  --muted: #60656f;
  --line: #d7dcd1;
  --green: #0d7b54;
  --green-strong: #111318;
  --cyan: #006b7a;
  --violet: #4752aa;
  --amber: #856100;
  --red: #a7352d;
  --glow: rgba(0, 0, 0, 0.08);
  --shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 12px 36px rgba(15, 23, 42, 0.12);
  background:
    radial-gradient(900px 500px at 12% -8%, rgba(0, 0, 0, 0.06), transparent 70%),
    radial-gradient(700px 500px at 95% 0%, rgba(13, 123, 84, 0.08), transparent 70%),
    var(--bg);
}

body.mint-inspired.light-mode .site-header {
  background: rgba(245, 246, 242, 0.78);
}

body.mint-inspired.light-mode .primary-button,
body.mint-inspired.light-mode .wallet-button,
body.mint-inspired.light-mode .quick-amounts button.is-active {
  color: #ffffff;
  background: #111318;
  border-color: #111318;
}

body.mint-inspired.light-mode .site-footer {
  background: #e9ece4;
}

@media (max-width: 1180px) {
  body.mint-inspired .site-header {
    grid-template-columns: minmax(118px, 0.8fr) auto minmax(246px, 0.8fr);
    gap: 12px;
  }

  body.mint-inspired .brand small,
  body.mint-inspired .wallet-status {
    display: none;
  }

  body.mint-inspired .header-actions {
    gap: 8px;
  }

  body.mint-inspired .nav-links a {
    padding-inline: 11px;
  }
}

@media (max-width: 980px) {
  body.mint-inspired .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 10px;
  }

  body.mint-inspired .nav-links {
    display: none;
  }

  body.mint-inspired .mobile-menu-button {
    display: inline-flex;
    justify-self: start;
  }

  body.mint-inspired .brand {
    justify-self: start;
  }

  body.mint-inspired .header-actions {
    justify-self: end;
  }

  body.mint-inspired main#top {
    padding: 112px 20px 72px;
  }

  body.mint-inspired .hero,
  body.mint-inspired .predictor-grid,
  body.mint-inspired .launchpad-grid {
    grid-template-columns: 1fr;
  }

  body.mint-inspired .launch-form {
    grid-row: auto;
  }

  body.mint-inspired .hero-terminal {
    align-self: start;
    max-width: 100%;
  }

  body.mint-inspired .pool-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.mint-inspired .factory-config {
    grid-template-columns: 1fr;
  }

  body.mint-inspired .factory-actions {
    align-items: stretch;
    flex-direction: column;
  }

  body.mint-inspired .token-admin-grid {
    grid-template-columns: 1fr;
  }

  body.mint-inspired .token-admin-actions .primary-button,
  body.mint-inspired .token-admin-actions .secondary-button {
    flex-basis: 100%;
    min-width: 100%;
  }
}

@media (max-width: 680px) {
  body.mint-inspired .site-header {
    padding: 12px 16px;
  }

  body.mint-inspired .brand small,
  body.mint-inspired .wallet-status,
  body.mint-inspired .twitter-button span,
  body.mint-inspired .wallet-button span {
    display: none;
  }

  body.mint-inspired .twitter-button,
  body.mint-inspired .wallet-button,
  body.mint-inspired .icon-button {
    width: 38px;
    min-height: 38px;
    padding: 0;
  }

  body.mint-inspired main#top {
    width: 100%;
    max-width: 100vw;
    padding: 92px 16px 64px;
  }

  body.mint-inspired .hero h1 {
    font-size: 2.36rem;
  }

  body.mint-inspired .lead {
    font-size: 15px;
  }

  body.mint-inspired .hero-terminal {
    display: none;
  }

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

  body.mint-inspired .primary-button,
  body.mint-inspired .secondary-button {
    width: 100%;
  }

  body.mint-inspired .hero-metrics,
  body.mint-inspired .console-grid,
  body.mint-inspired .estimate-panel,
  body.mint-inspired .prediction-metrics,
  body.mint-inspired .prediction-columns,
  body.mint-inspired .dealer-panel,
  body.mint-inspired .trust-panel,
  body.mint-inspired .narrative-panel,
  body.mint-inspired .kline-strip,
  body.mint-inspired .pool-grid,
  body.mint-inspired .launch-form,
  body.mint-inspired .token-row,
  body.mint-inspired .table-row {
    grid-template-columns: 1fr;
  }

  body.mint-inspired .section-title,
  body.mint-inspired .console-head,
  body.mint-inspired .prediction-head {
    align-items: start;
    flex-direction: column;
  }

  body.mint-inspired .console-grid,
  body.mint-inspired .quick-amounts,
  body.mint-inspired .estimate-panel,
  body.mint-inspired .actions-row,
  body.mint-inspired .estimate-note,
  body.mint-inspired .observation-panel {
    margin-inline: 16px;
  }

  body.mint-inspired .pool-selector {
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  body.mint-inspired .pool-option {
    min-width: max-content;
  }

  body.mint-inspired .prediction-score,
  body.mint-inspired .prediction-metrics,
  body.mint-inspired .kline-strip,
  body.mint-inspired .prediction-columns,
  body.mint-inspired .dealer-panel,
  body.mint-inspired .trust-panel,
  body.mint-inspired .narrative-panel,
  body.mint-inspired .source-links {
    margin-inline: 16px;
  }
}

body.mint-inspired .brand strong,
body.mint-inspired .hero h1,
body.mint-inspired .section-title h2,
body.mint-inspired .console-head h2,
body.mint-inspired .prediction-head strong {
  color: transparent;
  background-image:
    linear-gradient(100deg, #fafafa, #d8fff1 28%, #93f5ff 48%, #d6c8ff 68%, #fafafa),
    linear-gradient(105deg, transparent 0 40%, rgba(255, 255, 255, 0.98) 50%, transparent 60%);
  background-size: 240% 100%, 180% 100%;
  background-position: 0 0, -135% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 24px rgba(216, 255, 241, 0.14);
  animation: textSweep 5.2s ease-in-out infinite;
}

body.mint-inspired.light-mode .brand strong,
body.mint-inspired.light-mode .hero h1,
body.mint-inspired.light-mode .section-title h2,
body.mint-inspired.light-mode .console-head h2,
body.mint-inspired.light-mode .prediction-head strong {
  background-image:
    linear-gradient(100deg, #111318, #0d7b54 28%, #006b7a 48%, #4752aa 68%, #111318),
    linear-gradient(105deg, transparent 0 40%, rgba(255, 255, 255, 0.92) 50%, transparent 60%);
  text-shadow: 0 0 18px rgba(13, 123, 84, 0.13);
}

/* Final mint-console polish pass. */
body.mint-inspired {
  --surface: rgba(4, 10, 9, 0.74);
  --surface-soft: rgba(8, 18, 16, 0.82);
  --surface-strong: rgba(15, 30, 26, 0.92);
  --line: rgba(202, 255, 234, 0.14);
  --line-strong: rgba(202, 255, 234, 0.28);
  --accent: #78ffd4;
  --accent-2: #8bd9ff;
  --ink: #020504;
  --shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset, 0 24px 70px rgba(0, 0, 0, 0.62);
}

body.mint-inspired::before {
  background:
    linear-gradient(90deg, rgba(2, 5, 4, 0.98) 0%, rgba(2, 5, 4, 0.86) 31%, rgba(2, 5, 4, 0.34) 66%, rgba(2, 5, 4, 0.82) 100%),
    linear-gradient(180deg, rgba(2, 5, 4, 0.04) 0%, rgba(2, 5, 4, 0.2) 52%, #020504 100%),
    url("assets/mint-launch-hero.png") top center / cover no-repeat;
  opacity: 1;
}

body.mint-inspired::after {
  background:
    linear-gradient(rgba(202, 255, 234, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(202, 255, 234, 0.032) 1px, transparent 1px),
    linear-gradient(115deg, transparent 0 34%, rgba(120, 255, 212, 0.1) 43%, transparent 54%);
  background-size: 76px 76px, 76px 76px, 100% 100%;
  opacity: 0.54;
}

body.mint-inspired .site-header {
  min-height: 68px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent),
    rgba(2, 5, 4, 0.74);
  border-bottom-color: rgba(202, 255, 234, 0.12);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.42);
}

body.mint-inspired .brand-mark {
  background:
    linear-gradient(135deg, rgba(120, 255, 212, 0.26), rgba(139, 217, 255, 0.08) 48%, rgba(255, 255, 255, 0.08)),
    #07100e;
  border-color: rgba(202, 255, 234, 0.2);
  box-shadow: 0 0 30px rgba(120, 255, 212, 0.14);
}

body.mint-inspired .nav-links {
  padding: 5px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(120, 255, 212, 0.035)),
    rgba(3, 9, 8, 0.68);
  border-color: rgba(202, 255, 234, 0.13);
  border-radius: 16px;
}

body.mint-inspired .nav-links a {
  min-height: 38px;
  padding-inline: 15px;
  border-radius: 12px;
}

body.mint-inspired .nav-links a:hover,
body.mint-inspired .nav-links a.is-active {
  background:
    linear-gradient(135deg, rgba(120, 255, 212, 0.18), rgba(139, 217, 255, 0.1)),
    rgba(255, 255, 255, 0.08);
  border-color: rgba(202, 255, 234, 0.2);
}

body.mint-inspired .icon-button,
body.mint-inspired .twitter-button,
body.mint-inspired .secondary-button,
body.mint-inspired .quick-amounts button,
body.mint-inspired .mini-button {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(120, 255, 212, 0.025)),
    rgba(5, 13, 12, 0.72);
  border-color: rgba(202, 255, 234, 0.14);
}

body.mint-inspired .wallet-button,
body.mint-inspired .primary-button {
  color: #04100c;
  background:
    linear-gradient(135deg, #f6fffb, #aaffe2 34%, #8bd9ff 72%, #f6fffb);
  background-size: 180% 100%;
  border-color: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 44px rgba(120, 255, 212, 0.18), inset 0 1px rgba(255, 255, 255, 0.8);
}

body.mint-inspired main#top {
  width: min(1280px, 100%);
  padding-top: 118px;
}

body.mint-inspired .hero {
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.58fr);
  align-items: center;
  min-height: min(540px, calc(100vh - 190px));
  margin-bottom: 22px;
  padding: 24px 0 34px;
}

body.mint-inspired .hero::before {
  inset: 18px auto 18px -58px;
  width: min(790px, 70vw);
  border-color: rgba(202, 255, 234, 0.12);
  border-radius: 28px;
  background:
    linear-gradient(110deg, rgba(7, 18, 16, 0.72), rgba(7, 18, 16, 0.18) 56%, transparent),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), transparent 44%);
  box-shadow: 0 48px 130px rgba(0, 0, 0, 0.46), inset 0 1px rgba(255, 255, 255, 0.08);
}

body.mint-inspired .hero h1 {
  max-width: 900px;
  font-size: clamp(2.85rem, 5.7vw, 4.85rem);
  line-height: 0.94;
}

body.mint-inspired .lead {
  max-width: 760px;
  margin-top: 16px;
  color: rgba(237, 255, 247, 0.74);
  font-size: 16px;
}

body.mint-inspired .growth-badges {
  margin-bottom: 20px;
}

body.mint-inspired .growth-badges span,
body.mint-inspired .wallet-status,
body.mint-inspired .status-pill {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(120, 255, 212, 0.035)),
    rgba(4, 12, 10, 0.64);
  border-color: rgba(202, 255, 234, 0.14);
}

body.mint-inspired .mint-flow {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  margin-top: 18px;
  overflow: hidden;
  background: rgba(202, 255, 234, 0.14);
  border: 1px solid rgba(202, 255, 234, 0.14);
  border-radius: 18px;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.38);
}

body.mint-inspired .mint-flow div {
  min-height: 74px;
  padding: 16px 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(120, 255, 212, 0.025)),
    rgba(5, 13, 12, 0.8);
}

body.mint-inspired .mint-flow span,
body.mint-inspired .mint-flow small {
  display: block;
  color: var(--muted);
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.mint-inspired .mint-flow strong {
  display: block;
  margin: 8px 0 5px;
  color: var(--text);
  font-size: 16px;
}

body.mint-inspired .mint-flow {
  scrollbar-width: none;
}

body.mint-inspired .mint-flow::-webkit-scrollbar {
  display: none;
}

body.mint-inspired .hero-terminal {
  position: relative;
  min-height: 320px;
  padding: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(9, 24, 20, 0.9), rgba(3, 8, 7, 0.8));
  border-color: rgba(202, 255, 234, 0.18);
  border-radius: 22px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.56), 0 0 70px rgba(120, 255, 212, 0.1);
}

body.mint-inspired .hero-terminal::before {
  position: absolute;
  inset: 0;
  display: block;
  pointer-events: none;
  content: "";
  border-radius: inherit;
  background:
    linear-gradient(90deg, transparent, rgba(120, 255, 212, 0.5), transparent) 0 0 / 100% 1px no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 32%);
}

body.mint-inspired .terminal-chart {
  height: 112px;
  margin: 6px 0 14px;
  background:
    linear-gradient(90deg, rgba(120, 255, 212, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(120, 255, 212, 0.07) 1px, transparent 1px),
    rgba(1, 6, 5, 0.58);
  background-size: 36px 36px;
  border-color: rgba(202, 255, 234, 0.12);
}

body.mint-inspired .terminal-feed {
  display: grid;
  gap: 8px;
}

body.mint-inspired .terminal-feed div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  padding: 0 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
}

body.mint-inspired .launchpad-section {
  order: 1;
}

body.mint-inspired .predictor-section {
  order: 2;
}

body.mint-inspired .console-section {
  order: 3;
}

body.mint-inspired .market-section {
  order: 4;
}

body.mint-inspired .section {
  margin-bottom: 34px;
  scroll-margin-top: 92px;
}

body.mint-inspired .section-title {
  align-items: center;
  min-height: 88px;
  padding: 23px 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(120, 255, 212, 0.025)),
    rgba(4, 12, 10, 0.52);
  border: 1px solid rgba(202, 255, 234, 0.12);
  border-radius: 22px;
  box-shadow: 0 26px 82px rgba(0, 0, 0, 0.26);
}

body.mint-inspired .launchpad-grid {
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  gap: 22px;
}

body.mint-inspired .console-card,
body.mint-inspired .prediction-panel,
body.mint-inspired .token-directory,
body.mint-inspired .table-panel,
body.mint-inspired .launch-form,
body.mint-inspired .prediction-form,
body.mint-inspired .pool-card,
body.mint-inspired .observation-panel,
body.mint-inspired .ref-like-panel {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(120, 255, 212, 0.025)),
    rgba(5, 13, 12, 0.78);
  border-color: rgba(202, 255, 234, 0.14);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

body.mint-inspired .launch-form,
body.mint-inspired .prediction-form {
  padding: 24px;
  gap: 12px;
}

body.mint-inspired .launch-form .field:has(input:not([readonly])),
body.mint-inspired .launch-form .field:has(select),
body.mint-inspired .launch-form .field:has(textarea) {
  position: relative;
}

body.mint-inspired .launch-form .field:has(input:not([readonly]))::before,
body.mint-inspired .launch-form .field:has(select)::before,
body.mint-inspired .launch-form .field:has(textarea)::before {
  position: absolute;
  inset: auto auto 13px -10px;
  width: 3px;
  height: 28px;
  content: "";
  background: linear-gradient(180deg, var(--accent), transparent);
  border-radius: 99px;
  opacity: 0.58;
}

body.mint-inspired .field input[readonly] {
  color: rgba(237, 255, 247, 0.62);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(120, 255, 212, 0.012)),
    rgba(2, 7, 6, 0.46);
  border-color: rgba(202, 255, 234, 0.09);
}

body.mint-inspired .factory-config {
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(120, 255, 212, 0.07), transparent 62%),
    rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(202, 255, 234, 0.1);
  border-radius: 16px;
}

body.mint-inspired .token-directory {
  overflow: hidden;
}

body.mint-inspired .prediction-head,
body.mint-inspired .directory-head {
  background:
    linear-gradient(135deg, rgba(120, 255, 212, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(5, 13, 12, 0.82);
  border-bottom-color: rgba(202, 255, 234, 0.12);
}

body.mint-inspired .field input,
body.mint-inspired .field select,
body.mint-inspired .field textarea,
body.mint-inspired .search-field input {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    rgba(2, 7, 6, 0.72);
  border-color: rgba(202, 255, 234, 0.14);
  border-radius: 12px;
}

body.mint-inspired .field input:focus,
body.mint-inspired .field select:focus,
body.mint-inspired .field textarea:focus,
body.mint-inspired .search-field input:focus {
  border-color: rgba(120, 255, 212, 0.52);
  box-shadow: 0 0 0 1px rgba(120, 255, 212, 0.18), 0 0 0 5px rgba(120, 255, 212, 0.06);
}

body.mint-inspired .token-row,
body.mint-inspired .airdrop-row,
body.mint-inspired .table-row {
  padding: 16px 18px;
  border-bottom-color: rgba(202, 255, 234, 0.1);
}

body.mint-inspired .token-row:hover,
body.mint-inspired .table-row:hover {
  background: rgba(120, 255, 212, 0.045);
}

body.mint-inspired .pool-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(139, 217, 255, 0.025)),
    rgba(5, 13, 12, 0.76);
}

body.mint-inspired .site-footer {
  background: rgba(2, 5, 4, 0.92);
}

@media (max-width: 980px) {
  body.mint-inspired .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 26px;
  }

  body.mint-inspired .launchpad-grid,
  body.mint-inspired .predictor-grid {
    grid-template-columns: 1fr;
  }

  body.mint-inspired .token-directory,
  body.mint-inspired .launch-form,
  body.mint-inspired .prediction-panel,
  body.mint-inspired .prediction-form {
    min-width: 0;
  }

  body.mint-inspired .hero-copy {
    width: 100%;
    min-width: 0;
  }

  body.mint-inspired .hero::before {
    inset: 0;
    width: 100%;
  }

  body.mint-inspired .mint-flow {
    grid-template-columns: 1fr;
  }

  body.mint-inspired .section-title {
    align-items: start;
    flex-direction: column;
    padding: 22px;
  }
}

@media (max-width: 680px) {
  body.mint-inspired main#top {
    padding-top: 90px;
  }

  body.mint-inspired .hero {
    gap: 0;
    padding-bottom: 24px;
  }

  body.mint-inspired .hero h1 {
    font-size: 2.72rem;
    line-height: 0.98;
  }

  body.mint-inspired .growth-badges {
    align-items: stretch;
    flex-direction: column;
  }

  body.mint-inspired .growth-badges span {
    width: 100%;
  }

  body.mint-inspired .mint-flow {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  body.mint-inspired .mint-flow div {
    flex: 0 0 178px;
    min-width: 0;
    min-height: 68px;
    padding: 15px;
    scroll-snap-align: start;
  }

  body.mint-inspired .section-title {
    border-radius: 18px;
  }

  body.mint-inspired .launch-form,
  body.mint-inspired .prediction-form {
    padding: 20px;
  }
}

body.mint-inspired .brand strong,
body.mint-inspired .hero h1,
body.mint-inspired .section-title h2,
body.mint-inspired .console-head h2,
body.mint-inspired .prediction-head strong {
  background-image:
    linear-gradient(98deg, #ffffff 0%, #d8fff1 24%, #78ffd4 40%, #8bd9ff 56%, #d6c8ff 72%, #ffffff 100%),
    linear-gradient(108deg, transparent 0 34%, rgba(255, 255, 255, 0.08) 42%, rgba(255, 255, 255, 1) 50%, rgba(120, 255, 212, 0.82) 55%, transparent 65%);
  background-size: 280% 100%, 230% 100%;
  background-position: 0 0, -170% 0;
  text-shadow:
    0 0 18px rgba(216, 255, 241, 0.16),
    0 0 42px rgba(120, 255, 212, 0.1);
  animation: textSweep 4.4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

body.mint-inspired.light-mode .brand strong,
body.mint-inspired.light-mode .hero h1,
body.mint-inspired.light-mode .section-title h2,
body.mint-inspired.light-mode .console-head h2,
body.mint-inspired.light-mode .prediction-head strong {
  background-image:
    linear-gradient(98deg, #111318 0%, #0d7b54 28%, #006b7a 48%, #4752aa 70%, #111318 100%),
    linear-gradient(108deg, transparent 0 35%, rgba(255, 255, 255, 0.22) 44%, rgba(255, 255, 255, 0.96) 50%, rgba(13, 123, 84, 0.52) 56%, transparent 66%);
  text-shadow: 0 0 20px rgba(13, 123, 84, 0.14);
}

@media (prefers-reduced-motion: reduce) {
  body.mint-inspired .brand strong,
  body.mint-inspired .hero h1,
  body.mint-inspired .section-title h2,
  body.mint-inspired .console-head h2,
  body.mint-inspired .prediction-head strong {
    animation: none;
  }
}

body.mint-inspired .brand {
  gap: 12px;
}

body.mint-inspired .brand-mark {
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  width: 36px;
  height: 36px;
  padding: 7px 8px 7px 7px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), transparent 35%),
    linear-gradient(180deg, rgba(120, 255, 212, 0.08), rgba(139, 217, 255, 0.035)),
    rgba(7, 18, 16, 0.92);
  border: 1px solid rgba(202, 255, 234, 0.26);
  border-radius: 9px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.045) inset,
    0 10px 26px rgba(0, 0, 0, 0.34),
    0 0 26px rgba(120, 255, 212, 0.13);
}

body.mint-inspired .brand-avatar {
  padding: 0;
  background: #020202;
  border-color: rgba(245, 195, 83, 0.32);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.045) inset,
    0 10px 26px rgba(0, 0, 0, 0.34),
    0 0 26px rgba(245, 195, 83, 0.14);
}

body.mint-inspired .brand-mark span {
  width: 5px;
  background: linear-gradient(180deg, #f6fff9, #91f1cf);
  border-radius: 3px 3px 1px 1px;
  box-shadow: 0 0 12px rgba(216, 255, 241, 0.24);
}

body.mint-inspired .brand-mark span:nth-child(1) {
  height: 18px;
}

body.mint-inspired .brand-mark span:nth-child(2) {
  height: 24px;
  background: linear-gradient(180deg, #ffffff, #d8fff1);
}

body.mint-inspired .brand-mark span:nth-child(3) {
  height: 13px;
  background: linear-gradient(180deg, #8bd9ff, #2f8d91);
}

body.mint-inspired .brand strong {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0;
  background-image:
    linear-gradient(96deg, #ffffff 0%, #d8fff1 34%, #8bd9ff 68%, #ffffff 100%),
    linear-gradient(108deg, transparent 0 36%, rgba(255, 255, 255, 0.96) 50%, transparent 64%);
  text-shadow:
    0 0 15px rgba(216, 255, 241, 0.18),
    0 0 28px rgba(139, 217, 255, 0.1);
}

body.mint-inspired .brand small {
  margin-top: 3px;
  color: rgba(210, 224, 217, 0.82);
  font-size: 12px;
  font-weight: 700;
}

body.mint-inspired.light-mode .brand-mark {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(13, 123, 84, 0.08)),
    #f7fbf6;
  border-color: rgba(13, 123, 84, 0.18);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.72) inset,
    0 10px 24px rgba(15, 23, 42, 0.12);
}

body.mint-inspired.light-mode .brand small {
  color: rgba(36, 48, 43, 0.68);
}

body.mint-inspired .appchain-section {
  display: grid;
  gap: 18px;
  padding-top: 10px;
}

body.mint-inspired .appchain-title {
  overflow: hidden;
}

body.mint-inspired .appchain-shell {
  display: grid;
  gap: 14px;
}

body.mint-inspired .appchain-overview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

body.mint-inspired .appchain-overview div,
body.mint-inspired .appchain-card,
body.mint-inspired .appchain-feature-grid label,
body.mint-inspired .appchain-module-grid div,
body.mint-inspired .appchain-steps div,
body.mint-inspired .appchain-advice {
  border: 1px solid rgba(202, 255, 234, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(120, 255, 212, 0.018)),
    rgba(5, 13, 12, 0.78);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

body.mint-inspired .appchain-overview div {
  min-height: 92px;
  padding: 14px;
  display: grid;
  align-content: space-between;
  gap: 8px;
}

body.mint-inspired .appchain-overview span,
body.mint-inspired .appchain-quote-main span,
body.mint-inspired .appchain-mini-metrics span,
body.mint-inspired .appchain-module-grid span,
body.mint-inspired .appchain-steps small,
body.mint-inspired .appchain-advice span,
body.mint-inspired .appchain-breakdown span {
  color: rgba(221, 255, 242, 0.62);
  font-size: 12px;
}

body.mint-inspired .appchain-overview strong {
  color: var(--text);
  font-size: clamp(18px, 2.2vw, 25px);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

body.mint-inspired .appchain-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(360px, 1.05fr);
  gap: 14px;
  align-items: start;
}

body.mint-inspired .appchain-card {
  min-width: 0;
  overflow: hidden;
}

body.mint-inspired .appchain-card-head {
  min-height: 58px;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(202, 255, 234, 0.1);
  background:
    linear-gradient(120deg, rgba(120, 255, 212, 0.08), transparent 58%),
    rgba(2, 7, 6, 0.22);
}

body.mint-inspired .appchain-card-head strong {
  display: block;
  margin-top: 4px;
  font-size: 16px;
  line-height: 1.2;
}

body.mint-inspired .appchain-config,
body.mint-inspired .appchain-quote {
  min-height: 520px;
}

body.mint-inspired .appchain-chain-tabs {
  margin: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(202, 255, 234, 0.1);
  border-radius: 8px;
  background: rgba(2, 7, 6, 0.46);
}

body.mint-inspired .appchain-chain-tabs button {
  min-height: 40px;
  padding: 8px;
  border: 0;
  border-radius: 7px;
  color: rgba(237, 255, 247, 0.68);
  background: transparent;
}

body.mint-inspired .appchain-chain-tabs button.is-active {
  color: #06100d;
  background: linear-gradient(135deg, var(--green-strong), var(--cyan));
  font-weight: 800;
}

body.mint-inspired .appchain-form-grid {
  padding: 0 16px 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

body.mint-inspired .appchain-wide {
  grid-column: 1 / -1;
}

body.mint-inspired .appchain-range {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 96px;
  gap: 10px;
  align-items: center;
}

body.mint-inspired .appchain-range input[type="range"] {
  accent-color: var(--green-strong);
}

body.mint-inspired .appchain-feature-grid {
  padding: 0 16px 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

body.mint-inspired .appchain-feature-grid label {
  min-height: 42px;
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(237, 255, 247, 0.82);
  font-size: 13px;
}

body.mint-inspired .appchain-feature-grid input {
  width: 18px;
  height: 18px;
  accent-color: var(--green-strong);
}

body.mint-inspired .appchain-quote-main {
  margin: 16px;
  min-height: 128px;
  padding: 16px;
  display: grid;
  gap: 8px;
  align-content: center;
  border: 1px solid rgba(120, 255, 212, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(120, 255, 212, 0.18), rgba(73, 220, 237, 0.07)),
    rgba(2, 7, 6, 0.7);
}

body.mint-inspired .appchain-quote-main strong {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 0.95;
  letter-spacing: 0;
}

body.mint-inspired .appchain-quote-main small {
  width: max-content;
  max-width: 100%;
  color: #06100d;
  background: linear-gradient(135deg, var(--green-strong), var(--cyan));
  border-radius: 999px;
  padding: 5px 9px;
  font-weight: 800;
}

body.mint-inspired .appchain-mini-metrics {
  padding: 0 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

body.mint-inspired .appchain-mini-metrics div {
  min-height: 74px;
  padding: 12px;
  display: grid;
  align-content: space-between;
  gap: 8px;
  border: 1px solid rgba(202, 255, 234, 0.1);
  border-radius: 8px;
  background: rgba(2, 7, 6, 0.36);
}

body.mint-inspired .appchain-mini-metrics strong {
  font-size: 21px;
}

body.mint-inspired .appchain-breakdown {
  padding: 14px 16px 16px;
  display: grid;
  gap: 8px;
}

body.mint-inspired .appchain-breakdown div {
  min-height: 30px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(202, 255, 234, 0.08);
}

body.mint-inspired .appchain-breakdown strong {
  white-space: nowrap;
}

body.mint-inspired .appchain-advice-list {
  padding: 16px;
  display: grid;
  gap: 9px;
}

body.mint-inspired .appchain-advice {
  min-height: 66px;
  padding: 11px;
  display: grid;
  grid-template-columns: 8px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
}

body.mint-inspired .appchain-advice::before {
  width: 8px;
  min-height: 42px;
  height: 100%;
  content: "";
  border-radius: 99px;
  background: var(--green-strong);
}

body.mint-inspired .appchain-advice.is-warn::before {
  background: var(--amber);
}

body.mint-inspired .appchain-advice.is-info::before {
  background: var(--cyan);
}

body.mint-inspired .appchain-advice strong {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
}

body.mint-inspired .appchain-advice em {
  font-style: normal;
  color: var(--green-strong);
  border: 1px solid rgba(120, 255, 212, 0.18);
  border-radius: 999px;
  padding: 4px 7px;
  background: rgba(120, 255, 212, 0.06);
  font-size: 11px;
  white-space: nowrap;
}

body.mint-inspired .appchain-steps {
  padding: 16px;
  display: grid;
  gap: 8px;
}

body.mint-inspired .appchain-steps div {
  min-height: 62px;
  padding: 11px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  grid-template-areas:
    "num title"
    "num desc";
  gap: 10px;
  align-items: center;
}

body.mint-inspired .appchain-steps span {
  grid-area: num;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #06100d;
  background: linear-gradient(135deg, var(--green-strong), var(--cyan));
  border-radius: 8px;
  font-weight: 800;
  font-size: 12px;
}

body.mint-inspired .appchain-steps strong,
body.mint-inspired .appchain-steps small {
  display: block;
}

body.mint-inspired .appchain-steps strong {
  grid-area: title;
}

body.mint-inspired .appchain-steps small {
  grid-area: desc;
  min-width: 0;
  line-height: 1.45;
}

body.mint-inspired .appchain-api,
body.mint-inspired .appchain-modules {
  grid-column: 1 / -1;
}

body.mint-inspired .appchain-api pre {
  margin: 16px;
  min-height: 260px;
  max-height: 420px;
  overflow: auto;
  padding: 14px;
  border: 1px solid rgba(202, 255, 234, 0.11);
  border-radius: 8px;
  color: #dfffee;
  background:
    linear-gradient(180deg, rgba(120, 255, 212, 0.05), transparent),
    rgba(0, 4, 4, 0.82);
  font: 12px/1.55 "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  white-space: pre;
}

body.mint-inspired .appchain-card-head .mini-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

body.mint-inspired .appchain-card-head .mini-button i {
  width: 15px;
  height: 15px;
}

body.mint-inspired .appchain-module-grid {
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

body.mint-inspired .appchain-module-grid div {
  min-height: 112px;
  padding: 12px;
  display: grid;
  align-content: start;
  gap: 8px;
}

body.mint-inspired .appchain-module-grid strong {
  font-size: 13px;
}

body.mint-inspired .appchain-module-board {
  padding: 16px;
  display: grid;
  grid-template-columns: minmax(260px, 0.44fr) minmax(420px, 1fr);
  gap: 12px;
}

body.mint-inspired .appchain-module-rail {
  display: grid;
  gap: 8px;
  align-content: start;
}

body.mint-inspired .appchain-module-rail button {
  width: 100%;
  min-height: 70px;
  padding: 11px 12px;
  display: grid;
  gap: 5px;
  text-align: left;
  color: rgba(237, 255, 247, 0.76);
  border: 1px solid rgba(202, 255, 234, 0.11);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(120, 255, 212, 0.014)),
    rgba(2, 7, 6, 0.42);
}

body.mint-inspired .appchain-module-rail button:hover,
body.mint-inspired .appchain-module-rail button.is-active {
  color: var(--text);
  border-color: rgba(120, 255, 212, 0.32);
  background:
    linear-gradient(135deg, rgba(120, 255, 212, 0.18), rgba(73, 220, 237, 0.06)),
    rgba(2, 7, 6, 0.6);
}

body.mint-inspired .appchain-module-rail button.is-active {
  box-shadow: inset 3px 0 0 var(--green-strong), 0 14px 28px rgba(0, 0, 0, 0.18);
}

body.mint-inspired .appchain-module-rail strong {
  font-size: 13px;
  line-height: 1.25;
}

body.mint-inspired .appchain-module-rail span {
  color: rgba(221, 255, 242, 0.58);
  font-size: 11px;
  line-height: 1.4;
}

body.mint-inspired .appchain-module-detail {
  min-width: 0;
  min-height: 640px;
  border: 1px solid rgba(202, 255, 234, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(120, 255, 212, 0.08), rgba(73, 220, 237, 0.025)),
    rgba(2, 7, 6, 0.48);
  overflow: hidden;
}

body.mint-inspired .appchain-module-detail-head {
  min-height: 112px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid rgba(202, 255, 234, 0.1);
}

body.mint-inspired .appchain-module-detail-head .status-pill {
  align-self: flex-start;
  min-height: 30px;
  height: auto;
  padding: 6px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body.mint-inspired .appchain-module-detail h3 {
  margin: 4px 0 6px;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.05;
}

body.mint-inspired .appchain-module-detail p {
  margin: 0;
  max-width: 680px;
  color: rgba(221, 255, 242, 0.66);
  font-size: 13px;
  line-height: 1.55;
}

body.mint-inspired .appchain-module-stats {
  padding: 14px 16px 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}

body.mint-inspired .appchain-module-stats div {
  min-height: 74px;
  padding: 10px;
  display: grid;
  align-content: space-between;
  gap: 7px;
  border: 1px solid rgba(202, 255, 234, 0.1);
  border-radius: 8px;
  background: rgba(0, 8, 7, 0.42);
}

body.mint-inspired .appchain-module-stats span {
  color: rgba(221, 255, 242, 0.58);
  font-size: 11px;
}

body.mint-inspired .appchain-module-stats strong {
  font-size: 18px;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

body.mint-inspired .appchain-module-output {
  padding: 14px 16px 16px;
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(360px, 1fr);
  gap: 10px;
}

body.mint-inspired .appchain-module-output > div {
  min-width: 0;
  border: 1px solid rgba(202, 255, 234, 0.1);
  border-radius: 8px;
  background: rgba(0, 8, 7, 0.42);
}

body.mint-inspired .appchain-module-output .label {
  display: block;
  padding: 12px 12px 0;
}

body.mint-inspired .appchain-module-output ul {
  margin: 0;
  padding: 10px 12px 12px 28px;
  color: rgba(237, 255, 247, 0.8);
  font-size: 13px;
  line-height: 1.7;
}

body.mint-inspired .appchain-module-output li + li {
  margin-top: 6px;
}

body.mint-inspired .appchain-module-output pre {
  margin: 10px 12px 12px;
  min-height: 330px;
  max-height: 430px;
  overflow: auto;
  padding: 12px;
  color: #dfffee;
  border: 1px solid rgba(202, 255, 234, 0.1);
  border-radius: 8px;
  background: rgba(0, 4, 4, 0.78);
  font: 12px/1.55 "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  white-space: pre;
}

body.mint-inspired.light-mode .appchain-overview div,
body.mint-inspired.light-mode .appchain-card,
body.mint-inspired.light-mode .appchain-feature-grid label,
body.mint-inspired.light-mode .appchain-module-grid div,
body.mint-inspired.light-mode .appchain-module-detail,
body.mint-inspired.light-mode .appchain-module-rail button,
body.mint-inspired.light-mode .appchain-module-stats div,
body.mint-inspired.light-mode .appchain-module-output > div,
body.mint-inspired.light-mode .appchain-steps div,
body.mint-inspired.light-mode .appchain-advice,
body.mint-inspired.light-mode .token-admin-panel {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(225, 244, 239, 0.86)),
    #ffffff;
  border-color: rgba(7, 65, 48, 0.12);
  box-shadow: 0 18px 36px rgba(31, 49, 43, 0.08);
}

body.mint-inspired.light-mode .appchain-overview span,
body.mint-inspired.light-mode .appchain-quote-main span,
body.mint-inspired.light-mode .appchain-mini-metrics span,
body.mint-inspired.light-mode .appchain-module-grid span,
body.mint-inspired.light-mode .appchain-module-rail span,
body.mint-inspired.light-mode .appchain-module-stats span,
body.mint-inspired.light-mode .appchain-steps small,
body.mint-inspired.light-mode .appchain-advice span,
body.mint-inspired.light-mode .appchain-breakdown span {
  color: rgba(26, 43, 38, 0.68);
}

body.mint-inspired.light-mode .appchain-module-detail p,
body.mint-inspired.light-mode .appchain-module-output ul {
  color: rgba(26, 43, 38, 0.78);
}

body.mint-inspired.light-mode .appchain-chain-tabs,
body.mint-inspired.light-mode .appchain-mini-metrics div,
body.mint-inspired.light-mode .appchain-api pre,
body.mint-inspired.light-mode .appchain-module-output pre {
  background: rgba(255, 255, 255, 0.75);
}

body.mint-inspired.light-mode .appchain-api pre,
body.mint-inspired.light-mode .appchain-module-output pre {
  color: #12352b;
}

@media (max-width: 1180px) {
  body.mint-inspired .appchain-grid {
    grid-template-columns: 1fr;
  }

  body.mint-inspired .appchain-api,
  body.mint-inspired .appchain-modules {
    grid-column: auto;
  }

  body.mint-inspired .appchain-module-board,
  body.mint-inspired .appchain-module-output {
    grid-template-columns: 1fr;
  }

  body.mint-inspired .appchain-module-detail {
    min-height: 0;
  }
}

@media (max-width: 900px) {
  body.mint-inspired .appchain-overview,
  body.mint-inspired .appchain-module-grid,
  body.mint-inspired .appchain-module-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body.mint-inspired .appchain-overview,
  body.mint-inspired .appchain-form-grid,
  body.mint-inspired .appchain-feature-grid,
  body.mint-inspired .appchain-mini-metrics,
  body.mint-inspired .appchain-module-grid,
  body.mint-inspired .appchain-module-stats {
    grid-template-columns: 1fr;
  }

  body.mint-inspired .appchain-chain-tabs {
    grid-template-columns: 1fr;
  }

  body.mint-inspired .appchain-range {
    grid-template-columns: 1fr;
  }

  body.mint-inspired .appchain-card-head,
  body.mint-inspired .appchain-advice {
    align-items: start;
  }

  body.mint-inspired .appchain-card-head {
    flex-direction: column;
  }

  body.mint-inspired .appchain-module-board {
    padding: 12px;
  }

  body.mint-inspired .appchain-module-rail {
    grid-template-columns: 1fr;
  }

  body.mint-inspired .appchain-module-detail-head {
    flex-direction: column;
  }

  body.mint-inspired .appchain-module-output pre {
    min-height: 260px;
    max-height: 360px;
  }
}
