/* FROGAI — NVIDIA-inspired MEME token presale site */
:root {
  --nvidia: #76B900;
  --nvidia-dark: #5a8f00;
  --nvidia-light: #9be12e;
  --bg: #050505;
  --surface: #0f0f12;
  --card: rgba(20, 22, 25, 0.72);
  --text: #f0f0f0;
  --muted: #9ca3af;
  --border: rgba(118, 185, 0, 0.22);
  --radius: 20px;
  --font-display: 'Orbitron', 'Noto Sans SC', sans-serif;
  --font-body: 'Noto Sans SC', 'Orbitron', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Ambient background */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(118, 185, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(118, 185, 0, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: -2;
  mask-image: radial-gradient(circle at 50% 20%, black 0%, transparent 70%);
}
.glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  pointer-events: none;
  z-index: -1;
}
.orb-1 { width: 500px; height: 500px; background: var(--nvidia); top: -120px; right: -120px; }
.orb-2 { width: 360px; height: 360px; background: #4CAF50; bottom: 10%; left: -100px; }

.container { width: min(1180px, 92%); margin: 0 auto; }
.glass {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* Nav */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(5, 5, 5, 0.85);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 800;
  color: var(--text); text-decoration: none;
  display: flex; align-items: center; gap: 8px;
}
.logo-img {
  width: 40px; height: 40px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--nvidia);
  box-shadow: 0 0 12px rgba(118,185,0,0.4);
}
.logo-text { font-size: 1.6rem; font-weight: 800; }
.logo-icon { font-size: 1.4rem; }
.logo-ai { color: var(--nvidia); }
.nav-links {
  display: flex; gap: 32px; list-style: none;
}
.nav-links a {
  color: var(--muted); text-decoration: none; font-weight: 500;
  transition: color 0.2s; position: relative;
}
.nav-links a:hover { color: var(--nvidia); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 2px;
  background: var(--nvidia); transition: width 0.25s;
}
.nav-links a:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 12px; }
.lang-toggle {
  display: flex; align-items: center; gap: 4px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px; padding: 6px 10px;
  color: var(--muted); font-family: var(--font-display);
  font-size: 0.85rem; font-weight: 700; cursor: pointer;
  transition: all 0.2s;
}
.lang-toggle:hover { border-color: var(--border); color: var(--text); }
.lang-option { padding: 2px 6px; border-radius: 999px; transition: all 0.2s; cursor: pointer; }
.lang-option.active { background: var(--nvidia); color: #061400; }
.lang-sep { opacity: 0.4; font-weight: 400; }

.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
}
.menu-toggle span { width: 26px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 12px; font-weight: 700; font-size: 1rem;
  cursor: pointer; border: none; text-decoration: none; transition: all 0.25s;
  font-family: var(--font-body);
}
.btn-primary {
  background: linear-gradient(135deg, var(--nvidia), var(--nvidia-dark));
  color: #061400; box-shadow: 0 6px 24px rgba(118,185,0,0.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(118,185,0,0.38); }
.btn-ghost {
  background: transparent; color: var(--text); border: 1px solid rgba(255,255,255,0.15);
}
.btn-ghost:hover { border-color: var(--nvidia); color: var(--nvidia); }
.btn-connect { background: #1f2937; color: #fff; width: 100%; }
.btn-connect:hover { background: #273548; }
.btn-block { width: 100%; margin-top: 14px; }
.btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none !important; }

/* Hero */
.hero { padding: 150px 0 90px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(118, 185, 0, 0.12); border: 1px solid var(--border);
  color: var(--nvidia-light); padding: 8px 16px; border-radius: 999px;
  font-weight: 600; font-size: 0.85rem; margin-bottom: 22px;
}
.pulse { width: 8px; height: 8px; background: var(--nvidia); border-radius: 50%; animation: pulse 1.6s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(118,185,0,0.6); } 70% { box-shadow: 0 0 0 10px rgba(118,185,0,0); } 100% { box-shadow: 0 0 0 0 rgba(118,185,0,0); } }
.hero-title {
  font-family: var(--font-display); font-size: clamp(3rem, 8vw, 5.4rem);
  line-height: 1; font-weight: 900; letter-spacing: -1px;
}
.hero-sub {
  display: block; font-size: clamp(1.1rem, 3vw, 1.6rem); font-weight: 500;
  color: var(--nvidia); margin-top: 14px; letter-spacing: 1px;
}
.hero-desc { color: var(--muted); font-size: 1.15rem; max-width: 520px; margin: 24px 0 30px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 36px; margin-top: 44px;
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px;
}
.hero-stat-value { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; color: var(--nvidia-light); }
.hero-stat-label { color: var(--muted); font-size: 0.9rem; margin-top: 4px; }

.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-ring {
  position: absolute; width: 92%; padding-bottom: 92%;
  border: 1px solid rgba(118,185,0,0.25); border-radius: 50%;
  box-shadow: 0 0 80px rgba(118,185,0,0.12), inset 0 0 80px rgba(118,185,0,0.08);
}
.hero-ring::before {
  content: ''; position: absolute; inset: 14%;
  border: 1px dashed rgba(118,185,0,0.35); border-radius: 50%;
  animation: spin 24s linear infinite;
}
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.hero-img {
  width: 78%; border-radius: 50%;
  box-shadow: 0 0 80px rgba(118,185,0,0.35), 0 30px 80px rgba(0,0,0,0.6);
  position: relative; z-index: 2;
  object-fit: cover;
  background: #000;
  aspect-ratio: 1 / 1;
}
.floating-tag {
  position: absolute; z-index: 3;
  background: rgba(20,22,25,0.85); border: 1px solid var(--border);
  padding: 8px 14px; border-radius: 10px; font-size: 0.8rem; font-weight: 600; color: var(--nvidia-light);
  backdrop-filter: blur(6px);
}
.tag-1 { top: 18%; left: 0; animation: float 4s ease-in-out infinite; }
.tag-2 { bottom: 22%; right: 0; animation: float 4s ease-in-out infinite 1s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Sections */
.section { padding: 90px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 54px; }
.section-tag {
  display: inline-block; color: var(--nvidia); font-family: var(--font-display);
  font-weight: 600; letter-spacing: 2px; font-size: 0.85rem; text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 2.8rem); font-weight: 800; }
.section-desc { color: var(--muted); margin-top: 12px; font-size: 1.05rem; }

/* Presale */
.presale-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 28px; }
.presale-card { padding: 32px; }
.presale-card-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.presale-card-head h3 { font-family: var(--font-display); font-size: 1.5rem; }
.presale-status {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 32px; padding: 6px 12px; border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px; background: rgba(255,255,255,0.06);
  color: var(--muted); font-size: 0.8rem; font-weight: 700;
  white-space: nowrap; transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.status-indicator { width: 8px; height: 8px; border-radius: 50%; background: currentColor; flex: 0 0 auto; }
.presale-status.status-loading,
.presale-status.status-pending { color: #facc15; background: rgba(250,204,21,0.1); border-color: rgba(250,204,21,0.28); }
.presale-status.status-live,
.presale-status.status-open { color: var(--nvidia-light); background: rgba(118,185,0,0.14); border-color: var(--border); }
.presale-status.status-live .status-indicator,
.presale-status.status-open .status-indicator { animation: pulse 1.6s infinite; }
.presale-status.status-sold-out,
.presale-status.status-empty { color: #fb923c; background: rgba(251,146,60,0.1); border-color: rgba(251,146,60,0.3); }
.presale-status.status-ended,
.presale-status.status-closed,
.presale-status.status-error { color: #f87171; background: rgba(248,113,113,0.1); border-color: rgba(248,113,113,0.28); }

.progress-box { margin-bottom: 26px; }
.progress-label { display: flex; justify-content: space-between; font-weight: 600; margin-bottom: 10px; }
.progress-track { height: 12px; background: rgba(255,255,255,0.08); border-radius: 999px; overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--nvidia), var(--nvidia-light)); border-radius: 999px; transition: width 1s ease; }
.progress-meta { display: flex; justify-content: space-between; color: var(--muted); font-size: 0.85rem; margin-top: 10px; }

.countdown-panel {
  margin-bottom: 18px; padding: 18px;
  border: 1px solid rgba(118,185,0,0.22); border-radius: 16px;
  background: linear-gradient(145deg, rgba(118,185,0,0.1), rgba(0,0,0,0.2));
}
.countdown-head {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  margin-bottom: 14px; color: var(--muted); font-size: 0.82rem;
}
.countdown-head > span { color: var(--text); font-weight: 700; }
.countdown-head time { text-align: right; }
.countdown-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.countdown-unit {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 76px; padding: 10px 6px; border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; background: rgba(0,0,0,0.28);
}
.countdown-unit strong {
  font-family: var(--font-display); color: var(--nvidia-light);
  font-size: clamp(1.25rem, 3vw, 1.75rem); line-height: 1.1; font-variant-numeric: tabular-nums;
}
.countdown-unit span { margin-top: 5px; color: var(--muted); font-size: 0.72rem; }
.countdown-hint { margin-top: 12px; color: var(--muted); text-align: center; font-size: 0.75rem; }
.countdown-panel.is-open .countdown-grid,
.countdown-panel.is-ended .countdown-grid { opacity: 0.55; }

.presale-stats {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px; margin-bottom: 20px;
}
.presale-stat {
  min-width: 0; padding: 14px; border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; background: rgba(0,0,0,0.22);
}
.presale-stat span { display: block; margin-bottom: 5px; color: var(--muted); font-size: 0.76rem; }
.presale-stat strong {
  display: block; overflow: hidden; color: var(--text); font-family: var(--font-display);
  font-size: 0.92rem; font-variant-numeric: tabular-nums; text-overflow: ellipsis; white-space: nowrap;
}

.price-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 24px; }
.price-item {
  background: rgba(0,0,0,0.25); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 16px; text-align: center;
}
.price-label { display: block; color: var(--muted); font-size: 0.8rem; margin-bottom: 6px; }
.price-value { display: block; font-family: var(--font-display); font-weight: 700; color: var(--nvidia-light); font-size: 0.95rem; }

.wallet-box { margin-bottom: 18px; }
.wallet-info {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 14px; padding: 16px;
  background: rgba(0,0,0,0.25); border: 1px solid rgba(118,185,0,0.25);
  border-radius: 14px;
}
.wallet-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; font-size: 0.92rem;
}
.wallet-row:first-child {
  justify-content: flex-start; gap: 10px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 4px;
}
.wallet-address {
  font-family: var(--font-display); font-weight: 700; color: var(--nvidia-light);
  margin-left: auto;
}
.wallet-label { color: var(--muted); }
.wallet-value { font-weight: 600; color: var(--text); }
.wallet-dot { width: 10px; height: 10px; background: var(--nvidia); border-radius: 50%; animation: pulse 1.6s infinite; }
.hidden { display: none !important; }

