:root {
  --bg: #030508;
  --card: rgba(13, 18, 32, 0.72);
  --card-solid: #0d1220;
  --text: #f0f4fc;
  --muted: #8b98b8;
  --accent: #22c55e;
  --accent2: #06b6d4;
  --accent3: #a855f7;
  --warn: #f59e0b;
  --glow: rgba(34, 197, 94, 0.45);
  --border: rgba(255, 255, 255, 0.08);
  --glass: rgba(8, 12, 22, 0.55);
  --nav-h: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: Inter, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Video + ambient background ── */
.bg-layer {
  position: fixed;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}

.bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  filter: saturate(1.45) brightness(0.58) contrast(1.12);
}

.bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 50% -5%, rgba(34, 197, 94, 0.18), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 20%, rgba(6, 182, 212, 0.12), transparent),
    radial-gradient(ellipse 40% 50% at 0% 80%, rgba(168, 85, 247, 0.1), transparent),
    linear-gradient(180deg, rgba(3, 5, 8, 0.4) 0%, rgba(3, 5, 8, 0.92) 70%, var(--bg) 100%);
}

#particles {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  z-index: -2;
  pointer-events: none;
  animation: floatOrb 18s ease-in-out infinite;
}
.orb-1 { width: 480px; height: 480px; background: var(--accent); top: -10%; left: -5%; opacity: 0.45; }
.orb-2 { width: 380px; height: 380px; background: var(--accent2); bottom: 10%; right: -8%; animation-delay: -6s; opacity: 0.4; }
.orb-3 { width: 300px; height: 300px; background: var(--accent3); top: 40%; left: 60%; animation-delay: -12s; opacity: 0.35; }

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.05); }
  66% { transform: translate(-20px, 25px) scale(0.95); }
}

