:root {
  color-scheme: dark;

  /* Base dark */
  --ink: #0a0b14;
  --ink-soft: #12141f;
  --ink-card: #181b2a;
  --ink-elevated: #1f2336;

  /* Text */
  --text: #fff7ed;
  --text-soft: rgba(255, 247, 237, 0.82);
  --muted: rgba(255, 247, 237, 0.62);

  /* Borders */
  --line: rgba(255, 247, 237, 0.1);
  --line-strong: rgba(255, 247, 237, 0.18);

  /* Surfaces */
  --cream: #fff5e5;
  --cream-soft: #fdf0db;

  /* Brand */
  --mint: #84e3c4;
  --mint-bright: #5ee0b8;
  --teal: #0fa88c;
  --teal-deep: #0a7560;
  --coral: #ff725e;
  --coral-soft: #ff8a73;
  --gold: #ffca4f;
  --gold-bright: #ffd770;
  --violet: #a976ff;
  --violet-soft: #c4a3ff;
  --rose: #ff91b7;
  --sky: #77c9ff;
  --solana-green: #14f195;
  --solana-cyan: #80ecff;
  --solana-purple: #9945ff;

  /* Shadows */
  --shadow-sm: 0 4px 18px rgba(0, 0, 0, 0.22);
  --shadow-md: 0 14px 36px rgba(0, 0, 0, 0.28);
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.34);
  --shadow-brutal: 10px 10px 0 #0a0b14;
  --shadow-brutal-lg: 14px 14px 0 #0a0b14;

  /* Glow */
  --glow-mint: 0 0 60px rgba(132, 227, 196, 0.32);
  --glow-gold: 0 0 60px rgba(255, 202, 79, 0.32);
  --glow-coral: 0 0 60px rgba(255, 114, 94, 0.32);
  --glow-violet: 0 0 60px rgba(169, 118, 255, 0.32);

  /* Radii */
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Type */
  --font-display: "Space Grotesk", "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;

  /* Gradients */
  --grad-primary: linear-gradient(135deg, var(--mint) 0%, var(--gold) 60%, var(--coral) 100%);
  --grad-card: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015));
  --grad-card-hover: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04));
  --grad-border: linear-gradient(135deg, rgba(132, 227, 196, 0.6), rgba(255, 202, 79, 0.3), rgba(255, 114, 94, 0.5));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 100px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: var(--font-body);
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(132, 227, 196, 0.07), transparent 60%),
    radial-gradient(ellipse 70% 50% at 90% 10%, rgba(255, 202, 79, 0.06), transparent 60%),
    radial-gradient(ellipse 90% 60% at 50% 100%, rgba(169, 118, 255, 0.07), transparent 60%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(0deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px) 0 0 / 48px 48px,
    var(--ink);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
select {
  font: inherit;
}

::selection {
  background: var(--gold);
  color: #151106;
}

.content-grid {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 120px 0;
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  width: 100%;
  margin: 0;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(10, 11, 20, 0.6);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  transition: background 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(10, 11, 20, 0.85);
  border-bottom-color: rgba(255, 247, 237, 0.16);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 4px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  overflow: hidden;
  background: #06124a;
  color: transparent;
  box-shadow: 0 0 0 3px var(--mint), 0 8px 24px rgba(255, 202, 79, 0.4);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  flex: 0 0 auto;
}

.brand-mark img,
.token-inline-icon {
  display: block;
  border-radius: 50%;
  object-fit: cover;
  background: #06124a;
}

.brand-mark img {
  width: 100%;
  height: 100%;
}

.token-inline-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.22);
}

.brand-network,
.network-badge,
.network-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(128, 236, 255, 0.32);
  border-radius: 999px;
  background: rgba(153, 69, 255, 0.12);
  color: rgba(255, 247, 237, 0.9);
}

.brand-network {
  padding: 4px 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
}

.solana-logo {
  width: 24px;
  height: auto;
  flex: 0 0 auto;
}

.solana-logo-inline {
  width: 22px;
}

.brand .solana-logo {
  width: 18px;
}

.network-badge .solana-logo {
  width: 20px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  color: rgba(255, 247, 237, 0.74);
  font-size: 0.8rem;
  font-weight: 600;
  align-items: center;
}

.main-nav a,
.nav-dropdown-toggle {
  position: relative;
  padding: 10px 2px;
  transition: color 200ms ease;
}

.main-nav a::after,
.nav-dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
  transition: width 220ms ease, left 220ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible {
  color: var(--text);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.nav-dropdown-toggle:hover::after,
.nav-dropdown-toggle:focus-visible::after {
  left: 0;
  width: 100%;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

/* Invisible hover bridge that covers the gap between the toggle and submenu
   so the cursor can travel down (or laterally) without losing :hover. */
.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: min(380px, calc(100vw - 28px));
  height: 24px;
  background: transparent;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown-toggle::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.72;
  order: 2;
  transform: translateY(1px);
}

.ecosystem-submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 45;
  display: grid;
  gap: 4px;
  width: min(360px, calc(100vw - 28px));
  padding: 10px;
  border: 1px solid rgba(255, 247, 237, 0.16);
  border-radius: var(--radius-sm);
  background: rgba(14, 16, 27, 0.96);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.ecosystem-submenu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: rgba(255, 247, 237, 0.78);
  font-size: 0.74rem;
  line-height: 1.25;
  letter-spacing: 0.02em;
}

.ecosystem-submenu a::after {
  display: none;
}

.ecosystem-submenu a:hover,
.ecosystem-submenu a:focus-visible {
  background: rgba(255, 202, 79, 0.1);
  color: var(--text);
}

.nav-dropdown:hover .ecosystem-submenu,
.nav-dropdown:focus-within .ecosystem-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.header-actions .btn,
.header-actions .lang-toggle {
  white-space: nowrap;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.005em;
  font-size: 0.96rem;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease,
    filter 200ms ease;
  position: relative;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: #151106;
  box-shadow: 0 14px 36px rgba(255, 202, 79, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 18px 48px rgba(255, 202, 79, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  filter: brightness(1.05);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--mint) 0%, var(--mint-bright) 100%);
  color: #071f1a;
  box-shadow: 0 14px 36px rgba(132, 227, 196, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  box-shadow: 0 18px 48px rgba(132, 227, 196, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  filter: brightness(1.05);
}

.btn-ghost {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.32);
}

.wallet-button.is-connected {
  border-color: #071f1a;
  background: var(--mint);
  color: #071f1a;
  box-shadow: 0 10px 28px rgba(132, 227, 196, 0.28);
}

.wallet-button {
  display: none !important;
}

.btn-dark {
  width: 100%;
  background: linear-gradient(180deg, #1a1d2e, #0e1019);
  color: var(--text);
  border: 1px solid var(--line-strong);
}

.btn-dark:hover {
  background: linear-gradient(180deg, #20243a, #12141f);
}

.btn-small {
  min-height: 40px;
  padding: 0 14px;
  font-size: 0.82rem;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px var(--mint);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--ink);
}

/* ============ HERO ============ */
.hero {
  padding-top: 56px;
  padding-bottom: 48px;
  background:
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(132, 227, 196, 0.18), transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 70%, rgba(255, 114, 94, 0.18), transparent 60%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(169, 118, 255, 0.16), transparent 60%),
    linear-gradient(180deg, rgba(10, 11, 20, 0.3), rgba(10, 11, 20, 0.95));
}

.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle 320px at 75% 38%, rgba(132, 227, 196, 0.25), transparent 70%),
    radial-gradient(circle 280px at 20% 65%, rgba(255, 202, 79, 0.12), transparent 70%);
  mix-blend-mode: screen;
  z-index: 0;
}

.stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.7;
  background-image:
    radial-gradient(circle, rgba(255, 247, 237, 0.85) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(255, 202, 79, 0.6) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(132, 227, 196, 0.4) 0 1px, transparent 1.5px);
  background-position: 0 0, 38px 62px, 92px 24px;
  background-size: 110px 110px, 152px 152px, 196px 196px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 32px 48px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 202, 79, 0.32);
  border-radius: 999px;
  background: rgba(255, 202, 79, 0.08);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(255, 202, 79, 0.22);
  animation: pulseDot 1.8s ease-in-out infinite;
}

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

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
  max-width: 980px;
  background: linear-gradient(180deg, var(--text) 0%, rgba(255, 247, 237, 0.78) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h1 {
  margin-bottom: 14px;
  font-size: clamp(2.4rem, 4.4vw, 3.7rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 5.4vw, 4.4rem);
}

h3 {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.12rem;
  letter-spacing: -0.01em;
  line-height: 1.22;
}

p {
  color: var(--text-soft);
}

.hero-motto {
  margin: 0 0 18px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.9vw, 1.4rem);
  font-weight: 700;
  line-height: 1.2;
}

.hero-subtitle,
.section-lead {
  color: var(--text);
  font-size: clamp(1.05rem, 1.85vw, 1.36rem);
  line-height: 1.46;
  font-weight: 500;
}

.hero-subtitle {
  margin-bottom: 24px;
  max-width: 600px;
}

.hero-copy p:not(.eyebrow) {
  max-width: 640px;
}

.trust-copy {
  margin: 20px 0 0;
  padding: 12px 14px;
  border-left: 3px solid var(--mint);
  background: linear-gradient(90deg, rgba(132, 227, 196, 0.08), transparent);
  color: rgba(255, 247, 237, 0.74);
  font-size: 0.92rem;
}

.network-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
}

.network-badge {
  padding: 9px 13px;
  box-shadow: 0 12px 28px rgba(20, 241, 149, 0.12);
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0;
}

.network-badge-muted {
  border-color: rgba(20, 241, 149, 0.3);
  background: rgba(20, 241, 149, 0.1);
  color: rgba(255, 247, 237, 0.86);
}

.hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-height: 520px;
  display: grid;
  place-items: center;
  justify-self: center;
}

.hero-halo {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(132, 227, 196, 0.35), transparent 60%),
    radial-gradient(circle at 30% 70%, rgba(255, 202, 79, 0.2), transparent 60%);
  filter: blur(20px);
  animation: haloDrift 12s ease-in-out infinite;
}

.hero-cat {
  position: relative;
  z-index: 2;
  width: min(88%, 460px);
  max-height: 100%;
  object-fit: contain;
  border-radius: 42% 58% 46% 54% / 44% 50% 50% 56%;
  filter: drop-shadow(0 38px 44px rgba(0, 0, 0, 0.4))
    drop-shadow(0 0 80px rgba(132, 227, 196, 0.25));
  animation: floatCat 5.2s ease-in-out infinite;
}

.coin-ring {
  position: absolute;
  inset: 5%;
  border: 1.5px dashed rgba(255, 202, 79, 0.42);
  border-radius: 50%;
  animation: spinRing 36s linear infinite;
  z-index: 1;
}

.coin-ring::before {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px dashed rgba(132, 227, 196, 0.25);
  border-radius: 50%;
}

.coin-ring span {
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 80px;
  min-height: 36px;
  padding: 7px 12px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--cream);
  color: #151106;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  animation: counterSpin 36s linear infinite;
}

.coin-ring span:nth-child(1) {
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
}

.coin-ring span:nth-child(2) {
  right: -24px;
  top: 42%;
  background: var(--mint);
}

.coin-ring span:nth-child(3) {
  bottom: -18px;
  left: 48%;
  background: var(--coral);
  color: var(--cream);
}

.coin-ring span:nth-child(4) {
  left: -22px;
  top: 42%;
  background: var(--violet);
  color: var(--cream);
}

.floating-stat {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 170px;
  padding: 12px 16px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: #151106;
  box-shadow: var(--shadow-brutal);
  animation: floatStat 5s ease-in-out infinite;
}

.floating-stat-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  flex-shrink: 0;
}

.floating-stat-icon-solana {
  background: linear-gradient(135deg, #191b28 0%, #070814 100%);
}

.floating-stat-icon .solana-logo {
  width: 24px;
}

.floating-stat > div {
  display: flex;
  flex-direction: column;
}

.floating-stat strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
}

.floating-stat span:not(.floating-stat-icon) {
  color: #55493a;
  font-size: 0.74rem;
  font-weight: 600;
}

.stat-a {
  left: -10px;
  bottom: 18%;
  transform: rotate(-4deg);
  animation-delay: 0.3s;
}

.stat-b {
  right: -10px;
  top: 22%;
  transform: rotate(4deg);
  animation-delay: 0.9s;
}

.hero-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: center;
  margin-top: 32px;
  padding: 20px 22px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(10, 11, 20, 0.5);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  overflow: hidden;
  isolation: isolate;
  z-index: 1;
}

.hero-panel-section {
  display: grid;
  gap: 10px;
}

.panel-label {
  color: rgba(255, 247, 237, 0.58);
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.panel-progress {
  gap: 14px;
}

.panel-cta {
  align-self: stretch;
  display: grid;
}

.panel-cta .btn-dark {
  min-width: 200px;
  height: 100%;
  min-height: 56px;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: var(--grad-border);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(58px, 1fr));
  gap: 8px;
}

.countdown div,
.mini-metrics div,
.info-grid div,
.token-meta div {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  transition: border-color 200ms ease, background 200ms ease;
}

.countdown div {
  padding: 10px 6px;
  text-align: center;
}

.countdown div:hover {
  border-color: rgba(255, 202, 79, 0.32);
  background: rgba(255, 202, 79, 0.06);
}

.countdown strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold);
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

/* ===== Airdrop "letrero" CTA ===== */
.panel-airdrop-call {
  padding: 0;
  align-self: stretch;
}

.airdrop-call {
  position: relative;
  display: block;
  padding: 30px 28px 0;
  border: 2.5px solid var(--ink);
  border-radius: var(--radius-md);
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(255, 202, 79, 0.42), transparent 60%),
    radial-gradient(ellipse 70% 80% at 0% 100%, rgba(255, 114, 94, 0.36), transparent 60%),
    linear-gradient(135deg, #fff7e8 0%, #ffe7c0 100%);
  box-shadow: 6px 6px 0 0 rgba(17, 19, 29, 0.92);
  color: #151106;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.airdrop-call::before {
  content: "";
  position: absolute;
  inset: -60%;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    rgba(255, 202, 79, 0.55) 18%,
    transparent 36%,
    rgba(255, 114, 94, 0.45) 54%,
    transparent 72%
  );
  animation: airdropSweep 9s linear infinite;
  pointer-events: none;
  opacity: 0.45;
  z-index: 0;
}

.airdrop-call::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: calc(var(--radius-md) - 6px);
  background: linear-gradient(135deg, #fff7e8 0%, #fff1d3 100%);
  z-index: 0;
}

.airdrop-call > * {
  position: relative;
  z-index: 1;
}

.airdrop-call:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 0 rgba(17, 19, 29, 0.92);
}

.airdrop-call:hover .airdrop-call-cta {
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 0 var(--ink);
}

.airdrop-call:hover .airdrop-call-cta svg {
  transform: translateX(4px);
}

@keyframes airdropSweep {
  to { transform: rotate(360deg); }
}

/* LIVE flag — centered as a ribbon on top of the letrero */
.airdrop-call-flash {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--coral);
  color: #fff7ed;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 3px 3px 0 0 var(--ink);
  white-space: nowrap;
  animation: airdropFlashPulse 1.6s ease-in-out infinite;
}

.airdrop-call-flash-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff7ed;
  box-shadow: 0 0 0 4px rgba(255, 247, 237, 0.32);
}

.airdrop-countdown-ribbon {
  max-width: calc(100% - 28px);
  gap: 16px;
  padding: 12px 24px;
  letter-spacing: 0.04em;
}

.airdrop-countdown-ribbon .airdrop-call-flash-dot {
  width: 18px;
  height: 18px;
  box-shadow: 0 0 0 7px rgba(255, 247, 237, 0.28);
}

.airdrop-countdown-value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-variant-numeric: tabular-nums;
}

.airdrop-countdown-value > span {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  line-height: 1;
}

.airdrop-countdown-value b {
  font-size: 1.68rem;
  font-weight: 900;
}

.airdrop-countdown-value em {
  font-size: 1.24rem;
  font-style: normal;
  font-weight: 800;
}

.airdrop-countdown-ribbon + .airdrop-call-inner {
  padding-top: 64px;
}

@keyframes airdropFlashPulse {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.05); }
}

/* 3-column distribution: pitch | prize | action */
.airdrop-call-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding-top: 28px;
  padding-bottom: 22px;
}

.airdrop-call-pitch {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.airdrop-call-overline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 4px 10px;
  border: 1.5px solid rgba(17, 19, 29, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c75135;
}

.airdrop-call-overline::before {
  content: "✦";
  color: var(--gold);
}

.airdrop-call-title {
  margin: 4px 0 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #151106;
  text-shadow: 2px 2px 0 rgba(255, 202, 79, 0.5);
}

.airdrop-call-title span {
  background: linear-gradient(135deg, #c75135 0%, #ff725e 45%, #ffca4f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  font-weight: 900;
}

.airdrop-call-sub {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(21, 17, 6, 0.74);
}

/* Center: prize showcase with token + huge number */
.airdrop-call-prize {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  justify-self: center;
  padding: 18px 24px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 202, 79, 0.45), transparent 60%),
    linear-gradient(135deg, #151106 0%, #2a2010 100%);
  box-shadow: 4px 4px 0 0 var(--ink);
  color: #fff7ed;
  min-width: 240px;
}

.prize-rings {
  position: absolute;
  top: 50%;
  left: 36px;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  pointer-events: none;
  z-index: 0;
}

.prize-rings span {
  position: absolute;
  inset: 0;
  border: 1.5px dashed rgba(255, 202, 79, 0.45);
  border-radius: 50%;
  animation: prizeRing 6s linear infinite;
}

.prize-rings span:nth-child(2) {
  inset: 8px;
  border-style: dotted;
  border-color: rgba(255, 247, 237, 0.32);
  animation-duration: 9s;
  animation-direction: reverse;
}

.prize-rings span:nth-child(3) {
  inset: 16px;
  border-style: solid;
  border-color: rgba(255, 114, 94, 0.4);
  animation-duration: 12s;
}

@keyframes prizeRing {
  to { transform: rotate(360deg); }
}

.prize-token {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2.5px solid var(--gold);
  background: #fff;
  box-shadow:
    0 0 0 4px rgba(255, 202, 79, 0.22),
    0 8px 18px rgba(255, 114, 94, 0.32);
  z-index: 1;
  animation: prizeFloat 3.6s ease-in-out infinite;
}

@keyframes prizeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.prize-amount {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1;
}

.prize-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 247, 237, 0.6);
}

.prize-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 4.2vw, 3rem);
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #ffca4f 0%, #fff3c2 60%, #ff9a5e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 24px rgba(255, 202, 79, 0.18);
}

.prize-unit {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.prize-spark {
  position: absolute;
  font-size: 0.95rem;
  color: var(--gold);
  pointer-events: none;
  animation: prizeSparkle 2.4s ease-in-out infinite;
}

.prize-spark-a {
  top: 12px;
  right: 14px;
  animation-delay: 0s;
}

.prize-spark-b {
  bottom: 10px;
  left: 16px;
  animation-delay: 0.6s;
  font-size: 0.7rem;
}

.prize-spark-c {
  top: 50%;
  right: 6px;
  animation-delay: 1.2s;
  font-size: 0.8rem;
}

@keyframes prizeSparkle {
  0%, 100% { opacity: 0.3; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.15); }
}

/* Right: CTA + foot text */
.airdrop-call-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.airdrop-call-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  background: linear-gradient(135deg, #151106 0%, #2a2010 100%);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.94rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 3px 3px 0 0 var(--ink);
  transition: transform 200ms ease, box-shadow 200ms ease;
  white-space: nowrap;
}

.airdrop-call-cta svg {
  width: 20px;
  height: 20px;
  transition: transform 220ms ease;
}

.airdrop-call-foot {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(21, 17, 6, 0.6);
  text-align: right;
}

.airdrop-call-foot .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2bbd80;
  box-shadow: 0 0 0 3px rgba(43, 189, 128, 0.18);
}

/* Marquee */
.airdrop-call-marquee {
  margin: 0 -28px;
  padding: 10px 0;
  border-top: 2px dashed rgba(17, 19, 29, 0.22);
  background: rgba(255, 247, 232, 0.72);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.airdrop-call-marquee-track {
  display: inline-flex;
  gap: 28px;
  white-space: nowrap;
  animation: airdropMarquee 22s linear infinite;
  padding-left: 28px;
}

.airdrop-call-marquee span {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c75135;
}

.airdrop-call-marquee span::before {
  content: "✦";
  margin-right: 28px;
  color: var(--gold);
  font-size: 0.95rem;
}

@keyframes airdropMarquee {
  to { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 1100px) {
  .airdrop-call-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }
  .airdrop-countdown-ribbon + .airdrop-call-inner {
    padding-top: 70px;
  }
  .airdrop-call-pitch {
    align-items: center;
  }
  .airdrop-call-overline {
    align-self: center;
  }
  .airdrop-call-prize {
    justify-self: stretch;
    width: 100%;
  }
  .airdrop-call-action {
    align-items: center;
  }
  .airdrop-call-foot {
    text-align: center;
  }
}

.countdown span,
.mini-metrics span,
.info-grid span,
.token-meta span,
.progress-label span,
.estimate-box span,
.buy-details span {
  color: rgba(255, 247, 237, 0.6);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.progress-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.progress-label strong {
  font-family: var(--font-display);
  color: var(--mint);
}

.progress-track {
  position: relative;
  height: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.36);
  border: 1px solid var(--line);
}

.progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--mint), var(--gold) 60%, var(--coral));
  position: relative;
  box-shadow: 0 0 18px rgba(132, 227, 196, 0.5);
}

.progress-track span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  animation: shimmer 2.4s linear infinite;
}

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.panel-progress .mini-metrics div {
  padding: 9px 11px;
}

.panel-progress .mini-metrics strong {
  font-size: 0.92rem;
}

.mini-metrics div,
.info-grid div,
.token-meta div {
  padding: 13px;
}

.mini-metrics strong,
.info-grid strong,
.token-meta strong {
  display: block;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  margin-top: 2px;
}

.mini-metrics strong.with-logo,
.info-grid strong.with-logo,
.token-meta strong.with-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.with-logo .solana-logo {
  width: 26px;
}

.hero-peek {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 12px;
  width: min(1200px, calc(100% - 40px));
  margin: 48px auto 0;
  overflow: hidden;
  padding: 4px 0;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.hero-peek span {
  flex: 1 0 auto;
  padding: 12px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 247, 237, 0.84);
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  backdrop-filter: blur(6px);
  transition: transform 220ms ease, background 220ms ease;
}

.hero-peek span:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
}

/* ============ LAYOUT GRIDS ============ */
.split-grid,
.two-column,
.ecosystem-layout,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: 60px;
  align-items: start;
}

.reverse {
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1fr);
}

/* ============ PRESALE SECTION ============ */
.presale-section {
  background:
    radial-gradient(ellipse 80% 50% at 0% 0%, rgba(255, 202, 79, 0.18), transparent 60%),
    radial-gradient(ellipse 70% 50% at 100% 100%, rgba(255, 114, 94, 0.16), transparent 60%),
    var(--cream);
  color: #151106;
}

.presale-section p,
.presale-section .section-lead {
  color: #403527;
}

.presale-section h2 {
  background: linear-gradient(180deg, #151106 0%, rgba(21, 17, 6, 0.78) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.presale-section .eyebrow {
  color: #c75135;
  border-color: rgba(199, 81, 53, 0.32);
  background: rgba(199, 81, 53, 0.06);
}

.presale-section .eyebrow-dot {
  background: #c75135;
  box-shadow: 0 0 0 4px rgba(199, 81, 53, 0.18);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.info-grid div {
  border-color: rgba(17, 19, 29, 0.1);
  background: rgba(255, 255, 255, 0.78);
}

.info-grid span {
  color: rgba(21, 17, 6, 0.6);
}

.info-grid strong {
  color: #151106;
}

.buy-card {
  position: relative;
  display: grid;
  gap: 13px;
  padding: 26px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  background: #ffffff;
  color: #151106;
  box-shadow: var(--shadow-brutal-lg);
  isolation: isolate;
}

.buy-card::before {
  content: "";
  position: absolute;
  top: -8px;
  right: -8px;
  width: 56px;
  height: 56px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--gold);
  z-index: -1;
}

.buy-card-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  margin-bottom: 6px;
}

.buy-card-header > div:first-child {
  min-width: 0;
}

.buy-card-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.buy-card h3 {
  margin: 4px 0 0;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #dff8e8;
  color: #0d6a43;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.network-pill {
  padding: 8px 12px;
  background: #171a27;
  color: #ffffff;
  border-color: rgba(153, 69, 255, 0.45);
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0;
}

.network-pill .solana-logo {
  width: 24px;
}

.status-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #14a866;
  box-shadow: 0 0 0 3px rgba(20, 168, 102, 0.22);
  animation: pulseDot 1.6s ease-in-out infinite;
}

.buy-card label {
  color: rgba(21, 17, 6, 0.72);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.buy-card select,
.buy-card input,
.input-shell {
  width: 100%;
  min-height: 52px;
  border: 1.5px solid rgba(17, 19, 29, 0.14);
  border-radius: var(--radius-sm);
  background: #faf6ef;
  color: #151106;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.buy-card select:focus,
.buy-card input:focus,
.input-shell:focus-within {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(255, 114, 94, 0.18);
}

.buy-card select,
.buy-card input {
  padding: 0 14px;
  font-weight: 600;
}

.input-shell {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  overflow: hidden;
}

.input-shell input {
  min-height: 50px;
  border: 0;
  background: transparent;
}

.input-shell span {
  padding: 0 16px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
}

.estimate-box {
  position: relative;
  padding: 18px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--ink) 0%, #1b1f30 100%);
  color: var(--text);
  overflow: hidden;
}

.estimate-box::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(132, 227, 196, 0.18), transparent 70%);
}

.estimate-box span {
  position: relative;
  color: rgba(255, 247, 237, 0.62);
}

.estimate-box strong {
  position: relative;
  display: block;
  margin-top: 4px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 3.6vw, 2.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--mint), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.buy-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.buy-details div {
  padding: 14px;
  border: 1.5px solid rgba(17, 19, 29, 0.1);
  border-radius: var(--radius-sm);
  background: #faf6ef;
}

.buy-details strong {
  display: block;
  margin-top: 2px;
  font-family: var(--font-display);
  font-weight: 700;
}

.buy-card .btn-ghost {
  border-color: rgba(17, 19, 29, 0.14);
  background: #faf6ef;
  color: #151106;
}

.buy-card .wallet-button.is-connected {
  border-color: #071f1a;
  background: var(--mint);
  color: #071f1a;
}

.buy-card .buy-details span {
  color: rgba(21, 17, 6, 0.62);
}