.wallet-portfolio {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px;
  margin-top: 4px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.08);
}
.wallet-metric {
  min-width: 0; padding: 11px; border-radius: 10px;
  background: rgba(255,255,255,0.035); border: 1px solid rgba(255,255,255,0.06);
}
.wallet-metric > span { display: block; color: var(--muted); font-size: 0.72rem; }
.wallet-metric > strong {
  display: block; margin-top: 3px; overflow: hidden; color: var(--text);
  font-family: var(--font-display); font-size: 0.86rem; text-overflow: ellipsis; white-space: nowrap;
}
.input-label { display: block; font-weight: 600; margin-bottom: 10px; }
.input-hint { display: block; color: var(--muted); font-size: 0.8rem; font-weight: 400; margin-top: 2px; }
.input-wrap { display: flex; align-items: stretch; border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; overflow: hidden; }
.input-wrap input {
  flex: 1; background: transparent; border: none; color: var(--text);
  text-align: center; font-size: 1.4rem; font-weight: 700; padding: 14px;
  outline: none; font-family: var(--font-display);
}
.qty-btn {
  width: 56px; background: rgba(118,185,0,0.12); border: none;
  color: var(--nvidia-light); font-size: 1.4rem; cursor: pointer; transition: background 0.2s;
}
.qty-btn:hover { background: rgba(118,185,0,0.25); }
.qty-btn:focus-visible,
.input-wrap input:focus-visible { outline: 2px solid var(--nvidia-light); outline-offset: -2px; }
.input-limit { margin-top: 8px; color: var(--muted); font-size: 0.75rem; }
.buy-meta { display: flex; justify-content: space-between; margin-top: 16px; color: var(--muted); font-size: 0.95rem; }
.buy-meta strong { color: var(--text); }
.form-note { color: var(--muted); font-size: 0.8rem; margin-top: 12px; text-align: center; }