/* ── Layout ── */
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; position: relative; }
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 12px;
}
.section-title {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub { color: var(--muted); max-width: 560px; font-size: 1.05rem; }

/* ── Nav ── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.35s, border-color 0.35s, backdrop-filter 0.35s;
  border-bottom: 1px solid transparent;
}
.site-nav.scrolled {
  background: var(--glass);
  backdrop-filter: blur(16px) saturate(1.4);
  border-color: var(--border);
}
.site-nav .wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.logo {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  text-decoration: none;
  color: var(--text);
}
.logo span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  padding: 8px 12px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.04); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  border-radius: 12px;
  padding: 12px 22px;
  font-size: 0.92rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  font-family: inherit;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), #16a34a);
  color: #041007;
  box-shadow: 0 4px 24px var(--glow), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-primary:hover { box-shadow: 0 8px 40px var(--glow); }
.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.btn-glow {
  position: relative;
  overflow: hidden;
}
.btn-glow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.25) 50%, transparent 60%);
  transform: translateX(-120%);
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 70%, 100% { transform: translateX(-120%); }
  85% { transform: translateX(120%); }
}
.btn-sm { padding: 9px 16px; font-size: 0.82rem; border-radius: 10px; }

.badge-pill {
  font-size: 0.72rem;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
}
.badge-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  padding: 6px 14px;
  border-radius: 999px;
}
.badge-live::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 40px) 0 80px;
  text-align: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease both;
}
.hero h1 {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  max-width: 900px;
  margin: 0 auto 20px;
  animation: fadeUp 0.8s ease 0.1s both;
}
.hero h1.hero-headline {
  font-size: clamp(3.2rem, 11vw, 6.25rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  max-width: 980px;
  margin: 0 auto 24px;
}
.hero h1 .gradient {
  display: block;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 45%, var(--accent3) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 6s ease infinite;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}
.hero .sub {
  color: var(--muted);
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  max-width: 580px;
  margin: 0 auto 32px;
  animation: fadeUp 0.8s ease 0.2s both;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.3s both;
}
.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 2.5vw, 24px);
  width: min(960px, 100%);
  margin: 56px auto 0;
  animation: fadeUp 0.8s ease 0.45s both;
}
.stat-card {
  position: relative;
  text-align: center;
  padding: clamp(24px, 4vw, 36px) clamp(16px, 3vw, 24px);
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: transform 0.3s, box-shadow 0.3s;
}
.stat-card:hover {
  transform: translateY(-6px) scale(1.02);
}
.stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, var(--stat-accent, #4ade80), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.stat-card--green {
  --stat-accent: #4ade80;
  background: linear-gradient(160deg, rgba(34, 197, 94, 0.35) 0%, rgba(34, 197, 94, 0.08) 100%);
  box-shadow: 0 0 50px rgba(34, 197, 94, 0.25), inset 0 1px 0 rgba(255,255,255,0.1);
}
.stat-card--cyan {
  --stat-accent: #22d3ee;
  background: linear-gradient(160deg, rgba(6, 182, 212, 0.35) 0%, rgba(6, 182, 212, 0.08) 100%);
  box-shadow: 0 0 50px rgba(6, 182, 212, 0.25), inset 0 1px 0 rgba(255,255,255,0.1);
}
.stat-card--purple {
  --stat-accent: #c084fc;
  background: linear-gradient(160deg, rgba(168, 85, 247, 0.35) 0%, rgba(168, 85, 247, 0.08) 100%);
  box-shadow: 0 0 50px rgba(168, 85, 247, 0.25), inset 0 1px 0 rgba(255,255,255,0.1);
}
.stat-card--green:hover { box-shadow: 0 12px 60px rgba(34, 197, 94, 0.4); }
.stat-card--cyan:hover { box-shadow: 0 12px 60px rgba(6, 182, 212, 0.4); }
.stat-card--purple:hover { box-shadow: 0 12px 60px rgba(168, 85, 247, 0.4); }
.stat-emoji {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 8px;
  filter: drop-shadow(0 0 12px rgba(255,255,255,0.3));
}
.stat-card .stat-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3rem, 9vw, 4.75rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
  background: linear-gradient(180deg, #fff 20%, var(--stat-accent, #4ade80) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px var(--stat-accent));
}
.stat-card .stat-label {
  font-size: clamp(0.75rem, 2vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.stat-item { text-align: center; }
.stat-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.stat-label { font-size: 0.8rem; color: var(--muted); margin-top: 4px; }

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

/* ── Marquee ── */
.marquee-wrap {
  overflow: hidden;
  border-block: 1px solid rgba(34, 197, 94, 0.2);
  background: linear-gradient(90deg, rgba(34, 197, 94, 0.12), rgba(6, 182, 212, 0.1), rgba(168, 85, 247, 0.1));
  backdrop-filter: blur(8px);
  padding: 16px 0;
}
.marquee strong { color: #4ade80; font-weight: 700; }
.marquee {
  display: flex;
  width: max-content;
  animation: marquee 35s linear infinite;
}
.marquee span {
  flex-shrink: 0;
  padding: 0 32px;
  font-size: 0.85rem;
  color: var(--muted);
  white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Cards / Bento ── */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.bento-card {
  background: var(--card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
}
.bento-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%), rgba(34,197,94,0.08), transparent 40%);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}
.bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34,197,94,0.25);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.bento-card:hover::before { opacity: 1; }
.bento-card .icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}
.bento-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.bento-card p { color: var(--muted); font-size: 0.92rem; }
.bento-card.span-4 { grid-column: span 4; }
.bento-card.span-6 { grid-column: span 6; }
.bento-card.span-8 { grid-column: span 8; }
.bento-card.span-12 { grid-column: span 12; }

/* ── Steps ── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}
.step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  position: relative;
  backdrop-filter: blur(10px);
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(34,197,94,0.15);
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}
.step h4 { font-size: 1rem; margin-bottom: 6px; }
.step p { font-size: 0.85rem; color: var(--muted); }

/* ── Build CTA block ── */
.build-cta {
  border-radius: 28px;
  padding: 48px 40px;
  background:
    linear-gradient(135deg, rgba(34,197,94,0.12), rgba(6,182,212,0.08)),
    var(--card);
  border: 1px solid rgba(34,197,94,0.2);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.build-cta::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6,182,212,0.15), transparent 70%);
  animation: floatOrb 12s ease-in-out infinite;
}
.build-cta h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 10px;
}
.build-cta p { color: var(--muted); max-width: 480px; }