.security-note {
  margin: 4px 0 0;
  color: #695b4a;
  font-size: 0.84rem;
  line-height: 1.5;
}

.reward-table-wrap {
  margin-top: 28px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  background: #ffffff;
  color: #151106;
  box-shadow: var(--shadow-brutal);
}

.reward-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-display);
}

.reward-table th,
.reward-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(17, 19, 29, 0.1);
  text-align: left;
}

.reward-table th {
  background: #151106;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.reward-table td:last-child,
.reward-table th:last-child {
  text-align: right;
}

.reward-table tbody tr:last-child td {
  border-bottom: 0;
}

.reward-table tbody tr:nth-child(even) {
  background: #faf6ef;
}

.reward-table tfoot td {
  background: linear-gradient(135deg, var(--gold), #ffb852);
  color: #151106;
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-top: 2px solid var(--ink);
  border-bottom: 0;
}

.reward-table tbody td:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.reward-channel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  border: 1.5px solid var(--ink);
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
  background: #ffffff;
}

.reward-channel-x { background: #151106; color: #ffffff; }
.reward-channel-tg { background: #2aabee; color: #ffffff; }
.reward-channel-yt { background: #ff0000; color: #ffffff; }
.reward-channel-ref { background: var(--mint); color: #151106; }
.reward-channel-snap {
  background: linear-gradient(135deg, #9945FF, #14F195);
  color: #ffffff;
  animation: networkPulse 1.8s ease-in-out infinite;
}

.snapshot-note {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(199, 81, 53, 0.22);
  border-radius: var(--radius-sm);
  background: rgba(199, 81, 53, 0.08);
  color: #5a2b1f;
}

.snapshot-note strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-display);
  color: #151106;
}

.airdrop-card {
  gap: 14px;
}

.is-airdrop-locked {
  cursor: not-allowed !important;
  filter: grayscale(0.25);
  opacity: 0.68;
}

a.is-airdrop-locked,
button.is-airdrop-locked {
  pointer-events: auto;
}

.airdrop-lock-notice {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1.5px solid rgba(199, 81, 53, 0.32);
  border-radius: var(--radius-sm);
  background: rgba(199, 81, 53, 0.1);
  color: rgba(21, 17, 6, 0.76);
  font-size: 0.88rem;
  line-height: 1.45;
}

.airdrop-lock-notice strong {
  color: #151106;
  font-family: var(--font-display);
  font-size: 0.92rem;
}

.airdrop-card.is-airdrop-locked input,
.airdrop-card.is-airdrop-locked button {
  cursor: not-allowed;
}

.airdrop-card.is-airdrop-locked input {
  background: #f1ece5;
  color: rgba(21, 17, 6, 0.58);
}

.airdrop-card.is-airdrop-locked .airdrop-submit::after {
  display: none;
}

.airdrop-info-card {
  align-content: start;
  gap: 18px;
}

.airdrop-info-hero {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  background:
    radial-gradient(ellipse 90% 80% at 100% 0%, rgba(132, 227, 196, 0.24), transparent 64%),
    linear-gradient(135deg, #151106 0%, #2a2010 100%);
  color: var(--text);
  box-shadow: 8px 8px 0 var(--ink);
}

.airdrop-info-hero img {
  width: 72px;
  height: 72px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: #ffffff;
  flex-shrink: 0;
}

.airdrop-info-hero span,
.airdrop-info-hero em {
  display: block;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.airdrop-info-hero span {
  color: var(--mint);
}

.airdrop-info-hero strong {
  display: block;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  line-height: 1;
}

.airdrop-info-hero em {
  color: rgba(255, 247, 237, 0.68);
  font-style: normal;
}

.airdrop-info-steps {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: airdrop-step;
}

.airdrop-info-steps li {
  counter-increment: airdrop-step;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 12px;
  row-gap: 2px;
  align-items: start;
  padding: 14px;
  border: 1.5px solid rgba(17, 19, 29, 0.1);
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #fffaf2 0%, #faf2e1 100%);
  transition: border-color 220ms ease, transform 220ms ease, background 220ms ease;
}

.airdrop-info-steps li:hover {
  transform: translateX(3px);
  border-color: rgba(255, 114, 94, 0.4);
  background: #ffffff;
}

.airdrop-info-steps li::before {
  content: counter(airdrop-step, decimal-leading-zero);
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: center;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--ink);
  border-radius: 12px;
  background: var(--gold);
  color: #151106;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 900;
}

.airdrop-info-steps li:nth-child(2)::before { background: var(--mint); }
.airdrop-info-steps li:nth-child(3)::before {
  background: linear-gradient(135deg, #9945FF, #14F195);
  color: #fffaf2;
}

.airdrop-info-steps strong,
.airdrop-info-steps span {
  grid-column: 2;
  min-width: 0;
}

.airdrop-info-steps strong {
  grid-row: 1;
  color: #151106;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.2;
}

.airdrop-info-steps span {
  grid-row: 2;
  color: rgba(21, 17, 6, 0.62);
  font-size: 0.82rem;
  line-height: 1.4;
}

.airdrop-info-missions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.airdrop-info-missions span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border: 1.5px solid rgba(17, 19, 29, 0.16);
  border-radius: 999px;
  background: #ffffff;
  color: #151106;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 800;
}

.airdrop-actions {
  display: grid;
  gap: 10px;
}

.airdrop-action {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1.5px solid rgba(17, 19, 29, 0.1);
  border-radius: var(--radius-sm);
  background: #faf6ef;
}

.airdrop-action label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  cursor: pointer;
}

.airdrop-action input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-height: 0;
  padding: 0;
  accent-color: var(--coral);
  flex: 0 0 auto;
}

.airdrop-action label span {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.airdrop-action label strong,
.airdrop-action > strong {
  color: #151106;
  font-family: var(--font-display);
  font-weight: 800;
}

.airdrop-action label em {
  color: rgba(21, 17, 6, 0.62);
  font-style: normal;
  font-size: 0.76rem;
  line-height: 1.35;
}

.airdrop-action a,
.action-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(17, 19, 29, 0.14);
  border-radius: 999px;
  background: #ffffff;
  color: #151106;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
}

.airdrop-action a:hover,
.airdrop-action a:focus-visible {
  border-color: var(--coral);
  color: #c75135;
}

.airdrop-estimate {
  margin-top: 2px;
}

.participation-view {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(132, 227, 196, 0.22), transparent 60%),
    radial-gradient(ellipse 80% 60% at 0% 100%, rgba(255, 202, 79, 0.18), transparent 60%),
    #fffaf2;
  box-shadow: var(--shadow-brutal);
}

.participation-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #151106 0%, #2a2010 100%);
  color: var(--text);
  position: relative;
  overflow: hidden;
}

.participation-header::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 202, 79, 0.28), transparent 70%);
}

.participation-eyebrow {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.participation-balance {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.participation-token {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: #fff;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 10px rgba(255, 202, 79, 0.35));
}

.participation-balance > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}

.participation-balance strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--gold), #ffe7a8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.participation-balance em {
  font-style: normal;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 247, 237, 0.7);
}

.participation-progress {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.participation-progress-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(21, 17, 6, 0.65);
}

.participation-progress-head b {
  color: #151106;
  font-weight: 800;
  font-size: 0.92rem;
}

.participation-max {
  color: rgba(21, 17, 6, 0.5);
}

.participation-progress-bar {
  height: 10px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: rgba(17, 19, 29, 0.08);
  overflow: hidden;
}

.participation-progress-bar span {
  display: block;
  height: 100%;
  width: var(--fill, 0%);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--coral), var(--gold) 60%, var(--mint));
  transition: width 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.participation-identity {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 4px;
  border-top: 1px dashed rgba(17, 19, 29, 0.18);
}

.participation-identity span,
.participation-identity em {
  display: block;
  color: rgba(21, 17, 6, 0.62);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 700;
}

.participation-identity strong {
  display: block;
  color: #151106;
  font-family: var(--font-display);
  font-size: 1.02rem;
}

.participation-view ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.participation-view li {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  background: #ffffff;
  color: #151106;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.airdrop-page-section {
  min-height: calc(100vh - 84px);
  padding-top: 72px;
  background:
    radial-gradient(ellipse 80% 50% at 12% 0%, rgba(132, 227, 196, 0.14), transparent 62%),
    radial-gradient(ellipse 74% 56% at 94% 8%, rgba(255, 202, 79, 0.12), transparent 64%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
}

.airdrop-page-banner {
  margin-bottom: 28px;
}

.airdrop-control-copy h1 {
  max-width: 780px;
  margin: 0;
  color: var(--text);
  font-size: clamp(2.4rem, 6.8vw, 5.6rem);
  line-height: 0.92;
}

.airdrop-registration-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.airdrop-registration-card {
  position: sticky;
  top: 110px;
}

.airdrop-registration-card h2,
.airdrop-page-missions h2 {
  margin: 4px 0 0;
  color: #151106;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1.05;
}

.airdrop-page-missions {
  background: #fffaf2;
}

.airdrop-page-missions .airdrop-actions {
  padding: 20px;
}

.airdrop-page-missions .security-note {
  margin: 0;
  padding: 0 20px 20px;
}

/* Right column wrapper: stacks canales + "qué sigue" panel */
.airdrop-registration-aside {
  display: grid;
  gap: 24px;
  align-content: start;
}

.airdrop-next-steps {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  background:
    radial-gradient(ellipse 90% 70% at 100% 0%, rgba(255, 202, 79, 0.18), transparent 60%),
    radial-gradient(ellipse 90% 80% at 0% 100%, rgba(132, 227, 196, 0.16), transparent 60%),
    linear-gradient(160deg, #1a1710 0%, #11100c 100%);
  box-shadow: var(--shadow-brutal);
  color: var(--text);
}

.airdrop-next-steps-head {
  margin-bottom: 18px;
}

.airdrop-next-steps-head .eyebrow {
  color: var(--gold);
}

.airdrop-next-steps-head h2 {
  margin: 6px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.05;
  color: var(--text);
}

.airdrop-timeline {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.airdrop-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 14px;
  padding-bottom: 20px;
}

.airdrop-timeline li:last-child {
  padding-bottom: 0;
}

/* Connector line between steps */
.airdrop-timeline li:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 36px;
  bottom: 4px;
  width: 2px;
  background: linear-gradient(180deg, rgba(255, 202, 79, 0.7), rgba(132, 227, 196, 0.35));
}

.airdrop-timeline-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--gold);
  color: #151106;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.05rem;
}

.airdrop-timeline li div {
  display: grid;
  gap: 4px;
  padding-top: 4px;
  min-width: 0;
}

.airdrop-timeline strong {
  font-family: var(--font-display);
  font-size: 1.02rem;
  line-height: 1.2;
  color: var(--text);
}

.airdrop-timeline em {
  font-style: normal;
  font-size: 0.84rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.62);
}

.airdrop-next-steps-reward {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px dashed rgba(255, 255, 255, 0.16);
}

.airdrop-next-steps-reward div {
  display: grid;
  gap: 4px;
}

.airdrop-next-steps-reward span {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.airdrop-next-steps-reward strong {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold), var(--mint));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.airdrop-next-steps-reward strong em {
  font-style: normal;
  font-size: 0.8rem;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.7);
}

.airdrop-page-actions {
  display: grid;
  gap: 10px;
  padding: 18px 20px 20px;
}

.airdrop-control-section {
  padding-top: 36px;
  background:
    linear-gradient(135deg, rgba(132, 227, 196, 0.08), transparent 34%),
    linear-gradient(225deg, rgba(255, 202, 79, 0.09), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0));
}

.airdrop-control-section[hidden] {
  display: none;
}

.airdrop-control-section.is-open .airdrop-control-banner,
.airdrop-control-section.is-open .airdrop-user-panel,
.airdrop-control-section.is-open .airdrop-missions-board {
  animation: airdropControlReveal 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.airdrop-control-section.is-open .airdrop-user-panel {
  animation-delay: 80ms;
}

.airdrop-control-section.is-open .airdrop-missions-board {
  animation-delay: 140ms;
}

@keyframes airdropControlReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.airdrop-control-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  gap: 28px;
  align-items: center;
  overflow: hidden;
  padding: clamp(24px, 4vw, 44px);
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 18px),
    linear-gradient(135deg, #151106 0%, #272033 48%, #0c594c 100%);
  box-shadow: var(--shadow-brutal-lg);
}

.airdrop-control-banner::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: var(--grad-primary);
}

.airdrop-control-copy,
.airdrop-control-prize {
  position: relative;
  z-index: 1;
}

.airdrop-control-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 247, 237, 0.24);
  border-radius: 999px;
  background: rgba(255, 247, 237, 0.1);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.airdrop-control-live span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--solana-green);
  box-shadow: 0 0 0 5px rgba(20, 241, 149, 0.16);
}

.airdrop-control-copy h2 {
  max-width: 760px;
  margin: 0;
  color: var(--text);
  font-size: clamp(2.2rem, 6vw, 5.1rem);
  line-height: 0.92;
}

.airdrop-control-copy p {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 247, 237, 0.78);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.airdrop-control-prize {
  display: grid;
  justify-items: center;
  padding: 22px;
  border: 2px solid rgba(255, 247, 237, 0.28);
  border-radius: var(--radius-md);
  background: rgba(255, 247, 237, 0.12);
  text-align: center;
}

.airdrop-control-prize img {
  width: clamp(80px, 12vw, 132px);
  border: 3px solid var(--gold);
  border-radius: 50%;
  background: #fffaf2;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.airdrop-control-prize span,
.airdrop-control-prize em {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.airdrop-control-prize span {
  margin-top: 12px;
  color: var(--mint);
  font-size: 0.78rem;
}

.airdrop-control-prize strong {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  font-weight: 900;
  line-height: 0.9;
}

.airdrop-control-prize em {
  color: rgba(255, 247, 237, 0.76);
  font-size: 0.78rem;
  font-style: normal;
}

.airdrop-control-layout {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 22px;
  margin-top: 28px;
  align-items: start;
}

.airdrop-user-panel,
.airdrop-missions-board {
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  background: #fffaf2;
  color: #151106;
  box-shadow: var(--shadow-brutal);
}

.airdrop-user-panel {
  display: grid;
  gap: 16px;
  padding: 20px;
}

.airdrop-user-card {
  display: grid;
  gap: 5px;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(17, 19, 29, 0.22);
}

.airdrop-user-card span,
.airdrop-user-card em,
.airdrop-user-card code {
  color: rgba(21, 17, 6, 0.62);
  font-style: normal;
}

.airdrop-user-card span {
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.airdrop-user-card strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.1;
}

.airdrop-user-card code {
  display: block;
  overflow-wrap: anywhere;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
}

.airdrop-control-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.airdrop-control-stats div {
  padding: 14px;
  border: 1.5px solid rgba(17, 19, 29, 0.12);
  border-radius: var(--radius-sm);
  background: #faf6ef;
}

.airdrop-control-stats span {
  display: block;
  color: rgba(21, 17, 6, 0.58);
  font-size: 0.72rem;
  font-weight: 800;
}

.airdrop-control-stats strong {
  display: block;
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1;
}

.airdrop-control-meter {
  height: 12px;
  overflow: hidden;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: rgba(17, 19, 29, 0.08);
}

.airdrop-control-meter span {
  display: block;
  width: var(--fill, 0%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--coral), var(--gold) 58%, var(--mint));
  transition: width 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.airdrop-missions-board {
  overflow: hidden;
}

.airdrop-missions-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  border-bottom: 2px solid var(--ink);
  background: linear-gradient(135deg, #ffffff 0%, #fff2cd 100%);
}

.airdrop-missions-head h3 {
  margin: 2px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 2.15rem);
  line-height: 1.05;
}

.airdrop-control-missions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 20px;
}

.airdrop-control-missions > p {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(21, 17, 6, 0.66);
}

.airdrop-control-mission {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  min-height: 170px;
  padding: 14px;
  border: 1.5px solid rgba(17, 19, 29, 0.12);
  border-radius: var(--radius-sm);
  background: #ffffff;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.airdrop-control-mission:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 114, 94, 0.42);
  box-shadow: 0 12px 24px rgba(17, 19, 29, 0.08);
}

.airdrop-control-check {
  position: relative;
  width: 34px;
  height: 34px;
  border: 2px solid var(--ink);
  border-radius: 10px;
  background: #faf6ef;
}

.airdrop-control-mission.is-complete .airdrop-control-check {
  background: var(--mint);
}

.airdrop-control-mission.is-complete .airdrop-control-check::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 5px;
  width: 9px;
  height: 16px;
  border: solid #071f1a;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.airdrop-control-mission-content {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.airdrop-control-mission-content strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.15;
}

.airdrop-control-mission-content em {
  color: rgba(21, 17, 6, 0.62);
  font-size: 0.84rem;
  font-style: normal;
  line-height: 1.4;
}

.airdrop-control-mission-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 4px;
}

.airdrop-control-reward,
.airdrop-control-tag,
.airdrop-control-mission-actions a,
.airdrop-control-mission-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
}

.airdrop-control-reward {
  border: 1.5px solid var(--ink);
  background: var(--gold);
}

.airdrop-control-tag,
.airdrop-control-mission-actions a {
  border: 1px solid rgba(17, 19, 29, 0.14);
  background: #faf6ef;
}

.airdrop-control-mission-actions button {
  cursor: pointer;
  border: 1.5px solid var(--ink);
  background: #151106;
  color: var(--text);
  transition: transform 180ms ease, background 180ms ease;
}

.airdrop-control-mission-actions button:hover,
.airdrop-control-mission-actions button:focus-visible {
  transform: translateY(-1px);
  background: #2a2010;
}

.airdrop-control-mission.is-complete .airdrop-control-mission-actions button {
  background: var(--mint);
  color: #071f1a;
}

/* ============ PRESALE SECTION (Registro Airdrop) ============ */
.presale-section {
  position: relative;
  overflow: hidden;
}

.presale-section::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 202, 79, 0.22), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.presale-section::after {
  content: "";
  position: absolute;
  bottom: -160px;
  right: -120px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 114, 94, 0.2), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.presale-section > .content-grid {
  position: relative;
  z-index: 1;
}

.presale-marquee-wrap {
  margin-bottom: 40px;
  pointer-events: none;
}

.presale-marquee {
  overflow: hidden;
  padding: 14px 0;
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 32px),
    linear-gradient(135deg, #151106 0%, #2a2010 100%);
  box-shadow: var(--shadow-brutal);
}

.presale-marquee-track {
  display: flex;
  gap: 36px;
  width: max-content;
  animation: presaleMarquee 28s linear infinite;
}

.presale-marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.presale-marquee-track span b {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: #151106;
  font-size: 0.9rem;
  font-weight: 900;
}

.presale-marquee-track span:nth-child(2) b { background: var(--mint); }
.presale-marquee-track span:nth-child(3) b { background: var(--coral); color: #fffaf2; }
.presale-marquee-track span:nth-child(4) b { background: linear-gradient(135deg, #9945FF, #14F195); color: #fffaf2; }
.presale-marquee-track span:nth-child(5) b { background: #2aabee; color: #fffaf2; }

@keyframes presaleMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.presale-copy {
  position: relative;
}

.presale-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.presale-live-pill,
.presale-countdown-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.presale-live-pill {
  border: 1.5px solid rgba(20, 168, 102, 0.4);
  background: rgba(20, 168, 102, 0.1);
  color: #0d6a43;
}

.presale-live-pill span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #14a866;
  box-shadow: 0 0 0 5px rgba(20, 168, 102, 0.22);
  animation: pulseDot 1.6s ease-in-out infinite;
}

.presale-countdown-pill {
  border: 1.5px solid rgba(199, 81, 53, 0.4);
  background: rgba(199, 81, 53, 0.08);
  color: #c75135;
  text-transform: none;
  letter-spacing: 0.02em;
}

.presale-countdown-pill em {
  font-size: 0.95rem;
  font-style: normal;
}

.presale-countdown-pill b {
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.presale-title-accent {
  position: relative;
  display: inline-block;
  padding: 0 4px;
  background: linear-gradient(135deg, var(--coral), var(--gold) 60%, var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.presale-title-accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background: var(--gold);
  border-radius: 4px;
  opacity: 0.32;
  z-index: -1;
}

.presale-section .section-lead b {
  background: linear-gradient(135deg, #c75135, #d68b1a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}

.presale-live-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 28px;
}

.presale-live-stats div {
  position: relative;
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.presale-live-stats div:hover {
  transform: translateY(-2px);
  box-shadow: 8px 10px 0 var(--ink);
}

.presale-live-stats div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--coral), var(--gold), var(--mint));
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.presale-live-stats div:nth-child(2)::before {
  background: linear-gradient(90deg, var(--mint), var(--teal));
}

.presale-live-stats div:nth-child(3)::before {
  background: linear-gradient(90deg, var(--gold), var(--coral));
}

.presale-live-stats span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--coral);
}

.presale-live-stats div:nth-child(2) span { color: var(--teal); }
.presale-live-stats div:nth-child(3) span { color: var(--gold); }

.presale-live-stats strong {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.95rem);
  font-weight: 900;
  color: #151106;
  line-height: 1;
}

.presale-live-stats em {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(21, 17, 6, 0.56);
  font-style: normal;
}

.presale-steps {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.presale-steps li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px 18px;
  border: 1.5px solid rgba(17, 19, 29, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(6px);
  transition: border-color 220ms ease, transform 220ms ease, background 220ms ease;
}

.presale-steps li:hover {
  transform: translateX(4px);
  border-color: rgba(255, 114, 94, 0.42);
  background: #ffffff;
}

.presale-step-num {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: var(--gold);
  color: #151106;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.presale-steps li:nth-child(2) .presale-step-num { background: var(--mint); }
.presale-steps li:nth-child(3) .presale-step-num {
  background: linear-gradient(135deg, #9945FF, #14F195);
  color: #fffaf2;
}

.presale-steps strong,
.presale-steps span {
  display: block;
}

.presale-steps strong {
  margin-bottom: 2px;
  color: #151106;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 800;
}

.presale-steps span {
  color: rgba(21, 17, 6, 0.62);
  font-size: 0.9rem;
  line-height: 1.4;
}

.presale-reward-table {
  margin-top: 0;
  border-width: 2.5px;
  box-shadow: var(--shadow-brutal-lg);
}

.presale-reward-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: linear-gradient(135deg, #fffaf2 0%, #fff2cd 100%);
  border-bottom: 2px solid var(--ink);
}

.presale-reward-head h3 {
  margin: 4px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.4rem);
  color: #151106;
  line-height: 1.1;
}

.eyebrow-mini {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c75135;
}

.presale-reward-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #ffb852);
  color: #151106;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  white-space: nowrap;
  box-shadow: 0 6px 14px rgba(255, 184, 82, 0.32);
}

.presale-reward-badge em {
  font-style: normal;
  font-size: 0.9rem;
}

.presale-reward-table .reward-table tbody tr {
  transition: background 200ms ease;
}

.presale-reward-table .reward-table tbody tr:hover {
  background: rgba(255, 202, 79, 0.14);
}

.presale-reward-table .reward-table td:last-child {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.05rem;
  color: #151106;
}

.presale-snapshot-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  margin-top: 18px;
  padding: 18px 20px;
  border: 1.5px solid rgba(199, 81, 53, 0.28);
  border-radius: var(--radius-md);
  background:
    radial-gradient(ellipse 80% 80% at 100% 0%, rgba(255, 202, 79, 0.16), transparent 60%),
    rgba(199, 81, 53, 0.06);
}

.presale-snapshot-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1.5px solid var(--ink);
  border-radius: 14px;
  background: var(--gold);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.presale-snapshot-note strong {
  display: block;
  margin-bottom: 4px;
  color: #151106;
  font-family: var(--font-display);
  font-size: 1rem;
}

.presale-snapshot-note div {
  color: #5a2b1f;
  font-size: 0.92rem;
  line-height: 1.55;
}

.presale-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 26px;
}

.presale-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  padding-inline: 22px;
}

.presale-cta svg {
  width: 22px;
  height: 22px;
  transition: transform 200ms ease;
}

.presale-cta:hover svg,
.presale-cta:focus-visible svg {
  transform: translateX(5px);
}

.presale-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 55%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transform: skewX(-22deg);
  animation: ctaSheen 2.8s ease-in-out infinite;
}

.presale-cta-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(20, 168, 102, 0.32);
  background: rgba(20, 168, 102, 0.08);
  color: #0d6a43;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
}

.presale-cta-meta em {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #14a866;
  color: #fffaf2;
  font-style: normal;
  font-size: 0.7rem;
  font-weight: 900;
}

.follow-airdrop-banner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  background:
    radial-gradient(ellipse 80% 70% at 100% 0%, rgba(132, 227, 196, 0.2), transparent 62%),
    linear-gradient(135deg, #151106 0%, #2a2010 100%);
  color: var(--text);
  box-shadow: var(--shadow-brutal);
  overflow: hidden;
}

.follow-airdrop-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.follow-airdrop-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 202, 79, 0.34);
  border-radius: 999px;
  background: rgba(255, 202, 79, 0.1);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.follow-airdrop-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #76e8a4;
  box-shadow: 0 0 0 4px rgba(118, 232, 164, 0.2);
  animation: pulseDot 1.6s ease-in-out infinite;
}

.follow-airdrop-title {
  display: block;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
  line-height: 1.18;
}

.follow-airdrop-banner p {
  margin: 0;
  color: rgba(255, 247, 237, 0.72);
  font-size: 0.92rem;
  line-height: 1.55;
}

.follow-airdrop-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.follow-airdrop-links .btn {
  width: 100%;
  min-height: 42px;
  padding-inline: 12px;
  white-space: nowrap;
}

.presale-cta-stack {
  align-items: stretch;
  flex-direction: column;
  gap: 12px;
  margin-top: 0;
  padding: 18px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-brutal);
}

.presale-cta-stack .presale-cta {
  width: 100%;
}

.presale-cta-stack .presale-cta-meta {
  justify-content: center;
  width: 100%;
  text-align: center;
}

/* responsive overrides for presale section */
@media (max-width: 1120px) {
  .presale-live-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .presale-live-stats {
    grid-template-columns: 1fr;
  }
  .presale-steps li {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 12px 14px;
  }
  .presale-step-num {
    width: 42px;
    height: 42px;
    font-size: 0.95rem;
  }
  .presale-reward-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .presale-snapshot-note {
    grid-template-columns: 1fr;
  }
  .presale-cta-row {
    align-items: stretch;
    flex-direction: column;
  }
  .presale-cta-meta {
    justify-content: center;
  }
  .presale-cta {
    width: 100%;
    justify-content: center;
  }
  .follow-airdrop-links {
    grid-template-columns: 1fr;
  }
}