.transaction-status {
  display: flex; align-items: flex-start; gap: 9px; margin-top: 18px; padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.08); border-radius: 12px;
  background: rgba(255,255,255,0.035); color: var(--muted); font-size: 0.82rem;
}
.transaction-status-icon { color: currentColor; font-size: 0.65rem; line-height: 1.9; }
.transaction-status.is-pending,
.transaction-status.status-pending { color: #facc15; border-color: rgba(250,204,21,0.24); background: rgba(250,204,21,0.07); }
.transaction-status.is-success,
.transaction-status.status-success { color: var(--nvidia-light); border-color: var(--border); background: rgba(118,185,0,0.07); }
.transaction-status.is-error,
.transaction-status.status-error { color: #fca5a5; border-color: rgba(248,113,113,0.24); background: rgba(248,113,113,0.07); }
.transaction-status a { color: currentColor; font-family: var(--font-display); font-size: 0.78rem; font-weight: 700; }
.transaction-status:focus-visible { outline: 2px solid var(--nvidia-light); outline-offset: 2px; }

.info-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.info-card { padding: 24px; transition: transform 0.25s, border-color 0.25s; }
.info-card:hover { transform: translateY(-4px); border-color: rgba(118,185,0,0.5); }
.info-icon { font-size: 1.8rem; margin-bottom: 12px; }
.info-card h4 { font-size: 1.1rem; margin-bottom: 8px; }
.info-card p { color: var(--muted); font-size: 0.9rem; }

/* Tokenomics */
.tokenomics-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.donut-wrap { position: relative; width: 300px; height: 300px; margin: 0 auto; padding: 30px; }
.donut { width: 100%; height: 100%; transform: rotate(-90deg); }
.donut-center {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; pointer-events: none;
}
.donut-value { font-family: var(--font-display); font-size: 2.6rem; font-weight: 800; color: var(--nvidia-light); }
.donut-label { color: var(--muted); font-size: 0.95rem; }
.tokenomics-list { display: flex; flex-direction: column; gap: 20px; }
.tokenomics-item { display: flex; align-items: flex-start; gap: 16px; padding: 22px; border-radius: 16px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); }
.tokenomics-dot { width: 18px; height: 18px; border-radius: 50%; margin-top: 4px; flex-shrink: 0; }
.tokenomics-item h4 { font-size: 1.1rem; margin-bottom: 4px; }
.tokenomics-item p { color: var(--muted); font-size: 0.9rem; }
.tokenomics-pct { margin-left: auto; font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--nvidia-light); }