/* ── Pricing ── */
.pricing-card {
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 32px;
  border-radius: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
}
.price-tag {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Reveal on scroll ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── Footer ── */
.site-footer {
  padding: 48px 0 32px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}
.site-footer a { color: var(--accent2); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }

/* ── Vote page extras ── */
.page-content { padding-top: var(--nav-h); }
.tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 32px 0 24px;
  flex-wrap: wrap;
}
.tab {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 9px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.85rem;
  font-family: inherit;
  backdrop-filter: blur(8px);
  transition: all 0.2s;
}
.tab.active {
  color: var(--text);
  border-color: var(--accent);
  background: rgba(34,197,94,0.1);
  box-shadow: 0 0 20px rgba(34,197,94,0.15);
}
.idea-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 340px));
  gap: 20px;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}
.idea-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  backdrop-filter: blur(12px);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  animation: fadeUp 0.5s ease both;
  overflow: hidden;
}
.idea-card:hover {
  transform: translateY(-4px);
  border-color: rgba(6,182,212,0.35);
  box-shadow: 0 20px 56px rgba(0,0,0,0.4), 0 0 40px rgba(34,197,94,0.08);
}
.idea-card.featured {
  border-color: rgba(34,197,94,0.5);
  box-shadow: 0 0 48px rgba(34,197,94,0.15);
}

.idea-card-cover {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, rgba(6,182,212,0.12), rgba(34,197,94,0.08));
  overflow: hidden;
}
.idea-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.idea-card:hover .idea-card-cover img {
  transform: scale(1.04);
}
.idea-card-cover-meta {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 12px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.72));
}
.idea-cover-flag {
  font-size: 1.75rem;
  line-height: 1;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}

.idea-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px 18px 18px;
  gap: 0;
}
.idea-card-body h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.12rem;
  margin: 0 0 6px;
  line-height: 1.25;
}
.idea-card-body .pitch {
  color: var(--muted);
  font-size: 0.88rem;
  flex: 1;
  margin: 0 0 14px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.idea-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}
.idea-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2px;
  padding: 12px 10px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  min-height: 72px;
}
.idea-metric--votes {
  border-color: rgba(34,197,94,0.25);
  background: linear-gradient(180deg, rgba(34,197,94,0.12) 0%, rgba(34,197,94,0.04) 100%);
}
.idea-metric--fund {
  border-color: rgba(6,182,212,0.25);
  background: linear-gradient(180deg, rgba(6,182,212,0.12) 0%, rgba(6,182,212,0.04) 100%);
}
.idea-metric-icon {
  font-size: 1.1rem;
  line-height: 1;
  opacity: 0.9;
}
.idea-metric-value {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.1;
}
.idea-metric--votes .idea-metric-value { color: #4ade80; }
.idea-metric--fund .idea-metric-value { color: #67e8f9; }
.idea-metric-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.idea-metrics--modal {
  margin-bottom: 16px;
}

.idea-card-body .progress-wrap,
.idea-card-body .progress-label {
  margin-bottom: 12px;
}
.progress-label--done {
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 12px;
  padding: 0;
}
.idea-card-body .idea-share-stats {
  margin: 0 0 10px;
  padding: 0;
}
.idea-card-body .idea-actions {
  margin-top: auto;
  padding-top: 4px;
}

.catalog-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  text-align: center;
}
.catalog-count {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}
.btn-load-more {
  min-width: 220px;
}
.hidden { display: none !important; }

.idea-card-header {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 14px 12px;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border-bottom: 1px solid var(--border);
}
.idea-country-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1;
}
.idea-country-badge--modal {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  width: fit-content;
}
.idea-flag {
  font-size: 2.5rem;
  line-height: 1;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.35));
  flex-shrink: 0;
}
.idea-country-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.idea-country-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.idea-country-iso {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent2);
  text-transform: uppercase;
}
.idea-cat-pill {
  align-self: center;
  flex-shrink: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--border);
  padding: 6px 10px;
  border-radius: 999px;
}