/* ============ AIRDROP RIGHT COLUMN ============ */
.airdrop-right-column {
  display: grid;
  gap: 18px;
  align-content: start;
}

/* ============ AIRDROP ACTIVITY FEED CARD ============ */
.airdrop-activity-card {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(132, 227, 196, 0.16), transparent 60%),
    linear-gradient(135deg, #fffaf2 0%, #faf2e1 100%);
  box-shadow: var(--shadow-brutal);
  color: #151106;
  overflow: hidden;
}

.airdrop-activity-card[hidden] {
  display: none !important;
}

.airdrop-activity-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--coral), var(--gold), var(--mint), var(--teal));
}

.airdrop-activity-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.airdrop-activity-head h3 {
  margin: 4px 0 0;
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.15;
  color: #151106;
}

.airdrop-activity-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c75135;
}

.airdrop-activity-eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #14a866;
  box-shadow: 0 0 0 4px rgba(20, 168, 102, 0.22);
  animation: pulseDot 1.4s ease-in-out infinite;
}

.airdrop-activity-count {
  display: inline-grid;
  justify-items: end;
  padding: 8px 12px;
  border: 1.5px solid var(--ink);
  border-radius: 12px;
  background: var(--gold);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
  color: #151106;
  text-align: right;
}

.airdrop-activity-count em {
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(21, 17, 6, 0.62);
  font-style: normal;
}

.airdrop-activity-feed {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.airdrop-activity-feed li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  border: 1.5px solid rgba(17, 19, 29, 0.08);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(4px);
  animation: activitySlide 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.airdrop-activity-feed li:nth-child(1) { animation-delay: 0ms; }
.airdrop-activity-feed li:nth-child(2) { animation-delay: 90ms; }
.airdrop-activity-feed li:nth-child(3) { animation-delay: 180ms; }
.airdrop-activity-feed li:nth-child(4) { animation-delay: 270ms; }
.airdrop-activity-feed li:nth-child(5) { animation-delay: 360ms; }

@keyframes activitySlide {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.airdrop-activity-dot {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--ink);
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  flex-shrink: 0;
}

.airdrop-activity-dot.reward-channel-x { background: #151106; color: #ffffff; }
.airdrop-activity-dot.reward-channel-tg { background: #2aabee; color: #ffffff; }
.airdrop-activity-dot.reward-channel-yt { background: #ff0000; color: #ffffff; }
.airdrop-activity-dot.reward-channel-ref { background: var(--mint); color: #151106; }
.airdrop-activity-dot.reward-channel-snap {
  background: linear-gradient(135deg, #9945FF, #14F195);
  color: #ffffff;
}

.airdrop-activity-feed strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 800;
  color: #151106;
  font-variant-numeric: tabular-nums;
}

.airdrop-activity-feed em {
  display: block;
  margin-top: 2px;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-style: normal;
  color: rgba(21, 17, 6, 0.62);
}

.airdrop-activity-feed em b {
  color: #c75135;
  font-weight: 800;
}

.airdrop-activity-time {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(21, 17, 6, 0.5);
  white-space: nowrap;
}

/* ============ AIRDROP COMMUNITY MINI CARD ============ */
.airdrop-community-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas:
    "avatars cta"
    "copy copy";
  gap: 10px 14px;
  align-items: center;
  padding: 14px 16px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #151106 0%, #2a2010 100%);
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(255, 247, 237, 0.06);
}

.airdrop-community-avatars { grid-area: avatars; }
.airdrop-community-copy { grid-area: copy; min-width: 0; }
.airdrop-community-cta { grid-area: cta; justify-self: end; }

.airdrop-community-avatars {
  display: flex;
  align-items: center;
}

.airdrop-community-avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #151106;
  background: var(--cream);
  object-fit: cover;
  margin-left: -10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
}

.airdrop-community-avatars img:first-child {
  margin-left: 0;
}

.airdrop-community-avatars span {
  display: inline-grid;
  place-items: center;
  margin-left: -10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #151106;
  background: var(--gold);
  color: #151106;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 900;
}

.airdrop-community-copy strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text);
}

.airdrop-community-copy span {
  display: block;
  margin-top: 2px;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 600;
  color: rgba(255, 247, 237, 0.62);
}

.airdrop-community-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: 1.5px solid var(--gold);
  border-radius: 999px;
  background: rgba(255, 202, 79, 0.12);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: background 200ms ease, transform 200ms ease;
}

.airdrop-community-cta:hover,
.airdrop-community-cta:focus-visible {
  background: rgba(255, 202, 79, 0.22);
  transform: translateX(2px);
}

.airdrop-community-cta svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 760px) {
  .airdrop-activity-head {
    align-items: stretch;
    flex-direction: column;
  }
  .airdrop-activity-count {
    justify-items: start;
    text-align: left;
  }
  .airdrop-community-card {
    grid-template-columns: 1fr;
    grid-template-areas: "avatars" "copy" "cta";
    text-align: left;
  }
  .airdrop-community-cta {
    justify-self: start;
  }
}

/* ============ AIRDROP INFO CARD (index) ============ */
.airdrop-info-card {
  position: relative;
  overflow: hidden;
}

.airdrop-info-ribbon {
  position: absolute;
  top: 14px;
  right: -42px;
  z-index: 2;
  padding: 6px 50px;
  background: linear-gradient(135deg, var(--coral), var(--gold));
  border: 1.5px solid var(--ink);
  color: #151106;
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: rotate(28deg);
  box-shadow: 0 6px 14px rgba(17, 19, 29, 0.18);
  pointer-events: none;
}

.airdrop-info-hero {
  position: relative;
  overflow: hidden;
}

.airdrop-info-spark {
  position: absolute;
  top: -34px;
  right: -34px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 202, 79, 0.55), transparent 70%);
  pointer-events: none;
  animation: novaPulse 3.6s ease-in-out infinite;
}

@keyframes novaPulse {
  0%, 100% { transform: scale(1); opacity: 0.95; }
  50% { transform: scale(1.18); opacity: 0.6; }
}

.airdrop-info-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 14px;
  border: 1.5px solid rgba(17, 19, 29, 0.1);
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #fffaf2 0%, #fff2cd 100%);
}

.airdrop-info-stats div {
  display: grid;
  gap: 2px;
  text-align: center;
}

.airdrop-info-stats strong {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.4vw, 1.32rem);
  font-weight: 800;
  color: #151106;
  line-height: 1;
}

.airdrop-info-stats span {
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(21, 17, 6, 0.62);
}

.airdrop-info-missions span b.reward-channel {
  width: 20px;
  height: 20px;
  margin-right: 6px;
  border-radius: 6px;
  border-width: 1px;
  font-size: 0.7rem;
}

.airdrop-info-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.airdrop-info-cta svg {
  width: 20px;
  height: 20px;
  transition: transform 200ms ease;
}

.airdrop-info-cta:hover svg,
.airdrop-info-cta:focus-visible svg {
  transform: translateX(4px);
}

.airdrop-info-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-22deg);
  animation: ctaSheen 3s ease-in-out infinite;
}

@keyframes ctaSheen {
  0%, 70% { left: -120%; }
  100% { left: 140%; }
}

.airdrop-info-trust {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(20, 168, 102, 0.32);
  border-radius: 999px;
  background: rgba(20, 168, 102, 0.08);
  color: #0d6a43;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  align-self: start;
}

.airdrop-info-trust-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #14a866;
  box-shadow: 0 0 0 4px rgba(20, 168, 102, 0.2);
  animation: pulseDot 1.6s ease-in-out infinite;
}

/* ============ AIRDROP PAGE HERO ============ */
.airdrop-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.95fr);
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
  overflow: hidden;
  padding: clamp(28px, 4vw, 52px);
  margin-bottom: 28px;
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse 60% 80% at 8% 100%, rgba(132, 227, 196, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 70% at 100% 0%, rgba(255, 202, 79, 0.22), transparent 60%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 22px),
    linear-gradient(135deg, #0a0b14 0%, #1b1f30 52%, #0a7560 100%);
  box-shadow: var(--shadow-brutal-lg);
  color: var(--text);
}

.airdrop-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: var(--grad-primary);
}

.airdrop-hero-orbits {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.airdrop-hero-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(255, 247, 237, 0.16);
  animation: orbitSpin 28s linear infinite;
}

.airdrop-hero-orbit-1 {
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  border-color: rgba(255, 202, 79, 0.26);
}

.airdrop-hero-orbit-2 {
  bottom: -180px;
  left: -120px;
  width: 460px;
  height: 460px;
  animation-duration: 36s;
  animation-direction: reverse;
}

.airdrop-hero-orbit-3 {
  top: 40%;
  right: 30%;
  width: 200px;
  height: 200px;
  border-style: dotted;
  border-color: rgba(132, 227, 196, 0.32);
}

@keyframes orbitSpin {
  to { transform: rotate(360deg); }
}

.airdrop-hero-copy,
.airdrop-hero-card {
  position: relative;
  z-index: 1;
}

.airdrop-hero-copy .airdrop-control-live {
  margin-bottom: 22px;
}

.airdrop-hero-copy h1 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4.6rem);
  line-height: 0.96;
  letter-spacing: -0.02em;
}

.airdrop-hero-amount {
  display: inline-block;
  padding: 0 8px;
  background: linear-gradient(135deg, var(--gold), #ffe7a8 60%, var(--coral));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 4px 24px rgba(255, 202, 79, 0.3);
}

.airdrop-hero-lead {
  max-width: 580px;
  margin: 20px 0 26px;
  color: rgba(255, 247, 237, 0.78);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.55;
}

.airdrop-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.airdrop-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  padding-inline: 22px;
}

.airdrop-hero-cta svg {
  width: 22px;
  height: 22px;
  transition: transform 200ms ease;
}

.airdrop-hero-cta:hover svg,
.airdrop-hero-cta:focus-visible svg {
  transform: translateX(5px);
}

.airdrop-hero-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 55%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transform: skewX(-22deg);
  animation: ctaSheen 2.8s ease-in-out infinite;
}

.airdrop-hero-actions .wallet-button {
  border-color: rgba(255, 247, 237, 0.32);
  background: rgba(255, 247, 237, 0.06);
  color: var(--text);
}

.airdrop-hero-actions .wallet-button:hover,
.airdrop-hero-actions .wallet-button:focus-visible {
  background: rgba(255, 247, 237, 0.14);
}

.airdrop-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.airdrop-hero-pills li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 247, 237, 0.18);
  background: rgba(255, 247, 237, 0.06);
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
}

.airdrop-hero-pills li span {
  color: var(--gold);
}

.airdrop-hero-card {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 2px solid rgba(255, 247, 237, 0.28);
  border-radius: var(--radius-md);
  background:
    radial-gradient(ellipse 80% 80% at 50% 0%, rgba(255, 202, 79, 0.22), transparent 70%),
    linear-gradient(180deg, rgba(255, 247, 237, 0.12), rgba(255, 247, 237, 0.06));
  backdrop-filter: blur(8px);
  text-align: center;
}

.airdrop-hero-card-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: var(--gold);
  color: #151106;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 6px 14px rgba(17, 19, 29, 0.24);
}

.airdrop-hero-coin {
  position: relative;
  justify-self: center;
  width: clamp(120px, 18vw, 168px);
  height: clamp(120px, 18vw, 168px);
  margin-top: 8px;
}

.airdrop-hero-coin img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: 3px solid var(--gold);
  border-radius: 50%;
  background: #fffaf2;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.32);
  animation: coinFloat 4s ease-in-out infinite;
}

.airdrop-hero-coin-glow {
  position: absolute;
  inset: -22%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 202, 79, 0.5), transparent 60%);
  filter: blur(8px);
  z-index: 0;
  animation: novaPulse 3.4s ease-in-out infinite;
}

@keyframes coinFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
}

.airdrop-hero-card-amount {
  display: grid;
  gap: 4px;
  justify-items: center;
}

.airdrop-hero-card-amount span,
.airdrop-hero-card-amount em {
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-style: normal;
}

.airdrop-hero-card-amount span {
  color: var(--mint);
}

.airdrop-hero-card-amount strong {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  line-height: 0.9;
  background: linear-gradient(135deg, var(--gold), #ffe7a8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.airdrop-hero-card-amount em {
  color: rgba(255, 247, 237, 0.7);
}

.airdrop-hero-card-countdown {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1.5px solid rgba(255, 247, 237, 0.18);
  border-radius: var(--radius-sm);
  background: rgba(10, 11, 20, 0.4);
}

.airdrop-hero-card-countdown > span {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 247, 237, 0.6);
}

.airdrop-hero-card-countdown > div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
}

.airdrop-hero-card-countdown > div > span {
  display: grid;
  gap: 2px;
  padding: 8px 4px;
  border: 1px solid rgba(255, 247, 237, 0.16);
  border-radius: var(--radius-xs);
  background: rgba(255, 247, 237, 0.06);
}

.airdrop-hero-card-countdown b {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}

.airdrop-hero-card-countdown em {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 247, 237, 0.5);
  font-style: normal;
}

.airdrop-hero-card-progress {
  display: grid;
  gap: 6px;
}

.airdrop-hero-card-progress-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  color: rgba(255, 247, 237, 0.7);
}

.airdrop-hero-card-progress-head b {
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 900;
}

.airdrop-hero-card-progress-bar {
  height: 10px;
  border: 1.5px solid rgba(255, 247, 237, 0.22);
  border-radius: 999px;
  background: rgba(255, 247, 237, 0.08);
  overflow: hidden;
}

.airdrop-hero-card-progress-bar span {
  display: block;
  width: var(--fill, 0%);
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--coral), var(--gold) 56%, var(--mint));
  box-shadow: 0 0 18px rgba(255, 202, 79, 0.5);
  transition: width 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.airdrop-hero-card-progress em {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 247, 237, 0.62);
  font-style: normal;
}

/* ============ AIRDROP TRUST STRIP ============ */
.airdrop-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 28px;
  padding: 18px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  background: #fffaf2;
  box-shadow: var(--shadow-brutal);
}

.airdrop-trust-strip div {
  display: grid;
  gap: 4px;
  padding: 8px 12px;
  border-right: 1px dashed rgba(17, 19, 29, 0.18);
}

.airdrop-trust-strip div:last-child {
  border-right: 0;
}

.airdrop-trust-strip strong {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  color: #151106;
  line-height: 1;
  background: linear-gradient(135deg, var(--coral), var(--gold) 60%, var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.airdrop-trust-strip span {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(21, 17, 6, 0.6);
}

/* ============ AIRDROP FORM POLISH ============ */
.airdrop-form-lead {
  margin: 0 0 6px;
  padding: 12px 14px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 202, 79, 0.08);
  color: rgba(21, 17, 6, 0.78);
  font-size: 0.9rem;
  line-height: 1.5;
}

.airdrop-field {
  display: grid;
  gap: 6px;
}

.airdrop-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.airdrop-submit svg {
  width: 20px;
  height: 20px;
  transition: transform 200ms ease;
}

.airdrop-submit:hover svg,
.airdrop-submit:focus-visible svg {
  transform: translateX(4px);
}

.airdrop-submit::after {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 55%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-22deg);
  animation: ctaSheen 3.2s ease-in-out infinite;
}

.airdrop-missions-lead {
  margin: 0;
  padding: 14px 20px 0;
  color: rgba(21, 17, 6, 0.62);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* enhance airdrop-action layout to include icon */
.airdrop-action label {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.airdrop-action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1.5px solid var(--ink);
  font-size: 1.05rem;
  font-weight: 800;
  flex-shrink: 0;
  background: #ffffff;
}

.airdrop-action-icon.reward-channel-x { background: #151106; color: #ffffff; }
.airdrop-action-icon.reward-channel-tg { background: #2aabee; color: #ffffff; }
.airdrop-action-icon.reward-channel-yt { background: #ff0000; color: #ffffff; }
.airdrop-action-icon.reward-channel-ref { background: var(--mint); color: #151106; }
.airdrop-action-icon.reward-channel-snap {
  background: linear-gradient(135deg, #9945FF, #14F195);
  color: #ffffff;
}

.airdrop-action-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.airdrop-action {
  transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.airdrop-action:hover {
  border-color: rgba(255, 114, 94, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(17, 19, 29, 0.06);
}

.airdrop-action:has(input:checked) {
  border-color: var(--teal);
  background: linear-gradient(135deg, #f0fbf5, #fffaf2);
  box-shadow: inset 0 0 0 1px rgba(15, 168, 140, 0.16);
}

.airdrop-missions-boost {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 0.48fr);
  gap: 18px;
  align-items: center;
  min-height: clamp(250px, 24vw, 320px);
  overflow: hidden;
  padding: 22px 20px;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 20px),
    linear-gradient(135deg, #151106 0%, #221a32 56%, #0f3029 100%);
  color: var(--text);
}

.airdrop-missions-boost::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(132, 227, 196, 0.16), transparent 42%, rgba(255, 202, 79, 0.14));
  pointer-events: none;
}

.airdrop-missions-boost-copy,
.airdrop-missions-boost-art {
  position: relative;
  z-index: 1;
}

.airdrop-missions-boost-copy {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.airdrop-missions-boost-kicker {
  justify-self: start;
  padding: 7px 10px;
  border: 1px solid rgba(255, 202, 79, 0.44);
  border-radius: 999px;
  background: rgba(255, 202, 79, 0.12);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.airdrop-missions-boost h3 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.04;
}

.airdrop-missions-boost p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 247, 237, 0.72);
  font-size: 0.92rem;
  line-height: 1.55;
}

.airdrop-missions-boost ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.airdrop-missions-boost li {
  display: grid;
  gap: 2px;
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(255, 247, 237, 0.14);
  border-radius: 12px;
  background: rgba(255, 247, 237, 0.06);
}

.airdrop-missions-boost li strong {
  color: var(--mint);
  font-family: var(--font-display);
  font-size: 1.08rem;
  line-height: 1;
}

.airdrop-missions-boost li span {
  color: rgba(255, 247, 237, 0.62);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.25;
}

.airdrop-missions-boost-art {
  display: grid;
  place-items: center;
  min-height: 190px;
}

.airdrop-missions-boost-art img {
  width: min(100%, 210px);
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: #071f1a;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32);
}

/* ============ AIRDROP BENEFITS ============ */
.airdrop-benefits {
  margin-top: 56px;
  padding: clamp(24px, 4vw, 44px);
  border: 2.5px solid var(--ink);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse 60% 80% at 0% 0%, rgba(132, 227, 196, 0.16), transparent 60%),
    radial-gradient(ellipse 60% 80% at 100% 100%, rgba(255, 114, 94, 0.14), transparent 60%),
    #fffaf2;
  box-shadow: var(--shadow-brutal);
}

.airdrop-benefits-head {
  display: grid;
  gap: 8px;
  max-width: 760px;
  margin-bottom: 28px;
}

.airdrop-benefits-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  line-height: 1.05;
  color: #151106;
}

.airdrop-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.airdrop-benefits-grid article {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.airdrop-benefits-grid article:hover {
  transform: translateY(-3px);
  box-shadow: 8px 10px 0 var(--ink);
}

.airdrop-benefit-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1.5px solid var(--ink);
  background: var(--gold);
  color: #151106;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
}

.airdrop-benefits-grid article:nth-child(2) .airdrop-benefit-icon { background: var(--mint); }
.airdrop-benefits-grid article:nth-child(3) .airdrop-benefit-icon { background: var(--coral); color: #fffaf2; }
.airdrop-benefits-grid article:nth-child(4) .airdrop-benefit-icon {
  background: linear-gradient(135deg, #9945FF, #14F195);
  color: #ffffff;
}

.airdrop-benefits-grid h3 {
  margin: 4px 0 0;
  font-family: var(--font-display);
  font-size: 1.12rem;
  color: #151106;
}

.airdrop-benefits-grid p {
  margin: 0;
  color: rgba(21, 17, 6, 0.66);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ============ AIRDROP FAQ ============ */
.airdrop-faq {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
  margin-top: 36px;
  padding: clamp(24px, 4vw, 44px);
  border: 2.5px solid var(--ink);
  border-radius: var(--radius-lg);
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 22px),
    linear-gradient(135deg, #151106 0%, #1f1933 100%);
  box-shadow: var(--shadow-brutal);
  color: var(--text);
}

.airdrop-faq-head {
  display: grid;
  gap: 8px;
  position: sticky;
  top: 110px;
  margin-bottom: 0;
}

.airdrop-faq-intro {
  margin: 8px 0 0;
  color: rgba(255, 247, 237, 0.66);
  font-size: 0.96rem;
  line-height: 1.55;
}

.airdrop-faq-support {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 16px;
  width: fit-content;
  border: 1.5px solid rgba(255, 202, 79, 0.45);
  border-radius: 999px;
  background: rgba(255, 202, 79, 0.08);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.86rem;
  text-decoration: none;
  transition: background 200ms ease, transform 200ms ease;
}

.airdrop-faq-support:hover,
.airdrop-faq-support:focus-visible {
  background: rgba(255, 202, 79, 0.16);
  transform: translateY(-1px);
}

.airdrop-faq-head .eyebrow {
  color: var(--gold);
}

.airdrop-faq-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  line-height: 1.05;
  color: var(--text);
}

.airdrop-faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 12px;
}

.airdrop-faq-grid details {
  padding: 18px 20px;
  border: 1.5px solid rgba(255, 247, 237, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 247, 237, 0.04);
  transition: border-color 200ms ease, background 200ms ease;
}

.airdrop-faq-grid details:hover {
  border-color: rgba(255, 202, 79, 0.4);
  background: rgba(255, 247, 237, 0.07);
}

.airdrop-faq-grid details[open] {
  border-color: var(--gold);
  background: rgba(255, 202, 79, 0.06);
}

.airdrop-faq-grid summary {
  position: relative;
  padding-right: 32px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  list-style: none;
}

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

.airdrop-faq-grid summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  border: 1.5px solid var(--gold);
  background: rgba(255, 202, 79, 0.1);
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1;
  transition: transform 220ms ease, background 220ms ease;
}

.airdrop-faq-grid details[open] summary::after {
  content: "−";
  background: var(--gold);
  color: #151106;
  transform: translateY(-50%) rotate(180deg);
}

.airdrop-faq-grid details p {
  margin: 10px 0 0;
  color: rgba(255, 247, 237, 0.72);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* ============ AIRDROP PAGE RESPONSIVE ============ */
@media (max-width: 1120px) {
  .airdrop-hero {
    grid-template-columns: 1fr;
  }
  .airdrop-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .airdrop-faq {
    grid-template-columns: 1fr;
  }
  .airdrop-faq-head {
    position: relative;
    top: auto;
    max-width: 720px;
    margin-bottom: 4px;
  }
  .airdrop-trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .airdrop-trust-strip div:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 760px) {
  .airdrop-hero {
    padding: 24px;
  }
  .airdrop-hero-orbit-1 { width: 220px; height: 220px; top: -80px; right: -80px; }
  .airdrop-hero-orbit-2 { width: 280px; height: 280px; bottom: -120px; left: -100px; }
  .airdrop-hero-orbit-3 { display: none; }
  .airdrop-benefits-grid,
  .airdrop-trust-strip {
    grid-template-columns: 1fr;
  }
  .airdrop-trust-strip div {
    border-right: 0;
    border-bottom: 1px dashed rgba(17, 19, 29, 0.18);
    padding-bottom: 12px;
  }
  .airdrop-trust-strip div:last-child {
    border-bottom: 0;
  }
  .airdrop-action label {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .airdrop-action label input {
    grid-column: 1;
    grid-row: 1;
  }
  .airdrop-action-icon {
    grid-column: 1;
    grid-row: 2;
  }
  .airdrop-action-text {
    grid-column: 2;
    grid-row: 1 / span 2;
  }
  .airdrop-missions-boost {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .airdrop-missions-boost-art {
    min-height: 124px;
  }
  .airdrop-missions-boost-art img {
    width: 124px;
  }
  .airdrop-missions-boost ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .airdrop-info-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 10px;
  }
}

/* ============ GALLERY BAND ============ */
.gallery-band {
  padding: 36px 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(132, 227, 196, 0.3), transparent 70%),
    linear-gradient(135deg, var(--teal-deep) 0%, var(--teal) 100%);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  position: relative;
  overflow: hidden;
}

.gallery-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 247, 237, 0.18) 0 1px, transparent 1.5px);
  background-size: 32px 32px;
  opacity: 0.6;
  pointer-events: none;
}

.michi-marquee {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(180px, 1fr);
  gap: 20px;
  width: min(1340px, calc(100% - 28px));
  margin: 0 auto;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
  padding: 6px 0;
}

.michi-marquee img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 3px solid var(--ink);
  border-radius: var(--radius-md);
  background: var(--cream);
  box-shadow: 8px 8px 0 var(--ink);
  transform: rotate(var(--tilt, 0deg));
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.michi-marquee img:hover {
  transform: translate(-2px, -2px) rotate(var(--tilt-hover, -2deg));
  box-shadow: 12px 12px 0 var(--ink);
}

.michi-marquee img:nth-child(3n + 1) {
  --tilt: -2deg;
  --tilt-hover: -4deg;
}

.michi-marquee img:nth-child(3n + 2) {
  --tilt: 1.5deg;
  --tilt-hover: -0.5deg;
}

.michi-marquee img:nth-child(3n) {
  --tilt: -0.5deg;
  --tilt-hover: -2.5deg;
}

/* ============ VALUE GRID ============ */
.value-grid,
.benefit-grid,
.community-grid {
  display: grid;
  gap: 20px;
}

.value-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 54px;
}

.value-card,
.benefit-grid article,
.pillar-list article,
.security-list article,
.faq-list details {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--grad-card);
  transition: transform 280ms ease, border-color 280ms ease, background 280ms ease,
    box-shadow 280ms ease;
}

.value-card:hover,
.benefit-grid article:hover,
.pillar-list article:hover,
.security-list article:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 202, 79, 0.4);
  background: var(--grad-card-hover);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.32);
}

.value-card {
  padding: 26px;
  overflow: hidden;
}

.value-card-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(132, 227, 196, 0.16), rgba(255, 202, 79, 0.1));
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.value-num {
  display: inline-block;
  color: rgba(255, 247, 237, 0.32);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.value-card span:not(.value-num):not(.value-card-icon) {
  display: none;
}

.strong-message,
.closing-claim {
  padding: 22px 26px;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  background: linear-gradient(90deg, rgba(255, 202, 79, 0.1), rgba(255, 255, 255, 0.04));
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.4;
}

/* ============ TOKEN SECTION ============ */
.token-section {
  position: relative;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(169, 118, 255, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(255, 114, 94, 0.1), transparent 60%),
    #161827;
}

.token-visual {
  position: sticky;
  top: 120px;
  min-height: 580px;
  display: grid;
  place-items: center;
}

.token-visual > img {
  width: min(100%, 460px);
  border: 3px solid var(--ink);
  border-radius: var(--radius-md);
  background: var(--cream);
  box-shadow: 16px 16px 0 var(--gold), var(--shadow-lg);
  transform: rotate(-2deg);
  transition: transform 320ms ease, box-shadow 320ms ease;
}

.token-visual > img:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow: 18px 18px 0 var(--gold), var(--shadow-lg);
}

