/* ============================================================================
   AIRDROP TEMPLATE — premium claim portal
   ============================================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #070708;
  --bg-elevated: #0e0e10;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-hover: rgba(255, 255, 255, 0.055);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #f4f4f5;
  --text-secondary: rgba(244, 244, 245, 0.62);
  --text-tertiary: rgba(244, 244, 245, 0.38);
  --accent-a: #5eead4;
  --accent-b: #67e8f9;
  --accent-c: #a78bfa;
  --accent-a-rgb: 94, 234, 212;
  --btn-text: #041016;
  --radius: 14px;
  --radius-sm: 10px;
  --shell: 1120px;
  --header-h: 64px;
  --font: 'Instrument Sans', system-ui, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --selection: rgba(94, 234, 212, 0.28);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul, ol { list-style: none; }
code { font-family: var(--mono); font-size: 0.85em; }

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

.shell {
  width: min(100% - 2.5rem, var(--shell));
  margin-inline: auto;
}

.shell-narrow {
  width: min(100% - 2.5rem, 720px);
  margin-inline: auto;
}

@media (max-width: 640px) {
  .shell,
  .shell-narrow { width: min(100% - 1.5rem, var(--shell)); }
}

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

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
  animation: drift 18s var(--ease) infinite alternate;
}

.ambient-orb-a {
  width: 50vw;
  height: 50vw;
  max-width: 560px;
  max-height: 560px;
  top: -12%;
  right: -8%;
  background: radial-gradient(circle, rgba(var(--accent-a-rgb), 0.35), transparent 70%);
}

.ambient-orb-b {
  width: 40vw;
  height: 40vw;
  max-width: 420px;
  max-height: 420px;
  bottom: 10%;
  left: -10%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-c) 40%, transparent), transparent 70%);
  animation-delay: -7s;
}

.ambient-mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, black, transparent);
}

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(3%, 4%) scale(1.06); }
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
  transition-delay: var(--d, 0ms);
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 40px;
  padding: 0 1.1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: transform 0.2s var(--ease), background 0.2s, border-color 0.2s, box-shadow 0.2s, opacity 0.2s;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid var(--accent-a);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
  color: var(--btn-text);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08) inset, 0 8px 24px rgba(var(--accent-a-rgb), 0.18);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.12) inset, 0 12px 32px rgba(var(--accent-a-rgb), 0.28);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}

.btn-ghost:hover {
  background: var(--surface-hover);
  border-color: rgba(255,255,255,0.22);
}

.btn-lg {
  height: 48px;
  padding: 0 1.4rem;
  font-size: 0.9375rem;
}

.btn-block { width: 100%; }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-h);
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(7, 7, 8, 0.78);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom-color: var(--border);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--surface);
  border: 1px solid var(--border);
}

.brand-name {
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
}

.nav-desktop a {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

.nav-desktop + .header-actions { margin-left: 0; }

.network-badge {
  display: none;
  align-items: center;
  gap: 0.4rem;
  height: 32px;
  padding: 0 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.network-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-a);
  box-shadow: 0 0 0 3px rgba(var(--accent-a-rgb), 0.15);
}

.menu-toggle {
  width: 40px;
  height: 40px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 10px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.25s var(--ease);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

.nav-mobile {
  background: rgba(7, 7, 8, 0.96);
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-mobile[hidden] { display: none !important; }

.nav-mobile a {
  padding: 0.85rem 0.25rem;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--border);
}

.nav-mobile .btn { margin-top: 0.75rem; }

@media (min-width: 900px) {
  .nav-desktop { display: flex; }
  .network-badge { display: inline-flex; }
  .menu-toggle { display: none; }
  .header-actions { margin-left: 0; }
}

/* Hero — preview-matched split: copy left, coin right */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 3.5rem) 0 4.5rem;
  text-align: left;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-pfp-blur {
  position: absolute;
  inset: -20%;
  background-size: cover;
  background-position: center;
  filter: blur(80px) saturate(1.3) brightness(0.5);
  opacity: 0;
  transform: scale(1.15);
  transition: opacity 1s var(--ease);
}