/* Dividend */
.liquidity-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 42px; }
.liquidity-card { padding: 28px; position: relative; overflow: hidden; }
.liquidity-num { font-family: var(--font-display); font-size: 3rem; font-weight: 900; color: rgba(118,185,0,0.18); position: absolute; top: 12px; right: 18px; }
.liquidity-card h4 { font-size: 1.2rem; margin-bottom: 12px; position: relative; z-index: 1; }
.liquidity-card p { color: var(--muted); font-size: 0.92rem; position: relative; z-index: 1; }

.disclaimer-box {
  border: 1px solid rgba(255,200,0,0.25); background: rgba(255,200,0,0.06);
  border-radius: 16px; padding: 20px 24px; color: #e5dca8; font-size: 0.92rem;
}

/* Transaction Tax */
.tax-section { margin-top: 60px; }
.tax-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.tax-card { padding: 28px; text-align: center; transition: transform 0.25s, border-color 0.25s; }
.tax-card:hover { transform: translateY(-4px); border-color: rgba(118,185,0,0.5); }
.tax-icon { font-size: 2rem; margin-bottom: 12px; }
.tax-value { font-family: var(--font-display); font-size: 3rem; font-weight: 900; color: var(--nvidia-light); line-height: 1; }
.tax-card h4 { font-size: 1.1rem; margin: 12px 0 6px; }
.tax-card p { color: var(--muted); font-size: 0.85rem; }

