/* $DORA — dark pop design system */

:root,
[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0a0810;
  --bg-subtle: #12101a;
  --bg-elevated: #1a1628;
  --border: #2e2844;
  --text: #f4f0ff;
  --text-muted: #a89ec4;
  --accent: #ff2d95;
  --accent-2: #00e5ff;
  --accent-soft: rgba(255, 45, 149, 0.14);
  --blue: #00d4ff;
  --blue-soft: rgba(0, 212, 255, 0.1);
  --yellow: #ffd60a;
  --yellow-soft: rgba(255, 214, 10, 0.1);
  --green: #39ff88;
  --green-soft: rgba(57, 255, 136, 0.1);
  --red: #ff4757;
  --red-soft: rgba(255, 71, 87, 0.12);
  --violet: #b84dff;
  --violet-soft: rgba(184, 77, 255, 0.12);
  --orange: #ff9f43;
  --orange-soft: rgba(255, 159, 67, 0.12);
  --gradient-brand: linear-gradient(135deg, var(--accent) 0%, var(--violet) 50%, var(--accent-2) 100%);
  --glow-pink: 0 0 24px rgba(255, 45, 149, 0.35);
  --glow-cyan: 0 0 20px rgba(0, 229, 255, 0.2);
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-bg-strong: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-highlight: rgba(255, 255, 255, 0.18);
  --glass-blur: 24px;
  --glass-radius: 16px;
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  --radius: 8px;
  --max: 1040px;
  --ink: var(--text);
  --muted: var(--text-muted);
  --surface: var(--bg-elevated);
  --white: #fff;
  --cream: var(--bg-subtle);
  --sand: #1a1525;
  --red-gingham: var(--red);
  --red-gingham-dark: #ff4757;
  --leaf: var(--green);
  --leaf-dark: #39ff88;
  --btn-primary: var(--accent);
  --btn-primary-hover: #ff55aa;
  --btn-primary-text: #ffffff;
  --btn-secondary: #525252;
  --btn-secondary-hover: #404040;
  --radius-xl: var(--radius);
  --shadow: var(--glow-pink);
  --xmas-red: var(--red);
  --xmas-green: var(--green);
  --xmas-gold: var(--yellow);
  --xmas-snow: var(--cream);
  --xmas-dark-green: var(--leaf-dark);
}

[data-theme="light"] {
  color-scheme: light;
  --bg: #fffcf9;
  --bg-subtle: #fff5f7;
  --bg-elevated: #ffffff;
  --border: #f5d0e8;
  --text: #1c1917;
  --text-muted: #78716c;
  --accent-soft: rgba(219, 39, 119, 0.1);
  --blue-soft: rgba(2, 132, 199, 0.08);
  --yellow-soft: rgba(202, 138, 4, 0.08);
  --green-soft: rgba(22, 163, 74, 0.08);
  --red-soft: rgba(220, 38, 38, 0.08);
  --violet-soft: rgba(124, 58, 237, 0.08);
  --surface: #ffffff;
  --sand: #fdf2f8;
  --glow-pink: none;
  --glow-cyan: none;
  --shadow: none;
  --glass-bg: rgba(255, 255, 255, 0.72);
  --glass-bg-strong: rgba(255, 255, 255, 0.88);
  --glass-border: rgba(255, 255, 255, 0.55);
  --glass-highlight: rgba(255, 255, 255, 0.95);
  --glass-shadow: 0 8px 32px rgba(219, 39, 119, 0.08);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

body::after {
  content: '';
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

.page-backdrop {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    radial-gradient(ellipse 100% 80% at 0% 0%, rgba(255, 45, 149, 0.14) 0%, transparent 50%),
    radial-gradient(ellipse 80% 60% at 100% 8%, rgba(0, 229, 255, 0.1) 0%, transparent 45%),
    radial-gradient(ellipse 55% 45% at 85% 92%, rgba(184, 77, 255, 0.09) 0%, transparent 50%),
    var(--bg);
}

.page-backdrop__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: orb-drift 22s ease-in-out infinite;
}

.page-backdrop__orb--1 {
  width: min(520px, 70vw);
  height: min(520px, 70vw);
  top: -12%;
  left: -8%;
  background: rgba(255, 45, 149, 0.22);
}

.page-backdrop__orb--2 {
  width: min(440px, 60vw);
  height: min(440px, 60vw);
  top: 35%;
  right: -10%;
  background: rgba(0, 229, 255, 0.16);
  animation-delay: -8s;
  animation-duration: 26s;
}

.page-backdrop__orb--3 {
  width: min(380px, 55vw);
  height: min(380px, 55vw);
  bottom: -8%;
  left: 28%;
  background: rgba(184, 77, 255, 0.18);
  animation-delay: -14s;
  animation-duration: 30s;
}

@keyframes orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(24px, -18px) scale(1.04); }
  66% { transform: translate(-16px, 14px) scale(0.97); }
}