.token-badge {
  position: absolute;
  right: 4%;
  bottom: 14%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--solana-green), var(--solana-cyan) 45%, var(--solana-purple));
  color: #071f1a;
  box-shadow: 10px 10px 0 var(--ink);
  animation: floatStat 4s ease-in-out infinite;
}

.token-badge-icon {
  width: 42px;
  height: 42px;
  border: 2px solid rgba(7, 31, 26, 0.45);
  filter: drop-shadow(0 4px 10px rgba(7, 31, 26, 0.22));
}

.token-badge strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}

.token-badge span {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.utility-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0;
}

.utility-list div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--grad-card);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.utility-list div:hover {
  transform: translateY(-3px);
  border-color: rgba(169, 118, 255, 0.4);
  background: var(--grad-card-hover);
}

.utility-list h3 {
  margin-bottom: 6px;
  color: var(--violet-soft);
}

.utility-list p {
  margin-bottom: 0;
  font-size: 0.92rem;
  line-height: 1.5;
}

.disclaimer {
  padding: 18px 20px;
  border: 1px solid rgba(255, 202, 79, 0.32);
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(255, 202, 79, 0.06), transparent);
  color: #fff0c2;
  font-size: 0.92rem;
}

/* ============ SECTION HEADING ============ */
.section-heading {
  text-align: center;
}

.section-heading .eyebrow {
  margin-inline: auto;
}

.section-heading .section-lead {
  max-width: 760px;
  margin-inline: auto;
}

/* ============ ECOSYSTEM SECTION ============ */
.ecosystem-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(132, 227, 196, 0.12), transparent 34%),
    linear-gradient(225deg, rgba(255, 202, 79, 0.12), transparent 36%),
    linear-gradient(180deg, #141827 0%, #101f1c 100%);
}

.ecosystem-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 247, 237, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 247, 237, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, transparent, black 16%, black 84%, transparent);
}

.ecosystem-section > .content-grid {
  position: relative;
  z-index: 1;
}

.ecosystem-heading .section-lead {
  max-width: 820px;
}

.ecosystem-section .ecosystem-layout {
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1fr);
  align-items: center;
  gap: 48px;
  margin-top: 56px;
}

.ecosystem-map {
  position: sticky;
  top: 120px;
  width: 100%;
  aspect-ratio: 1;
  max-width: 540px;
  margin-inline: auto;
  isolation: isolate;
}

.ecosystem-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 24px rgba(255, 202, 79, 0.16));
  animation: spinRing 80s linear infinite;
}

.ecosystem-center,
.eco-node {
  position: absolute;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 999px;
  box-shadow: 8px 8px 0 var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  text-align: center;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.ecosystem-center {
  top: 50%;
  left: 50%;
  width: 178px;
  height: 178px;
  transform: translate(-50%, -50%);
  background:
    linear-gradient(135deg, var(--gold), var(--gold-bright) 58%, var(--mint));
  color: #151106;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 0 70px rgba(255, 202, 79, 0.42), 8px 8px 0 var(--ink);
  z-index: 3;
}

.ecosystem-center strong {
  font-size: 1.4rem;
  letter-spacing: 0;
}

.ecosystem-center span {
  max-width: 110px;
  color: rgba(21, 17, 6, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.solana-logo-center {
  width: 46px;
  margin-bottom: 4px;
}

.eco-node {
  width: 148px;
  min-height: 58px;
  padding: 8px 12px;
  background: var(--cream);
  color: #151106;
  font-size: 0.84rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  line-height: 1.1;
  z-index: 2;
}

.eco-node:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 247, 237, 0.4);
  box-shadow: 10px 10px 0 var(--ink);
}

.eco-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(10, 11, 20, 0.12);
  font-size: 0.68rem;
  font-weight: 900;
}

.node-1 { top: 3%; left: 50%; transform: translateX(-50%); background: var(--gold); }
.node-1:hover { transform: translate(-50%, -3px); box-shadow: 10px 10px 0 var(--ink); }
.node-2 { top: 20%; right: 1%; background: var(--mint); }
.node-3 { bottom: 20%; right: 1%; background: var(--rose); }
.node-4 { bottom: 3%; left: 50%; transform: translateX(-50%); background: var(--sky); }
.node-4:hover { transform: translate(-50%, -3px); box-shadow: 10px 10px 0 var(--ink); }
.node-5 { bottom: 20%; left: 1%; background: var(--gold-bright); }
.node-6 { top: 20%; left: 1%; background: var(--violet); color: #ffffff; }
.node-6 .eco-icon { background: rgba(255, 255, 255, 0.18); }

.ecosystem-cat {
  position: absolute;
  z-index: 1;
  width: 28%;
  min-width: 108px;
  aspect-ratio: 1;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.28));
}

.ecosystem-cat-a {
  left: 8%;
  top: 36%;
  transform: rotate(-8deg);
}

.ecosystem-cat-b {
  right: 8%;
  top: 42%;
  transform: rotate(8deg) scaleX(-1);
}

.ecosystem-showcase {
  display: grid;
  gap: 18px;
}

@media (min-width: 1121px) {
  .ecosystem-showcase,
  .ecosystem-pillar-band {
    padding-right: 52px;
  }
}

.ecosystem-feature {
  --feature-accent: var(--gold);
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 136px;
  gap: 22px;
  min-height: 190px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--feature-accent) 16%, transparent), transparent 58%),
    var(--grad-card);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease,
    box-shadow 260ms ease;
}

.ecosystem-feature::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--feature-accent);
}

.ecosystem-feature:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--feature-accent) 54%, white 10%);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--feature-accent) 22%, transparent), transparent 60%),
    var(--grad-card-hover);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
}

.feature-genesis { --feature-accent: var(--gold); }
.feature-foundation { --feature-accent: var(--mint); }
.feature-world { --feature-accent: var(--violet); }

.ecosystem-feature-copy {
  position: relative;
  z-index: 1;
}

.feature-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--feature-accent);
  font-family: var(--font-display);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ecosystem-feature h3 {
  margin-bottom: 8px;
  color: var(--text);
  font-size: clamp(1.22rem, 2vw, 1.56rem);
  line-height: 1.08;
}

.ecosystem-feature p {
  margin-bottom: 14px;
  color: rgba(255, 247, 237, 0.78);
  font-size: 0.95rem;
  line-height: 1.5;
}

.ecosystem-feature ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ecosystem-feature li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 247, 237, 0.66);
  font-size: 0.88rem;
  line-height: 1.42;
}

.ecosystem-feature li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--feature-accent);
}

.ecosystem-feature img {
  align-self: end;
  justify-self: center;
  width: min(100%, 132px);
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 20px 22px rgba(0, 0, 0, 0.34));
  transform: translateY(12px) rotate(3deg);
  transition: transform 260ms ease;
}

.ecosystem-feature:hover img {
  transform: translateY(6px) rotate(0deg) scale(1.04);
}

.ecosystem-pillar-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.ecosystem-pillar-band article {
  position: relative;
  min-height: 178px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
}

.ecosystem-pillar-band article:hover {
  transform: translateY(-4px);
  border-color: rgba(132, 227, 196, 0.36);
  background: rgba(255, 255, 255, 0.085);
}

.ecosystem-pillar-band span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 247, 237, 0.16);
  border-radius: 999px;
  color: var(--mint);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ecosystem-pillar-band h3 {
  color: var(--text);
}

.ecosystem-pillar-band p {
  margin-bottom: 0;
  color: rgba(255, 247, 237, 0.7);
  font-size: 0.92rem;
  line-height: 1.52;
}

/* ============ SUPPORTERS ============ */
.supporters-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-top: 96px;
  background:
    linear-gradient(120deg, rgba(255, 145, 183, 0.16), transparent 28%),
    conic-gradient(from 220deg at 74% 34%, rgba(255, 202, 79, 0.18), rgba(169, 118, 255, 0.2), rgba(20, 241, 149, 0.12), rgba(255, 114, 94, 0.18), rgba(255, 202, 79, 0.18)),
    linear-gradient(180deg, #15091f 0%, #0c111d 48%, #101a16 100%);
}

.supporters-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(90deg, rgba(255, 247, 237, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 247, 237, 0.035) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(to bottom, transparent, black 16%, black 82%, transparent);
  pointer-events: none;
}

.supporters-section::after {
  content: "";
  position: absolute;
  inset: 8% -20% auto;
  z-index: 0;
  height: 64%;
  background: linear-gradient(90deg, transparent, rgba(255, 202, 79, 0.16), rgba(255, 145, 183, 0.18), rgba(128, 236, 255, 0.14), transparent);
  filter: blur(48px);
  transform: rotate(-6deg);
  pointer-events: none;
}

.supporter-constellation {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.74;
  background-image:
    radial-gradient(circle, rgba(255, 247, 237, 0.78) 0 1px, transparent 1.6px),
    radial-gradient(circle, rgba(255, 202, 79, 0.64) 0 1.2px, transparent 1.8px),
    radial-gradient(circle, rgba(132, 227, 196, 0.52) 0 1px, transparent 1.6px);
  background-position: 12px 18px, 74px 52px, 128px 8px;
  background-size: 146px 146px, 214px 214px, 278px 278px;
  mask-image: radial-gradient(ellipse at center, black 0%, black 58%, transparent 88%);
}

.supporters-section > .content-grid {
  position: relative;
  z-index: 1;
}

.wide-heading {
  max-width: 880px;
}

.supporters-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: 28px;
  align-items: end;
}

.supporter-pass {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255, 247, 237, 0.16);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035)),
    rgba(14, 9, 25, 0.72);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.supporter-pass::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 24%, rgba(255, 255, 255, 0.18) 42%, transparent 58%),
    radial-gradient(ellipse at 80% 8%, rgba(255, 202, 79, 0.28), transparent 48%);
  transform: translateX(-35%);
  opacity: 0.75;
  pointer-events: none;
}

.supporter-pass > * {
  position: relative;
  z-index: 1;
}

.supporter-pass-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 202, 79, 0.38);
  border-radius: 999px;
  background: rgba(255, 202, 79, 0.1);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.supporter-pass strong {
  display: block;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.supporter-pass p {
  margin: 12px 0 18px;
  color: rgba(255, 247, 237, 0.76);
  font-size: 0.94rem;
}

.supporter-pass-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.supporter-pass-stats span {
  display: grid;
  gap: 3px;
  min-height: 74px;
  padding: 10px;
  border: 1px solid rgba(255, 247, 237, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 247, 237, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.24;
}

.supporter-pass-stats b {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.supporter-showcase {
  display: grid;
  grid-template-columns: minmax(290px, 0.82fr) minmax(0, 1.18fr);
  gap: 22px;
  align-items: stretch;
  margin-top: 28px;
}

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

.supporter-gallery-grid .supporter-art-card:nth-child(1),
.supporter-gallery-grid .supporter-art-card:nth-child(2) {
  grid-column: span 3;
}

.supporter-gallery-grid .supporter-art-card:nth-child(3),
.supporter-gallery-grid .supporter-art-card:nth-child(4),
.supporter-gallery-grid .supporter-art-card:nth-child(5) {
  grid-column: span 2;
}

.supporter-art-card {
  --supporter-accent: var(--gold);
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid rgba(255, 247, 237, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.3);
}

.supporter-feature-card {
  min-height: 540px;
}

.supporter-art-card[data-tone="violet"] { --supporter-accent: var(--violet); }
.supporter-art-card[data-tone="mint"] { --supporter-accent: var(--mint); }
.supporter-art-card[data-tone="peach"] { --supporter-accent: var(--coral-soft); }
.supporter-art-card[data-tone="blue"] { --supporter-accent: var(--sky); }
.supporter-art-card[data-tone="pink"] { --supporter-accent: var(--rose); }

.supporter-art-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 48%, rgba(10, 11, 20, 0.88) 100%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 36%);
  pointer-events: none;
}

.supporter-art-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 1px color-mix(in srgb, var(--supporter-accent) 55%, transparent),
    inset 0 -44px 90px color-mix(in srgb, var(--supporter-accent) 22%, transparent),
    0 0 48px color-mix(in srgb, var(--supporter-accent) 22%, transparent);
  pointer-events: none;
}

.supporter-art-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 550ms ease, filter 550ms ease;
}

.supporter-art-card:hover img,
.supporter-art-card:focus-within img {
  transform: scale(1.08);
  filter: saturate(1.12) brightness(1.06);
}

.supporter-card-label {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 3;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 247, 237, 0.16);
  border-radius: var(--radius-sm);
  background: rgba(10, 11, 20, 0.52);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
}

.supporter-card-label span,
.supporter-card-label strong {
  font-family: var(--font-display);
  line-height: 1;
}

.supporter-card-label span {
  color: var(--supporter-accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.supporter-card-label strong {
  color: var(--text);
  font-size: clamp(0.92rem, 1.45vw, 1.18rem);
  letter-spacing: -0.015em;
  text-align: right;
}

.benefit-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
}

.benefit-grid article {
  position: relative;
  min-height: 196px;
  padding: 24px;
  padding-top: 70px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.supporters-section .benefit-grid article::before {
  content: "";
  position: absolute;
  inset: auto 18px -48px;
  height: 86px;
  background: linear-gradient(90deg, transparent, rgba(255, 202, 79, 0.18), rgba(132, 227, 196, 0.12), transparent);
  filter: blur(22px);
  pointer-events: none;
}

.benefit-icon {
  position: absolute;
  top: 24px;
  left: 24px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), var(--gold));
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 0 26px rgba(255, 202, 79, 0.28);
}

.closing-claim {
  margin-top: 28px;
  max-width: 940px;
}

@media (min-width: 1180px) {
  .supporters-section .supporter-showcase,
  .supporters-section .benefit-grid {
    padding-right: 74px;
  }
}

/* ============ NFT MARKET ============ */
.nft-market-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 118px 0 128px;
  border-top: 1px solid rgba(132, 227, 196, 0.18);
  border-bottom: 1px solid rgba(255, 202, 79, 0.16);
  background:
    linear-gradient(90deg, rgba(5, 8, 18, 0.84) 0%, rgba(5, 8, 18, 0.7) 42%, rgba(5, 8, 18, 0.52) 100%),
    linear-gradient(180deg, rgba(5, 8, 18, 0.5) 0%, rgba(5, 8, 18, 0.76) 100%),
    url("assets/nft-market-background.webp") center / cover no-repeat,
    #090b14;
}

.nft-market-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 247, 237, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 247, 237, 0.035) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(180deg, transparent, black 15%, black 86%, transparent);
  pointer-events: none;
}

.nft-market-section::after {
  content: "";
  position: absolute;
  inset: 12% -18% auto;
  z-index: 0;
  height: 58%;
  background: linear-gradient(90deg, transparent, rgba(132, 227, 196, 0.14), rgba(255, 202, 79, 0.16), rgba(169, 118, 255, 0.13), transparent);
  filter: blur(42px);
  transform: rotate(4deg);
  pointer-events: none;
}

.nft-market-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.58;
  background:
    linear-gradient(118deg, transparent 0 30%, rgba(255, 247, 237, 0.08) 45%, transparent 61%),
    repeating-linear-gradient(135deg, rgba(255, 247, 237, 0.035) 0 1px, transparent 1px 18px);
  mix-blend-mode: screen;
  pointer-events: none;
}

.nft-market-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  gap: 46px;
  align-items: center;
}

.nft-market-copy {
  max-width: 650px;
}

.nft-market-copy .eyebrow {
  border-color: rgba(132, 227, 196, 0.34);
  background: rgba(132, 227, 196, 0.09);
  color: var(--mint);
  letter-spacing: 0;
}

.nft-market-copy h2 {
  max-width: 620px;
  font-size: 4rem;
  letter-spacing: 0;
}

.nft-market-copy .section-lead {
  max-width: 600px;
  margin-bottom: 24px;
  font-size: 1.24rem;
  line-height: 1.5;
}

.nft-market-text {
  display: grid;
  gap: 14px;
}

.nft-market-text p {
  margin-bottom: 0;
  color: rgba(255, 247, 237, 0.78);
}

.nft-market-claim {
  margin-top: 4px;
  padding: 20px 22px;
  border-left: 4px solid var(--mint);
  border-radius: var(--radius-sm);
  background: linear-gradient(90deg, rgba(132, 227, 196, 0.12), rgba(255, 202, 79, 0.07), rgba(255, 255, 255, 0.035));
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.42;
  letter-spacing: 0;
}

.nft-market-claim strong {
  color: var(--gold);
}

.nft-market-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.nft-market-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 247, 237, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.065);
  color: rgba(255, 247, 237, 0.82);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
}

.nft-market-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  grid-auto-rows: minmax(284px, auto);
  gap: 16px;
}

.nft-market-card {
  --nft-accent: var(--gold);
  position: relative;
  overflow: hidden;
  min-height: 284px;
  border: 1px solid rgba(255, 247, 237, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.32);
}

.nft-market-feature {
  grid-column: 1;
  grid-row: 1 / span 2;
  min-height: 584px;
}

.nft-market-card[data-tone="emerald"] { --nft-accent: var(--mint); }
.nft-market-card[data-tone="inferno"] { --nft-accent: var(--coral); }
.nft-market-card[data-tone="cosmic"] { --nft-accent: var(--sky); }
.nft-market-card[data-tone="violet"] {
  --nft-accent: var(--violet-soft);
  grid-column: 1 / -1;
  min-height: 340px;
}

.nft-market-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 46%, rgba(8, 10, 18, 0.9) 100%),
    linear-gradient(135deg, color-mix(in srgb, var(--nft-accent) 18%, transparent), transparent 42%);
  pointer-events: none;
}

.nft-market-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 1px color-mix(in srgb, var(--nft-accent) 58%, transparent),
    inset 0 -42px 92px color-mix(in srgb, var(--nft-accent) 20%, transparent),
    0 0 54px color-mix(in srgb, var(--nft-accent) 18%, transparent);
  pointer-events: none;
}

.nft-market-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 520ms ease, filter 520ms ease;
}

.nft-market-card:hover img,
.nft-market-card:focus-within img {
  transform: scale(1.08);
  filter: saturate(1.12) brightness(1.06);
}

.nft-market-card-label {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 3;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 247, 237, 0.16);
  border-radius: var(--radius-sm);
  background: rgba(8, 10, 18, 0.58);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
}

.nft-market-card-label span,
.nft-market-card-label strong {
  font-family: var(--font-display);
  line-height: 1;
  letter-spacing: 0;
}

.nft-market-card-label span {
  color: var(--nft-accent);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nft-market-card-label strong {
  color: var(--text);
  font-size: 1.06rem;
  text-align: right;
}

@media (max-width: 1120px) {
  .nft-market-layout {
    grid-template-columns: 1fr;
  }

  .nft-market-copy {
    max-width: 840px;
  }

  .nft-market-copy h2 {
    max-width: 780px;
  }

  .nft-market-gallery {
    width: min(100%, 860px);
    margin-inline: auto;
  }
}

@media (max-width: 760px) {
  .nft-market-section {
    padding: 86px 0;
  }

  .nft-market-layout {
    gap: 30px;
  }

  .nft-market-copy h2 {
    font-size: 2.7rem;
  }

  .nft-market-copy .section-lead {
    font-size: 1.06rem;
  }

  .nft-market-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 14px;
  }

  .nft-market-feature,
  .nft-market-card[data-tone="violet"] {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .nft-market-feature {
    min-height: 430px;
  }

  .nft-market-card {
    min-height: 250px;
  }

  .nft-market-card[data-tone="violet"] {
    min-height: 340px;
  }

  .nft-market-card-label {
    left: 10px;
    right: 10px;
    bottom: 10px;
    align-items: start;
    flex-direction: column;
    padding: 10px;
  }

  .nft-market-card-label strong {
    text-align: left;
  }
}

@media (max-width: 440px) {
  .nft-market-copy h2 {
    font-size: 2.35rem;
  }

  .nft-market-claim {
    padding: 18px;
  }

  .nft-market-tags {
    gap: 8px;
  }

  .nft-market-tags span {
    width: 100%;
    justify-content: center;
  }

  .nft-market-gallery {
    grid-template-columns: 1fr;
  }

  .nft-market-feature,
  .nft-market-card,
  .nft-market-card[data-tone="violet"] {
    min-height: 330px;
  }
}

/* ============ MICHI NOVA WORLD ============ */
.michi-world-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 880px;
  padding: 126px 0;
  border-top: 1px solid rgba(128, 236, 255, 0.22);
  border-bottom: 1px solid rgba(255, 202, 79, 0.24);
  background: #070a14;
}

.michi-world-backdrop {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.michi-world-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.76;
  filter: saturate(1.08) contrast(1.04);
}

.michi-world-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 10, 20, 0.9) 0%, rgba(7, 10, 20, 0.58) 38%, rgba(7, 10, 20, 0.18) 62%, rgba(7, 10, 20, 0.78) 100%),
    linear-gradient(180deg, rgba(7, 10, 20, 0.66) 0%, rgba(7, 10, 20, 0.28) 45%, rgba(7, 10, 20, 0.86) 100%);
}

.michi-world-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(128, 236, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(128, 236, 255, 0.055) 1px, transparent 1px),
    linear-gradient(115deg, transparent 0 44%, rgba(255, 202, 79, 0.3) 48%, rgba(128, 236, 255, 0.35) 51%, transparent 56%);
  background-size: 82px 82px, 82px 82px, 100% 100%;
  mix-blend-mode: screen;
  opacity: 0.62;
}

.michi-world-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1.04fr);
  gap: 34px;
  align-items: center;
}

.michi-world-copy {
  max-width: 720px;
}

.michi-world-copy h2 {
  max-width: 760px;
  background: linear-gradient(180deg, #ffffff 0%, #d9f5ff 54%, var(--gold-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 42px rgba(128, 236, 255, 0.34), 0 0 58px rgba(169, 118, 255, 0.28);
}

.michi-world-copy .section-lead {
  max-width: 650px;
  color: rgba(255, 247, 237, 0.94);
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.42);
}

.world-mode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.world-mode-card {
  --world-accent: var(--mint);
  position: relative;
  min-height: 210px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid color-mix(in srgb, var(--world-accent) 44%, rgba(255, 255, 255, 0.12));
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04)),
    rgba(8, 12, 24, 0.72);
  box-shadow:
    0 26px 60px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px) saturate(145%);
  -webkit-backdrop-filter: blur(16px) saturate(145%);
}

.world-mode-card::before {
  content: "";
  position: absolute;
  inset: auto 16px -42px;
  height: 100px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--world-accent) 34%, transparent), transparent);
  filter: blur(24px);
}

.mode-arena {
  --world-accent: var(--violet);
}

.world-mode-index {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border: 1px solid color-mix(in srgb, var(--world-accent) 62%, transparent);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--world-accent);
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 800;
}

.world-mode-card h3,
.world-mode-card p {
  position: relative;
  z-index: 1;
}

.world-mode-card h3 {
  color: var(--text);
}

.world-mode-card p {
  margin-bottom: 0;
  color: rgba(255, 247, 237, 0.76);
  font-size: 0.94rem;
}

.michi-world-panel {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(128, 236, 255, 0.28);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(128, 236, 255, 0.14), rgba(169, 118, 255, 0.09), rgba(255, 202, 79, 0.08)),
    rgba(7, 10, 20, 0.55);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.42),
    0 0 80px rgba(128, 236, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(20px) saturate(145%);
  -webkit-backdrop-filter: blur(20px) saturate(145%);
}

.michi-world-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 100% 100%, 100% 9px;
  opacity: 0.48;
  pointer-events: none;
}

.world-panel-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 247, 237, 0.14);
  border-radius: var(--radius-sm);
  background: rgba(7, 10, 20, 0.52);
}

.world-panel-header span {
  color: var(--solana-cyan);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.world-panel-header strong {
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(0.98rem, 1.6vw, 1.22rem);
  line-height: 1;
  text-align: right;
}

.world-portal-stage {
  position: relative;
  z-index: 1;
  isolation: isolate;
  overflow: hidden;
  width: min(100%, 720px);
  aspect-ratio: 1 / 1;
  margin-inline: auto;
  border: 1px solid rgba(128, 236, 255, 0.28);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(255, 202, 79, 0.14), rgba(128, 236, 255, 0.12), rgba(169, 118, 255, 0.12)),
    #050814;
  box-shadow:
    0 28px 68px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.world-portal-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 6;
  background:
    linear-gradient(90deg, rgba(255, 202, 79, 0.16), transparent 24%, transparent 76%, rgba(128, 236, 255, 0.16)),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 7px);
  mix-blend-mode: screen;
  opacity: 0.42;
  pointer-events: none;
}

.world-scene,
.world-scene-image,
.world-portal-scan {
  position: absolute;
}

.world-scene {
  inset: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  will-change: opacity, transform, filter;
}

.world-scene-farm {
  animation: farmSceneCycle 9s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.world-scene-portal {
  animation: portalSceneCycle 9s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.world-scene-warriors {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 14px;
  padding: 16px;
  background:
    linear-gradient(120deg, rgba(255, 114, 94, 0.26), transparent 42%, rgba(128, 236, 255, 0.22)),
    linear-gradient(180deg, rgba(255, 247, 237, 0.9), rgba(229, 243, 255, 0.92));
  animation: warriorsSceneCycle 9s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.world-scene-image {
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform-origin: 50% 50%;
  will-change: transform, filter;
}

.world-scene-farm .world-scene-image {
  animation: farmImageDrift 9s ease-in-out infinite;
}

.world-scene-portal .world-scene-image {
  animation: portalImageFlash 9s ease-in-out infinite;
}

.world-scene-warriors::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.72), transparent 24%, transparent 76%, rgba(255, 255, 255, 0.72)),
    linear-gradient(180deg, transparent 58%, rgba(7, 10, 20, 0.22) 100%);
  pointer-events: none;
}

.world-scene-warriors::after {
  content: "";
  position: absolute;
  top: 8%;
  bottom: 8%;
  left: 50%;
  z-index: 3;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.58), transparent);
  box-shadow: 0 0 18px rgba(128, 236, 255, 0.34);
  pointer-events: none;
}

.warrior-slot {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: end center;
  width: 100%;
  height: min(100%, 520px);
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 247, 237, 0.42);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 50% 82%, rgba(255, 255, 255, 0.76), transparent 0 19%, rgba(255, 255, 255, 0.34) 28%, transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.2));
  box-shadow:
    0 20px 42px rgba(7, 10, 20, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.warrior-slot::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 36%),
    radial-gradient(circle at var(--duel-glow-x, 50%) 28%, var(--duel-glow, rgba(255, 114, 94, 0.22)), transparent 48%);
  pointer-events: none;
}

