:root {
  color-scheme: dark;
  --bg: #07080d;
  --bg-soft: #0c0e16;
  --text: #f7f8fc;
  --text-soft: rgba(241, 244, 255, 0.68);
  --text-faint: rgba(241, 244, 255, 0.43);
  --stroke: rgba(255, 255, 255, 0.12);
  --stroke-strong: rgba(255, 255, 255, 0.2);
  --glass: rgba(255, 255, 255, 0.075);
  --glass-strong: rgba(255, 255, 255, 0.11);
  --purple: #a277ff;
  --blue: #6f9cff;
  --cyan: #58e6dc;
  --green: #43e5a0;
  --red: #ff6b7a;
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "Segoe UI", Inter, Helvetica, Arial, sans-serif;
  background:
    radial-gradient(circle at 50% -30%, rgba(101, 79, 184, 0.2), transparent 45%),
    linear-gradient(180deg, #090a11 0%, #07080d 52%, #090a11 100%);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
a {
  font: inherit;
}

button {
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a,
[role="button"] {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  color: #fff;
  background: rgba(162, 119, 255, 0.5);
}

.page {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
  overflow: hidden;
}

.ambient {
  position: fixed;
  z-index: -2;
  width: 52vw;
  height: 52vw;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.24;
  pointer-events: none;
  transform: translateZ(0);
}

.ambient-one {
  top: -28vw;
  left: -14vw;
  background: #7954e8;
}

.ambient-two {
  top: 18vh;
  right: -33vw;
  background: #1baea3;
  opacity: 0.16;
}

.ambient-three {
  bottom: -30vw;
  left: 20vw;
  background: #315fd5;
  opacity: 0.12;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.container {
  position: relative;
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.glass {
  border: 1px solid var(--stroke);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    var(--shadow);
  -webkit-backdrop-filter: blur(30px) saturate(145%);
  backdrop-filter: blur(30px) saturate(145%);
}

.site-header {
  position: fixed;
  top: 16px;
  right: 0;
  left: 0;
  z-index: 50;
}

.nav-shell {
  min-height: 70px;
  padding: 10px 12px 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(16, 18, 28, 0.64);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.11),
    0 18px 60px rgba(0, 0, 0, 0.28);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  backdrop-filter: blur(28px) saturate(160%);
}

.brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 15px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.07)),
    linear-gradient(145deg, #7453d9, #237e89);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 8px 24px rgba(0, 0, 0, 0.3);
}

.brand-mark img,
.token-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-name {
  max-width: 260px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-subtitle {
  margin-top: 3px;
  color: var(--text-faint);
  font-size: 10px;
  font-weight: 550;
  letter-spacing: 0.03em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 10px 13px;
  border-radius: 13px;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 580;
  transition: color 180ms ease, background 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  outline: none;
}

.network-pill {
  min-height: 44px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
  font-weight: 650;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.solana-mark {
  width: 18px;
  height: 15px;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 8px rgba(88, 230, 220, 0.2));
}

.network-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(67, 229, 160, 0.1), 0 0 18px rgba(67, 229, 160, 0.65);
}

.hero {
  padding: 160px 0 76px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(390px, 0.96fr);
  align-items: center;
  gap: clamp(46px, 7vw, 96px);
}

.eyebrow {
  width: fit-content;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 620;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.eyebrow svg {
  width: 14px;
  height: 14px;
  color: var(--cyan);
}

.hero-title {
  max-width: 700px;
  margin: 0 0 22px;
  font-size: clamp(52px, 4.2vw, 60px);
  font-weight: 690;
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.hero-title .accent {
  display: inline-block;
  color: transparent;
  background: linear-gradient(105deg, #f4f1ff 5%, #b59aff 42%, #65e5db 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lead {
  max-width: 590px;
  margin: 0;
  color: var(--text-soft);
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 420;
  line-height: 1.65;
  letter-spacing: -0.012em;
}

.hero-lead strong {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 620;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 11px;
}

.button {
  min-height: 54px;
  padding: 0 19px;
  border: 0;
  border-radius: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 650;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0) scale(0.985);
}

.button:focus-visible {
  outline: 2px solid rgba(111, 156, 255, 0.8);
  outline-offset: 3px;
}

.button svg {
  width: 17px;
  height: 17px;
}

.button-primary {
  color: #0a0b11;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    inset 0 1px 0 #fff,
    0 14px 32px rgba(0, 0, 0, 0.28);
}

.button-primary:hover {
  background: #fff;
}

.button-secondary {
  border: 1px solid var(--stroke);
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.09);
}

.security-note {
  margin-top: 25px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-faint);
  font-size: 11px;
  line-height: 1.5;
}

.security-note svg {
  width: 15px;
  height: 15px;
  margin-top: 1px;
  flex: 0 0 auto;
  color: rgba(88, 230, 220, 0.85);
}

.token-stage {
  position: relative;
  padding: 1px;
}

.token-stage::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -42px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(137, 101, 235, 0.23), transparent 68%);
  filter: blur(28px);
}