.cat { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--accent2); }
.pitch { color: var(--muted); font-size: 0.88rem; flex: 1; margin-bottom: 8px; }
.stats { display: flex; gap: 16px; font-size: 0.85rem; margin-bottom: 8px; }
.stats strong { color: var(--accent); }
.progress-wrap { margin-top: 4px; }
.progress-label { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--muted); margin-bottom: 4px; }
.progress-bar { height: 6px; background: rgba(255,255,255,0.06); border-radius: 99px; overflow: hidden; }
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  border-radius: 99px;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 12px var(--glow);
}
.milestone-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}
.milestone {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s;
}
.milestone:hover { transform: scale(1.02); }
.milestone .amt {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--warn);
}
.milestone h4 { margin: 6px 0 8px; font-size: 0.95rem; }
.milestone ul { list-style: none; font-size: 0.8rem; color: var(--muted); }
.milestone ul li::before { content: "✓ "; color: var(--accent); }

.nopay-banner {
  background: linear-gradient(135deg, rgba(168,85,247,0.12), rgba(6,182,212,0.08));
  border: 1px solid rgba(168,85,247,0.25);
  border-radius: 14px;
  padding: 16px 18px;
  font-size: 0.88rem;
  margin: 12px 0;
}
.nopay-banner strong { color: var(--accent3); }

.modal-bg {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 20px;
  animation: fadeIn 0.25s ease;
}
.modal-bg.open { display: flex; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--card-solid);
  border: 1px solid var(--border);
  border-radius: 20px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 28px;
  box-shadow: 0 32px 100px rgba(0,0,0,0.6);
  animation: modalIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal .close {
  float: right;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}
label { display: block; font-size: 0.8rem; color: var(--muted); margin: 12px 0 4px; }
input, select, textarea {
  width: 100%;
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 10px;
  padding: 11px 14px;
  font: inherit;
  font-size: 0.9rem;
  transition: border-color 0.2s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent2);
}
textarea { min-height: 100px; resize: vertical; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; }
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--card-solid);
  border: 1px solid var(--border);
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 0.9rem;
  z-index: 200;
  display: none;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.toast.show { display: block; animation: fadeUp 0.35s; }
.empty { text-align: center; color: var(--muted); padding: 56px 20px; }

.hero-wl { min-height: 92vh; position: relative; align-items: center; }
.hero-vivid { overflow: hidden; }

.hero-vivid::before {
  content: "";
  position: absolute;
  inset: -20% -10%;
  background:
    conic-gradient(from 200deg at 50% 40%, rgba(34, 197, 94, 0.22), rgba(6, 182, 212, 0.18), rgba(168, 85, 247, 0.2), rgba(244, 114, 182, 0.12), rgba(34, 197, 94, 0.22));
  filter: blur(60px);
  opacity: 0.85;
  animation: heroMesh 12s linear infinite;
  pointer-events: none;
  z-index: -1;
}
@keyframes heroMesh {
  to { transform: rotate(360deg); }
}

.hero-glow {
  position: absolute;
  width: min(820px, 95vw);
  height: min(820px, 95vw);
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 35% 35%, rgba(34, 197, 94, 0.5) 0%, transparent 45%),
    radial-gradient(circle at 65% 55%, rgba(6, 182, 212, 0.35) 0%, transparent 42%),
    radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.25) 0%, transparent 55%);
  filter: blur(48px);
  animation: heroPulse 4s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}