.warrior-slot::after {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: 9%;
  z-index: 0;
  height: 10%;
  border-radius: 50%;
  background: var(--duel-floor, rgba(255, 114, 94, 0.2));
  filter: blur(12px);
  pointer-events: none;
}

.warrior-slot-blaze {
  --duel-glow-x: 36%;
  --duel-glow: rgba(255, 114, 94, 0.3);
  --duel-floor: rgba(255, 114, 94, 0.28);
}

.warrior-slot-crystal {
  --duel-glow-x: 66%;
  --duel-glow: rgba(128, 236, 255, 0.28);
  --duel-floor: rgba(128, 236, 255, 0.28);
}

.warrior-image {
  position: relative;
  z-index: 1;
  width: 198%;
  height: 104%;
  max-width: none;
  object-fit: contain;
  object-position: center bottom;
  filter: saturate(1.08) contrast(1.04);
  will-change: transform, filter;
}

.warrior-one {
  animation: warriorOneEntrance 9s ease-in-out infinite;
}

.warrior-two {
  animation: warriorTwoEntrance 9s ease-in-out infinite;
}

.world-portal-scan {
  inset: -20%;
  z-index: 7;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), rgba(128, 236, 255, 0.36), transparent);
  filter: blur(8px);
  mix-blend-mode: screen;
  opacity: 0;
  pointer-events: none;
  animation: worldPortalSweep 9s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

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

.world-champion-card {
  --champion-accent: var(--coral);
  position: relative;
  overflow: hidden;
  min-height: 540px;
  border: 1px solid color-mix(in srgb, var(--champion-accent) 48%, rgba(255, 255, 255, 0.12));
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.34), 0 0 42px color-mix(in srgb, var(--champion-accent) 16%, transparent);
}

.champion-crystal {
  --champion-accent: var(--solana-cyan);
  margin-top: 46px;
}

.world-champion-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 52%, rgba(7, 10, 20, 0.88) 100%),
    linear-gradient(135deg, color-mix(in srgb, var(--champion-accent) 20%, transparent), transparent 38%);
  pointer-events: none;
}

.world-champion-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 500ms ease, filter 500ms ease;
}

.world-champion-card:hover img {
  transform: scale(1.07);
  filter: saturate(1.08) brightness(1.04);
}

.world-champion-card div {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  padding: 13px 14px;
  border: 1px solid rgba(255, 247, 237, 0.14);
  border-radius: var(--radius-sm);
  background: rgba(7, 10, 20, 0.62);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
}

.world-champion-card span {
  display: block;
  margin-bottom: 7px;
  color: var(--champion-accent);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.world-champion-card strong {
  display: block;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  line-height: 1.05;
}

.world-reward-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
}

.world-reward-strip span {
  display: grid;
  place-items: center;
  min-height: 46px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 202, 79, 0.22);
  border-radius: var(--radius-sm);
  background: rgba(255, 202, 79, 0.08);
  color: rgba(255, 247, 237, 0.84);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
}

@keyframes farmSceneCycle {
  0%,
  44.444% {
    opacity: 1;
    transform: scale(1);
    filter: saturate(1.08) contrast(1.04);
  }
  47%,
  97% {
    opacity: 0;
    transform: scale(1.08);
    filter: saturate(1.2) contrast(1.08) blur(5px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: saturate(1.08) contrast(1.04);
  }
}

@keyframes portalSceneCycle {
  0%,
  42.8% {
    opacity: 0;
    transform: scale(1.16);
    filter: saturate(1.3) contrast(1.12) blur(7px);
  }
  44.444%,
  55.556% {
    opacity: 1;
    transform: scale(1.02);
    filter: saturate(1.18) contrast(1.08) brightness(1.08);
  }
  58%,
  100% {
    opacity: 0;
    transform: scale(1.18);
    filter: saturate(1.25) contrast(1.1) blur(8px);
  }
}

@keyframes warriorsSceneCycle {
  0%,
  53.8% {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
    filter: saturate(1.04) blur(5px);
  }
  55.556%,
  97% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: saturate(1.08);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px) scale(1.02);
    filter: saturate(1.12) blur(4px);
  }
}

@keyframes farmImageDrift {
  0%,
  100% {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  44.444% {
    transform: scale(1.09) translate3d(-1%, 1%, 0);
  }
}

@keyframes portalImageFlash {
  0%,
  42.8% {
    transform: scale(1.2) rotate(-0.5deg);
  }
  44.444% {
    transform: scale(1.08) rotate(0deg);
  }
  55.556% {
    transform: scale(1.01) rotate(0.35deg);
  }
  100% {
    transform: scale(1.18) rotate(0.35deg);
  }
}

@keyframes warriorOneEntrance {
  0%,
  53.8% {
    transform: translate3d(-6%, 2%, 0) scale(0.94);
  }
  55.556%,
  97% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(-4%, -1%, 0) scale(0.98);
  }
}

@keyframes warriorTwoEntrance {
  0%,
  53.8% {
    transform: translate3d(6%, 2%, 0) scale(0.94);
  }
  55.556%,
  97% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(4%, -1%, 0) scale(0.98);
  }
}

@keyframes worldPortalSweep {
  0%,
  42% {
    opacity: 0;
    transform: translateX(-120%) rotate(13deg);
  }
  44.444% {
    opacity: 0.88;
    transform: translateX(-30%) rotate(13deg);
  }
  55.556% {
    opacity: 0.82;
    transform: translateX(260%) rotate(13deg);
  }
  58%,
  100% {
    opacity: 0;
    transform: translateX(330%) rotate(13deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .world-scene-farm {
    opacity: 1;
  }

  .world-scene-portal,
  .world-scene-warriors,
  .world-portal-scan {
    display: none;
  }
}

/* ============ NOVA MICHIS FOUNDATION STORY ============ */
.foundation-story-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(94px, 10vw, 148px) 0;
  border-top: 1px solid rgba(132, 227, 196, 0.32);
  border-bottom: 1px solid rgba(255, 202, 79, 0.28);
  background:
    linear-gradient(90deg, rgba(5, 11, 14, 0.9) 0%, rgba(5, 11, 14, 0.76) 42%, rgba(5, 11, 14, 0.58) 100%),
    linear-gradient(180deg, rgba(5, 11, 14, 0.78) 0%, rgba(5, 11, 14, 0.58) 48%, rgba(5, 8, 16, 0.88) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(0deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px) 0 0 / 72px 72px,
    radial-gradient(ellipse 88% 58% at 18% 52%, rgba(132, 227, 196, 0.19), transparent 66%),
    radial-gradient(ellipse 74% 50% at 86% 26%, rgba(255, 202, 79, 0.15), transparent 64%),
    url("assets/foundation-background.webp") center / cover no-repeat,
    linear-gradient(145deg, rgba(5, 16, 15, 0.99) 0%, rgba(11, 22, 38, 0.99) 47%, rgba(20, 17, 35, 0.99) 100%),
    #07120f;
  color: var(--text);
}

/* ----- Foundation HERO BAND ----- */
.foundation-hero-band {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto clamp(48px, 6vw, 76px);
  padding: 0 12px;
  text-align: center;
}

.foundation-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 8px 16px;
  border: 1px solid rgba(132, 227, 196, 0.45);
  border-radius: 999px;
  background: rgba(132, 227, 196, 0.1);
  color: var(--mint-bright);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 0 30px rgba(132, 227, 196, 0.25);
}

.foundation-hero-eyebrow .eyebrow-pulse {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mint-bright);
  box-shadow: 0 0 0 3px rgba(132, 227, 196, 0.25);
}

.foundation-hero-eyebrow .eyebrow-pulse::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: var(--mint-bright);
  opacity: 0.7;
  animation: foundationPulse 2s ease-out infinite;
}

@keyframes foundationPulse {
  0% { transform: scale(1); opacity: 0.7; }
  80% { transform: scale(2.4); opacity: 0; }
  100% { transform: scale(2.4); opacity: 0; }
}

.foundation-hero-title {
  max-width: 920px;
  margin: 6px 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.015em;
  background: linear-gradient(180deg, #ffffff 0%, #d3f7e6 38%, var(--gold-bright) 72%, var(--coral-soft) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 24px 80px rgba(132, 227, 196, 0.22);
}

.foundation-hero-title em {
  font-style: normal;
  background: linear-gradient(120deg, var(--mint-bright) 0%, var(--gold) 50%, var(--coral) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 26px rgba(255, 202, 79, 0.35));
}

.foundation-hero-kicker {
  max-width: 780px;
  margin: 4px 0 0;
  color: rgba(255, 247, 237, 0.88);
  font-size: clamp(1.06rem, 1.4vw, 1.32rem);
  font-weight: 500;
  line-height: 1.55;
}

.foundation-hero-kicker b {
  font-weight: 800;
  color: var(--gold-bright);
}

.foundation-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  max-width: 880px;
  margin-top: 14px;
}

.hero-stat-card {
  position: relative;
  overflow: hidden;
  padding: 20px 18px 18px;
  border: 1px solid rgba(132, 227, 196, 0.28);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(132, 227, 196, 0.12), rgba(255, 255, 255, 0.02)),
    rgba(8, 16, 18, 0.62);
  box-shadow:
    0 26px 60px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 0 36px rgba(132, 227, 196, 0.08);
  text-align: left;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}

.hero-stat-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--mint), var(--gold), var(--coral));
  opacity: 0.85;
}

.hero-stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: rgba(132, 227, 196, 0.16);
  color: var(--mint-bright);
  font-size: 1.05rem;
  font-weight: 900;
  box-shadow: 0 0 22px rgba(132, 227, 196, 0.3);
}

.hero-stat-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #ffffff, var(--mint-bright) 60%, var(--gold-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-stat-card span:not(.hero-stat-icon) {
  display: block;
  margin-top: 8px;
  color: rgba(255, 247, 237, 0.78);
  font-size: 0.86rem;
  font-weight: 600;
}

.foundation-hero-band .foundation-actions {
  justify-content: center;
  margin-top: 8px;
}

.foundation-cta-primary {
  position: relative;
  overflow: hidden;
}

.foundation-cta-primary .cta-pulse {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: 0 0 0 0 rgba(255, 202, 79, 0.6);
  animation: foundationCtaPulse 2.2s ease-out infinite;
}

@keyframes foundationCtaPulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 202, 79, 0.55); }
  70% { box-shadow: 0 0 0 18px rgba(255, 202, 79, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 202, 79, 0); }
}

/* ----- Floating hearts ----- */
.foundation-floating-hearts {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.float-heart {
  position: absolute;
  display: inline-block;
  font-size: 22px;
  color: rgba(255, 202, 79, 0.32);
  text-shadow: 0 0 18px rgba(255, 202, 79, 0.5);
  animation: heartFloat 9s ease-in-out infinite;
}

.float-heart.heart-1 { top: 14%; left: 8%; font-size: 18px; color: rgba(132, 227, 196, 0.36); text-shadow: 0 0 14px rgba(132, 227, 196, 0.5); animation-delay: 0s; }
.float-heart.heart-2 { top: 28%; right: 9%; font-size: 26px; color: rgba(255, 145, 183, 0.4); text-shadow: 0 0 16px rgba(255, 145, 183, 0.5); animation-delay: 1.4s; }
.float-heart.heart-3 { bottom: 22%; left: 6%; font-size: 22px; color: rgba(255, 202, 79, 0.38); animation-delay: 2.8s; }
.float-heart.heart-4 { bottom: 14%; right: 12%; font-size: 20px; color: rgba(132, 227, 196, 0.34); text-shadow: 0 0 14px rgba(132, 227, 196, 0.5); animation-delay: 4s; }
.float-heart.heart-5 { top: 52%; left: 50%; font-size: 16px; color: rgba(255, 247, 237, 0.32); animation-delay: 5.4s; }

@keyframes heartFloat {
  0%, 100% { transform: translateY(0) rotate(-4deg); opacity: 0.5; }
  50% { transform: translateY(-26px) rotate(6deg); opacity: 1; }
}

.foundation-story-section::before,
.foundation-story-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.foundation-story-section::before {
  inset: 8% -18% 18%;
  z-index: 0;
  background:
    linear-gradient(108deg, transparent 19%, rgba(132, 227, 196, 0.12) 35%, rgba(255, 202, 79, 0.13) 47%, rgba(255, 114, 94, 0.1) 58%, transparent 75%);
  transform: rotate(-6deg);
  filter: blur(1px);
}

.foundation-story-section::after {
  inset: auto 0 0;
  z-index: 1;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(5, 8, 16, 0.64));
}

.foundation-story-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(115deg, transparent 0 26%, rgba(132, 227, 196, 0.16) 27%, transparent 34%),
    linear-gradient(62deg, transparent 0 58%, rgba(255, 202, 79, 0.13) 59%, transparent 67%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 96px);
  opacity: 0.86;
  pointer-events: none;
}

.foundation-story-rail {
  position: absolute;
  top: 84px;
  bottom: 84px;
  left: max(20px, calc((100% - 1200px) / 2));
  z-index: 1;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, var(--mint), var(--gold), var(--coral), transparent);
  box-shadow: 0 0 28px rgba(132, 227, 196, 0.46);
  opacity: 0.88;
}

.foundation-story-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(390px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(22px, 3vw, 38px);
  align-items: stretch;
}

.foundation-story-media-stack {
  display: grid;
  grid-template-rows: minmax(520px, 1fr) auto;
  gap: 16px;
  min-height: 100%;
}

.foundation-story-art {
  position: relative;
  overflow: hidden;
  min-height: 0;
  height: 100%;
  margin: 0;
  border: 1px solid rgba(132, 227, 196, 0.36);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(132, 227, 196, 0.16), rgba(255, 202, 79, 0.08), rgba(255, 114, 94, 0.1)),
    rgba(255, 255, 255, 0.06);
  box-shadow:
    0 46px 110px rgba(0, 0, 0, 0.5),
    0 0 70px rgba(132, 227, 196, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transform: rotate(-0.8deg);
}

.foundation-story-art::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 2;
  border: 1px solid rgba(255, 247, 237, 0.28);
  border-radius: calc(var(--radius-lg) - 8px);
  box-shadow:
    inset 0 0 0 1px rgba(132, 227, 196, 0.2),
    0 0 40px rgba(128, 236, 255, 0.18);
  pointer-events: none;
}

.foundation-story-art::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 54% 36% at 50% 42%, transparent 0 48%, rgba(5, 11, 14, 0.18) 100%),
    linear-gradient(180deg, rgba(5, 11, 14, 0.05) 0%, transparent 30%, rgba(5, 11, 14, 0.2) 66%, rgba(5, 11, 14, 0.78) 100%),
    linear-gradient(90deg, rgba(5, 11, 14, 0.3), transparent 28%, transparent 70%, rgba(5, 11, 14, 0.26));
  pointer-events: none;
}

.foundation-story-art img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.12) contrast(1.08);
  transform: scale(1.02);
  transition: transform 500ms ease, filter 500ms ease;
}

.foundation-story-art:hover img {
  filter: saturate(1.18) contrast(1.1) brightness(1.04);
  transform: scale(1.055);
}

.foundation-art-badge,
.foundation-aid-tags {
  position: absolute;
  z-index: 3;
}

.foundation-art-badge {
  top: 22px;
  left: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: calc(100% - 44px);
  padding: 9px 13px;
  border: 1px solid rgba(132, 227, 196, 0.42);
  border-radius: 999px;
  background: rgba(5, 12, 18, 0.72);
  color: #ffffff;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.3), 0 0 28px rgba(132, 227, 196, 0.18);
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
}

.foundation-art-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(132, 227, 196, 0.18);
  flex: 0 0 auto;
}

.foundation-aid-tags {
  top: 22px;
  right: 22px;
  display: grid;
  gap: 8px;
}

.foundation-aid-tags span {
  justify-self: end;
  width: max-content;
  max-width: 190px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 247, 237, 0.18);
  border-radius: 999px;
  background: rgba(255, 247, 237, 0.11);
  color: rgba(255, 247, 237, 0.92);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  font-size: 0.78rem;
  font-weight: 800;
  backdrop-filter: blur(14px) saturate(145%);
  -webkit-backdrop-filter: blur(14px) saturate(145%);
}

.foundation-story-art figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 3;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 18px;
  border: 1px solid rgba(255, 247, 237, 0.22);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(135deg, rgba(132, 227, 196, 0.13), rgba(255, 202, 79, 0.08)),
    rgba(7, 12, 18, 0.72);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px) saturate(145%);
  -webkit-backdrop-filter: blur(16px) saturate(145%);
}

.foundation-story-art figcaption span {
  color: var(--mint);
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.foundation-story-art figcaption strong {
  max-width: 280px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.06;
  text-align: right;
}

.foundation-story-copy {
  position: relative;
  display: grid;
  gap: 14px;
  max-width: none;
  padding: 0;
}

.foundation-intro-card,
.foundation-copy-card,
.foundation-support-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 247, 237, 0.14);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.055);
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.13);
}

.foundation-intro-card::before,
.foundation-copy-card::before,
.foundation-support-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--mint), var(--gold), var(--coral));
}

.foundation-intro-card {
  padding: clamp(22px, 2.4vw, 30px);
}

.foundation-story-copy h2 {
  max-width: 680px;
  margin-bottom: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #def9ef 44%, var(--gold-bright) 78%, var(--coral-soft) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 22px 72px rgba(132, 227, 196, 0.18);
}

.foundation-story-kicker {
  max-width: 680px;
  margin: 0 0 22px;
  color: rgba(255, 247, 237, 0.94);
  font-size: clamp(1.08rem, 1.55vw, 1.28rem);
  font-weight: 700;
  line-height: 1.55;
}

.foundation-impact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.foundation-impact-grid article {
  position: relative;
  overflow: hidden;
  min-height: 172px;
  padding: 22px 18px 20px;
  border: 1px solid rgba(255, 247, 237, 0.14);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.045);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}

.foundation-impact-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(132, 227, 196, 0.45);
  box-shadow:
    0 32px 60px rgba(0, 0, 0, 0.32),
    0 0 32px rgba(132, 227, 196, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.foundation-impact-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--mint), var(--gold), var(--coral));
}

.foundation-impact-grid article:nth-child(1)::before { background: linear-gradient(90deg, var(--mint), var(--mint-bright)); }
.foundation-impact-grid article:nth-child(2)::before { background: linear-gradient(90deg, var(--gold), var(--gold-bright)); }
.foundation-impact-grid article:nth-child(3)::before { background: linear-gradient(90deg, var(--coral), var(--rose)); }

.foundation-impact-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: rgba(132, 227, 196, 0.18);
  color: var(--mint-bright);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 0 0 4px rgba(132, 227, 196, 0.08), 0 0 20px rgba(132, 227, 196, 0.28);
}

.foundation-impact-grid article:nth-child(2) span { background: rgba(255, 202, 79, 0.18); color: var(--gold-bright); box-shadow: 0 0 0 4px rgba(255, 202, 79, 0.08), 0 0 20px rgba(255, 202, 79, 0.32); }
.foundation-impact-grid article:nth-child(3) span { background: rgba(255, 114, 94, 0.18); color: var(--coral-soft); box-shadow: 0 0 0 4px rgba(255, 114, 94, 0.08), 0 0 20px rgba(255, 114, 94, 0.32); }

.foundation-impact-grid strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.15;
}

.foundation-impact-grid p {
  margin: 0;
  color: rgba(255, 247, 237, 0.7);
  font-size: 0.88rem;
  line-height: 1.45;
}

.foundation-story-text {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.foundation-copy-card {
  padding: 22px;
}

.foundation-copy-card span,
.foundation-support-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--mint);
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.foundation-copy-card strong,
.foundation-support-card strong {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 1.25vw, 1.22rem);
  font-weight: 800;
  line-height: 1.18;
}

.foundation-copy-card p,
.foundation-support-card p {
  margin: 0;
  color: rgba(255, 247, 237, 0.82);
  font-size: 0.96rem;
  line-height: 1.58;
}

.foundation-emotional-note {
  position: relative;
  margin: 0;
  padding: 32px 30px 28px;
  border: 1px solid rgba(255, 202, 79, 0.36);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(255, 202, 79, 0.22), rgba(132, 227, 196, 0.14), rgba(255, 145, 183, 0.12)),
    rgba(8, 14, 20, 0.6);
  box-shadow:
    0 32px 76px rgba(0, 0, 0, 0.32),
    0 0 60px rgba(255, 202, 79, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
}

.foundation-emotional-note::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  background: linear-gradient(90deg, var(--mint), var(--gold), var(--coral), var(--rose));
}

.foundation-quote-mark {
  position: absolute;
  top: -38px;
  left: 24px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--coral) 100%);
  color: #11131d;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 18px 44px rgba(255, 202, 79, 0.4), 0 0 28px rgba(255, 114, 94, 0.45);
}

.foundation-quote-signature {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed rgba(255, 247, 237, 0.18);
  color: rgba(255, 247, 237, 0.72);
}

.foundation-quote-signature span {
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-weight: 900;
}

.foundation-quote-signature strong {
  color: rgba(255, 247, 237, 0.88);
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.foundation-emotional-note p {
  margin: 0;
  color: rgba(255, 247, 237, 0.86);
  font-size: clamp(1rem, 1.22vw, 1.08rem);
}

.foundation-emotional-note p + p {
  margin-top: 14px;
}

.foundation-emotional-note p:first-child {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 1.8vw, 1.45rem);
  font-weight: 800;
  line-height: 1.22;
}

.foundation-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0;
}

.foundation-actions .btn-ghost {
  border-color: rgba(132, 227, 196, 0.28);
  background: rgba(132, 227, 196, 0.08);
}

.foundation-support-card {
  padding: 22px;
}

.foundation-support-card strong {
  max-width: 440px;
}

.foundation-support-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
}

.foundation-support-strip span {
  display: grid;
  place-items: center;
  min-height: 38px;
  margin: 0;
  border: 1px solid rgba(255, 247, 237, 0.14);
  border-radius: 999px;
  background: rgba(255, 247, 237, 0.08);
  color: rgba(255, 247, 237, 0.86);
  font-size: 0.72rem;
  letter-spacing: 0;
  text-align: center;
  text-transform: none;
}

/* ============ NOVA MICHIS STORE ============ */
.store-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(96px, 10vw, 150px) 0;
  border-top: 1px solid rgba(255, 202, 79, 0.42);
  border-bottom: 1px solid rgba(255, 114, 94, 0.32);
  background:
    linear-gradient(180deg, rgba(18, 8, 4, 0.32), rgba(18, 8, 4, 0.92)),
    #100704;
  color: var(--text);
}

.store-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(18, 8, 4, 0.86), rgba(18, 8, 4, 0.42) 42%, rgba(18, 8, 4, 0.88)),
    linear-gradient(180deg, rgba(18, 8, 4, 0.3), rgba(18, 8, 4, 0.92) 82%),
    url("assets/fondo_ecom.png") center / cover no-repeat;
  filter: saturate(1.12) contrast(1.06);
}

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

.store-section::before {
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 50% at 82% 10%, rgba(255, 202, 79, 0.32), transparent 62%),
    radial-gradient(ellipse 60% 42% at 18% 78%, rgba(255, 114, 94, 0.22), transparent 64%),
    radial-gradient(ellipse 40% 30% at 50% 50%, rgba(255, 145, 183, 0.12), transparent 64%),
    linear-gradient(90deg, rgba(255, 202, 79, 0.04) 1px, transparent 1px) 0 0 / 74px 74px,
    linear-gradient(0deg, rgba(255, 114, 94, 0.022) 1px, transparent 1px) 0 0 / 74px 74px;
}

.store-section::after {
  inset: auto 0 0;
  z-index: -1;
  height: 36%;
  background: linear-gradient(180deg, transparent, rgba(14, 6, 2, 0.96));
}

/* ----- Store HERO BAND ----- */
.store-hero-band {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(20px, 3vw, 38px);
  align-items: stretch;
  margin-bottom: clamp(28px, 3vw, 40px);
}

.store-hero-copy {
  display: grid;
  align-content: start;
  gap: 16px;
}

.store-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 8px 16px;
  width: max-content;
  border: 1px solid rgba(255, 202, 79, 0.55);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 202, 79, 0.22), rgba(255, 114, 94, 0.18));
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 14px 40px rgba(255, 114, 94, 0.2), 0 0 26px rgba(255, 202, 79, 0.28);
}

.store-tag-icon {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(255, 202, 79, 0.22), 0 0 14px rgba(255, 202, 79, 0.6);
}

.store-hero-title {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.018em;
  color: #ffffff;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
}

.store-hero-title em {
  font-style: normal;
  background: linear-gradient(120deg, var(--gold-bright) 0%, var(--coral-soft) 55%, var(--rose) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 28px rgba(255, 202, 79, 0.4));
}

.store-hero-kicker {
  max-width: 600px;
  margin: 0;
  color: rgba(255, 247, 237, 0.92);
  font-size: clamp(1.05rem, 1.35vw, 1.26rem);
  font-weight: 500;
  line-height: 1.55;
}

.store-hero-kicker b {
  font-weight: 800;
  color: var(--gold-bright);
}

.store-hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.store-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--coral) 100%) !important;
  color: #11131d !important;
  box-shadow: 0 18px 44px rgba(255, 114, 94, 0.35), 0 0 24px rgba(255, 202, 79, 0.35) !important;
}

.store-cta-primary .cta-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(17, 19, 29, 0.18);
  color: #11131d;
  font-size: 0.7rem;
}

.store-cta-secondary {
  border: 1px solid rgba(255, 247, 237, 0.32) !important;
  background: rgba(255, 247, 237, 0.06) !important;
  color: var(--text) !important;
}

/* ----- Store HERO DONATION (big % callout) ----- */
.store-hero-donation {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: clamp(22px, 2.4vw, 30px);
  border: 1px solid rgba(255, 202, 79, 0.55);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 247, 237, 0.18), transparent 60%),
    linear-gradient(135deg, var(--gold) 0%, var(--coral) 65%, var(--rose) 100%);
  color: #11131d;
  box-shadow:
    0 36px 90px rgba(255, 114, 94, 0.32),
    0 0 50px rgba(255, 202, 79, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
  transform: rotate(0.6deg);
}

.store-hero-donation::before {
  content: "";
  position: absolute;
  inset: -40% -40% auto auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4), transparent 70%);
  pointer-events: none;
}

.store-donation-flag {
  display: inline-block;
  padding: 6px 12px;
  width: max-content;
  border-radius: 999px;
  background: #11131d;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.store-donation-percent {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 8rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: #11131d;
  text-shadow: 0 4px 0 rgba(255, 255, 255, 0.22);
}