/* Roadmap */
.roadmap-line { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.roadmap-item { position: relative; padding-top: 24px; }
.roadmap-dot {
  position: absolute; top: 0; left: 24px; width: 14px; height: 14px;
  background: var(--nvidia); border-radius: 50%; box-shadow: 0 0 16px rgba(118,185,0,0.5);
  z-index: 2;
}
.roadmap-item:not(:last-child)::before {
  content: ''; position: absolute; top: 6px; left: 38px; right: -10px; height: 2px;
  background: rgba(118,185,0,0.2); z-index: 1;
}
.roadmap-item.active .roadmap-dot { animation: pulse 1.6s infinite; }
.roadmap-card { padding: 22px; margin-top: 12px; }
.roadmap-phase { color: var(--nvidia); font-family: var(--font-display); font-size: 0.75rem; font-weight: 600; }
.roadmap-card h4 { margin: 8px 0 10px; font-size: 1.1rem; }
.roadmap-card p { color: var(--muted); font-size: 0.9rem; }

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { overflow: hidden; }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  background: transparent; border: none; color: var(--text); font-size: 1.05rem;
  font-weight: 600; padding: 22px 24px; cursor: pointer; text-align: left;
}
.faq-icon { color: var(--nvidia); font-size: 1.4rem; transition: transform 0.25s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--muted); padding: 0 24px;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 22px; }

/* Holder dividends */
.dividends { padding-top: 44px; }
.dividends .section-head { margin-bottom: 38px; }
.dividend-panel {
  display: grid; grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  position: relative; overflow: hidden;
}
.dividend-panel::before {
  content: ''; position: absolute; width: 420px; height: 420px;
  top: -260px; right: 10%; border-radius: 50%;
  background: rgba(118,185,0,0.16); filter: blur(70px); pointer-events: none;
}
.dividend-intro {
  position: relative; z-index: 1; padding: 42px;
  border-right: 1px solid rgba(118,185,0,0.18);
  background: linear-gradient(145deg, rgba(118,185,0,0.13), rgba(5,5,5,0.2));
}
.dividend-kicker {
  display: inline-flex; padding: 6px 11px; border: 1px solid var(--border);
  border-radius: 999px; color: var(--nvidia-light); background: rgba(118,185,0,0.08);
  font-family: var(--font-display); font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px;
}
.dividend-intro h3 {
  margin-top: 18px; font-family: var(--font-display); font-size: clamp(1.45rem, 3vw, 2rem);
}
.dividend-intro > p { margin-top: 12px; color: var(--muted); font-size: 0.94rem; }
.dividend-wallet {
  margin-top: 28px; padding: 16px; border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; background: rgba(0,0,0,0.26);
}
.dividend-wallet > span:first-child { display: block; color: var(--muted); font-size: 0.76rem; }
.dividend-wallet > strong {
  display: block; margin-top: 4px; overflow: hidden; color: var(--text);
  font-family: var(--font-display); font-size: 0.92rem; text-overflow: ellipsis; white-space: nowrap;
}
.dividend-eligibility {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 13px;
  padding: 5px 10px; border: 1px solid rgba(255,255,255,0.1); border-radius: 999px;
  color: var(--muted); background: rgba(255,255,255,0.04); font-size: 0.74rem; font-weight: 700;
}
.dividend-eligibility::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.dividend-eligibility.is-eligible { color: var(--nvidia-light); border-color: var(--border); background: rgba(118,185,0,0.1); }
.dividend-eligibility.is-ineligible { color: #facc15; border-color: rgba(250,204,21,0.26); background: rgba(250,204,21,0.08); }
.dividend-eligibility.is-loading { color: #93c5fd; border-color: rgba(147,197,253,0.24); background: rgba(147,197,253,0.07); }
.dividend-connect { width: 100%; margin-top: 18px; }

.dividend-dashboard { position: relative; z-index: 1; padding: 34px; }
.dividend-claim-card {
  padding: 24px; border: 1px solid rgba(118,185,0,0.28); border-radius: 16px;
  background: linear-gradient(135deg, rgba(118,185,0,0.13), rgba(0,0,0,0.26));
}
.dividend-claim-card > span { color: var(--muted); font-size: 0.82rem; }
.dividend-claim-card > strong {
  display: block; margin-top: 7px; overflow-wrap: anywhere;
  color: var(--nvidia-light); font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2.65rem); font-variant-numeric: tabular-nums; line-height: 1.2;
}
.dividend-claim-card > p { margin-top: 10px; color: var(--muted); font-size: 0.8rem; }
.dividend-metrics {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; margin-top: 14px;
}
.dividend-metric {
  min-width: 0; padding: 14px; border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; background: rgba(0,0,0,0.2);
}
.dividend-metric > span { display: block; color: var(--muted); font-size: 0.75rem; }
.dividend-metric > strong {
  display: block; margin-top: 5px; overflow: hidden; color: var(--text);
  font-family: var(--font-display); font-size: 0.88rem;
  font-variant-numeric: tabular-nums; text-overflow: ellipsis; white-space: nowrap;
}
.dividend-metric-reward { border-color: rgba(118,185,0,0.22); background: rgba(118,185,0,0.06); }
.dividend-metric-reward > strong { color: var(--nvidia-light); }
.dividend-claim { width: 100%; margin-top: 18px; }
.dividend-note { margin-top: 10px; color: var(--muted); font-size: 0.75rem; text-align: center; }
.dividend-transaction { margin-top: 14px; }

/* Footer */
.footer { border-top: 1px solid rgba(255,255,255,0.06); padding: 40px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-brand { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; display: flex; align-items: center; gap: 8px; }
.footer-brand .logo-img {
  width: 36px; height: 36px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--nvidia);
  box-shadow: 0 0 10px rgba(118,185,0,0.35);
}
.footer-brand .logo-text { font-size: 1.4rem; font-weight: 800; }
.footer-copy { color: var(--muted); font-size: 0.9rem; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--nvidia); }