h1, h2, h3, .section-title, .hero-badge, .hero-strip__label, .logo {
  font-family: 'Syne', 'Inter', system-ui, sans-serif;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .page-backdrop__orb { animation: none; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

::selection {
  background: rgba(255, 45, 149, 0.35);
  color: var(--text);
}

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

a { color: inherit; }

h1, h2, h3, h4, p { margin: 0; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(180%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--glass-radius);
  box-shadow: var(--glass-shadow), inset 0 1px 0 var(--glass-highlight);
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 8, 16, 0.72);
  backdrop-filter: blur(var(--glass-blur)) saturate(180%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(255, 255, 255, 0.04);
}

main { position: relative; z-index: 1; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  gap: 16px;
}

.site-header--back .main-nav { display: none; }
.site-header--back .logo { flex: 1; text-align: center; }
.site-header--back .back-link { margin: 0; flex-shrink: 0; }

.logo {
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.03em;
  text-decoration: none;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.main-nav {
  display: flex;
  gap: 20px;
}

.main-nav a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: color 0.15s, background 0.15s, border-color 0.15s;
}

.main-nav a:hover {
  color: var(--accent-2);
  background: var(--blue-soft);
  border-color: rgba(0, 212, 255, 0.15);
}

.main-nav a.active {
  color: var(--text);
  font-weight: 500;
  background: linear-gradient(135deg, rgba(255, 45, 149, 0.16), rgba(0, 229, 255, 0.1));
  border-color: rgba(255, 45, 149, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.back-link {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
}

.back-link:hover { color: var(--text); }

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 36px;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #ff5cad 45%, var(--accent-2) 100%);
  color: var(--btn-primary-text);
  border-color: transparent;
  box-shadow: var(--glow-pink), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.btn-primary:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 0 36px rgba(255, 45, 149, 0.5), 0 0 20px rgba(0, 229, 255, 0.15);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-secondary:hover { background: var(--bg-subtle); }

.btn-ghost {
  background: var(--glass-bg);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  color: var(--text-muted);
  border-color: var(--glass-border);
  box-shadow: inset 0 1px 0 var(--glass-highlight);
}

.btn-ghost:hover {
  color: var(--accent-2);
  background: var(--blue-soft);
  border-color: rgba(0, 212, 255, 0.35);
}

.btn-large { height: 44px; padding: 0 20px; font-size: 15px; }

.hero-accent,
.text-gradient {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  padding: 72px 0 32px;
  border-bottom: 1px solid var(--glass-border);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  max-width: var(--max);
}

.hero-copy { max-width: 560px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 6px 14px 6px 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(255, 71, 87, 0.1);
  border: 1px solid rgba(255, 71, 87, 0.32);
  border-radius: 999px;
  box-shadow: 0 0 24px rgba(255, 71, 87, 0.12);
}

.hero-badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px rgba(255, 71, 87, 0.8);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

.hero-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-token-card {
  position: relative;
  width: min(100%, 340px);
  padding: 20px;
  border-radius: calc(var(--glass-radius) + 4px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(var(--glass-blur)) saturate(190%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(190%);
  box-shadow:
    var(--glass-shadow),
    0 0 60px rgba(255, 45, 149, 0.12),
    0 0 80px rgba(0, 229, 255, 0.08),
    inset 0 1px 0 var(--glass-highlight);
}

.hero-token-card__ring {
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(from 180deg, var(--accent), var(--violet), var(--accent-2), var(--accent));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.65;
  animation: ring-spin 12s linear infinite;
}

@keyframes ring-spin {
  to { transform: rotate(360deg); }
}

.hero-token-card__img-wrap {
  position: relative;
  border-radius: calc(var(--glass-radius) - 2px);
  overflow: hidden;
  aspect-ratio: 1;
  margin-bottom: 14px;
}

.hero-token-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-token-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.hero-token-card__tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
}

.hero-token-card__tag--accent {
  color: var(--accent-2);
  border-color: rgba(0, 229, 255, 0.28);
  background: rgba(0, 229, 255, 0.08);
}

.hero-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 40px;
  padding-bottom: 40px;
}

.hero-strip__item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 16px;
  text-decoration: none;
  border-radius: var(--glass-radius);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur)) saturate(180%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(180%);
  box-shadow: var(--glass-shadow), inset 0 1px 0 var(--glass-highlight);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.hero-strip__item:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 45, 149, 0.35);
  box-shadow: var(--glass-shadow), 0 0 28px rgba(255, 45, 149, 0.12);
}

.hero-strip__label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.01em;
}

.hero-strip__hint {
  font-size: 12px;
  color: var(--text-muted);
}

.hero-content h1,
.hero-inner h1 {
  font-size: clamp(36px, 5.5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 16px;
  color: var(--text);
}

.lead {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 480px;
  line-height: 1.65;
}

.lead em {
  color: var(--accent-2);
  font-style: normal;
  font-weight: 500;
}

.cta-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }

#link-dtrade:hover { color: var(--violet); background: var(--violet-soft); border-color: rgba(184, 77, 255, 0.35); }
#link-stonks:hover { color: var(--yellow); background: var(--yellow-soft); border-color: rgba(255, 214, 10, 0.35); }
#link-contract:hover { color: var(--accent); background: var(--accent-soft); border-color: rgba(255, 45, 149, 0.35); }
#link-chart:hover { color: var(--green); background: var(--green-soft); border-color: rgba(57, 255, 136, 0.35); }

.contract {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.contract code {
  font-size: 12px;
  padding: 6px 10px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  word-break: break-all;
  color: var(--accent-2);
  box-shadow: inset 0 1px 0 var(--glass-highlight);
}

.copy {
  height: 32px;
  padding: 0 12px;
  font-size: 13px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  background: var(--glass-bg);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  color: var(--text);
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
  box-shadow: inset 0 1px 0 var(--glass-highlight);
}

.copy:hover {
  background: var(--accent-soft);
  border-color: rgba(255, 45, 149, 0.4);
  color: var(--accent);
}

/* ——— Sections ——— */
.section { padding: 64px 0; }
.section + .section { border-top: 1px solid var(--glass-border); }

.section.tokenomics {
  background:
    radial-gradient(ellipse 70% 50% at 0% 50%, rgba(57, 255, 136, 0.05) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 30%, rgba(184, 77, 255, 0.06) 0%, transparent 50%),
    var(--bg-subtle);
}

.section h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 24px;
}

.section-title {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  text-transform: none;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.section-title::before {
  height: 22px;
  width: 5px;
}

.section h2::before {
  content: '';
  width: 4px;
  height: 14px;
  border-radius: 3px;
  background: var(--gradient-brand);
  box-shadow: 0 0 12px rgba(255, 45, 149, 0.4);
  flex-shrink: 0;
}

.tokenomics h2::before { background: linear-gradient(180deg, var(--green), var(--blue)); }
.roadmap h2::before { background: linear-gradient(180deg, var(--violet), var(--accent)); }

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

.facts > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 20px;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(180%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--glass-radius);
  box-shadow: var(--glass-shadow), inset 0 1px 0 var(--glass-highlight);
  border-left: 3px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.facts dd {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.facts > div:nth-child(1) dd { font-size: 18px; }

.facts > div:nth-child(1) { border-left-color: var(--green); background: linear-gradient(135deg, var(--green-soft), var(--glass-bg)); }
.facts > div:nth-child(2) { border-left-color: var(--yellow); background: linear-gradient(135deg, var(--yellow-soft), var(--glass-bg)); }
.facts > div:nth-child(3) { border-left-color: var(--blue); background: linear-gradient(135deg, var(--blue-soft), var(--glass-bg)); }
.facts > div:nth-child(4) { border-left-color: var(--violet); background: linear-gradient(135deg, var(--violet-soft), var(--glass-bg)); }

.facts > div:nth-child(1) dt { color: var(--green); }
.facts > div:nth-child(2) dt { color: var(--yellow); }
.facts > div:nth-child(3) dt { color: var(--blue); }
.facts > div:nth-child(4) dt { color: var(--violet); }

.facts > div:hover {
  transform: translateY(-2px);
  box-shadow: var(--glass-shadow), 0 0 24px rgba(255, 45, 149, 0.08), inset 0 1px 0 var(--glass-highlight);
}

.facts dt {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.section p, .about p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.7;
}

.section-description {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(180%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(180%);
  padding: 20px;
  box-shadow: inset 0 1px 0 var(--glass-highlight);
}

.card h3 {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.card p { font-size: 15px; font-weight: 500; color: var(--text); }

/* ——— Roadmap ——— */
.roadmap-lead {
  font-size: 15px;
  color: var(--text-muted);
  margin: -12px 0 24px;
  max-width: 520px;
}

.roadmap-lead-accent {
  color: var(--red);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.step-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--glass-radius);
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(180%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(180%);
  box-shadow: var(--glass-shadow), inset 0 1px 0 var(--glass-highlight);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.step-item:hover {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: var(--glass-shadow), 0 0 28px rgba(255, 45, 149, 0.1);
}

.step-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--phase-accent, var(--accent));
  opacity: 0.85;
}

.step-item:nth-child(1) { --phase-accent: var(--green); }
.step-item:nth-child(2) { --phase-accent: var(--blue); }
.step-item:nth-child(3) { --phase-accent: var(--red); }

.step-item--done {
  opacity: 0.72;
}

.step-item--done::before {
  opacity: 0.45;
}

.step-item--done:hover {
  opacity: 0.85;
  box-shadow: var(--glass-shadow), 0 0 16px rgba(22, 163, 74, 0.06);
}

.step-item--done .step-title-row h3 {
  color: var(--text-muted);
}

.step-quarter--done {
  color: var(--green);
  background: rgba(22, 163, 74, 0.1);
  border-color: rgba(22, 163, 74, 0.28);
}

.step-item--current {
  opacity: 1;
  border-color: rgba(255, 71, 87, 0.45);
  box-shadow:
    var(--glass-shadow),
    0 0 40px rgba(255, 71, 87, 0.18),
    0 0 80px rgba(255, 45, 149, 0.08),
    inset 0 1px 0 var(--glass-highlight);
  transform: scale(1.01);
}

.step-item--current::before {
  width: 4px;
  opacity: 1;
  box-shadow: 0 0 16px rgba(255, 71, 87, 0.65);
}

.step-item--current:hover {
  border-color: rgba(255, 71, 87, 0.55);
  box-shadow:
    var(--glass-shadow),
    0 0 48px rgba(255, 71, 87, 0.22),
    0 0 96px rgba(255, 45, 149, 0.1);
}

.step-item--current.expanded {
  background: linear-gradient(135deg, rgba(255, 71, 87, 0.08) 0%, var(--glass-bg-strong) 55%, rgba(255, 45, 149, 0.06) 100%);
}

.step-item.expanded {
  background: var(--glass-bg-strong);
  border-color: rgba(255, 255, 255, 0.16);
}

.step-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px 8px;
  cursor: pointer;
  user-select: none;
}

.step-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex: 1;
  gap: 12px;
  flex-wrap: wrap;
}

.step-title-group { display: flex; flex-direction: column; gap: 2px; }

.steps h3, .step-title-row h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.step-subtitle { font-size: 12px; color: var(--text-muted); }

.step-quarter {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-2);
  letter-spacing: 0.04em;
  padding: 3px 10px;
  background: rgba(0, 212, 255, 0.12);
  border: 1px solid rgba(0, 212, 255, 0.22);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.step-quarter--mdtga {
  color: var(--red);
  background: rgba(255, 71, 87, 0.12);
  border-color: rgba(255, 71, 87, 0.3);
}

.step-toggle {
  width: 30px;
  height: 30px;
  padding: 0;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--text-muted);
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, background 0.15s ease;
  box-shadow: inset 0 1px 0 var(--glass-highlight);
}