.store-donation-text {
  margin: 0;
  max-width: 320px;
  color: rgba(17, 19, 29, 0.86);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.45;
}

.store-donation-text b {
  font-weight: 900;
  color: #11131d;
}

.store-donation-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px dashed rgba(17, 19, 29, 0.32);
}

.store-donation-meta span {
  display: block;
  color: rgba(17, 19, 29, 0.7);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.store-donation-meta strong {
  color: #11131d;
  font-family: var(--font-display);
  font-size: 0.94rem;
  font-weight: 900;
}

/* ----- Store CATEGORIES STRIP ----- */
.store-categories-strip {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: clamp(24px, 3vw, 36px);
  padding: 14px 18px;
  border: 1px solid rgba(255, 202, 79, 0.32);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 202, 79, 0.14), rgba(255, 114, 94, 0.08) 60%, rgba(255, 145, 183, 0.06)),
    rgba(14, 6, 2, 0.7);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}

.store-cat-label {
  flex: 0 0 auto;
  padding: 6px 12px;
  border-radius: 999px;
  background: #11131d;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.store-cat-list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.store-cat-list li {
  padding: 6px 12px;
  border: 1px solid rgba(255, 202, 79, 0.32);
  border-radius: 999px;
  background: rgba(255, 247, 237, 0.06);
  color: rgba(255, 247, 237, 0.94);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.store-cat-list li:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 202, 79, 0.7);
  background: rgba(255, 202, 79, 0.14);
}

/* ----- Store DROP OFICIAL SHOWCASE (full-width) + DETAIL TRIPTYCH ----- */
.store-detail-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.store-showcase,
.store-impact-panel,
.store-intro-card,
.store-info-card,
.store-story-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 202, 79, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 202, 79, 0.08), rgba(255, 114, 94, 0.04)),
    rgba(14, 6, 2, 0.7);
  box-shadow:
    0 28px 78px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.store-showcase,
.store-intro-card {
  border-radius: var(--radius-lg);
}

.store-impact-panel,
.store-info-card,
.store-story-card {
  border-radius: var(--radius-md);
}

.store-showcase {
  position: relative;
  z-index: 2;
  display: block;
  margin: 0 auto clamp(16px, 2vw, 24px);
  padding: 0;
  aspect-ratio: 1672 / 941;
  border: 1px solid rgba(255, 202, 79, 0.5);
  box-shadow:
    0 50px 120px rgba(0, 0, 0, 0.52),
    0 0 80px rgba(255, 114, 94, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.store-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 6, 2, 0.08) 0%, transparent 32%, rgba(8, 6, 2, 0.5) 76%, rgba(8, 6, 2, 0.86) 100%),
    linear-gradient(90deg, rgba(8, 6, 2, 0.24), transparent 24%, transparent 76%, rgba(8, 6, 2, 0.2));
  pointer-events: none;
}

.store-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.04);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.store-showcase:hover img {
  transform: scale(1.035);
}

.store-visual-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 202, 79, 0.55);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--coral) 100%);
  color: #11131d;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(255, 114, 94, 0.4), 0 0 18px rgba(255, 202, 79, 0.35);
}

.store-visual-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #11131d;
  box-shadow: 0 0 0 4px rgba(17, 19, 29, 0.18);
}

.store-visual-sale-tag {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 2px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #11131d;
  color: var(--gold-bright);
  font-family: var(--font-display);
  text-align: center;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5), 0 0 28px rgba(255, 202, 79, 0.35);
  transform: rotate(6deg);
  border: 2px dashed rgba(255, 202, 79, 0.5);
}

.store-visual-sale-tag em {
  font-style: normal;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral-soft);
}

.store-visual-sale-tag strong {
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--gold-bright);
  text-transform: uppercase;
}

.store-showcase-live {
  position: absolute;
  top: 64px;
  left: 20px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  border: 1px solid rgba(255, 247, 237, 0.22);
  border-radius: 999px;
  background: rgba(8, 6, 2, 0.62);
  color: rgba(255, 247, 237, 0.92);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
}

.store-showcase-live .live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral-soft);
  box-shadow: 0 0 0 4px rgba(255, 114, 94, 0.2);
  animation: storeLivePulse 1.8s ease-in-out infinite;
}

@keyframes storeLivePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.82); }
}

.store-showcase figcaption {
  position: absolute;
  left: clamp(16px, 2.4vw, 30px);
  right: clamp(16px, 2.4vw, 30px);
  bottom: clamp(16px, 2.4vw, 30px);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: clamp(16px, 1.8vw, 22px) clamp(18px, 2vw, 26px);
  border: 1px solid rgba(255, 202, 79, 0.28);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(20, 8, 4, 0.78), rgba(20, 8, 4, 0.62));
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.store-showcase-caption-copy {
  display: grid;
  gap: 6px;
}

.store-showcase figcaption span,
.store-impact-panel span,
.store-info-card span,
.store-story-card span {
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-showcase figcaption strong {
  max-width: 520px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.9vw, 1.7rem);
  font-weight: 800;
  line-height: 1.1;
  text-align: left;
}

.store-showcase-cta {
  flex: 0 0 auto;
  align-self: center;
  background: linear-gradient(135deg, var(--gold) 0%, var(--coral) 100%) !important;
  color: #11131d !important;
  box-shadow: 0 16px 40px rgba(255, 114, 94, 0.4), 0 0 22px rgba(255, 202, 79, 0.35) !important;
}

.store-impact-panel,
.store-intro-card,
.store-info-card,
.store-story-card {
  padding: clamp(22px, 2.4vw, 30px);
}

.store-impact-panel {
  border-color: rgba(255, 202, 79, 0.4);
  background:
    linear-gradient(135deg, rgba(255, 202, 79, 0.28), rgba(255, 114, 94, 0.18)),
    rgba(20, 8, 4, 0.78);
  box-shadow:
    0 28px 78px rgba(255, 114, 94, 0.2),
    0 0 36px rgba(255, 202, 79, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.store-impact-flag {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 6px 12px;
  width: max-content;
  border-radius: 999px;
  background: #11131d;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.store-impact-headline {
  display: block;
  margin: 12px 0 8px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 1.8vw, 1.5rem);
  font-weight: 900;
  line-height: 1.18;
}

.store-impact-panel p {
  margin: 4px 0 0;
  color: rgba(255, 247, 237, 0.92);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
}

.store-impact-panel p b {
  color: var(--gold-bright);
  font-weight: 800;
}

.store-intro-card::before,
.store-info-card::before,
.store-story-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--coral), var(--rose));
}

.store-intro-card h2 {
  max-width: 720px;
  margin-bottom: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fff0c9 48%, var(--gold-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.store-intro-card p,
.store-info-card p,
.store-story-card p {
  margin: 0;
  color: rgba(255, 247, 237, 0.82);
  font-size: clamp(0.98rem, 1.1vw, 1.05rem);
  line-height: 1.65;
}

.store-intro-card p + p,
.store-info-card p + p,
.store-story-card p + p {
  margin-top: 14px;
}

.store-intro-card strong,
.store-info-card strong,
.store-story-card strong {
  color: #ffffff;
}

.store-info-card h3 {
  margin: 12px 0 12px;
  color: #ffffff;
  font-size: clamp(1.08rem, 1.4vw, 1.32rem);
  font-weight: 800;
}

.store-card-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  width: max-content;
  border: 1px solid rgba(255, 202, 79, 0.45);
  border-radius: 999px;
  background: rgba(255, 202, 79, 0.12);
  color: var(--gold-bright) !important;
  font-family: var(--font-display);
  font-size: 0.7rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase;
}

.store-card-tag-hot {
  border-color: rgba(255, 114, 94, 0.55);
  background: linear-gradient(135deg, rgba(255, 114, 94, 0.32), rgba(255, 145, 183, 0.22));
  color: #ffffff !important;
  box-shadow: 0 10px 26px rgba(255, 114, 94, 0.28);
}

.store-card-highlight {
  color: var(--gold-bright) !important;
  font-weight: 700;
}

.store-donation-card {
  border-color: rgba(255, 114, 94, 0.42);
  background:
    linear-gradient(135deg, rgba(255, 114, 94, 0.18), rgba(255, 145, 183, 0.1)),
    rgba(20, 8, 4, 0.78);
}

.store-donation-card::before {
  background: linear-gradient(90deg, var(--coral), var(--rose), var(--gold)) !important;
}

.store-donation-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.store-donation-list li {
  position: relative;
  padding: 8px 12px 8px 32px;
  border: 1px solid rgba(255, 202, 79, 0.22);
  border-radius: 10px;
  background: rgba(255, 247, 237, 0.04);
  color: rgba(255, 247, 237, 0.92);
  font-size: 0.94rem;
  font-weight: 600;
}

.store-donation-list li::before {
  content: "♥";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--coral-soft);
  font-size: 0.9rem;
}

.store-story-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.store-story-card {
  min-height: 100%;
}

.store-story-card span {
  display: block;
  margin-bottom: 14px;
}

.store-commitment-card {
  border-color: rgba(255, 202, 79, 0.45);
  background:
    linear-gradient(135deg, rgba(255, 202, 79, 0.22), rgba(255, 114, 94, 0.16)),
    rgba(20, 8, 4, 0.82);
  box-shadow:
    0 30px 80px rgba(255, 114, 94, 0.22),
    0 0 38px rgba(255, 202, 79, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.store-commitment-card::before {
  background: linear-gradient(90deg, var(--gold-bright), var(--coral), var(--rose)) !important;
  height: 5px !important;
}

.store-commitment-card > strong {
  display: block;
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px dashed rgba(255, 202, 79, 0.45);
  border-radius: 12px;
  background: rgba(17, 19, 29, 0.4);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 1.2vw, 1.16rem);
  font-weight: 800;
  line-height: 1.3;
}

.store-commitment-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--coral) 100%) !important;
  color: #11131d !important;
  box-shadow: 0 16px 40px rgba(255, 114, 94, 0.36), 0 0 22px rgba(255, 202, 79, 0.32) !important;
}

/* ============ TOKENOMICS ============ */
.tokenomics-section {
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(132, 227, 196, 0.16), transparent 60%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(255, 114, 94, 0.12), transparent 60%),
    var(--cream);
  color: #151106;
}

.tokenomics-section p,
.tokenomics-section .section-lead {
  color: #403527;
}

.tokenomics-section h2 {
  background: linear-gradient(180deg, #151106 0%, rgba(21, 17, 6, 0.78) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tokenomics-section .eyebrow {
  color: #c75135;
  border-color: rgba(199, 81, 53, 0.32);
  background: rgba(199, 81, 53, 0.06);
}

.tokenomics-section .eyebrow-dot {
  background: #c75135;
  box-shadow: 0 0 0 4px rgba(199, 81, 53, 0.18);
}

.token-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.token-meta div {
  border-color: rgba(17, 19, 29, 0.12);
  background: rgba(255, 255, 255, 0.7);
}

.token-meta span {
  color: rgba(21, 17, 6, 0.6);
}

.token-meta strong {
  color: #151106;
}

.tokenomics-visual {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: center;
  gap: 28px;
  padding: 28px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-brutal-lg);
  position: relative;
}

.tokenomics-visual::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  width: 56px;
  height: 56px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--coral);
  z-index: 0;
}

.donut-wrap {
  position: relative;
  width: 260px;
  height: 260px;
  display: grid;
  place-items: center;
}

.donut-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.12));
}

.donut-track {
  stroke: rgba(17, 19, 29, 0.06);
}

.donut-slice {
  transition: stroke-width 240ms ease;
  transform-origin: center;
  stroke-linecap: butt;
}

.slice-a { stroke: var(--coral); }
.slice-b { stroke: var(--mint); }
.slice-c { stroke: var(--violet); }
.slice-d { stroke: var(--gold); }
.slice-e { stroke: #1f2333; }
.slice-f { stroke: var(--sky); }
.slice-g { stroke: var(--rose); }

.donut-svg:hover .donut-slice {
  stroke-width: 16;
}

.donut-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #151106;
}

.donut-center strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--coral), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.donut-center span {
  display: block;
  margin-top: 4px;
  color: rgba(21, 17, 6, 0.56);
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.legend-list {
  display: grid;
  gap: 10px;
  color: #403527;
}

.legend-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: background 200ms ease;
}

.legend-list div:hover {
  background: rgba(17, 19, 29, 0.04);
}

.legend-list strong {
  font-family: var(--font-display);
  font-weight: 700;
  color: #151106;
  min-width: 38px;
}

.swatch {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--ink);
  border-radius: 4px;
}

.swatch-a { background: var(--coral); }
.swatch-b { background: var(--mint); }
.swatch-c { background: var(--violet); }
.swatch-d { background: var(--gold); }
.swatch-e { background: #1f2333; }
.swatch-f { background: var(--sky); }
.swatch-g { background: var(--rose); }

.token-table-wrap {
  margin-top: 52px;
  overflow-x: auto;
}

.token-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-brutal);
}

.token-table th,
.token-table td {
  padding: 17px 20px;
  border-bottom: 1px solid rgba(17, 19, 29, 0.1);
  text-align: left;
}

.token-table th {
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 0.86rem;
  text-transform: uppercase;
}

.token-table td:first-child {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
}

.token-table tr {
  transition: background 180ms ease;
}

.token-table tbody tr:hover {
  background: #fcf8f1;
}

.token-table tr:last-child td {
  border-bottom: 0;
}

/* ===== Tokenomics redesign ===== */
.tokenomics-heading {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.tokenomics-heading .eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.supply-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  padding: 36px 40px;
  margin: 36px 0 56px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(132, 227, 196, 0.22), transparent 65%),
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(255, 114, 94, 0.18), transparent 65%),
    #ffffff;
  box-shadow: var(--shadow-brutal-lg);
  overflow: hidden;
}

.supply-hero::after {
  content: "";
  position: absolute;
  top: -42px;
  right: -42px;
  width: 180px;
  height: 180px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.18;
  z-index: 0;
}

.supply-hero-main {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.supply-hero-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c75135;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.supply-hero-label::before {
  content: "";
  width: 28px;
  height: 2px;
  background: #c75135;
}

.supply-hero-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #151106 0%, #c75135 55%, #6b3df0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.supply-hero-token {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(21, 17, 6, 0.66);
  letter-spacing: 0.02em;
}

.supply-hero-meta {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.supply-hero-meta li {
  padding: 14px 16px;
  border: 1.5px solid rgba(17, 19, 29, 0.16);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.78);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.supply-hero-meta span {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(21, 17, 6, 0.56);
}

.supply-hero-meta strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  color: #151106;
  display: inline-flex;
  align-items: center;
}

.supply-hero-meta strong.with-logo .solana-logo {
  height: 18px;
}

.supply-hero-meta .meta-network {
  position: relative;
  padding: 14px 16px;
  border: 1.5px solid rgba(153, 69, 255, 0.35);
  background:
    radial-gradient(ellipse 90% 140% at 100% 0%, rgba(20, 241, 149, 0.18), transparent 60%),
    radial-gradient(ellipse 90% 140% at 0% 100%, rgba(153, 69, 255, 0.18), transparent 60%),
    #ffffff;
  overflow: hidden;
  isolation: isolate;
}

.supply-hero-meta .meta-network::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(135deg, #9945FF 0%, #14F195 100%);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

.network-chip {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 2px;
}

.network-chip .solana-logo {
  height: 26px;
  filter: drop-shadow(0 2px 6px rgba(153, 69, 255, 0.25));
}

.network-chip-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  gap: 4px;
}

.network-chip-text strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #9945FF 0%, #14F195 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.network-chip-text em {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(21, 17, 6, 0.6);
}

.network-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #14F195;
  box-shadow: 0 0 0 3px rgba(20, 241, 149, 0.22);
  animation: networkPulse 1.8s ease-in-out infinite;
}

@keyframes networkPulse {
  0%, 100% {
    box-shadow: 0 0 0 3px rgba(20, 241, 149, 0.22);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(20, 241, 149, 0.08);
  }
}

.tokenomics-distribution {
  margin-top: 0;
}

.tokenomics-distribution .tokenomics-visual {
  grid-template-columns: 300px 1fr;
}

.allocation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 56px;
}

.allocation-card {
  --alloc-color: var(--coral);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-brutal);
  transition: transform 220ms ease, box-shadow 220ms ease;
  overflow: hidden;
}

.allocation-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 100%;
  background: var(--alloc-color);
}

.allocation-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 0 var(--ink);
}

.allocation-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-top: 6px;
}

.allocation-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #151106;
  line-height: 1.2;
}

.allocation-percent {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.85rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--alloc-color);
  text-shadow: 1px 1px 0 rgba(17, 19, 29, 0.08);
  flex-shrink: 0;
}

.allocation-bar {
  position: relative;
  height: 8px;
  background: rgba(17, 19, 29, 0.08);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  overflow: hidden;
}

.allocation-bar span {
  display: block;
  height: 100%;
  width: var(--fill, 0%);
  background: var(--alloc-color);
  border-radius: 999px;
  transition: width 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.allocation-amount {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: #151106;
  margin: 0;
  letter-spacing: -0.01em;
}

.allocation-desc {
  font-size: 0.92rem;
  color: #403527;
  margin: 0;
  line-height: 1.45;
}

.alloc-a { --alloc-color: var(--coral); }
.alloc-b { --alloc-color: var(--mint); }
.alloc-c { --alloc-color: var(--violet); }
.alloc-d { --alloc-color: var(--gold); }
.alloc-e { --alloc-color: #1f2333; }
.alloc-f { --alloc-color: var(--sky); }
.alloc-g { --alloc-color: var(--rose); }

/* ============ ROADMAP ============ */
.roadmap-section {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(132, 227, 196, 0.1), transparent 60%);
}

.roadmap-wrap {
  position: relative;
}

.roadmap-track {
  position: absolute;
  top: 56px;
  left: 22px;
  right: 22px;
  height: 2px;
  background:
    repeating-linear-gradient(
      90deg,
      var(--line-strong) 0,
      var(--line-strong) 6px,
      transparent 6px,
      transparent 12px
    );
  pointer-events: none;
}

.roadmap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(260px, 1fr));
  gap: 22px;
  overflow-x: auto;
  padding: 0 0 22px;
  scrollbar-width: thin;
}

.roadmap article {
  position: relative;
  padding: 28px 22px 22px;
  min-height: 320px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--grad-card);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.roadmap article:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 202, 79, 0.4);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.32);
}

.roadmap-marker {
  position: absolute;
  top: -8px;
  left: 22px;
  display: block;
  width: 16px;
  height: 16px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: rgba(255, 247, 237, 0.4);
  z-index: 1;
}

.roadmap-marker.active {
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(255, 202, 79, 0.22), 0 0 24px rgba(255, 202, 79, 0.5);
  animation: pulseDot 2s ease-in-out infinite;
}

.roadmap-phase {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: #151106;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.roadmap ul {
  padding-left: 18px;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.roadmap li {
  margin-bottom: 6px;
}

.roadmap li::marker {
  color: var(--mint);
}

/* ============ COMMUNITY ============ */
.community-section {
  background:
    radial-gradient(ellipse 60% 50% at 0% 30%, rgba(255, 114, 94, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 50% at 100% 80%, rgba(169, 118, 255, 0.15), transparent 60%),
    #18141f;
}

.community-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 440px);
  gap: 44px;
  align-items: center;
}

.community-hero img {
  border: 3px solid var(--ink);
  border-radius: var(--radius-md);
  background: var(--cream);
  box-shadow: 16px 16px 0 var(--coral), var(--shadow-md);
  transform: rotate(3deg);
  transition: transform 320ms ease;
}

.community-hero img:hover {
  transform: rotate(0deg) scale(1.02);
}

.community-grid {
  margin-top: 44px;
  display: grid;
  gap: 18px;
}

.channel-strip,
.campaign-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.channel-strip a,
.campaign-grid span,
.paper-list span {
  padding: 12px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: -0.005em;
  transition: transform 200ms ease, background 200ms ease, border-color 200ms ease;
  backdrop-filter: blur(6px);
}

.channel-strip a:hover,
.campaign-grid span:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 247, 237, 0.32);
}

.campaign-grid span:nth-child(odd) {
  background: linear-gradient(135deg, rgba(132, 227, 196, 0.16), rgba(255, 202, 79, 0.06));
  border-color: rgba(132, 227, 196, 0.32);
}

.campaign-grid span:nth-child(even) {
  background: linear-gradient(135deg, rgba(255, 114, 94, 0.12), rgba(169, 118, 255, 0.08));
  border-color: rgba(255, 114, 94, 0.28);
}

/* ============ SECURITY ============ */
.security-list {
  display: grid;
  gap: 14px;
}

.security-list article {
  padding: 20px;
  position: relative;
  padding-left: 60px;
}

.security-list article::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 20px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), var(--teal));
  box-shadow: 0 0 0 4px rgba(132, 227, 196, 0.18);
}

.security-list article::after {
  content: "✓";
  position: absolute;
  top: 22px;
  left: 20px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
}

.warning-banner {
  margin-top: 40px;
  padding: 24px 28px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: #151106;
  box-shadow: var(--shadow-brutal);
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  font-weight: 600;
  letter-spacing: -0.005em;
  text-align: center;
  position: relative;
}

.warning-banner::before {
  content: "⚠";
  display: block;
  font-size: 1.6rem;
  margin-bottom: 6px;
}

/* ============ WHITEPAPER ============ */
.whitepaper-section {
  background:
    radial-gradient(ellipse 70% 50% at 0% 0%, rgba(255, 202, 79, 0.2), transparent 60%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(132, 227, 196, 0.16), transparent 60%),
    var(--cream);
  color: #151106;
}

.whitepaper-section p,
.whitepaper-section .section-lead {
  color: #403527;
}

.whitepaper-section h2 {
  background: linear-gradient(180deg, #151106 0%, rgba(21, 17, 6, 0.78) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.whitepaper-section .eyebrow {
  color: #c75135;
  border-color: rgba(199, 81, 53, 0.32);
  background: rgba(199, 81, 53, 0.06);
}

.whitepaper-section .eyebrow-dot {
  background: #c75135;
  box-shadow: 0 0 0 4px rgba(199, 81, 53, 0.18);
}

.paper-list {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  gap: 10px;
}

.paper-list span {
  border-color: rgba(17, 19, 29, 0.12);
  background: #ffffff;
  color: #151106;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.paper-list span:hover {
  transform: translate(-1px, -1px);
  box-shadow: 6px 6px 0 var(--ink);
}

/* ============ FAQ ============ */
.faq-section {
  background:
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(132, 227, 196, 0.08), transparent 60%);
}

.faq-layout {
  grid-template-columns: 0.78fr 1.22fr;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--grad-card);
  transition: border-color 240ms ease, background 240ms ease;
}

.faq-list details[open] {
  border-color: rgba(255, 202, 79, 0.32);
  background: linear-gradient(180deg, rgba(255, 202, 79, 0.06), rgba(255, 255, 255, 0.02));
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.005em;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 200ms ease;
}

.faq-list summary:hover {
  color: var(--gold);
}

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

.faq-list summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 280ms ease, background 240ms ease, border-color 240ms ease;
}

.faq-list details[open] summary::after {
  content: "−";
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  transform: rotate(180deg);
}

.faq-list p {
  margin: 0;
  padding: 0 24px 22px;
  font-size: 0.96rem;
  line-height: 1.6;
}

/* ============ FOOTER ============ */
.site-footer {
  padding: 72px 0 40px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--ink) 0%, #060710 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 36px;
}

.footer-grid h3 {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-grid a:not(.brand) {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 247, 237, 0.66);
  font-size: 0.92rem;
  transition: color 200ms ease, transform 200ms ease;
}

.footer-grid a:not(.brand):hover {
  color: var(--gold);
  transform: translateX(3px);
}

.footer-grid > div:first-child p {
  margin-top: 16px;
  font-size: 0.92rem;
  max-width: 280px;
}

.footer-disclaimer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: rgba(255, 247, 237, 0.56);
  font-size: 0.86rem;
  line-height: 1.6;
}

/* ============ LANGUAGE SWITCHER ============ */
.lang-switcher {
  position: relative;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px 0 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.02em;
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
  backdrop-filter: blur(8px);
}

.lang-toggle:hover,
.lang-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 247, 237, 0.32);
  transform: translateY(-1px);
}

.lang-flag {
  font-size: 1.1rem;
  line-height: 1;
}

.lang-code {
  letter-spacing: 0.06em;
}

.lang-chevron {
  width: 10px;
  height: 7px;
  margin-left: 2px;
  color: var(--gold);
  transition: transform 220ms ease;
}

.lang-switcher.is-open .lang-chevron {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 50;
  min-width: 200px;
  margin: 0;
  padding: 8px;
  list-style: none;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: rgba(15, 17, 28, 0.96);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  opacity: 0;
  transform: translateY(-6px) scale(0.97);
  transform-origin: top right;
  pointer-events: none;
  transition: opacity 200ms ease, transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.lang-switcher.is-open .lang-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.lang-menu li {
  display: block;
}

.lang-menu button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 9px 12px;
  border: 0;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: -0.005em;
  text-align: left;
  transition: background 180ms ease, color 180ms ease;
}

.lang-menu button:hover,
.lang-menu button:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.lang-menu button[aria-selected="true"] {
  background: linear-gradient(135deg, rgba(255, 202, 79, 0.16), rgba(132, 227, 196, 0.08));
  color: var(--gold);
}

.lang-menu button[aria-selected="true"]::after {
  content: "✓";
  margin-left: auto;
  color: var(--mint);
  font-weight: 800;
}

@media (max-width: 1400px) {
  .lang-menu {
    right: auto;
    left: 0;
    transform-origin: top left;
  }
}

/* ============ FLOATING SOCIAL ============ */
.floating-social {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.float-btn {
  pointer-events: auto;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32), 4px 4px 0 var(--ink);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms ease, filter 220ms ease;
  opacity: 0;
  transform: translateY(16px) scale(0.92);
  animation: floatBtnIn 520ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.float-btn:nth-child(1) { animation-delay: 420ms; }
.float-btn:nth-child(2) { animation-delay: 560ms; }
.float-btn:nth-child(3) { animation-delay: 700ms; }
.float-btn:nth-child(4) { animation-delay: 840ms; }

.float-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.float-btn:hover,
.float-btn:focus-visible {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.42), 6px 6px 0 var(--ink);
  filter: brightness(1.06);
}

.float-btn-telegram {
  background: linear-gradient(135deg, #2aabee 0%, #229ed9 100%);
}

.float-btn-telegram::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42, 171, 238, 0.4), transparent 70%);
  filter: blur(8px);
  z-index: -1;
  opacity: 0.6;
}

.float-btn-x {
  background: linear-gradient(135deg, #1a1d2e 0%, #0a0b14 100%);
}

.float-btn-x::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 247, 237, 0.18), transparent 70%);
  filter: blur(8px);
  z-index: -1;
  opacity: 0.6;
}