body.has-pfp-bg .hero-pfp-blur { opacity: 0.5; }

.hero-inner {
  position: relative;
  width: min(100% - 2.5rem, 1120px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-copy {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  order: 2;
}

.hero-visual {
  order: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-identity {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
  width: 100%;
}

.hero-logo-wrap {
  position: relative;
  flex-shrink: 0;
}

.hero-logo-wrap::after {
  content: '';
  position: absolute;
  inset: -28px;
  border-radius: 8px;
  background: radial-gradient(circle, rgba(var(--accent-a-rgb), 0.45), transparent 70%);
  z-index: -1;
  filter: blur(10px);
}

.hero-logo {
  width: min(72vw, 280px);
  height: min(72vw, 280px);
  border-radius: 0;
  object-fit: cover;
  border: 2px solid color-mix(in srgb, var(--accent-a) 50%, transparent);
  box-shadow: 0 0 64px rgba(var(--accent-a-rgb), 0.28);
  background: var(--bg-elevated);
  display: block;
}

.hero-ticker {
  font-size: clamp(2.75rem, 9vw, 5.25rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.hero-name {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  letter-spacing: -0.01em;
  margin: 0;
}

.hero-ca {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.25rem;
  max-width: min(100%, 28rem);
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  color: var(--text-secondary);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.hero-ca:hover {
  color: var(--accent-a);
  border-color: color-mix(in srgb, var(--accent-a) 40%, var(--border));
}

.hero-ca .ca-value {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-ca svg {
  flex-shrink: 0;
  opacity: 0.75;
}

.hero-title {
  font-size: clamp(1.25rem, 2.8vw, 1.75rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 1rem;
  max-width: 24ch;
}

.hero-lede {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 34rem;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.75rem;
  margin-bottom: 2.75rem;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
  max-width: 28rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.hero-meta dt {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 0.3rem;
}

.hero-meta dd {
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.text-live { color: var(--accent-a); }

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    gap: 3.5rem 4rem;
  }

  .hero-copy { order: 1; }
  .hero-visual {
    order: 2;
    justify-content: flex-end;
  }

  .hero-logo {
    width: min(100%, 380px);
    height: min(100%, 380px);
  }
}

@media (max-width: 560px) {
  .hero-cta { width: 100%; }
  .hero-cta .btn { flex: 1; min-width: 140px; }
  .hero-logo { width: min(70vw, 220px); height: min(70vw, 220px); }
  .hero-meta { max-width: 100%; }
}

/* Metrics */
.metrics {
  position: relative;
  z-index: 1;
  border-block: 1px solid var(--border);
  background: rgba(0,0,0,0.35);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
}

.metric {
  padding: 1.75rem 1rem;
  border-bottom: 1px solid var(--border);
}

.metric:nth-child(odd) { padding-right: 1rem; border-right: 1px solid var(--border); }
.metric:nth-child(even) { padding-left: 1rem; }
.metric:nth-last-child(-n+2) { border-bottom: none; }

.metric-value {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  margin-bottom: 0.25rem;
}

.metric-label {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

@media (min-width: 800px) {
  .metrics-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .metric {
    padding: 2rem 1.5rem;
    border-bottom: none;
    border-right: 1px solid var(--border);
  }
  .metric:nth-child(odd),
  .metric:nth-child(even) { padding-left: 1.5rem; padding-right: 1.5rem; }
  .metric:first-child { padding-left: 0; }
  .metric:last-child { border-right: none; padding-right: 0; }
}

/* Sections */
.section {
  position: relative;
  z-index: 1;
  padding: 6.5rem 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255,255,255,0.015), transparent);
  border-block: 1px solid var(--border);
}

.section-head {
  max-width: 36rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-head.left {
  margin-left: 0;
  text-align: left;
}

.section-kicker {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-a);
  margin-bottom: 0.85rem;
}

.section-head h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin-bottom: 0.85rem;
}

.section-head p {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.split {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: start;
  }
  .split .section-head { margin-bottom: 0; }
}

/* Claim */
.claim-grid {
  display: grid;
  gap: 1.75rem;
  max-width: 920px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .claim-grid {
    grid-template-columns: 1.25fr 0.85fr;
    align-items: start;
  }
}

.claim-panel {
  position: relative;
  padding: 1.5rem;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(165deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015));
  border: 1px solid var(--border-strong);
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
  overflow: hidden;
}

.claim-panel::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-a), var(--accent-b), transparent);
}

@media (min-width: 640px) {
  .claim-panel { padding: 1.75rem; }
}

.claim-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.claim-token {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.claim-token img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border);
}

.claim-token-ticker {
  font-weight: 600;
  letter-spacing: -0.02em;
}

.claim-token-sub {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  font-family: var(--mono);
}

.pill {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(0,0,0,0.25);
}

.claim-amount {
  padding: 1.35rem;
  border-radius: var(--radius);
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--border);
  margin-bottom: 1.15rem;
}