/* Responsive */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { order: 2; }
  .hero-visual { order: 1; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .presale-grid { grid-template-columns: 1fr; }
  .tokenomics-grid { grid-template-columns: 1fr; }
  .liquidity-cards { grid-template-columns: 1fr; }
  .tax-grid { grid-template-columns: repeat(2, 1fr); }
  .roadmap-line { grid-template-columns: 1fr 1fr; }
  .dividend-panel { grid-template-columns: 1fr; }
  .dividend-intro { border-right: 0; border-bottom: 1px solid rgba(118,185,0,0.18); }
}

@media (max-width: 720px) {
  .menu-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(5,5,5,0.96); flex-direction: column; gap: 0;
    padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
    transform: translateY(-10px); opacity: 0; pointer-events: none; transition: 0.25s;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { display: block; padding: 14px 24px; }
  .hero { padding: 120px 0 60px; }
  .hero-img { width: 92%; }
  .logo-img { width: 34px; height: 34px; }
  .logo-text { font-size: 1.3rem; }
  .presale-card { padding: 22px 18px; }
  .presale-card-head { align-items: flex-start; gap: 12px; }
  .presale-card-head h3 { font-size: 1.28rem; }
  .countdown-head { align-items: flex-start; flex-direction: column; gap: 4px; }
  .countdown-head time { text-align: left; }
  .countdown-grid { gap: 6px; }
  .countdown-unit { min-height: 68px; padding: 8px 4px; }
  .presale-stats { grid-template-columns: 1fr; }
  .price-row { grid-template-columns: 1fr; }
  .wallet-address { max-width: 46%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .wallet-portfolio { grid-template-columns: 1fr; }
  .buy-meta { align-items: flex-start; flex-direction: column; gap: 6px; }
  .info-cards { grid-template-columns: 1fr; }
  .tax-grid { grid-template-columns: 1fr; }
  .roadmap-line { grid-template-columns: 1fr; }
  .roadmap-item:not(:last-child)::before { display: none; }
  .dividend-intro, .dividend-dashboard { padding: 24px 18px; }
  .dividend-metrics { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 390px) {
  .countdown-panel { padding: 14px 10px; }
  .countdown-unit strong { font-size: 1.1rem; }
  .countdown-unit span { font-size: 0.66rem; }
  .presale-status { padding-inline: 9px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