.token-card {
  position: relative;
  min-height: 0;
  padding: 16px;
  border-radius: 36px;
  overflow: hidden;
}

.token-card::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -28%;
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: rgba(141, 98, 255, 0.16);
  filter: blur(65px);
}

.token-card::after {
  content: "";
  position: absolute;
  bottom: -45%;
  left: -25%;
  width: 85%;
  height: 85%;
  border-radius: 50%;
  background: rgba(44, 205, 193, 0.11);
  filter: blur(65px);
}

.card-top,
.token-identity,
.price-block,
.card-stats,
.contract-preview,
.card-connect,
.data-source {
  position: relative;
  z-index: 1;
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.card-kicker {
  color: var(--text-faint);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-badge {
  padding: 7px 10px;
  border: 1px solid rgba(88, 230, 220, 0.13);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(205, 255, 248, 0.82);
  font-size: 9px;
  font-weight: 650;
  background: rgba(88, 230, 220, 0.07);
}

.status-badge::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.token-identity {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.token-logo {
  width: 96px;
  height: 96px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.06)),
    linear-gradient(145deg, #7753e1, #268b8f);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 18px 42px rgba(0, 0, 0, 0.32),
    0 0 0 7px rgba(255, 255, 255, 0.025),
    0 0 34px rgba(111, 156, 255, 0.08);
}

.token-name {
  max-width: 270px;
  overflow: hidden;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.token-symbol {
  margin-top: 7px;
  color: var(--text-faint);
  font-size: 12px;
  font-weight: 600;
}

.price-block {
  margin-top: 26px;
}

.price-label {
  color: var(--text-faint);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-line {
  margin-top: 7px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.token-price {
  font-size: clamp(35px, 4.1vw, 46px);
  font-weight: 640;
  line-height: 1;
  letter-spacing: -0.055em;
}

.change {
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 680;
}

.market-green {
  color: var(--green);
  background: rgba(67, 229, 160, 0.09);
}

.market-red {
  color: var(--red);
  background: rgba(255, 107, 122, 0.09);
}

.card-stats {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.stat-label {
  color: var(--text-faint);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stat-value {
  margin-top: 7px;
  font-size: 17px;
  font-weight: 620;
  letter-spacing: -0.025em;
}

.contract-preview {
  margin-top: 14px;
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--text-soft);
  font-size: 10px;
  font-weight: 560;
  background: rgba(255, 255, 255, 0.04);
}

.contract-preview span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.icon-button {
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  border-radius: 9px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--text-soft);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.075);
  transition: color 180ms ease, background 180ms ease;
}

.icon-button:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.icon-button svg {
  width: 13px;
  height: 13px;
}

.card-connect {
  width: 100%;
  min-height: 46px;
  margin-top: 10px;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 680;
  background: linear-gradient(105deg, #9668f4 0%, #6f91ee 52%, #50d9b5 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 14px 30px rgba(49, 35, 102, 0.3);
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.card-connect:hover {
  filter: brightness(1.06) saturate(1.05);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 17px 36px rgba(49, 35, 102, 0.36);
}

.card-connect:active {
  transform: translateY(0) scale(0.99);
}

.card-connect:focus-visible {
  outline: 2px solid rgba(111, 156, 255, 0.85);
  outline-offset: 3px;
}

.card-connect svg {
  width: 16px;
  height: 16px;
}

.data-source {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.32);
  font-size: 9px;
  text-align: center;
}

.airdrop-card {
  min-height: 430px;
  padding: 24px;
  background:
    radial-gradient(circle at 83% 18%, rgba(138, 91, 245, 0.28), transparent 34%),
    radial-gradient(circle at 18% 92%, rgba(48, 202, 179, 0.13), transparent 38%),
    linear-gradient(145deg, rgba(14, 17, 35, 0.96), rgba(16, 23, 38, 0.92));
}

.airdrop-card::before {
  inset: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 36px 36px;
  filter: none;
  opacity: 0.42;
}

.airdrop-live-badge,
.airdrop-card-copy,
.airdrop-card-art,
.airdrop-art-caption {
  position: relative;
  z-index: 2;
}

.airdrop-live-badge {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #07130e;
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #75f0a8, #5de394);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    0 8px 22px rgba(67, 229, 160, 0.17),
    0 0 20px rgba(67, 229, 160, 0.09);
}

.airdrop-card-copy {
  max-width: 245px;
  margin-top: 48px;
  padding-right: 4px;
}

.airdrop-card-label {
  color: rgba(241, 244, 255, 0.58);
  font-size: 9px;
  font-weight: 720;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.airdrop-card-symbol {
  margin-top: 7px;
  overflow: hidden;
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.05em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.airdrop-card-word {
  margin-top: 3px;
  color: transparent;
  font-size: 42px;
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.055em;
  background: linear-gradient(102deg, #9e70ff 4%, #7298f7 50%, #56dfba 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.airdrop-card-description {
  max-width: 230px;
  margin: 18px 0 0;
  color: rgba(241, 244, 255, 0.48);
  font-size: 10px;
  line-height: 1.55;
}

.airdrop-card-description strong {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 610;
}

.token-card .airdrop-card-art {
  position: absolute;
  top: 79px;
  right: 25px;
  width: 178px;
  height: 178px;
  padding: 5px;
  border: 6px solid rgba(234, 231, 255, 0.9);
  border-radius: 45px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.06));
  box-shadow:
    0 24px 45px rgba(0, 0, 0, 0.34),
    0 0 0 10px rgba(157, 112, 255, 0.08),
    0 0 34px rgba(111, 156, 255, 0.12);
}

.token-card .airdrop-card-art img {
  border-radius: 34px;
}

.airdrop-art-caption {
  position: absolute;
  top: 273px;
  right: 24px;
  width: 180px;
  overflow: hidden;
  color: rgba(241, 244, 255, 0.38);
  font-size: 8px;
  font-weight: 560;
  line-height: 1.35;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.airdrop-mini-market {
  position: absolute;
  top: 295px;
  right: 24px;
  left: 24px;
  z-index: 2;
}

.airdrop-mini-price {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.airdrop-mini-label {
  display: block;
  color: rgba(241, 244, 255, 0.36);
  font-size: 7px;
  font-weight: 680;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.airdrop-mini-price strong {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 20px;
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.035em;
}

.airdrop-mini-change {
  padding: 6px 9px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 680;
  white-space: nowrap;
}

.airdrop-card .card-connect {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  width: auto;
  min-height: 60px;
  margin: 0;
  border-radius: 18px;
  font-size: 15px;
}

.airdrop-card .card-connect small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 8px;
  font-weight: 570;
}

.airdrop-card .card-connect svg {
  width: 18px;
  height: 18px;
}

.section {
  padding: 42px 0;
}

.section-header {
  margin-bottom: 24px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.section-eyebrow {
  color: rgba(178, 155, 255, 0.82);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-title {
  margin: 8px 0 0;
  font-size: clamp(31px, 4vw, 48px);
  font-weight: 640;
  line-height: 1;
  letter-spacing: -0.05em;
}

.section-copy {
  max-width: 430px;
  margin: 0;
  color: var(--text-faint);
  font-size: 12px;
  line-height: 1.55;
  text-align: right;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.metric-card {
  position: relative;
  min-height: 176px;
  padding: 21px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.metric-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -70px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--metric-glow, rgba(162, 119, 255, 0.18));
  filter: blur(35px);
}

.metric-icon {
  width: 35px;
  height: 35px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.055);
}

.metric-icon svg {
  width: 16px;
  height: 16px;
}

.metric-label {
  margin-top: 24px;
  color: var(--text-faint);
  font-size: 10px;
  font-weight: 600;
}

.metric-value {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  overflow: hidden;
  font-size: clamp(24px, 2.7vw, 34px);
  font-weight: 630;
  letter-spacing: -0.045em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.metric-detail {
  position: relative;
  z-index: 1;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 9px;
}

.details-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 16px;
}

.detail-panel {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.panel-header {
  padding: 25px 26px 21px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.panel-title {
  font-size: 18px;
  font-weight: 620;
  letter-spacing: -0.025em;
}

.panel-subtitle {
  margin-top: 5px;
  color: var(--text-faint);
  font-size: 10px;
}

.source-pill {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  color: var(--text-faint);
  font-size: 9px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.04);
}

.source-pill.campaign-live {
  border-color: rgba(67, 229, 160, 0.14);
  color: rgba(153, 245, 203, 0.82);
  background: rgba(67, 229, 160, 0.07);
}

.market-rows {
  padding: 8px 26px;
}

.market-row {
  min-height: 74px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.market-row:last-child {
  border-bottom: 0;
}

.row-label {
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 530;
}

.row-helper {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 9px;
}

.row-value {
  max-width: 55%;
  overflow: hidden;
  font-size: 14px;
  font-weight: 620;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.reward-value {
  color: #c6b3ff;
}

.claimed-value {
  color: var(--green);
}

.availability-value {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: rgba(255, 255, 255, 0.86);
}

.availability-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(67, 229, 160, 0.08), 0 0 14px rgba(67, 229, 160, 0.5);
}

.identity-content {
  padding: 25px 26px 26px;
}

.identity-hero {
  display: flex;
  align-items: center;
  gap: 14px;
}

.identity-mini-logo {
  width: 52px;
  height: 52px;
  border-radius: 17px;
}

.identity-name {
  max-width: 270px;
  overflow: hidden;
  font-size: 17px;
  font-weight: 620;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.identity-symbol {
  margin-top: 5px;
  color: var(--text-faint);
  font-size: 10px;
}

.contract-block {
  margin-top: 24px;
}

.contract-label {
  margin-bottom: 9px;
  color: var(--text-faint);
  font-size: 9px;
  font-weight: 620;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contract-full {
  min-height: 80px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.contract-value {
  min-width: 0;
  overflow-wrap: anywhere;
  color: rgba(255, 255, 255, 0.66);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 10px;
  line-height: 1.5;
}

.external-links {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.external-link {
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-soft);
  font-size: 10px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.04);
  transition: color 180ms ease, background 180ms ease;
}

.external-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.external-link svg {
  width: 13px;
  height: 13px;
}

.safety-card {
  margin: 18px 0 60px;
  padding: 24px 26px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.safety-copy {
  display: flex;
  align-items: center;
  gap: 15px;
}

.safety-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(88, 230, 220, 0.13);
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--cyan);
  background: rgba(88, 230, 220, 0.07);
}

.safety-icon svg {
  width: 19px;
  height: 19px;
}

.safety-title {
  font-size: 13px;
  font-weight: 620;
}

.safety-text {
  max-width: 720px;
  margin-top: 4px;
  color: var(--text-faint);
  font-size: 10px;
  line-height: 1.5;
}

.safe-label {
  color: rgba(255, 255, 255, 0.44);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer {
  padding: 0 0 32px;
}

.footer-inner {
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 9px;
}

.footer-network {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-network .network-dot {
  width: 5px;
  height: 5px;
  box-shadow: none;
}

body.loading {
  overflow: hidden;
}

.loader-screen {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(108, 77, 193, 0.2), transparent 34%),
    rgba(7, 8, 13, 0.94);
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  opacity: 1;
  visibility: visible;
  transition: opacity 480ms ease, visibility 480ms ease;
}

.loader-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-glow {
  position: absolute;
  width: min(460px, 86vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(
    from 180deg,
    rgba(153, 69, 255, 0.08),
    rgba(111, 156, 255, 0.2),
    rgba(20, 241, 149, 0.08),
    rgba(153, 69, 255, 0.08)
  );
  filter: blur(65px);
  animation: loader-orbit 7s linear infinite;
}

.loader-content {
  position: relative;
  width: min(330px, calc(100% - 40px));
  padding: 34px 28px 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 30px 90px rgba(0, 0, 0, 0.45);
  -webkit-backdrop-filter: blur(30px) saturate(150%);
  backdrop-filter: blur(30px) saturate(150%);
}

.loader-logo {
  position: relative;
  width: 82px;
  height: 82px;
  margin: 0 auto 23px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 25px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.065);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 45px rgba(0, 0, 0, 0.28),
    0 0 40px rgba(111, 156, 255, 0.1);
  animation: loader-breathe 1.8s ease-in-out infinite;
}

.loader-logo::before {
  content: "";
  position: absolute;
  inset: -9px;
  border: 1px solid rgba(111, 156, 255, 0.13);
  border-radius: 31px;
  animation: loader-ring 1.8s ease-out infinite;
}

.loader-logo svg {
  width: 43px;
  height: auto;
  filter: drop-shadow(0 0 14px rgba(88, 230, 220, 0.18));
}

.loader-title {
  color: rgba(255, 255, 255, 0.94);
  font-size: 17px;
  font-weight: 650;
  letter-spacing: -0.025em;
}

.loader-subtitle {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  line-height: 1.5;
}

.loader-progress {
  position: relative;
  height: 4px;
  margin-top: 25px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.07);
}

.loader-progress span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 42%;
  border-radius: inherit;
  background: linear-gradient(90deg, #9945ff, #6f9cff, #14f195);
  box-shadow: 0 0 14px rgba(88, 230, 220, 0.3);
  animation: loader-progress 1.35s ease-in-out infinite;
}

@keyframes loader-breathe {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-3px) scale(1.025);
  }
}

@keyframes loader-ring {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  45% {
    opacity: 0.7;
  }
  100% {
    opacity: 0;
    transform: scale(1.16);
  }
}

@keyframes loader-progress {
  0% {
    left: -45%;
  }
  55%,
  100% {
    left: 105%;
  }
}

@keyframes loader-orbit {
  to {
    transform: rotate(360deg);
  }
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 100;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 600;
  background: rgba(24, 27, 38, 0.84);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.45);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.97);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.toast svg {
  width: 15px;
  height: 15px;
  color: var(--green);
}

.loading [data-market] {
  min-width: 72px;
  color: transparent !important;
  border-radius: 7px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.05));
  background-size: 220% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}

@keyframes shimmer {
  to {
    background-position: -220% 0;
  }
}

@media (max-width: 1100px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 140px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .token-stage {
    width: min(100%, 580px);
    margin-inline: auto;
  }

  .metric-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .details-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    top: 10px;
  }

  .nav-shell {
    min-height: 62px;
    padding: 8px 9px 8px 10px;
    border-radius: 20px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .brand-name {
    max-width: 148px;
    font-size: 12px;
  }

  .brand-subtitle {
    font-size: 8px;
  }

  .network-pill {
    min-height: 40px;
    padding: 0 12px;
    border-radius: 13px;
    font-size: 9px;
  }

  .hero {
    padding: 122px 0 45px;
  }

  .hero-grid {
    gap: 44px;
  }

  .token-stage {
    order: -1;
  }

  .hero-title {
    margin-top: 21px;
    font-size: clamp(46px, 15vw, 64px);
    letter-spacing: -0.06em;
  }

  .hero-lead {
    font-size: 15px;
    line-height: 1.58;
  }

  .hero-actions {
    align-items: stretch;
  }

  .button {
    flex: 1 1 100%;
  }

  .security-note {
    font-size: 10px;
  }

  .token-card {
    min-height: 0;
    padding: 15px;
    border-radius: 32px;
  }

  .airdrop-card {
    min-height: 360px;
    padding: 18px;
  }

  .airdrop-card-copy {
    max-width: 190px;
    margin-top: 42px;
  }

  .airdrop-card-label {
    font-size: 8px;
  }

  .airdrop-card-symbol {
    margin-top: 6px;
    font-size: 30px;
  }

  .airdrop-card-word {
    font-size: 32px;
  }

  .airdrop-card-description {
    max-width: 185px;
    margin-top: 13px;
    font-size: 8.5px;
    line-height: 1.5;
  }

  .airdrop-card .token-logo.airdrop-card-art {
    top: 72px;
    right: 18px;
    width: 126px;
    height: 126px;
    padding: 4px;
    border-width: 5px;
    border-radius: 34px;
    box-shadow:
      0 20px 36px rgba(0, 0, 0, 0.32),
      0 0 0 8px rgba(157, 112, 255, 0.07),
      0 0 28px rgba(111, 156, 255, 0.1);
  }

  .airdrop-card .token-logo.airdrop-card-art img {
    border-radius: 24px;
  }

  .airdrop-art-caption {
    top: 210px;
    right: 16px;
    width: 132px;
    font-size: 7px;
  }

  .airdrop-mini-market {
    top: 233px;
    right: 18px;
    left: 18px;
  }

  .airdrop-mini-price strong {
    font-size: 18px;
  }

  .airdrop-mini-change {
    padding: 5px 8px;
    font-size: 8px;
  }

  .airdrop-card .card-connect {
    right: 18px;
    bottom: 18px;
    left: 18px;
    min-height: 54px;
    border-radius: 16px;
    font-size: 13px;
  }

  .token-identity {
    margin-top: 22px;
  }

  .token-card .token-logo {
    width: 86px;
    height: 86px;
    border-radius: 27px;
  }

  .identity-mini-logo {
    width: 52px;
    height: 52px;
    border-radius: 17px;
  }

  .price-block {
    margin-top: 24px;
  }

  .card-stats {
    margin-top: 18px;
    padding-top: 15px;
    gap: 14px;
  }

  .contract-preview {
    margin-top: 12px;
  }

  .card-connect {
    min-height: 44px;
  }

  .section {
    padding: 34px 0;
  }

  .section-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .section-copy {
    text-align: left;
  }

  .metric-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .metric-card {
    min-height: 158px;
    padding: 17px;
  }

  .metric-value {
    font-size: 23px;
  }

  .panel-header,
  .identity-content {
    padding-right: 19px;
    padding-left: 19px;
  }

  .market-rows {
    padding-right: 19px;
    padding-left: 19px;
  }

  .safety-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .safe-label {
    padding-left: 59px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 410px) {
  .brand-subtitle {
    display: none;
  }

  .brand-name {
    max-width: 125px;
  }

  .metric-grid {
    grid-template-columns: 1fr;
  }

  .metric-card {
    min-height: 148px;
  }

  .external-links {
    grid-template-columns: 1fr;
  }
}

@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;
  }
}