.step-item.expanded .step-toggle {
  transform: rotate(180deg);
  background: rgba(255, 45, 149, 0.15);
  color: var(--accent);
  border-color: rgba(255, 45, 149, 0.3);
}

.step-description {
  font-size: 14px;
  color: var(--text-muted);
  padding: 0 18px 12px;
}

.step-item:not(.expanded) .step-description {
  padding-bottom: 16px;
}

.step-details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, padding 0.25s ease;
  padding: 0 18px;
}

.step-item.expanded .step-details {
  max-height: 3000px;
  opacity: 1;
  padding: 0 18px 16px;
  border-top: 1px solid var(--glass-border);
  margin-top: 4px;
  padding-top: 16px;
}

.step-details--empty:empty { display: none; }

.step-checklist { list-style: none; padding: 0; margin: 0; }

.step-checklist li {
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.step-checklist li:last-child { border-bottom: none; }

.step-checklist li::before {
  content: '○';
  font-size: 10px;
  color: var(--border);
}

.step-checklist li.completed { color: var(--text); }
.step-checklist li.completed::before { content: '✓'; color: var(--green); font-weight: 700; }

.step-checklist li.current { color: var(--text); font-weight: 500; }
.step-checklist li.current::before { content: '→'; color: var(--blue); }

.step-item--mdtga .step-title-row h3 {
  color: var(--red);
  font-size: 18px;
  letter-spacing: 0.03em;
}

.step-item--mdtga.step-item--current .step-subtitle {
  color: rgba(255, 140, 160, 0.9);
}

.step-item--mdtga.step-item--current .step-toggle {
  background: rgba(255, 71, 87, 0.18);
  color: var(--red);
  border-color: rgba(255, 71, 87, 0.35);
}

.step-item--mdtga.step-item--current.expanded .step-toggle {
  background: rgba(255, 71, 87, 0.28);
}

/* ——— Footer ——— */
.site-footer {
  border-top: 1px solid var(--glass-border);
  padding: 32px 0;
  margin-top: 0;
  background: rgba(10, 8, 16, 0.45);
  backdrop-filter: blur(var(--glass-blur)) saturate(160%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(160%);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.brand {
  font-weight: 700;
  font-size: 14px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.socials { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.socials a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
}

.socials a:hover { color: var(--accent-2); }

.socials a:nth-child(1):hover { color: var(--blue); }
.socials a:nth-child(3):hover { color: var(--green); }
.socials a:nth-child(4):hover { color: var(--violet); }

.disclaimer {
  font-size: 12px;
  color: var(--text-muted);
  text-align: right;
}

/* ——— Stats: jetton info ——— */
.stats-section {
  padding-top: 32px;
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(0, 212, 255, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 0% 20%, rgba(255, 45, 149, 0.06) 0%, transparent 50%);
}

.jetton-info-container {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 24px;
  margin-bottom: 32px;
}

.jetton-info-card {
  border: 1px solid var(--glass-border);
  border-radius: var(--glass-radius);
  padding: 20px;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(180%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(180%);
  box-shadow: var(--glass-shadow), inset 0 1px 0 var(--glass-highlight);
}

.jetton-stats__title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-2);
  margin-bottom: 12px;
}

.jetton-stats-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.jetton-stats-row:last-child { border-bottom: none; }
.jetton-stats-row__name { color: var(--text-muted); flex-shrink: 0; }
.jetton-stats-row__value { text-align: right; font-weight: 500; word-break: break-word; }
.jetton-stats-row__value a { color: var(--text); }

.stats-cache-notice {
  font-size: 13px;
  color: var(--text-muted);
  padding: 8px 0;
  margin-bottom: 8px;
}

.jetton-meta-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.jetton-info-image {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  padding: 2px;
  background: var(--gradient-brand);
  box-shadow: 0 0 20px rgba(255, 45, 149, 0.25);
}

.jetton-info-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.jetton-meta-header__name {
  font-size: 18px;
  font-weight: 600;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.jetton-meta-header__symbol { font-size: 14px; color: var(--text-muted); }

.jetton-meta-price__value {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
}

.jetton-meta-price__change {
  font-size: 13px;
  font-weight: 500;
  display: inline-block;
  margin-top: 6px;
  padding: 3px 10px;
  border-radius: 999px;
}

.jetton-meta-price__change--green {
  color: var(--green);
  background: var(--green-soft);
  border: 1px solid rgba(57, 255, 136, 0.25);
}

.jetton-meta-price__change--red {
  color: var(--red);
  background: var(--red-soft);
  border: 1px solid rgba(255, 71, 87, 0.25);
}

.jetton-buy-section {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.jetton-chart { margin-top: 20px; }

.jetton-chart-container {
  height: 400px;
  border: 1px solid var(--glass-border);
  border-radius: var(--glass-radius);
  overflow: hidden;
  position: relative;
  background: var(--glass-bg);
  box-shadow: var(--glass-shadow), inset 0 1px 0 var(--glass-highlight), 0 0 32px rgba(0, 212, 255, 0.06);
}

.jetton-chart-wrapper { width: 100%; height: 100%; position: relative; }
.jetton-chart-wrapper iframe { width: 100%; height: 100%; border: 0; }

.jetton-chart-overlay {
  position: absolute;
  inset: 0;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.jetton-chart-overlay.hidden { display: none; }

.chart-loading-indicator { text-align: center; color: var(--text-muted); font-size: 14px; }

/* ——— Tabs ——— */
.card--tabbed {
  border: 1px solid var(--glass-border);
  border-radius: var(--glass-radius);
  margin-bottom: 32px;
  overflow: hidden;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(180%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(180%);
  box-shadow: var(--glass-shadow), inset 0 1px 0 var(--glass-highlight);
}

.card-tabs { border-bottom: 1px solid var(--glass-border); background: rgba(255, 255, 255, 0.02); }

.card-title-tabs { display: flex; padding: 0 16px; overflow-x: auto; }

.card-title-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 16px;
  font-size: 14px;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
}

.card-title-tab--active {
  color: var(--accent-2);
  border-bottom-color: var(--accent);
  font-weight: 600;
}

.card-title-tab__icon { width: 16px; height: 16px; fill: currentColor; }
.tab-pane { padding: 16px; }
.tab-pane[style*="display: none"] { display: none !important; }

/* ——— Tables ——— */
.table-wrapper { overflow-x: auto; }

.tx-table, .holders-table, .transactions-table, .stages-table, .unlock-stages-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.tx-table {
  table-layout: fixed;
}

.tx-table th:nth-child(1),
.tx-table td:nth-child(1) { width: 100px; }

.tx-table th:nth-child(2),
.tx-table td:nth-child(2) { width: 110px; }

.tx-table th:nth-child(4),
.tx-table td:nth-child(4) {
  width: 30%;
  min-width: 140px;
  text-align: right;
}

.tx-table th, .holders-table th, .transactions-table th,
.unlock-stages-table th, .stages-table th {
  padding: 10px 16px;
  text-align: left;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.tx-table th:last-child {
  text-align: right;
}

.tx-table th:last-child .tx-table__cell--align-right {
  text-align: right;
}

.tx-table td, .holders-table td, .transactions-table td,
.unlock-stages-table td, .stages-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.tx-table tbody tr:hover, .holders-table tbody tr:hover {
  background: linear-gradient(90deg, rgba(255, 45, 149, 0.05), rgba(0, 212, 255, 0.05));
}

.tx-table__cell { display: block; }
.tx-table__cell.muted { color: var(--text-muted); font-size: 13px; }
.tx-table__cell--align-left { text-align: left; }
.tx-table__cell--align-right { text-align: right; }

.tx-table td:nth-child(4) .tx-table__cell {
  text-align: right;
}

.tx-table td:nth-child(4) .address-link {
  display: inline-block;
  max-width: 100%;
  text-align: right;
}

.tx-table-cell-link-badge {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.tx-table__cell.tx-table-cell-link-badge {
  display: inline-flex;
  width: auto;
}

.tx-table__badge {
  display: inline-flex;
  padding: 2px 8px;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 500;
}

.tx-table-cell-icon--in { background: var(--green-soft); color: var(--green); border: 1px solid rgba(57, 255, 136, 0.2); }
.tx-table-cell-icon--out { background: var(--red-soft); color: var(--red); border: 1px solid rgba(255, 71, 87, 0.2); }

.jetton-history-pair { display: inline-flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.jetton-history-pair__left, .jetton-history-pair__right { display: inline-flex; align-items: center; gap: 4px; }
.tx-table-action-icon { display: inline-flex; margin: 0 6px; color: var(--text-muted); }
.ui-inline-jetton__value { font-weight: 500; }

.address-link {
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
  word-break: break-all;
}

.address-link:hover { color: var(--accent-2); text-decoration: underline; }
.address-link.full-name { font-family: inherit; font-size: 14px; }

.ui-copy-button { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }
.ui-copy-button__icon { width: 14px; height: 14px; opacity: 0.5; }
.ui-copy-button:hover .ui-copy-button__icon { opacity: 1; }

.jetton-owner { font-family: ui-monospace, monospace; font-size: 12px; min-width: 0; }

.table-pagination { margin-top: 16px; display: flex; justify-content: center; }

.pagination-controls { display: flex; gap: 4px; align-items: center; }

.pagination-btn {
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
}

.pagination-btn.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  border-color: transparent;
  box-shadow: var(--glow-pink);
}
.pagination-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.pagination-dots { color: var(--text-muted); padding: 0 4px; }

.loading-spinner {
  width: 24px;
  height: 24px;
  border: 2px solid var(--border);
  border-top-color: var(--accent);
  border-right-color: var(--accent-2);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin: 0 auto;
}

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

/* ——— Locks ——— */
.stats-locks-section, .stats-unlock-map-section { margin-bottom: 40px; }

.stats-locks-section h2, .unlock-map-header h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  color: var(--text);
  margin-bottom: 8px;
}

.stats-locks-section h2::before, .unlock-map-header h2::before {
  content: '';
  width: 4px;
  height: 14px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--orange), var(--accent));
  flex-shrink: 0;
}

.lock-card {
  border: 1px solid var(--glass-border);
  border-radius: var(--glass-radius);
  padding: 20px;
  margin-top: 16px;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(180%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(180%);
  box-shadow: var(--glass-shadow), inset 0 1px 0 var(--glass-highlight);
}

.lock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.lock-header h3 { font-size: 16px; font-weight: 500; }

.lock-link { font-size: 14px; color: var(--text-muted); text-decoration: none; }
.lock-link:hover { color: var(--accent-2); }

.lock-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  margin-bottom: 20px;
}

.lock-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); }
.lock-value { font-size: 14px; font-weight: 500; margin-top: 2px; }
.lock-address, .lock-owner { font-family: ui-monospace, monospace; font-size: 12px; word-break: break-all; }

.lock-timer {
  padding: 16px;
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: var(--radius);
  margin-bottom: 16px;
  text-align: center;
  background: var(--blue-soft);
}

.timer-value { font-size: 24px; font-weight: 600; font-variant-numeric: tabular-nums; color: var(--accent-2); }
.timer-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); margin-bottom: 8px; }
.timer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.timer-unit { font-size: 11px; color: var(--text-muted); }

.lock-progress { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }
.lock-progress-header { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 8px; }
.progress-bar { height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; }
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 0.3s;
  box-shadow: var(--glow-pink);
}