.float-btn-youtube {
  background: linear-gradient(135deg, #ff0033 0%, #b80024 100%);
}

.float-btn-youtube::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 0, 51, 0.34), transparent 70%);
  filter: blur(8px);
  z-index: -1;
  opacity: 0.65;
}

.float-btn-label {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  padding: 7px 12px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: var(--cream);
  color: #151106;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  white-space: nowrap;
  box-shadow: 4px 4px 0 var(--ink);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.float-btn:hover .float-btn-label,
.float-btn:focus-visible .float-btn-label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@keyframes floatBtnIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 760px) {
  .floating-social {
    right: 14px;
    bottom: 14px;
    gap: 10px;
  }

  .float-btn {
    width: 50px;
    height: 50px;
  }

  .float-btn svg {
    width: 22px;
    height: 22px;
  }

  .float-btn-label {
    display: none;
  }
}

/* ============ SCROLL REVEAL ============ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* ============ ANIMATIONS ============ */
@keyframes floatCat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-20px) rotate(1deg); }
}

@keyframes haloDrift {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.85; }
  50% { transform: scale(1.08) rotate(8deg); opacity: 1; }
}

@keyframes floatStat {
  0%, 100% { transform: translateY(0) rotate(var(--rotate, 0deg)); }
  50% { transform: translateY(-6px) rotate(var(--rotate, 0deg)); }
}

.stat-a { --rotate: -4deg; }
.stat-b { --rotate: 4deg; }

@keyframes spinRing {
  to { transform: rotate(360deg); }
}

@keyframes counterSpin {
  to { transform: rotate(-360deg); }
}

.coin-ring span:nth-child(1) { animation: counterSpin 36s linear infinite; transform-origin: 50% 0%; }

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@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;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1400px) {
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  .site-header.is-open .header-inner {
    grid-template-columns: 1fr auto;
  }

  .site-header.is-open .main-nav,
  .site-header.is-open .header-actions {
    display: flex;
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding-top: 8px;
    flex-wrap: wrap;
  }

  .site-header.is-open .main-nav {
    flex-wrap: wrap;
  }

  .site-header.is-open .nav-dropdown {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    width: 100%;
  }

  .site-header.is-open .ecosystem-submenu {
    position: static;
    width: 100%;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    border-color: rgba(255, 247, 237, 0.1);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: none;
  }

  .site-header.is-open .ecosystem-submenu a {
    padding: 8px 10px;
  }
}

@media (max-width: 1120px) {
  .hero-grid,
  .split-grid,
  .reverse,
  .two-column,
  .supporters-intro,
  .supporter-showcase,
  .ecosystem-layout,
  .foundation-story-layout,
  .airdrop-control-layout,
  .airdrop-registration-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .ecosystem-section .ecosystem-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .ecosystem-showcase {
    max-width: 780px;
    margin-inline: auto;
  }

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

  .hero-panel {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-visual,
  .token-visual,
  .ecosystem-map {
    position: relative;
    top: auto;
  }

  .airdrop-registration-card {
    position: relative;
    top: auto;
  }

  .hero-visual {
    max-height: 480px;
    aspect-ratio: 1;
  }

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

  .tokenomics-visual {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .tokenomics-distribution .tokenomics-visual {
    grid-template-columns: 1fr;
  }

  .tokenomics-visual .legend-list {
    width: 100%;
    max-width: 360px;
  }

  .supply-hero {
    grid-template-columns: 1fr;
    padding: 28px;
    text-align: center;
  }

  .supply-hero-main {
    align-items: center;
  }

  .supply-hero-label::before {
    display: none;
  }

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

  .supporters-section {
    padding-top: 80px;
  }

  .supporter-feature-card {
    min-height: 620px;
  }

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

  .supporter-gallery-grid .supporter-art-card:nth-child(1),
  .supporter-gallery-grid .supporter-art-card:nth-child(2),
  .supporter-gallery-grid .supporter-art-card:nth-child(3),
  .supporter-gallery-grid .supporter-art-card:nth-child(4),
  .supporter-gallery-grid .supporter-art-card:nth-child(5) {
    grid-column: auto;
  }

  .michi-world-layout {
    grid-template-columns: 1fr;
  }

  .michi-world-copy {
    max-width: 860px;
  }

  .michi-world-copy .section-lead {
    max-width: 760px;
  }

  .world-champion-card {
    min-height: 620px;
  }

  .foundation-story-media-stack,
  .foundation-story-copy {
    width: min(100%, 840px);
    margin-inline: auto;
  }

  .foundation-hero-stats {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .store-hero-band {
    grid-template-columns: 1fr;
  }

  .store-hero-donation {
    justify-self: center;
    max-width: 520px;
    width: 100%;
  }

  .foundation-story-art {
    width: 100%;
    min-height: 620px;
    height: auto;
    margin-inline: auto;
    transform: none;
  }

  .store-detail-grid {
    grid-template-columns: 1fr;
    width: min(100%, 760px);
  }

  .store-story-grid {
    grid-template-columns: 1fr;
    width: min(100%, 840px);
  }
}

@media (max-width: 760px) {
  .content-grid {
    width: min(100% - 28px, 1200px);
  }

  .section {
    padding: 80px 0;
  }

  .hero {
    padding-top: 52px;
  }

  .airdrop-countdown-ribbon {
    width: min(calc(100% - 20px), 360px);
    max-width: calc(100% - 20px);
    justify-content: center;
    padding: 10px 14px;
    border-radius: 22px;
    white-space: normal;
  }

  .airdrop-countdown-ribbon .airdrop-call-flash-dot {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
  }

  .airdrop-countdown-value {
    flex-wrap: wrap;
    gap: 8px 14px;
  }

  .airdrop-countdown-value > span {
    justify-content: center;
    min-width: 86px;
  }

  .airdrop-countdown-ribbon + .airdrop-call-inner {
    padding-top: 96px;
  }

  h1 {
    font-size: clamp(2rem, 9vw, 2.7rem);
  }

  h2 {
    font-size: clamp(2rem, 9.5vw, 3rem);
  }

  .hero-actions,
  .header-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn,
  .header-actions .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 420px;
    overflow: hidden;
  }

  .coin-ring {
    inset: 10%;
  }

  .floating-stat {
    min-width: 140px;
    padding: 10px 12px;
  }

  .floating-stat-icon {
    width: 30px;
    height: 30px;
    font-size: 0.92rem;
  }

  .stat-a {
    left: 4px;
    bottom: 8%;
  }

  .stat-b {
    right: 4px;
    top: 8%;
  }

  .countdown,
  .mini-metrics,
  .info-grid,
  .utility-list,
  .token-meta,
  .buy-details,
  .participation-stats,
  .value-grid,
  .benefit-grid,
  .ecosystem-pillar-band,
  .footer-grid,
  .community-hero,
  .supply-hero-meta,
  .allocation-grid {
    grid-template-columns: 1fr;
  }

  .ecosystem-feature {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 22px;
  }

  .ecosystem-feature img {
    justify-self: start;
    width: 104px;
    margin-top: -4px;
  }

  .airdrop-action {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .airdrop-action a,
  .action-status {
    justify-content: center;
    width: 100%;
  }

  .airdrop-control-banner,
  .airdrop-control-missions {
    grid-template-columns: 1fr;
  }

  .airdrop-page-section {
    padding-top: 56px;
  }

  .airdrop-control-copy h1 {
    font-size: clamp(2.2rem, 13vw, 3.5rem);
  }

  .airdrop-info-hero {
    grid-template-columns: 1fr;
  }

  .airdrop-control-prize {
    justify-self: start;
    width: min(100%, 340px);
  }

  .airdrop-missions-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .airdrop-control-stats {
    grid-template-columns: 1fr;
  }

  .airdrop-control-mission {
    min-height: auto;
  }

  .supporter-pass-stats {
    grid-template-columns: 1fr;
  }

  .supporter-feature-card {
    min-height: 460px;
  }

  .supporter-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .supporter-gallery-grid .supporter-art-card,
  .supporter-gallery-grid .supporter-art-card:nth-child(1),
  .supporter-gallery-grid .supporter-art-card:nth-child(2),
  .supporter-gallery-grid .supporter-art-card:nth-child(3),
  .supporter-gallery-grid .supporter-art-card:nth-child(4),
  .supporter-gallery-grid .supporter-art-card:nth-child(5) {
    grid-column: auto;
    min-height: 230px;
  }

  .supporter-card-label {
    left: 10px;
    right: 10px;
    bottom: 10px;
    align-items: start;
    flex-direction: column;
    padding: 10px;
  }

  .supporter-card-label strong {
    text-align: left;
  }

  .michi-world-section {
    min-height: auto;
    padding: 88px 0;
  }

  .foundation-story-section {
    padding: 86px 0;
  }

  .store-section {
    padding: 86px 0;
  }

  .foundation-story-rail {
    display: none;
  }

  .foundation-story-layout {
    gap: 28px;
  }

  .foundation-story-media-stack {
    grid-template-rows: minmax(460px, auto) auto;
    gap: 12px;
  }

  .foundation-story-art {
    min-height: 460px;
    border-radius: var(--radius-md);
  }

  .foundation-story-art::before {
    inset: 10px;
    border-radius: calc(var(--radius-md) - 8px);
  }

  .foundation-art-badge,
  .foundation-aid-tags {
    top: 14px;
  }

  .foundation-art-badge {
    left: 14px;
    max-width: calc(100% - 28px);
  }

  .foundation-aid-tags {
    right: 14px;
  }

  .foundation-story-art figcaption {
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }

  .foundation-story-art figcaption strong {
    max-width: none;
    text-align: left;
  }

  .foundation-impact-grid {
    grid-template-columns: 1fr;
  }

  .foundation-story-text {
    grid-template-columns: 1fr;
  }

  .store-detail-grid,
  .store-story-grid {
    grid-template-columns: 1fr;
  }

  .store-showcase {
    aspect-ratio: 3 / 2;
  }

  .store-showcase figcaption {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .store-showcase figcaption strong {
    max-width: none;
    text-align: left;
  }

  .store-showcase-cta {
    width: 100%;
    justify-content: center;
  }

  .foundation-impact-grid article {
    min-height: auto;
  }

  .foundation-intro-card,
  .foundation-copy-card,
  .foundation-support-card {
    border-radius: var(--radius-sm);
  }

  .foundation-story-kicker {
    font-size: 1.04rem;
  }

  .foundation-emotional-note {
    padding: 22px;
  }

  .michi-world-backdrop img {
    object-position: 58% center;
    opacity: 0.62;
  }

  .michi-world-backdrop::after {
    background:
      linear-gradient(180deg, rgba(7, 10, 20, 0.86) 0%, rgba(7, 10, 20, 0.54) 46%, rgba(7, 10, 20, 0.9) 100%),
      linear-gradient(90deg, rgba(7, 10, 20, 0.72), rgba(7, 10, 20, 0.28), rgba(7, 10, 20, 0.72));
  }

  .world-mode-grid,
  .world-champion-grid,
  .world-reward-strip {
    grid-template-columns: 1fr;
  }

  .world-mode-card {
    min-height: auto;
  }

  .michi-world-panel {
    padding: 14px;
  }

  .world-portal-stage {
    width: 100%;
    border-radius: var(--radius-sm);
  }

  .world-scene-warriors {
    gap: 10px;
    padding: 12px;
  }

  .warrior-slot {
    height: 100%;
    border-radius: var(--radius-sm);
  }

  .warrior-image {
    width: 210%;
  }

  .world-panel-header {
    align-items: start;
    flex-direction: column;
  }

  .world-panel-header strong {
    text-align: left;
  }

  .world-champion-card,
  .champion-crystal {
    min-height: 430px;
    margin-top: 0;
  }

  .donut-wrap {
    width: 220px;
    height: 220px;
  }

  .michi-marquee {
    grid-auto-columns: 64%;
  }

  .ecosystem-map {
    max-width: 380px;
  }

  .ecosystem-center {
    width: 130px;
    height: 130px;
  }

  .ecosystem-center strong {
    font-size: 1.15rem;
  }

  .eco-node {
    width: 110px;
    font-size: 0.74rem;
  }

  .node-2,
  .node-3 {
    right: 1%;
  }

  .node-5,
  .node-6 {
    left: 1%;
  }
}

@media (max-width: 440px) {
  .site-header {
    padding: 10px 0;
  }

  .header-inner {
    width: calc(100% - 20px);
    gap: 12px;
  }

  .brand {
    font-size: 0.95rem;
  }

  .brand-network {
    display: none;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .hero-panel,
  .buy-card,
  .tokenomics-visual {
    padding: 20px;
  }

  .ecosystem-map {
    max-width: 330px;
  }

  .ecosystem-center {
    width: 112px;
    height: 112px;
  }

  .ecosystem-center strong {
    font-size: 1rem;
  }

  .ecosystem-center span {
    max-width: 82px;
    font-size: 0.58rem;
  }

  .eco-node {
    width: 96px;
    min-height: 48px;
    padding: 6px 8px;
    gap: 4px;
    font-size: 0.66rem;
  }

  .eco-icon {
    width: 22px;
    height: 22px;
    font-size: 0.58rem;
  }

  .ecosystem-cat {
    display: none;
  }

  .michi-marquee {
    grid-auto-columns: 80%;
  }

  .supporter-feature-card {
    min-height: 360px;
  }

  .supporter-gallery-grid .supporter-art-card,
  .supporter-gallery-grid .supporter-art-card:nth-child(1),
  .supporter-gallery-grid .supporter-art-card:nth-child(2),
  .supporter-gallery-grid .supporter-art-card:nth-child(3),
  .supporter-gallery-grid .supporter-art-card:nth-child(4),
  .supporter-gallery-grid .supporter-art-card:nth-child(5) {
    min-height: 180px;
  }

  .supporter-pass {
    padding: 20px;
  }

  .foundation-story-art {
    min-height: 360px;
  }

  .foundation-story-media-stack {
    grid-template-rows: minmax(360px, auto) auto;
  }

  .store-showcase {
    aspect-ratio: 4 / 5;
  }

  .store-impact-panel,
  .store-intro-card,
  .store-info-card,
  .store-story-card {
    padding: 20px;
    border-radius: var(--radius-sm);
  }

  .store-visual-badge {
    top: 14px;
    left: 14px;
    max-width: calc(100% - 28px);
    font-size: 0.66rem;
  }

  .store-showcase-live {
    top: 56px;
    left: 14px;
    font-size: 0.62rem;
  }

  .store-showcase figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 14px;
  }

  .foundation-art-badge {
    font-size: 0.68rem;
    padding: 8px 10px;
  }

  .foundation-aid-tags {
    display: none;
  }

  .foundation-story-art figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 12px;
  }

  .foundation-story-art figcaption span {
    font-size: 0.66rem;
  }

  .foundation-actions .btn {
    width: 100%;
  }

  .foundation-support-strip {
    grid-template-columns: 1fr;
  }

  .foundation-emotional-note {
    border-radius: var(--radius-sm);
  }

  .world-champion-card,
  .champion-crystal {
    min-height: 360px;
  }

  .world-champion-card div {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
}

/* ==========================================================================
   Newsletter block – Conoce el Airdrop / Únete a la Michi Army
   ========================================================================== */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.newsletter-wrap {
  margin-top: 64px;
  margin-bottom: 24px;
}

.newsletter-card {
  --nl-accent-1: #5ee0b8;
  --nl-accent-2: #ffca4f;
  --nl-accent-3: #ff725e;
  --nl-accent-rgb-1: 94, 224, 184;
  --nl-accent-rgb-2: 255, 202, 79;
  --nl-accent-rgb-3: 255, 114, 94;

  position: relative;
  display: grid;
  grid-template-columns: minmax(200px, 240px) 1fr;
  gap: 44px;
  align-items: center;
  padding: 56px 60px;
  border-radius: var(--radius-xl);
  border: 1.5px solid rgba(255, 247, 237, 0.14);
  background:
    radial-gradient(circle at 12% 0%, rgba(var(--nl-accent-rgb-1), 0.22), transparent 55%),
    radial-gradient(circle at 88% 100%, rgba(var(--nl-accent-rgb-2), 0.28), transparent 55%),
    linear-gradient(140deg, #1c1f33 0%, #131527 55%, #0d0f20 100%);
  box-shadow:
    0 40px 80px -30px rgba(0, 0, 0, 0.6),
    0 18px 38px -18px rgba(var(--nl-accent-rgb-1), 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
}

.newsletter-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 48px 100px -28px rgba(0, 0, 0, 0.7),
    0 22px 46px -16px rgba(var(--nl-accent-rgb-2), 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.newsletter-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(
    135deg,
    rgba(var(--nl-accent-rgb-1), 0.7) 0%,
    rgba(var(--nl-accent-rgb-2), 0.45) 50%,
    rgba(var(--nl-accent-rgb-3), 0.65) 100%
  );
  background-size: 200% 200%;
  animation: newsletterBorder 9s ease-in-out infinite;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: 3;
}

.newsletter-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255, 247, 237, 0.035) 0 1px,
      transparent 1px 18px
    );
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: overlay;
  opacity: 0.7;
}

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

.newsletter-card-army {
  --nl-accent-1: #ff91b7;
  --nl-accent-2: #c4a3ff;
  --nl-accent-3: #ffca4f;
  --nl-accent-rgb-1: 255, 145, 183;
  --nl-accent-rgb-2: 196, 163, 255;
  --nl-accent-rgb-3: 255, 202, 79;

  background:
    radial-gradient(circle at 12% 0%, rgba(var(--nl-accent-rgb-1), 0.28), transparent 55%),
    radial-gradient(circle at 88% 100%, rgba(var(--nl-accent-rgb-2), 0.3), transparent 55%),
    linear-gradient(140deg, #20182f 0%, #18122b 55%, #100b22 100%);
}

.newsletter-aurora {
  position: absolute;
  inset: -25% -10% -25% -10%;
  background:
    conic-gradient(
      from 90deg at 50% 50%,
      rgba(var(--nl-accent-rgb-1), 0.32) 0deg,
      transparent 90deg,
      rgba(var(--nl-accent-rgb-2), 0.32) 180deg,
      transparent 270deg,
      rgba(var(--nl-accent-rgb-3), 0.28) 360deg
    );
  filter: blur(85px) saturate(1.1);
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
  animation: newsletterAurora 18s linear infinite;
  transform-origin: center;
}

@keyframes newsletterAurora {
  to { transform: rotate(360deg); }
}

.newsletter-orbit {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  mask-image: radial-gradient(circle at 50% 50%, #000 0%, #000 60%, transparent 95%);
}

.newsletter-orbit span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--nl-accent-1);
  box-shadow: 0 0 14px rgba(var(--nl-accent-rgb-1), 0.9);
  transform-origin: 0 0;
  animation: newsletterOrbit 18s linear infinite;
}

.newsletter-orbit span:nth-child(1) {
  background: var(--nl-accent-1);
  box-shadow: 0 0 16px rgba(var(--nl-accent-rgb-1), 0.95);
  --orbit-r: 320px;
  animation-duration: 22s;
}

.newsletter-orbit span:nth-child(2) {
  width: 6px;
  height: 6px;
  background: var(--nl-accent-2);
  box-shadow: 0 0 14px rgba(var(--nl-accent-rgb-2), 0.95);
  --orbit-r: 260px;
  animation-duration: 16s;
  animation-direction: reverse;
}

.newsletter-orbit span:nth-child(3) {
  width: 5px;
  height: 5px;
  background: var(--nl-accent-3);
  box-shadow: 0 0 12px rgba(var(--nl-accent-rgb-3), 0.9);
  --orbit-r: 380px;
  animation-duration: 28s;
}

@keyframes newsletterOrbit {
  from { transform: rotate(0deg) translate(var(--orbit-r, 320px)) rotate(0deg); }
  to   { transform: rotate(360deg) translate(var(--orbit-r, 320px)) rotate(-360deg); }
}

.newsletter-glow {
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 30% 30%, rgba(var(--nl-accent-rgb-1), 0.32), transparent 55%),
    radial-gradient(circle at 70% 75%, rgba(var(--nl-accent-rgb-2), 0.32), transparent 55%);
  filter: blur(70px);
  z-index: 0;
  pointer-events: none;
  animation: newsletterGlow 14s ease-in-out infinite alternate;
}

@keyframes newsletterGlow {
  0% {
    transform: translate3d(-4%, -2%, 0) scale(1);
    opacity: 0.85;
  }
  100% {
    transform: translate3d(4%, 2%, 0) scale(1.05);
    opacity: 1;
  }
}

.newsletter-spark {
  position: absolute;
  font-size: 22px;
  color: var(--nl-accent-2);
  text-shadow: 0 0 14px rgba(var(--nl-accent-rgb-2), 0.85);
  animation: newsletterTwinkle 3.4s ease-in-out infinite;
  z-index: 2;
  pointer-events: none;
}

.newsletter-spark-a { top: 22px; right: 32px; animation-delay: 0s; }
.newsletter-spark-b {
  bottom: 28px;
  left: 30%;
  font-size: 16px;
  animation-delay: 0.8s;
  color: var(--nl-accent-1);
  text-shadow: 0 0 14px rgba(var(--nl-accent-rgb-1), 0.85);
}
.newsletter-spark-c {
  top: 38%;
  right: 12%;
  font-size: 14px;
  animation-delay: 1.6s;
  color: var(--nl-accent-3);
  text-shadow: 0 0 12px rgba(var(--nl-accent-rgb-3), 0.75);
}
.newsletter-spark-d {
  top: 18%;
  left: 38%;
  font-size: 12px;
  animation-delay: 2.2s;
  color: var(--text);
  text-shadow: 0 0 10px rgba(255, 247, 237, 0.6);
}

@keyframes newsletterTwinkle {
  0%, 100% { opacity: 0.35; transform: scale(0.85) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.2) rotate(28deg); }
}

.newsletter-mascot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 240px;
  z-index: 2;
}

.newsletter-mascot img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter:
    drop-shadow(0 18px 32px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 24px rgba(var(--nl-accent-rgb-1), 0.4));
  animation: newsletterFloat 5.4s ease-in-out infinite;
  z-index: 3;
}

.newsletter-mascot-ring {
  position: absolute;
  inset: 4%;
  border-radius: 50%;
  background:
    conic-gradient(
      from 0deg,
      rgba(var(--nl-accent-rgb-1), 0.7),
      rgba(var(--nl-accent-rgb-2), 0.7),
      rgba(var(--nl-accent-rgb-3), 0.7),
      rgba(var(--nl-accent-rgb-1), 0.7)
    );
  filter: blur(3px);
  opacity: 0.9;
  animation: newsletterRing 12s linear infinite;
  z-index: 0;
}

.newsletter-mascot-pulse {
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  border: 1.5px dashed rgba(255, 247, 237, 0.35);
  animation: newsletterPulseRing 3s ease-out infinite;
  z-index: 1;
}

.newsletter-mascot::after {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 40%, rgba(var(--nl-accent-rgb-1), 0.4), transparent 70%),
    radial-gradient(circle at 50% 50%, rgba(10, 11, 20, 0.92), rgba(10, 11, 20, 0.68));
  z-index: 2;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.6);
}

@keyframes newsletterFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(-2deg); }
}

@keyframes newsletterRing {
  to { transform: rotate(360deg); }
}

@keyframes newsletterPulseRing {
  0% { transform: scale(0.95); opacity: 0.7; }
  100% { transform: scale(1.15); opacity: 0; }
}

.newsletter-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.newsletter-copy::before {
  content: "";
  position: absolute;
  inset: -28px -32px;
  background:
    radial-gradient(ellipse at 35% 50%, rgba(7, 8, 18, 0.62) 0%, rgba(7, 8, 18, 0.3) 50%, transparent 78%);
  z-index: -1;
  pointer-events: none;
  border-radius: var(--radius-xl);
}

.newsletter-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 8px 16px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(var(--nl-accent-rgb-1), 0.18), rgba(var(--nl-accent-rgb-2), 0.12));
  border: 1px solid rgba(var(--nl-accent-rgb-1), 0.45);
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px -8px rgba(var(--nl-accent-rgb-1), 0.45);
}

.newsletter-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--nl-accent-1);
  box-shadow: 0 0 14px var(--nl-accent-1);
  animation: newsletterPulse 1.6s ease-in-out infinite;
}

@keyframes newsletterPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.75); }
}

.newsletter-card .newsletter-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.06;
  margin: 0;
  color: var(--text);
  letter-spacing: -0.015em;
  font-weight: 700;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
}

.newsletter-title-accent {
  position: relative;
  background: linear-gradient(
    110deg,
    var(--nl-accent-1) 0%,
    var(--nl-accent-2) 50%,
    var(--nl-accent-3) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: newsletterShine 6s ease-in-out infinite;
}

.newsletter-title-accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    110deg,
    var(--nl-accent-1) 0%,
    var(--nl-accent-2) 50%,
    var(--nl-accent-3) 100%
  );
  background-size: 200% auto;
  opacity: 0.55;
  animation: newsletterShine 6s ease-in-out infinite;
}

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

.newsletter-card .newsletter-sub {
  margin: 0;
  color: #fdf5e6;
  font-size: 16.5px;
  font-weight: 500;
  line-height: 1.6;
  max-width: 58ch;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.55);
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin-top: 8px;
  align-items: stretch;
}

.newsletter-field {
  position: relative;
  display: flex;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(10, 11, 20, 0.7), rgba(10, 11, 20, 0.55));
  border: 1.5px solid rgba(255, 247, 237, 0.16);
  border-radius: 14px;
  padding: 0 18px 0 50px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.newsletter-field:focus-within {
  border-color: var(--nl-accent-1);
  box-shadow:
    0 0 0 4px rgba(var(--nl-accent-rgb-1), 0.18),
    0 14px 40px -16px rgba(var(--nl-accent-rgb-1), 0.55);
  transform: translateY(-1px);
}

.newsletter-field-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--nl-accent-1), var(--nl-accent-2));
  border-radius: 8px;
  box-shadow:
    0 6px 18px -4px rgba(var(--nl-accent-rgb-1), 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.newsletter-field input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  padding: 18px 0;
  letter-spacing: 0.01em;
}

.newsletter-field input::placeholder {
  color: var(--muted);
}

.newsletter-submit {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  border-radius: 14px;
  background: linear-gradient(
    110deg,
    var(--nl-accent-1) 0%,
    var(--nl-accent-2) 55%,
    var(--nl-accent-3) 100%
  );
  background-size: 200% auto;
  color: var(--ink);
  border: 0;
  box-shadow:
    0 18px 38px -14px rgba(var(--nl-accent-rgb-2), 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transition: transform 0.25s ease, box-shadow 0.3s ease, background-position 0.6s ease;
  overflow: hidden;
}

.newsletter-submit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 0.7s ease;
}