.claim-amount-label {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 0.45rem;
}

.claim-amount-value {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, var(--accent-a), var(--accent-b), var(--accent-c));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 5s linear infinite;
}

@keyframes shimmer {
  to { background-position: 200% center; }
}

.claim-amount-unit {
  font-size: 0.875rem;
  font-family: var(--mono);
  font-weight: 500;
  color: var(--text-secondary);
  -webkit-text-fill-color: var(--text-secondary);
  background: none;
}

.claim-amount-hint {
  margin-top: 0.55rem;
  font-size: 0.8125rem;
  color: var(--text-tertiary);
}

.claim-rows {
  margin-bottom: 1.25rem;
}

.row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}

.row > span:first-child { color: var(--text-tertiary); }
.row > span:last-child,
.row strong { font-weight: 500; }

.ca-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--text-secondary);
  max-width: 70%;
  text-align: right;
  transition: color 0.2s;
}

.ca-btn:hover { color: var(--accent-a); }

.ca-value {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.75rem;
}

.claim-note {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-tertiary);
  line-height: 1.55;
}

.claim-aside h3 {
  font-size: 0.8125rem;
  font-family: var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 1.1rem;
}

.reason-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.reason-list li {
  display: flex;
  gap: 0.9rem;
  padding: 1.1rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color 0.25s, transform 0.25s var(--ease), background 0.25s;
}

.reason-list li:hover {
  border-color: var(--border-strong);
  background: var(--surface-hover);
  transform: translateX(3px);
}

.reason-num {
  font-family: var(--mono);
  font-size: 0.875rem;
  color: var(--text-tertiary);
  line-height: 1.2;
}

.reason-list strong {
  display: block;
  font-weight: 560;
  font-size: 0.9375rem;
  letter-spacing: -0.015em;
  margin-bottom: 0.25rem;
}

.reason-list p {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Steps */
.steps {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}

.step {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color 0.25s, transform 0.25s var(--ease);
}

.step:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}

.step-num {
  display: block;
  font-family: var(--mono);
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  margin-bottom: 1.25rem;
}

.step h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Criteria */
.criteria {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(0,0,0,0.2);
}

.criterion {
  padding: 1.25rem 1.4rem;
  border-bottom: 1px solid var(--border);
}

.criterion:last-child { border-bottom: none; }

.criterion span {
  display: block;
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-a);
  margin-bottom: 0.35rem;
}

.criterion p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

/* Allocation */
.alloc-grid {
  display: grid;
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
  align-items: center;
}

@media (min-width: 800px) {
  .alloc-grid { grid-template-columns: 0.9fr 1.1fr; gap: 3.5rem; }
}

.alloc-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.alloc-ring {
  position: relative;
  width: 200px;
  height: 200px;
}

.alloc-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.ring-track {
  fill: none;
  stroke: rgba(255,255,255,0.06);
  stroke-width: 10;
}