.lock-footer { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }
.lock-stages-table { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }
.lock-stages-table h4 { font-size: 14px; font-weight: 500; margin-bottom: 12px; }

.lock-toggle-btn {
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4px;
  cursor: pointer;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lock-toggle-btn.expanded .lock-toggle-icon { transform: rotate(180deg); }
.lock-content { margin-top: 16px; }

.stages-table tbody tr.completed td { color: var(--green); }
.stages-table tbody tr.pending td { color: var(--text-muted); }

.holder-lock-card { margin-bottom: 24px; }

/* ——— Unlock map ——— */
.unlock-timer-card {
  border: 1px solid var(--glass-border);
  border-radius: var(--glass-radius);
  padding: 20px;
  margin-bottom: 20px;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(180%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(180%);
  box-shadow: var(--glass-shadow), inset 0 1px 0 var(--glass-highlight);
}

.unlock-timer-content { display: flex; align-items: center; gap: 16px; }
.unlock-timer-icon { font-size: 32px; line-height: 1; }
.unlock-timer-label { font-size: 13px; color: var(--text-muted); margin-bottom: 4px; }
.unlock-timer-value { font-size: 24px; font-weight: 600; }
.unlock-timer-date { font-size: 13px; color: var(--text-muted); }

.unlock-map-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 24px;
}

.unlock-chart-container {
  margin-bottom: 24px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.unlock-timeline {
  position: relative;
  height: 120px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.timeline-now-marker { position: absolute; top: 0; bottom: 0; z-index: 2; }
.now-marker-line { width: 1px; height: 100%; background: var(--red); margin: 0 auto; }
.now-marker-label {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 500;
  white-space: nowrap;
  background: var(--text);
  color: var(--bg);
  padding: 2px 6px;
  border-radius: var(--radius);
}

.timeline-month-section { position: absolute; top: 0; bottom: 0; }
.timeline-month-label { position: absolute; top: -20px; font-size: 11px; color: var(--text-muted); }

.timeline-stage-point {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  cursor: pointer;
}

.timeline-stage-point.past { background: var(--green); }
.timeline-stage-point.future { background: var(--border); border: 2px solid var(--text-muted); }

.stage-tooltip {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 12px;
  border-radius: var(--radius);
  min-width: 180px;
  font-size: 13px;
  z-index: 10;
}

.timeline-stage-point:hover .stage-tooltip { display: block; }

.unlock-map-legend {
  display: flex;
  gap: 20px;
  justify-content: center;
  padding: 12px;
  font-size: 13px;
  margin-bottom: 20px;
}

.legend-item { display: flex; align-items: center; gap: 6px; }
.legend-dot { width: 8px; height: 8px; border-radius: 50%; }
.legend-dot.past { background: var(--green); }
.legend-dot.future { background: var(--border); border: 1px solid var(--text-muted); }
.legend-dot.now { background: var(--red); }

.unlock-stages-list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.unlock-stages-list h3 { font-size: 14px; font-weight: 500; }

.unlock-map-toggle-btn,
.unlock-stages-toggle-btn {
  padding: 8px 12px;
  font-size: 13px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  cursor: pointer;
  font-family: inherit;
}

.unlock-map-container-hidden { display: none; }

.status-badge {
  display: inline-block;
  padding: 2px 8px;
  font-size: 11px;
  border-radius: var(--radius);
}

.status-badge.completed { background: rgba(22, 163, 74, 0.1); color: var(--green); }
.status-badge.pending { background: var(--bg-subtle); color: var(--text-muted); }

.unlock-stages-table tbody tr.past { opacity: 0.6; }

.lock-page-header { margin-bottom: 24px; }
.lock-page-header h1 { font-size: 24px; font-weight: 600; }
.lock-info-container { margin-top: 16px; }

/* ——— Bot page ——— */
.bot-hero {
  padding: 80px 0;
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse 60% 50% at 50% 30%, rgba(255, 45, 149, 0.15) 0%, transparent 60%),
    var(--bg);
}

.bot-content h1 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bot-description { font-size: 15px; color: var(--text-muted); margin-bottom: 32px; line-height: 1.6; }

.bot-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 32px;
  text-align: left;
}

.bot-feature {
  padding: 12px;
  border: 1px solid var(--glass-border);
  border-radius: var(--glass-radius);
  font-size: 13px;
  display: flex;
  gap: 8px;
  align-items: center;
  background: var(--glass-bg);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow: inset 0 1px 0 var(--glass-highlight);
}

.bot-content { max-width: 480px; margin: 0 auto; text-align: center; }

.bot-icon-wrapper { margin-bottom: 24px; }
.bot-icon { font-size: 48px; line-height: 1; }
.bot-icon-glow { display: none; }

.bot-cta { margin-bottom: 24px; }
.bot-note { font-size: 12px; color: var(--text-muted); margin-top: 12px; }

.bot-links { display: flex; justify-content: center; gap: 20px; }
.bot-link { font-size: 14px; color: var(--text-muted); text-decoration: none; }
.bot-link:hover { color: var(--accent-2); }

/* ——— Bank ——— */
.bank-hero {
  padding: 48px 0 32px;
  text-align: center;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255, 214, 10, 0.08) 0%, transparent 55%);
}