.newsletter-submit:hover {
  transform: translateY(-2px);
  background-position: 100% 50%;
  box-shadow:
    0 24px 48px -14px rgba(var(--nl-accent-rgb-2), 0.85),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.newsletter-submit:hover::before {
  transform: translateX(120%);
}

.newsletter-submit:focus-visible {
  outline: 0;
  box-shadow:
    0 0 0 4px rgba(var(--nl-accent-rgb-1), 0.45),
    0 24px 48px -14px rgba(var(--nl-accent-rgb-2), 0.85);
}

.newsletter-submit:active {
  transform: translateY(0);
}

.newsletter-submit:disabled {
  opacity: 0.7;
  cursor: progress;
}

.newsletter-submit svg {
  width: 20px;
  height: 20px;
  transition: transform 0.25s ease;
}

.newsletter-submit:hover svg {
  transform: translateX(3px);
}

.newsletter-consent {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(7, 8, 18, 0.42);
  border: 1px solid rgba(255, 247, 237, 0.14);
  color: rgba(255, 247, 237, 0.82);
  font-size: 12.5px;
  line-height: 1.45;
  font-weight: 600;
}

.newsletter-consent input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--nl-accent-1);
  cursor: pointer;
}

.newsletter-consent-copy {
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: baseline;
}

.newsletter-consent-copy label {
  cursor: pointer;
}

.newsletter-consent-link {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--nl-accent-1);
  font: inherit;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  cursor: pointer;
}

.newsletter-consent-link:hover,
.newsletter-consent-link:focus-visible {
  color: var(--gold);
  outline: 0;
}

.newsletter-consent:focus-within {
  border-color: rgba(var(--nl-accent-rgb-1), 0.55);
  box-shadow: 0 0 0 3px rgba(var(--nl-accent-rgb-1), 0.16);
}

body.consent-modal-open {
  overflow: hidden;
}

.consent-modal[hidden] {
  display: none;
}

.consent-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: clamp(14px, 4vw, 42px);
}

.consent-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 6, 18, 0.78);
  backdrop-filter: blur(8px);
}

.consent-modal-panel {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(84vh, 760px);
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border-radius: 8px;
  background: #fffaf0;
  color: #141724;
  border: 1px solid rgba(235, 173, 64, 0.38);
  box-shadow: 0 28px 84px rgba(0, 0, 0, 0.45);
}

.consent-modal-panel:focus {
  outline: 0;
}

.consent-modal-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: start;
  padding: clamp(18px, 3vw, 28px);
  border-bottom: 1px solid rgba(20, 23, 36, 0.12);
  background: #fff4df;
}

.consent-modal-kicker {
  margin: 0 0 6px;
  color: #8c5a11;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.consent-modal-header h2 {
  margin: 0;
  color: #0b2854;
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 38px);
  line-height: 1.05;
}

.consent-modal-close {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(20, 23, 36, 0.14);
  background: #ffffff;
  color: #0b2854;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.consent-modal-close:hover,
.consent-modal-close:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(235, 173, 64, 0.85);
  box-shadow: 0 10px 28px rgba(14, 50, 88, 0.18);
  outline: 0;
}

.consent-modal-close svg {
  width: 22px;
  height: 22px;
}

.consent-modal-body {
  overflow: auto;
  padding: clamp(18px, 3vw, 30px);
  overscroll-behavior: contain;
}

.consent-modal-body section + section {
  margin-top: 22px;
}

.consent-modal-lead {
  margin: 0 0 22px;
  padding: 14px 16px;
  border-radius: 8px;
  background: #eef8fb;
  border: 1px solid rgba(17, 122, 138, 0.16);
  color: #12344a;
  font-weight: 700;
  line-height: 1.6;
}

.consent-modal-body h3 {
  margin: 0 0 8px;
  color: #0b2854;
  font-size: 17px;
  line-height: 1.25;
}

.consent-modal-body p,
.consent-modal-body li {
  color: rgba(20, 23, 36, 0.86);
  font-size: 14px;
  line-height: 1.65;
}

.consent-modal-body p {
  margin: 0;
}

.consent-modal-body ul {
  margin: 8px 0 0;
  padding-left: 20px;
}

.consent-modal-body li + li {
  margin-top: 7px;
}

.consent-modal-body a {
  color: #0b5d8f;
  font-weight: 800;
}

.consent-modal-note {
  margin-top: 24px !important;
  padding-top: 16px;
  border-top: 1px solid rgba(20, 23, 36, 0.12);
  font-weight: 700;
}

.newsletter-feedback {
  grid-column: 1 / -1;
  margin: 0;
  min-height: 22px;
  font-size: 14px;
  color: var(--text-soft);
  font-weight: 500;
  transition: color 0.2s ease;
}

.newsletter-feedback[data-state="success"] {
  color: var(--nl-accent-1);
}

.newsletter-feedback[data-state="error"] {
  color: var(--coral-soft);
}

.newsletter-perks {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 10px 0 0;
  padding: 0;
}

.newsletter-card .newsletter-perks li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: #fdf5e6;
  font-weight: 600;
  padding: 7px 14px 7px 8px;
  border-radius: 999px;
  background: rgba(7, 8, 18, 0.55);
  border: 1px solid rgba(255, 247, 237, 0.16);
  backdrop-filter: blur(6px);
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.newsletter-perks li:hover {
  border-color: rgba(var(--nl-accent-rgb-1), 0.55);
  background: rgba(7, 8, 18, 0.7);
  transform: translateY(-1px);
}

.newsletter-perks li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--nl-accent-1), var(--nl-accent-2));
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 6px 14px -4px rgba(var(--nl-accent-rgb-1), 0.6);
}

@media (max-width: 900px) {
  .newsletter-card {
    grid-template-columns: 1fr;
    padding: 40px 30px;
    gap: 24px;
    text-align: left;
  }

  .newsletter-mascot {
    max-width: 170px;
    margin: 0 auto;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .newsletter-submit {
    justify-content: center;
  }

  .newsletter-spark-a { top: 14px; right: 18px; }
  .newsletter-spark-b { bottom: 14px; left: 20px; }
  .newsletter-spark-c { top: auto; bottom: 70px; right: 22px; }
  .newsletter-spark-d { top: 22px; left: 28px; }

  .newsletter-orbit span:nth-child(1) { --orbit-r: 220px; }
  .newsletter-orbit span:nth-child(2) { --orbit-r: 180px; }
  .newsletter-orbit span:nth-child(3) { --orbit-r: 260px; }
}

@media (max-width: 520px) {
  .newsletter-card {
    padding: 32px 22px;
    border-radius: var(--radius-lg);
  }

  .newsletter-title {
    font-size: 26px;
  }

  .newsletter-sub {
    font-size: 14.5px;
  }

  .newsletter-perks {
    gap: 8px 12px;
  }

  .newsletter-perks li {
    font-size: 12.5px;
  }

  .newsletter-orbit span:nth-child(1) { --orbit-r: 170px; }
  .newsletter-orbit span:nth-child(2) { --orbit-r: 140px; }
  .newsletter-orbit span:nth-child(3) { --orbit-r: 200px; }
}

@media (prefers-reduced-motion: reduce) {
  .newsletter-glow,
  .newsletter-aurora,
  .newsletter-orbit span,
  .newsletter-spark,
  .newsletter-mascot img,
  .newsletter-mascot-ring,
  .newsletter-mascot-pulse,
  .newsletter-eyebrow-dot,
  .newsletter-title-accent,
  .newsletter-title-accent::after,
  .newsletter-card::before {
    animation: none;
  }
}

/* ============ NOVAMI AMBASSOR PROGRAM ============ */
body.ambassador-page {
  min-height: 100vh;
  background: #020611;
}

.ambassador-page .site-header {
  position: fixed;
  inset: 0 0 auto;
  background: rgba(2, 6, 17, 0.5);
  border-bottom-color: rgba(255, 202, 79, 0.2);
}

.ambassador-page .site-header.is-scrolled,
.ambassador-page .site-header.is-open {
  background: rgba(2, 6, 17, 0.86);
}

.ambassador-main {
  min-height: 100vh;
  margin: 0;
}

.ambassador-hero,
.ambassador-steps,
.ambassador-mechanics,
.ambassador-cta {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
}

.ambassador-hero {
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  padding: 116px 0 56px;
  background: #020611;
}

.ambassador-background {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 350px 320px at 43% 33%, rgba(2, 6, 17, 0.94), transparent 70%),
    linear-gradient(90deg, #020611 0%, #020611 34%, rgba(2, 6, 17, 0.96) 43%, rgba(2, 6, 17, 0.5) 49%, rgba(2, 6, 17, 0.12) 56%, rgba(2, 6, 17, 0) 64%),
    linear-gradient(180deg, rgba(2, 6, 17, 0.5) 0%, rgba(2, 6, 17, 0.08) 14%, rgba(2, 6, 17, 0) 28%, rgba(2, 6, 17, 0) 64%, rgba(2, 6, 17, 0.55) 84%, rgba(2, 6, 17, 0.97) 96%, #020611 100%),
    url("assets/novami-ambassor-program.png") right center / cover no-repeat;
  filter: saturate(1.12) contrast(1.03) brightness(1.04);
}

.ambassador-sheen {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 560px 320px at 66% 84%, rgba(255, 202, 79, 0.24), transparent 70%),
    radial-gradient(circle 460px at 82% 24%, rgba(0, 212, 255, 0.14), transparent 70%),
    radial-gradient(circle 380px at 12% 78%, rgba(255, 202, 79, 0.1), transparent 72%);
  mix-blend-mode: screen;
}

.ambassador-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(360px, 424px);
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  width: min(1360px, calc(100% - 48px));
  min-height: calc(100svh - 172px);
  margin: 0 auto;
}

.ambassador-copy {
  max-width: 560px;
}

.ambassador-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ambassador-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold-bright), rgba(255, 215, 112, 0.2));
}

.ambassador-copy h1 {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 4.1rem;
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-shadow: 0 10px 44px rgba(0, 0, 0, 0.72);
}

.ambassador-title-line {
  display: block;
}

.ambassador-title-gold {
  background: linear-gradient(180deg, #ffeeb0 8%, var(--gold) 55%, #e8a72e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.6));
}

.ambassador-tagline {
  margin: 18px 0 0;
  padding-left: 14px;
  border-left: 3px solid var(--gold-bright);
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.4;
  text-shadow: 0 2px 20px rgba(2, 6, 17, 0.85);
}

.ambassador-lead {
  max-width: 46ch;
  margin: 16px 0 0;
  color: rgba(255, 247, 237, 0.9);
  font-size: 1.02rem;
  line-height: 1.65;
  text-shadow: 0 2px 18px rgba(2, 6, 17, 0.85);
}

.ambassador-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.ambassador-benefits li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 10px;
  border: 1px solid rgba(255, 213, 130, 0.26);
  border-radius: 999px;
  background: rgba(2, 6, 17, 0.55);
  color: rgba(255, 247, 237, 0.92);
  font-size: 0.8rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.ambassador-benefit-icon {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(255, 202, 79, 0.16);
  color: var(--gold-bright);
}

.ambassador-benefit-icon svg {
  width: 15px;
  height: 15px;
}

.ambassador-quick-actions,
.ambassador-form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.ambassador-trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 247, 237, 0.12);
}

.ambassador-trust-row span {
  color: rgba(255, 247, 237, 0.5);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.ambassador-trust-row a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 247, 237, 0.86);
  font-size: 0.86rem;
  font-weight: 700;
  transition: color 180ms ease;
}

.ambassador-trust-row a:hover,
.ambassador-trust-row a:focus-visible {
  color: var(--gold-bright);
}

.ambassador-trust-row a svg {
  width: 16px;
  height: 16px;
}

.ambassador-form-panel {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 26px;
  border: 1px solid rgba(255, 213, 130, 0.4);
  border-radius: 18px;
  background: linear-gradient(168deg, rgba(12, 22, 44, 0.62), rgba(3, 8, 20, 0.72));
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 64px rgba(255, 202, 79, 0.14);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  overflow: hidden;
}

.ambassador-form-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-bright) 30% 70%, transparent);
  opacity: 0.9;
}

.ambassador-form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
  color: rgba(255, 247, 237, 0.82);
}

.ambassador-form-head span,
.ambassador-rule-label {
  color: var(--gold-bright);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.ambassador-form-head strong {
  padding: 7px 10px;
  border: 1px solid rgba(119, 201, 255, 0.36);
  border-radius: 999px;
  background: rgba(0, 163, 255, 0.13);
  color: rgba(255, 247, 237, 0.92);
  font-size: 0.76rem;
  line-height: 1;
}

.ambassador-field {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.ambassador-field span {
  color: rgba(255, 247, 237, 0.86);
  font-size: 0.86rem;
  font-weight: 800;
}

.ambassador-field-control {
  position: relative;
  display: block;
}

.ambassador-field-icon {
  position: absolute;
  top: 50%;
  left: 14px;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  color: rgba(255, 202, 79, 0.7);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  pointer-events: none;
}

.ambassador-field-icon svg {
  width: 100%;
  height: 100%;
}

.ambassador-field input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 247, 237, 0.16);
  border-radius: 12px;
  background: rgba(2, 6, 17, 0.5);
  color: #ffffff;
  outline: none;
  padding: 0 14px 0 40px;
  font-size: 0.95rem;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.ambassador-field input::placeholder {
  color: rgba(255, 247, 237, 0.46);
}

.ambassador-field input:focus {
  border-color: rgba(255, 202, 79, 0.78);
  background: rgba(2, 6, 17, 0.68);
  box-shadow: 0 0 0 4px rgba(255, 202, 79, 0.14);
}

.ambassador-field input:focus + .ambassador-field-icon,
.ambassador-field-control:focus-within .ambassador-field-icon {
  color: var(--gold-bright);
}

.ambassador-form-actions .btn {
  flex: 1 1 230px;
}

.ambassador-x-link {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(119, 201, 255, 0.42);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.34);
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 900;
}

.ambassador-form-note {
  min-height: 44px;
  margin: 18px 0 0;
  padding: 12px;
  border: 1px solid rgba(255, 247, 237, 0.12);
  border-radius: 12px;
  background: rgba(2, 6, 17, 0.42);
  color: rgba(255, 247, 237, 0.74);
  font-size: 0.86rem;
  line-height: 1.45;
}

.ambassador-form-note.is-success {
  border-color: rgba(132, 227, 196, 0.42);
  background: rgba(15, 168, 140, 0.16);
  color: rgba(255, 247, 237, 0.94);
}

.ambassador-form-note.is-error {
  border-color: rgba(255, 114, 94, 0.5);
  background: rgba(255, 114, 94, 0.14);
  color: rgba(255, 247, 237, 0.94);
}

/* ---- Cómo funciona (steps) ---- */
.ambassador-steps {
  padding: 84px 0;
  background: #050914;
}

.ambassador-steps-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.ambassador-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.ambassador-section-head h2 {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 2.3rem;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
}

.ambassador-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.ambassador-step {
  position: relative;
  padding: 26px 22px 22px;
  border: 1px solid rgba(255, 247, 237, 0.12);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow-md);
}

.ambassador-step-index {
  display: block;
  margin-bottom: 14px;
  color: rgba(255, 247, 237, 0.16);
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.ambassador-step-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: rgba(255, 202, 79, 0.14);
  color: var(--gold-bright);
}

.ambassador-step-icon svg {
  width: 22px;
  height: 22px;
}

.ambassador-step h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.16rem;
  text-transform: uppercase;
}

.ambassador-step p {
  margin: 0;
  color: rgba(255, 247, 237, 0.68);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* ---- Mecánica ---- */
.ambassador-mechanics {
  padding: 88px 0 96px;
  background:
    radial-gradient(circle 460px at 12% 0%, rgba(255, 202, 79, 0.1), transparent 68%),
    radial-gradient(circle 420px at 88% 100%, rgba(0, 212, 255, 0.1), transparent 68%),
    #050914;
}

.ambassador-mechanics-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.ambassador-rules-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.ambassador-rule {
  --rule-accent: var(--gold-bright);
  min-height: 168px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(255, 247, 237, 0.14);
  border-top: 2px solid var(--rule-accent);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045)),
    rgba(4, 12, 30, 0.74);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.ambassador-rule:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.34);
}

.ambassador-rule-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--rule-accent) 18%, transparent);
  color: var(--rule-accent);
}

.ambassador-rule-icon svg {
  width: 19px;
  height: 19px;
}

.ambassador-rule strong {
  color: rgba(255, 247, 237, 0.92);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.45;
}

.ambassador-rule-gold { --rule-accent: var(--gold-bright); }
.ambassador-rule-sky { --rule-accent: var(--sky); }
.ambassador-rule-mint { --rule-accent: var(--mint); }
.ambassador-rule-coral { --rule-accent: var(--coral-soft); }
.ambassador-rule-violet { --rule-accent: var(--violet-soft); }

.ambassador-rule-wide {
  grid-column: span 3;
  min-height: auto;
  flex-direction: row;
  align-items: center;
  --rule-accent: var(--gold-bright);
  background:
    linear-gradient(90deg, rgba(255, 202, 79, 0.16), rgba(119, 201, 255, 0.1)),
    rgba(4, 12, 30, 0.8);
}

.ambassador-rule-wide .ambassador-rule-icon {
  flex-shrink: 0;
}

/* ---- Closing CTA ---- */
.ambassador-cta {
  padding: 90px 0;
  background:
    radial-gradient(circle 520px at 50% 0%, rgba(255, 202, 79, 0.14), transparent 70%),
    #020611;
  text-align: center;
}

.ambassador-cta-inner {
  width: min(720px, calc(100% - 32px));
  margin: 0 auto;
}

.ambassador-cta-inner .ambassador-kicker {
  display: block;
}

.ambassador-cta-inner h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.ambassador-cta-inner p {
  margin: 0;
  color: rgba(255, 247, 237, 0.72);
  font-size: 1rem;
  line-height: 1.6;
}

.ambassador-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

@media (max-width: 1120px) {
  .ambassador-hero {
    min-height: auto;
    padding: 104px 0 36px;
  }

  .ambassador-background {
    background:
      linear-gradient(100deg, #020611 0%, #020611 26%, rgba(2, 6, 17, 0.9) 33%, rgba(2, 6, 17, 0.35) 41%, rgba(2, 6, 17, 0) 50%),
      linear-gradient(180deg, rgba(2, 6, 17, 0.05) 0%, rgba(2, 6, 17, 0.12) 44%, rgba(2, 6, 17, 0.95) 76%, #020611 100%),
      url("assets/novami-ambassor-program.png") right top / auto 70vh no-repeat,
      #020611;
    filter: saturate(1.1) contrast(1.02);
    transform: none;
  }

  .ambassador-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 42vh;
  }

  .ambassador-copy {
    max-width: 100%;
    padding: 24px;
    border: 1px solid rgba(255, 247, 237, 0.14);
    border-radius: 16px;
    background: rgba(2, 6, 17, 0.6);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .ambassador-copy h1 {
    font-size: 3rem;
  }

  .ambassador-form-panel {
    max-width: 620px;
    margin-left: auto;
  }

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

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

  .ambassador-rule-wide {
    grid-column: span 2;
  }
}

@media (max-width: 760px) {
  .ambassador-page .site-header {
    position: sticky;
  }

  .ambassador-hero {
    padding: 28px 0 30px;
  }

  .ambassador-background {
    background:
      linear-gradient(100deg, #020611 0%, #020611 22%, rgba(2, 6, 17, 0.85) 30%, rgba(2, 6, 17, 0.3) 40%, rgba(2, 6, 17, 0) 50%),
      linear-gradient(180deg, rgba(2, 6, 17, 0.08) 0%, rgba(2, 6, 17, 0.16) 40%, rgba(2, 6, 17, 0.92) 72%, rgba(2, 6, 17, 0.99) 100%),
      url("assets/novami-ambassor-program.png") 74% top / auto 70vh no-repeat,
      #020611;
    filter: saturate(1.1) contrast(1.02);
    transform: none;
  }

  .ambassador-sheen {
    opacity: 0.55;
  }

  .ambassador-hero-grid {
    width: min(100% - 24px, 560px);
    padding-top: 45vh;
    gap: 16px;
  }

  .ambassador-copy,
  .ambassador-form-panel,
  .ambassador-rule,
  .ambassador-step {
    padding: 16px;
  }

  .ambassador-copy h1 {
    font-size: 2.35rem;
  }

  .ambassador-tagline {
    font-size: 0.94rem;
  }

  .ambassador-lead {
    font-size: 0.94rem;
  }

  .ambassador-quick-actions .btn,
  .ambassador-form-actions .btn,
  .ambassador-cta-actions .btn {
    width: 100%;
    flex-basis: 100%;
  }

  .ambassador-x-link {
    width: 100%;
  }

  .ambassador-steps {
    padding: 56px 0;
  }

  .ambassador-steps-grid {
    grid-template-columns: 1fr;
  }

  .ambassador-mechanics {
    padding: 56px 0 64px;
  }

  .ambassador-section-head {
    display: block;
  }

  .ambassador-section-head h2 {
    font-size: 1.9rem;
  }

  .ambassador-rules-grid,
  .ambassador-rule-wide {
    grid-template-columns: 1fr;
    grid-column: auto;
  }

  .ambassador-rule {
    min-height: 132px;
  }

  .ambassador-rule-wide {
    flex-direction: column;
  }

  .ambassador-cta {
    padding: 64px 0;
  }

  .ambassador-cta-inner h2 {
    font-size: 1.7rem;
  }
}

@media (max-width: 440px) {
  .ambassador-hero-grid,
  .ambassador-steps-inner,
  .ambassador-mechanics-inner {
    width: calc(100% - 20px);
  }

  .ambassador-copy h1 {
    font-size: 2rem;
  }

  .ambassador-form-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ============ ACCESO AMBASSOR PROGRAM (home) ============ */
.ambassador-access-section {
  position: relative;
  margin-top: 40px;
}

.ambassador-access {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 400px);
  align-items: center;
  gap: 28px;
  padding: 30px 34px;
  border: 1px solid rgba(255, 213, 130, 0.4);
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle 460px at 88% 12%, rgba(255, 202, 79, 0.13), transparent 66%),
    radial-gradient(circle 380px at 4% 100%, rgba(0, 212, 255, 0.08), transparent 70%),
    linear-gradient(165deg, rgba(12, 22, 44, 0.94), rgba(3, 8, 20, 0.97));
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.45),
    0 0 60px rgba(255, 202, 79, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.ambassador-access::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-bright) 28% 72%, transparent);
  opacity: 0.9;
}

.ambassador-access:hover,
.ambassador-access:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(255, 213, 130, 0.7);
  box-shadow:
    0 40px 96px rgba(0, 0, 0, 0.55),
    0 0 90px rgba(255, 202, 79, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.ambassador-access-shine {
  position: absolute;
  inset: -40% auto;
  width: 34%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 236, 180, 0.1), transparent);
  mix-blend-mode: screen;
  pointer-events: none;
  animation: ambassadorAccessShine 5.8s ease-in-out infinite;
}

@keyframes ambassadorAccessShine {
  0%, 55% { left: -45%; }
  85%, 100% { left: 135%; }
}

.ambassador-access-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ambassador-access-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--gold-bright);
  box-shadow: 0 0 0 0 rgba(255, 215, 112, 0.55);
  animation: ambassadorAccessPulse 2.2s ease-out infinite;
}

@keyframes ambassadorAccessPulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 215, 112, 0.55); }
  70% { box-shadow: 0 0 0 11px rgba(255, 215, 112, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 215, 112, 0); }
}

.ambassador-access-title {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 2.15rem;
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}

.ambassador-access-gold {
  background: linear-gradient(180deg, #ffeeb0 8%, var(--gold) 55%, #e8a72e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ambassador-access-sub {
  max-width: 52ch;
  margin: 12px 0 0;
  color: rgba(255, 247, 237, 0.78);
  font-size: 0.98rem;
  line-height: 1.6;
}

.ambassador-access-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.ambassador-access-pills li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  border: 1px solid rgba(255, 213, 130, 0.24);
  border-radius: 999px;
  background: rgba(255, 202, 79, 0.07);
  color: rgba(255, 247, 237, 0.88);
  font-size: 0.78rem;
  font-weight: 700;
}

.ambassador-access-pills li span {
  color: var(--gold-bright);
  font-size: 0.7rem;
}

.ambassador-access-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.ambassador-access-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: #151106;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 800;
  box-shadow: 0 14px 36px rgba(255, 202, 79, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: box-shadow 220ms ease, filter 220ms ease;
}

.ambassador-access-cta svg {
  width: 19px;
  height: 19px;
  transition: transform 220ms ease;
}

.ambassador-access:hover .ambassador-access-cta,
.ambassador-access:focus-visible .ambassador-access-cta {
  box-shadow: 0 18px 48px rgba(255, 202, 79, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  filter: brightness(1.05);
}

.ambassador-access:hover .ambassador-access-cta svg,
.ambassador-access:focus-visible .ambassador-access-cta svg {
  transform: translateX(4px);
}

.ambassador-access-foot {
  color: rgba(255, 247, 237, 0.6);
  font-size: 0.82rem;
  font-weight: 600;
}

.ambassador-access-visual {
  position: relative;
  height: 252px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgba(255, 213, 130, 0.34),
    0 18px 46px rgba(0, 0, 0, 0.4);
}

.ambassador-access-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/novami-ambassor-program.png") 90% 10% / 275% auto no-repeat;
  transition: transform 400ms ease;
}

.ambassador-access:hover .ambassador-access-visual::before,
.ambassador-access:focus-visible .ambassador-access-visual::before {
  transform: scale(1.05);
}

.ambassador-access-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 6, 17, 0.16) 0%, transparent 30% 62%, rgba(2, 6, 17, 0.62) 100%);
}

.ambassador-access-chip {
  position: absolute;
  z-index: 1;
  top: 12px;
  right: 12px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 213, 130, 0.45);
  border-radius: 999px;
  background: rgba(2, 6, 17, 0.72);
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

@media (max-width: 980px) {
  .ambassador-access {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 22px;
  }

  .ambassador-access-visual {
    order: -1;
    height: 216px;
  }

  .ambassador-access-title {
    font-size: 1.8rem;
  }

  .ambassador-access-cta {
    width: 100%;
  }

  .ambassador-access-foot {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .ambassador-access-visual {
    height: 176px;
  }

  .ambassador-access-visual::before {
    background-position: 82% 10%;
    background-size: 300% auto;
  }

  .ambassador-access-title {
    font-size: 1.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ambassador-access,
  .ambassador-access-shine,
  .ambassador-access-dot,
  .ambassador-access-cta svg,
  .ambassador-access-visual::before {
    animation: none;
    transition: none;
  }
}