@keyframes heroPulse {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

.hero-kicker {
  display: inline-block;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #041007;
  background: linear-gradient(90deg, #4ade80, #a3e635, #22d3ee);
  background-size: 200% auto;
  padding: 12px 24px;
  border-radius: 999px;
  margin-bottom: 32px;
  box-shadow:
    0 0 50px var(--glow),
    0 0 80px rgba(6, 182, 212, 0.25),
    0 6px 24px rgba(34, 197, 94, 0.45);
  animation: fadeUp 0.7s ease both, kickerPop 2.5s ease-in-out infinite, gradientShift 5s ease infinite;
}
@keyframes kickerPop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

.hero-headline .line {
  display: block;
}
.hero-headline .line:first-child {
  font-size: clamp(1.35rem, 3.8vw, 2.1rem);
  font-weight: 600;
  color: #e2e8f0;
  letter-spacing: -0.02em;
  margin-bottom: 0.2em;
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.15);
}
.hero-headline .gradient {
  font-size: 1em;
  background: linear-gradient(135deg, #86efac 0%, #22d3ee 30%, #c084fc 62%, #f472b6 100%);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 3.5s ease infinite;
  filter: drop-shadow(0 0 40px rgba(34, 197, 94, 0.45)) drop-shadow(0 0 60px rgba(6, 182, 212, 0.25));
}

.hero-sub {
  font-size: clamp(1.1rem, 2.8vw, 1.35rem) !important;
  max-width: 680px !important;
  line-height: 1.65;
  color: #c8d4ea !important;
}

.btn-xl {
  padding: 18px 32px;
  font-size: 1.08rem;
  border-radius: 16px;
}
.hero-actions .btn-primary {
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 40%, #06b6d4 100%);
  box-shadow: 0 6px 32px var(--glow), 0 0 48px rgba(6, 182, 212, 0.2);
}
.hero-actions .btn-ghost {
  border-color: rgba(34, 197, 94, 0.35);
  background: rgba(34, 197, 94, 0.08);
}

.hero-badge-float {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.float-tag {
  position: absolute;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 10px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  animation: floatTag 6s ease-in-out infinite;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}
.tag-1 { top: 16%; left: 6%; color: #4ade80; border-color: rgba(74, 222, 128, 0.4); animation-delay: 0s; }
.tag-2 { top: 22%; right: 4%; color: #22d3ee; border-color: rgba(34, 211, 238, 0.4); animation-delay: -2s; }
.tag-3 { bottom: 26%; left: 8%; color: #c084fc; border-color: rgba(192, 132, 252, 0.4); animation-delay: -4s; }
@keyframes floatTag {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}

.hero-overlay {
  background:
    radial-gradient(ellipse 110% 90% at 50% 15%, rgba(168, 85, 247, 0.22), transparent 52%),
    radial-gradient(ellipse 100% 70% at 50% -5%, rgba(34, 197, 94, 0.32), transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 60%, rgba(6, 182, 212, 0.18), transparent),
    linear-gradient(180deg, rgba(3, 5, 8, 0.15) 0%, rgba(3, 5, 8, 0.82) 72%, var(--bg) 100%);
}

/* Vote section — full width, centered content */
.vote-section-full {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 88px 24px;
  text-align: center;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(34, 197, 94, 0.12), transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(6, 182, 212, 0.08), transparent),
    linear-gradient(180deg, rgba(3, 5, 8, 0.97) 0%, rgba(6, 10, 18, 0.99) 100%);
  border-block: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.vote-section-inner {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.vote-section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 12px;
  width: 100%;
}
.vote-section-full .section-label {
  display: block;
  text-align: center;
  width: auto;
}
.vote-section-full .section-title {
  font-size: clamp(2.25rem, 5.5vw, 3.25rem);
  text-align: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.vote-section-full .section-sub {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 540px;
}
.vote-section-full .tabs {
  justify-content: center;
  width: 100%;
}
.vote-section-full .idea-grid {
  width: 100%;
  justify-content: center;
}
.vote-section-full .empty {
  text-align: center;
}

/* legacy aliases */
.vote-section {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.vote-section .section-label,
.vote-section .section-title,
.vote-section .section-sub {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  width: 100%;
}
.vote-section .tabs,
.vote-section .idea-grid {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.section-solid {
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  border-block: 1px solid var(--border);
  margin-inline: 0;
  padding-inline: 0;
}
.section-solid > .wrap,
.section-solid.wrap {
  padding-top: 88px;
  padding-bottom: 88px;
}

.idea-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.idea-actions-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.btn-vote-fire {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 16px;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  color: #041007;
  background: linear-gradient(135deg, #86efac 0%, #22c55e 40%, #06b6d4 100%);
  background-size: 200% auto;
  box-shadow: 0 4px 24px rgba(34, 197, 94, 0.45), inset 0 1px 0 rgba(255,255,255,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: voteGradient 4s ease infinite;
  position: relative;
  overflow: hidden;
}
.btn-vote-fire::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.35) 50%, transparent 65%);
  transform: translateX(-120%);
  animation: shimmer 2.5s ease-in-out infinite;
}
.btn-vote-fire:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 8px 36px rgba(34, 197, 94, 0.55), 0 0 40px rgba(6, 182, 212, 0.2);
}
.btn-vote-fire:active { transform: scale(0.98); }
.btn-vote-spark {
  font-size: 1.25rem;
  animation: voteSpark 1.2s ease-in-out infinite;
}
.btn-vote-text { position: relative; z-index: 1; }
@keyframes voteGradient {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}
@keyframes voteSpark {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.15) rotate(-8deg); }
}

.btn-share-pop,
.btn-details {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 12px;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.btn-share-pop {
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.45);
  color: #67e8f9;
}
.btn-share-pop:hover {
  background: rgba(6, 182, 212, 0.22);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.2);
}
.btn-details {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--muted);
}
.btn-details:hover {
  color: var(--text);
  border-color: rgba(255,255,255,0.2);
}

/* Share modal */
.modal-share {
  max-width: 520px;
  padding: 24px 28px 28px;
}
.share-modal-head {
  text-align: center;
  margin-bottom: 20px;
}
.share-modal-country {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 10px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
}
.share-modal-flag {
  font-size: 1.75rem;
  line-height: 1;
}
.share-modal-country-name {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent2);
}
.share-modal-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
  padding: 0 8px;
}
.share-modal-hint {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
  max-width: 400px;
  margin: 0 auto;
}
.share-row-wrap {
  padding: 20px 12px;
  margin-bottom: 16px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
}
.share-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(8px, 2.5vw, 16px);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 2px;
}
.share-row::-webkit-scrollbar { display: none; }
.share-icon-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  min-width: 56px;
  max-width: 72px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  color: var(--text);
  transition: transform 0.2s;
}
.share-icon-btn:hover { transform: translateY(-2px); }
.share-icon-btn:active { transform: scale(0.96); }
.share-icon-square {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  transition: box-shadow 0.2s, transform 0.2s;
}
.share-icon-btn:hover .share-icon-square {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
  transform: scale(1.06);
}
.share-icon-square svg {
  width: 28px;
  height: 28px;
  display: block;
}
.share-icon-square--whatsapp { background: #25D366; }
.share-icon-square--telegram { background: #229ED9; }
.share-icon-square--facebook { background: #1877F2; }
.share-icon-square--twitter { background: #000; }
.share-icon-square--instagram {
  background: linear-gradient(135deg, #f9ce34, #ee2a7b 50%, #6228d7);
}
.share-icon-square--tiktok { background: #000; }
.share-icon-square--tiktok svg { width: 24px; height: 24px; }
.share-icon-square--youtube { background: #FF0000; }
.share-icon-square--messenger { background: linear-gradient(135deg, #00B2FF, #006AFF); }
.share-icon-name {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  line-height: 1.2;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.share-icon-btn:hover .share-icon-name { color: var(--text); }
.share-copy-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.share-copy-link:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.vote-captcha-wrap {
  display: flex;
  justify-content: center;
  margin: 0 auto 20px;
  min-height: 68px;
}
.vote-captcha-wrap.hidden {
  display: none;
}

.idea-share-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 10px;
  padding-top: 2px;
}
.share-stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 8px 4px 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
}
.share-stat-mini {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.share-stat-mini svg {
  width: 13px;
  height: 13px;
  display: block;
}
.share-stat-num {
  color: var(--accent2);
  min-width: 1ch;
}

.idea-actions .btn { flex: 1; }

.bot-section-full {
  position: relative;
  width: 100%;
  padding: clamp(72px, 10vw, 110px) 24px;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 50% 100%, rgba(34, 197, 94, 0.22), transparent 65%),
    radial-gradient(ellipse 50% 40% at 15% 30%, rgba(6, 182, 212, 0.15), transparent),
    radial-gradient(ellipse 45% 40% at 85% 40%, rgba(168, 85, 247, 0.18), transparent),
    linear-gradient(180deg, rgba(3, 5, 8, 0.6) 0%, rgba(4, 12, 8, 0.95) 50%, rgba(3, 5, 8, 0.98) 100%);
  border-block: 1px solid rgba(34, 197, 94, 0.25);
}
.bot-glow {
  position: absolute;
  width: min(700px, 90vw);
  height: min(400px, 50vw);
  left: 50%;
  bottom: -20%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(34, 197, 94, 0.35) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}
.bot-section-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bot-kicker {
  display: inline-block;
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #041007;
  background: linear-gradient(90deg, #4ade80, #22d3ee);
  padding: 10px 22px;
  border-radius: 999px;
  margin-bottom: 24px;
  box-shadow: 0 0 40px rgba(34, 197, 94, 0.45);
}
.bot-headline {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(2.25rem, 6.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}
.bot-line { display: block; }
.bot-line:first-child { color: #f0f4fc; }
.bot-gradient {
  background: linear-gradient(135deg, #86efac 0%, #22d3ee 45%, #c084fc 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 4s ease infinite;
  filter: drop-shadow(0 0 30px rgba(34, 197, 94, 0.4));
}
.bot-lead {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  color: #b8c8e8;
  line-height: 1.65;
  max-width: 620px;
  margin-bottom: 36px;
}
.bot-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 2vw, 20px);
  width: min(720px, 100%);
  margin-bottom: 32px;
}
.bot-stat {
  padding: clamp(20px, 3vw, 28px) 12px;
  border-radius: 20px;
  text-align: center;
  backdrop-filter: blur(10px);
}
.bot-stat--green {
  background: linear-gradient(160deg, rgba(34, 197, 94, 0.4), rgba(34, 197, 94, 0.1));
  border: 2px solid rgba(74, 222, 128, 0.55);
  box-shadow: 0 0 40px rgba(34, 197, 94, 0.2);
}
.bot-stat--cyan {
  background: linear-gradient(160deg, rgba(6, 182, 212, 0.4), rgba(6, 182, 212, 0.1));
  border: 2px solid rgba(34, 211, 238, 0.55);
  box-shadow: 0 0 40px rgba(6, 182, 212, 0.2);
}
.bot-stat--purple {
  background: linear-gradient(160deg, rgba(168, 85, 247, 0.4), rgba(168, 85, 247, 0.1));
  border: 2px solid rgba(192, 132, 252, 0.55);
  box-shadow: 0 0 40px rgba(168, 85, 247, 0.2);
}
.bot-stat-icon {
  display: block;
  font-size: 1.75rem;
  margin-bottom: 6px;
}
.bot-stat-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: #fff;
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.35);
}
.bot-stat-label {
  margin-top: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}
.bot-checklist {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
  margin-bottom: 32px;
  max-width: 640px;
}
.bot-checklist li {
  font-size: 0.95rem;
  font-weight: 600;
  color: #e2e8f0;
  padding-left: 22px;
  position: relative;
}
.bot-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4ade80;
  font-weight: 800;
}
.bot-cta {
  font-size: clamp(1rem, 2.5vw, 1.15rem) !important;
  padding: 20px 36px !important;
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 35%, #06b6d4 100%) !important;
  box-shadow: 0 8px 48px rgba(34, 197, 94, 0.5), 0 0 80px rgba(6, 182, 212, 0.2) !important;
}
.bot-footnote {
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--muted);
}

@media (max-width: 960px) {
  .idea-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 340px));
    justify-content: center;
  }
  .hero-stats-row {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
  .bot-stats-row {
    grid-template-columns: 1fr;
    max-width: 320px;
  }
  .bot-checklist {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}

@media (max-width: 900px) {
  .bento-card.span-4, .bento-card.span-6, .bento-card.span-8 { grid-column: span 12; }
  .steps { grid-template-columns: 1fr 1fr; }
  .build-cta { grid-template-columns: 1fr; text-align: center; }
  .build-cta .btn { justify-self: center; }
}
@media (max-width: 600px) {
  .steps { grid-template-columns: 1fr; }
  .nav-links a:not(.btn) { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .bg-video { display: none; }
  .reveal { opacity: 1; transform: none; }
}