.bank-hero h1 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bank-hero p { color: var(--text-muted); }
.bank-section { margin-bottom: 40px; }

.bank-section h2 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 16px;
  text-transform: none;
  letter-spacing: normal;
  color: var(--text);
}

.bank-back { font-size: 14px; color: var(--text-muted); text-decoration: none; }
.bank-back:hover { color: var(--text); }

.wallet-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}

.wallet-card {
  border: 1px solid var(--glass-border);
  border-radius: var(--glass-radius);
  padding: 20px;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(180%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(180%);
  box-shadow: var(--glass-shadow), inset 0 1px 0 var(--glass-highlight);
}

.wallet-card h3 { font-size: 15px; font-weight: 500; margin-bottom: 8px; }
.wallet-address { font-size: 11px; font-family: ui-monospace, monospace; color: var(--text-muted); word-break: break-all; margin-bottom: 12px; }
.wallet-link { font-size: 13px; color: var(--text-muted); text-decoration: none; }
.wallet-link:hover { color: var(--text); }

.balance-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.balance-row:last-child { border-bottom: none; }
.balance-label { color: var(--text-muted); }
.balance-value { font-weight: 500; }
.balance-value.loading { color: var(--text-muted); font-weight: 400; }
.balance-equiv { font-size: 12px; color: var(--text-muted); }

.manual-holdings { list-style: none; padding: 0; margin: 0; }
.manual-holdings li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.manual-note { font-size: 13px; color: var(--text-muted); margin-top: 12px; }

.channel-section {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.channel-posts-list { display: flex; flex-direction: column; gap: 16px; margin-top: 16px; }

.channel-post {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.channel-post-date { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
.channel-post-text { font-size: 14px; line-height: 1.6; white-space: pre-wrap; }
.channel-post-link { font-size: 13px; color: var(--text-muted); margin-top: 8px; display: inline-block; }
.channel-posts-loading, .channel-posts-error { color: var(--text-muted); font-size: 14px; }

/* ——— NFT ——— */
.nft-hero {
  padding: 48px 0 32px;
  text-align: center;
  border-bottom: 1px solid var(--glass-border);
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(184, 77, 255, 0.12) 0%, transparent 60%);
}

.nft-hero h1 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nft-hero p { color: var(--text-muted); max-width: 480px; margin: 0 auto; }

.nft-collections { padding: 48px 0; }
.nft-collections-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.nft-collection {
  border: 1px solid var(--glass-border);
  border-radius: var(--glass-radius);
  padding: 24px;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(180%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(180%);
  box-shadow: var(--glass-shadow), inset 0 1px 0 var(--glass-highlight);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nft-collection:hover {
  transform: translateY(-2px);
  box-shadow: var(--glass-shadow), 0 0 32px rgba(184, 77, 255, 0.12);
}

.collection-header h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: none;
  letter-spacing: normal;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.collection-header p { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; }

.collection-link {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.collection-link:hover { color: var(--accent-2); }
.collection-link svg { width: 16px; height: 16px; }

.collection-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
}

.info-card { background: var(--bg); padding: 16px; }
.info-card h3 { font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); margin-bottom: 6px; }
.info-card p { font-size: 18px; font-weight: 500; }
.info-card a { color: var(--text); }

.nft-types { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }

.nft-type-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}

.nft-type-card h3 { font-size: 16px; font-weight: 500; margin-bottom: 8px; }
.nft-type-card .price { font-size: 24px; font-weight: 600; margin-bottom: 4px; }
.nft-type-card .count { font-size: 14px; color: var(--text-muted); margin-bottom: 12px; }
.nft-type-card .description { font-size: 13px; color: var(--text-muted); }

.nft-hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.nft-hero-text h1 { text-align: left; }
.nft-hero-image img { border-radius: var(--radius); border: 1px solid var(--border); }
.nft-info-section { padding: 48px 0; }

.revenue-info {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 24px;
}

.revenue-info h4 { font-size: 15px; font-weight: 500; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.revenue-info p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.revenue-info .percentage { font-size: 20px; font-weight: 600; }

[data-theme="light"] .site-header {
  background: rgba(255, 252, 249, 0.9);
}

[data-theme="light"] .hero {
  background: linear-gradient(135deg, var(--accent-soft) 0%, var(--bg) 45%, var(--blue-soft) 100%);
}

/* ——— Misc ——— */
.snow-container, .twinkling-lights { display: none !important; }

.stat-change { font-size: 13px; font-weight: 500; }
.stat-change.positive { color: var(--green); }
.stat-change.negative { color: var(--red); }

.hidden { display: none !important; }

/* ——— Responsive ——— */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-media { order: -1; max-width: 400px; margin: 0 auto; }
  .hero-strip { grid-template-columns: repeat(2, 1fr); }
  .jetton-info-container { grid-template-columns: 1fr; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .nft-collections-grid { grid-template-columns: 1fr; }
  .nft-hero-content { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .header-inner { height: auto; min-height: 56px; padding: 8px 0; flex-wrap: wrap; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .disclaimer { text-align: center; }
  .cards { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr; }
  .lock-grid { grid-template-columns: 1fr; }
  .bot-features { grid-template-columns: 1fr; }
  .unlock-timer-content { flex-direction: column; text-align: center; }
  .card-title-tab { padding: 12px; font-size: 13px; }
  .section { padding: 48px 0; }
}

@media (max-width: 1000px) {
  .hero-strip { grid-template-columns: 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
}