.ring-fill {
  fill: none;
  stroke: url(#none);
  stroke: var(--accent-a);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 327;
  stroke-dashoffset: 294; /* ~10% */
  filter: drop-shadow(0 0 8px rgba(var(--accent-a-rgb), 0.45));
}

.alloc-ring-label {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
}

.alloc-ring-label strong {
  font-size: 2rem;
  letter-spacing: -0.04em;
  line-height: 1;
}

.alloc-ring-label span {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-top: 0.25rem;
}

.alloc-legend {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.alloc-legend li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.swatch {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.swatch-a { background: var(--accent-a); box-shadow: 0 0 10px rgba(var(--accent-a-rgb), 0.5); }
.swatch-b { background: rgba(255,255,255,0.18); }

.alloc-table {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.alloc-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.35rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.alloc-row:last-child { border-bottom: none; }
.alloc-row span { color: var(--text-tertiary); }
.alloc-row strong { font-weight: 500; text-align: right; }

/* Timeline */
.timeline {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 1.15rem;
  padding-bottom: 2rem;
  position: relative;
}

.timeline li:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 18px;
  bottom: 0;
  width: 1px;
  background: var(--border-strong);
}

.tl-mark {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  background: var(--bg);
  margin-top: 2px;
  position: relative;
  z-index: 1;
}

.tl-mark.done {
  border-color: color-mix(in srgb, var(--accent-a) 50%, transparent);
  background: color-mix(in srgb, var(--accent-a) 25%, #070708);
}

.tl-mark.live {
  border-color: var(--accent-a);
  background: var(--accent-a);
  box-shadow: 0 0 0 4px rgba(var(--accent-a-rgb), 0.18);
}

.tl-phase {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 0.3rem;
}

.timeline h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.timeline p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Chart */
.chart-frame {
  position: relative;
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: #0a0a0b;
  min-height: 640px;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent-a) 10%, transparent);
}

.chart-frame::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-a), var(--accent-b), transparent);
  z-index: 2;
  pointer-events: none;
}

.chart-loading {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  z-index: 1;
  padding: 2rem;
  text-align: center;
}

.chart-frame.ready .chart-loading { display: none; }

#dexEmbed {
  display: block;
  width: 100%;
  height: 720px;
  border: 0;
  background: #0a0a0b;
}

@media (max-width: 768px) {
  .chart-frame { min-height: 520px; }
  #dexEmbed { height: 560px; }
}

/* Security */
.security-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(0,0,0,0.25);
  padding: 0.35rem 0 0;
}

.sec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.05rem 1.35rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.sec-row span { color: var(--text-tertiary); }
.sec-row strong { font-weight: 500; }

.sec-tips {
  padding: 1.15rem 1.35rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.sec-tips li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.sec-tips li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-a);
}

/* Wallets */
.wallet-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.85rem;
}

.wallet-chip {
  width: 64px;
  height: 64px;
  padding: 0;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--surface);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s, transform 0.2s var(--ease);
}

.wallet-chip img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.wallet-chip:hover {
  border-color: var(--border-strong);
  background: var(--surface-hover);
  transform: translateY(-2px);
}

/* FAQ */
.faq-layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .faq-layout {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 4rem;
    align-items: start;
  }
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-item { border-bottom: 1px solid var(--border); }

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.35rem 0;
  text-align: left;
  font-size: 0.975rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text);
}

.faq-question:hover { color: #fff; }

.faq-icon {
  font-family: var(--mono);
  font-size: 1.25rem;
  color: var(--text-tertiary);
  transition: transform 0.25s var(--ease);
  line-height: 1;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease);
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
  padding-bottom: 1.35rem;
}

.faq-answer-inner { overflow: hidden; }

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  padding: 3.5rem 0 3rem;
  border-top: 1px solid var(--border);
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-a), var(--accent-b), var(--accent-c), transparent);
}

.footer-inner {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .footer-inner {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2rem;
  }
}

.footer-brand p {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  color: var(--text-tertiary);
}

.footer-ca {
  margin-top: 0.5rem !important;
  word-break: break-all;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-nav a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}

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

.footer-meta p {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  line-height: 1.6;
}

@media (max-width: 800px) {
  .section { padding: 4.5rem 0; }
}
