/* ========================================
   Yoki — Aceternity / Vercel Dark Style
   ======================================== */

:root {
  --accent: #7EABD6;
  --accent-rgb: 126, 171, 214;
  --accent-dim: rgba(126, 171, 214, 0.08);
  --accent-glow: rgba(126, 171, 214, 0.2);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --bg: #000;
  --bg-card: #0a0a0a;
  --border: rgba(255, 255, 255, 0.1);
  --border-dim: rgba(255, 255, 255, 0.05);
  --text: #ffffff;
  --text-sub: #a1a1aa;
  --text-dim: #52525b;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.06);
}

/* ---- RESET ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: inherit; background: var(--bg); color: var(--text); line-height: 1.5; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }

/* ============ BACKGROUND ============ */
.starfield {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none; background: #000;
}
.starfield::before, .starfield::after,
.starfield .stars-layer, .starfield .stars-layer::after { display: none; }

.noise, .noise::before, .noise::after { display: none; }

.nav, .page, .footer { position: relative; z-index: 1; }

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ BADGE (above hero) ============ */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 99px; margin-bottom: 24px;
  background: var(--bg-card); border: 1px solid var(--border);
  font-size: 13px; color: var(--text-sub);
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #22c55e;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

/* ============ HERO ============ */
.hero {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 160px 40px 80px; max-width: 900px; margin: 0 auto;
}

.dragon-img {
  width: 180px; height: auto; margin-bottom: 24px;
  filter: drop-shadow(0 0 40px rgba(var(--accent-rgb), 0.2));
}

.hero h1 {
  font-size: 3.5rem; font-weight: 800; line-height: 1.08;
  letter-spacing: -0.04em; margin-bottom: 16px;
  background: linear-gradient(180deg, #fff 0%, #a1a1aa 100%);
  background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.1rem; color: var(--text-sub); max-width: 520px;
  line-height: 1.7; margin-bottom: 32px;
}

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

/* ============ BUTTONS ============ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 24px; font-size: 14px; font-weight: 500;
  border-radius: 8px; border: 1px solid var(--border); cursor: pointer;
  background: #fff; color: #000;
  transition: all 0.15s ease;
  font-family: inherit;
}
.btn-primary:hover {
  background: rgba(255,255,255,0.9);
  box-shadow: 0 0 20px rgba(255,255,255,0.1);
}

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 24px; font-size: 14px; font-weight: 500;
  border-radius: 8px; border: 1px solid var(--border); cursor: pointer;
  background: transparent; color: var(--text-sub);
  transition: all 0.15s ease;
  font-family: inherit;
}
.btn-secondary:hover { color: #fff; border-color: rgba(255,255,255,0.25); }

kbd {
  font-family: inherit; font-size: 0.88rem; font-weight: 500;
  padding: 3px 8px; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 6px; color: var(--text-sub);
}

code {
  font-family: var(--font-geist-mono, monospace); font-size: 0.85rem;
  padding: 2px 6px; background: var(--bg-card); border-radius: 4px; color: var(--accent);
}

/* ============ SECTIONS ============ */
.section {
  position: relative; z-index: 2; max-width: 1100px; margin: 0 auto;
  padding: 80px 40px;
}
.section-header { text-align: center; margin-bottom: 48px; }
.section-title {
  font-size: 2.2rem; font-weight: 700; letter-spacing: -0.03em;
  margin-bottom: 12px;
  background: linear-gradient(180deg, #fff 0%, #a1a1aa 100%);
  background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.section-subtitle { font-size: 1rem; color: var(--text-sub); max-width: 500px; margin: 0 auto; line-height: 1.7; }

/* ============ STATS BAR ============ */
.stats-bar {
  position: relative; z-index: 2;
  display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
  max-width: 700px; margin: 0 auto; padding: 40px 24px;
  border-top: 1px solid var(--border-dim); border-bottom: 1px solid var(--border-dim);
}
.stat-item { text-align: center; }
.stat-icon-wrap { margin-bottom: 8px; color: var(--accent); display: flex; justify-content: center; }
.stat-value { font-size: 1.8rem; font-weight: 700; }
.stat-label { font-size: 0.8rem; color: var(--text-dim); margin-top: 2px; letter-spacing: 0.03em; }

/* Kill stat animations — static icons */
.stat-icon-bounce, .stat-icon-spin, .stat-icon-pulse, .stat-icon-morph { animation: none; }

/* ============ BENTO GRID ============ */
.bento-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  max-width: 1000px; margin: 0 auto;
}

.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: 12px; padding: 24px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 8px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.bento-card:hover {
  border-color: var(--border);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.bento-wide { grid-column: span 2; }
.bento-tall { grid-row: span 2; }

.bento-header { display: flex; align-items: center; gap: 10px; }
.bento-icon { color: var(--accent); flex-shrink: 0; }
.bento-title { font-size: 0.9rem; font-weight: 600; }
.bento-pro {
  font-size: 0.6rem; font-weight: 700; padding: 2px 6px; border-radius: 4px;
  background: rgba(var(--accent-rgb), 0.12); color: var(--accent); margin-left: 4px;
}
.bento-sub { font-size: 0.72rem; color: var(--text-dim); letter-spacing: 0.02em; }
.bento-desc { font-size: 0.8rem; color: var(--text-sub); line-height: 1.6; flex: 1; }
.bento-examples { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
.bento-example {
  font-family: var(--font-geist-mono, monospace); font-size: 0.7rem;
  padding: 3px 8px; border-radius: 5px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border-dim);
  color: var(--text-dim);
}

/* ---- Dragon card ---- */
.bento-dragon {
  position: relative; display: flex; flex-direction: column;
  justify-content: flex-start; padding: 28px;
  overflow: hidden; min-height: 280px; grid-column: span 2;
  background: var(--bg-card); border-color: rgba(var(--accent-rgb), 0.1);
}
.bento-dragon::after {
  content: ''; position: absolute; inset: -1px; border-radius: 13px; padding: 1px;
  background: conic-gradient(from var(--dragon-angle, 0deg), rgba(var(--accent-rgb),0.4) 0deg, transparent 60deg, transparent 300deg, rgba(var(--accent-rgb),0.4) 360deg);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude; -webkit-mask-composite: xor;
  animation: dragonBorderSpin 6s linear infinite; pointer-events: none;
}
@property --dragon-angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
@keyframes dragonBorderSpin { 0% { --dragon-angle: 0deg; } 100% { --dragon-angle: 360deg; } }

.bento-dragon-glow { display: none; }

.bento-dragon-img {
  width: 450px; height: auto; position: absolute;
  right: -140px; bottom: -135px; z-index: 0; opacity: 0.15;
  filter: brightness(0) invert(1);
}
.bento-dragon-spotlight {
  position: absolute; inset: 0; pointer-events: none; z-index: 1; opacity: 0;
  transition: opacity 0.3s;
  background-image: url('/dragon.svg'); background-repeat: no-repeat;
  background-position: right -140px bottom -135px; background-size: 450px;
  filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(180deg) brightness(1.2);
  mask-image: radial-gradient(circle 120px at var(--spot-x, 50%) var(--spot-y, 50%), black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle 120px at var(--spot-x, 50%) var(--spot-y, 50%), black 0%, transparent 100%);
}
.bento-dragon-text { position: relative; z-index: 1; max-width: 55%; display: flex; flex-direction: column; gap: 6px; }
.bento-dragon-title {
  font-size: 1.1rem; font-weight: 700;
  background: linear-gradient(135deg, var(--accent), #a5d4f5);
  background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.bento-dragon-desc { font-size: 0.8rem; color: var(--text-sub); line-height: 1.6; }

/* ============ COMPARISON ============ */
.cmp-container { position: relative; min-height: 200px; }
.cmp-scenario { display: none; flex-direction: column; gap: 16px; }
.cmp-scenario.active { display: flex; }
.cmp-query-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px; background: var(--bg-card); border: 1px solid var(--border-dim);
  border-radius: 8px; max-width: 300px; margin: 0 auto; font-size: 14px; font-weight: 500;
}
.cmp-query-bar svg { opacity: 0.3; flex-shrink: 0; }
.cmp-panels { display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; align-items: stretch; }
.cmp-vs { display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 600; color: var(--text-dim); padding: 0 16px; }
.cmp-panel {
  padding: 24px; border-radius: 12px; border: 1px solid var(--border-dim);
  background: var(--bg-card); display: flex; flex-direction: column;
  align-items: center; text-align: center; gap: 8px;
}
.cmp-before { border-color: rgba(239,68,68,0.15); }
.cmp-after { border-color: rgba(34,197,94,0.15); }
.cmp-panel-badge {
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; padding: 3px 10px; border-radius: 99px;
}
.cmp-before .cmp-panel-badge { background: rgba(239,68,68,0.1); color: #ef4444; }
.cmp-after .cmp-panel-badge { background: rgba(34,197,94,0.1); color: #22c55e; }
.cmp-panel-title { font-size: 1rem; font-weight: 600; }
.cmp-panel-desc { font-size: 0.85rem; color: var(--text-sub); line-height: 1.5; max-width: 260px; }
.cmp-dots { display: flex; justify-content: center; gap: 6px; margin-top: 20px; }
.cmp-dot {
  width: 8px; height: 8px; border-radius: 50%; border: none; padding: 0;
  background: var(--border); cursor: pointer; transition: all 0.2s;
}
.cmp-dot.active { background: var(--accent); }

/* ============ CLOUD CARD ============ */
.cloud-card {
  background: var(--bg-card); border: 1px solid var(--border-dim);
  border-radius: 14px; padding: 40px; text-align: center;
}
.cloud-card h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 8px; }
.cloud-card p { color: var(--text-sub); margin-bottom: 24px; max-width: 460px; margin-left: auto; margin-right: auto; }
.cloud-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 24px; text-align: center; }
.cloud-point { display: flex; flex-direction: column; align-items: center; }
.cloud-diagram-icon { color: var(--text-sub); }
.cloud-diagram-arrow { color: var(--text-dim); }
.cloud-diagram-lock { color: var(--accent); }
.cloud-point-icon { color: var(--accent); margin-bottom: 10px; }
.cloud-point-title { font-size: 0.85rem; font-weight: 600; margin-bottom: 4px; }
.cloud-point-desc { font-size: 0.75rem; color: var(--text-dim); }

/* ============ PRO FEATURES ============ */
.pro-heading {
  font-size: 2.2rem; font-weight: 700; text-align: center; margin-bottom: 8px;
  background: linear-gradient(135deg, var(--accent), #c4b5fd);
  background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.pro-subtitle { font-size: 1rem; color: var(--text-sub); text-align: center; margin-bottom: 40px; }
.pro-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.pro-card {
  background: var(--bg-card); border: 1px solid var(--border-dim);
  border-radius: 12px; padding: 24px; display: flex; flex-direction: column;
  align-items: center; text-align: center; gap: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pro-card:hover { border-color: var(--border); box-shadow: inset 0 1px 0 rgba(255,255,255,0.04); }
.pro-card-icon { margin-bottom: 4px; }
.pro-card-title { font-size: 0.9rem; font-weight: 600; }
.pro-card-desc { font-size: 0.8rem; color: var(--text-sub); line-height: 1.5; }
.pro-cta-wrap { display: flex; justify-content: center; margin-top: 28px; }

/* ============ TECH STACK ============ */
.tech-row { display: flex; justify-content: center; gap: 36px; flex-wrap: wrap; }
.tech-item { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.tech-item svg { color: var(--text-dim); }
.tech-name { font-size: 0.85rem; font-weight: 600; }
.tech-desc { font-size: 0.7rem; color: var(--text-dim); }

/* ============ CTA ============ */
.cta-section {
  position: relative; z-index: 2; text-align: center;
  padding: 100px 40px 80px; max-width: 600px; margin: 0 auto;
}
.cta-section h2 {
  font-size: 2.2rem; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.03em;
  background: linear-gradient(180deg, #fff 0%, #a1a1aa 100%);
  background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.cta-section p { color: var(--text-sub); margin-bottom: 28px; font-size: 1rem; }

/* ============ FEATURE TABS (legacy, used by LandingInteractive) ============ */
.feature-tabs-bar {
  display: flex; flex-wrap: wrap; gap: 0; justify-content: center;
  border-bottom: 1px solid var(--border-dim); margin-bottom: 40px;
}
.feature-tab {
  padding: 10px 16px; font-size: 0.8rem; font-weight: 500;
  color: var(--text-dim); background: none; border: none;
  border-bottom: 2px solid transparent; cursor: pointer;
  transition: all 0.15s; white-space: nowrap; font-family: inherit;
}
.feature-tab:hover { color: var(--text-sub); }
.feature-tab.active { color: var(--text); border-bottom-color: var(--accent); }
.feature-pro-badge {
  font-size: 0.6rem; font-weight: 700; padding: 2px 6px; border-radius: 4px;
  background: rgba(var(--accent-rgb), 0.1); color: var(--accent); margin-left: 4px;
}
.feature-content { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; min-height: 240px; }
.feature-text h3 { font-size: 1.3rem; font-weight: 600; margin-bottom: 10px; }
.feature-text p { color: var(--text-sub); line-height: 1.6; margin-bottom: 14px; font-size: 0.9rem; }
.feature-sub { font-size: 0.75rem; color: var(--text-dim); margin-bottom: 6px; letter-spacing: 0.04em; text-transform: uppercase; }
.feature-examples { display: flex; flex-wrap: wrap; gap: 6px; }
.feature-example {
  font-family: var(--font-geist-mono, monospace); font-size: 0.75rem;
  padding: 3px 10px; border-radius: 5px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border-dim); color: var(--text-dim);
}
.feature-illustration { display: flex; align-items: center; justify-content: center; }
.feature-svg { width: 100%; max-width: 280px; height: auto; color: rgba(255,255,255,0.08); }

/* ============ FILE TAGS ============ */
.file-tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; max-width: 500px; margin: 0 auto; }
.file-tag {
  font-family: var(--font-geist-mono, monospace); font-size: 0.75rem;
  padding: 4px 12px; border-radius: 6px;
  background: rgba(var(--accent-rgb), 0.06); color: var(--accent); border: 1px solid rgba(var(--accent-rgb), 0.1);
}
.file-tag.excluded { background: rgba(239,68,68,0.05); color: #f87171; border-color: rgba(239,68,68,0.1); }
.file-max-badge {
  display: inline-block; margin-top: 14px; padding: 6px 16px; border-radius: 6px;
  background: rgba(var(--accent-rgb), 0.06); color: var(--accent); font-weight: 500; font-size: 0.85rem;
}

/* ============ CURSOR GLOW (removed) ============ */
.cursor-glow { display: none; }

/* ============ ANIMATIONS ============ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes textShimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
@keyframes cursorBlink { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0; } }

/* ============ LIGHT THEME ============ */
[data-theme="light"] {
  --bg: #fafafa; --bg-card: #fff; --border: rgba(0,0,0,0.08); --border-dim: rgba(0,0,0,0.05);
  --text: #1a1a1a; --text-sub: #6b7280; --text-dim: #9ca3af;
  --glass-bg: rgba(255, 255, 255, 0.8); --glass-border: rgba(0,0,0,0.08);
}
[data-theme="light"] body { background: var(--bg); color: var(--text); }
[data-theme="light"] .starfield { background: var(--bg); }
[data-theme="light"] .starfield .stars-layer { display: none; }
[data-theme="light"] .starfield::before {
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
}
[data-theme="light"] .noise { opacity: 0.008; }
[data-theme="light"] .hero h1, [data-theme="light"] .section-title, [data-theme="light"] .cta-section h2 {
  background: linear-gradient(180deg, #1a1a1a 0%, #6b7280 100%);
  background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
[data-theme="light"] .btn-primary { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }
[data-theme="light"] .btn-primary:hover { background: #333; }
[data-theme="light"] .bento-dragon-img { filter: brightness(0); opacity: 0.08; }
[data-theme="light"] .bento-dragon-spotlight { filter: brightness(0) sepia(1) saturate(3) hue-rotate(180deg) brightness(1.2); }
[data-theme="light"] .pro-heading { -webkit-text-fill-color: transparent; }
/* Nuclear text override for inline styles */
[data-theme="light"] body *:not(svg):not(path):not(circle):not(line):not(rect):not(polyline):not(polygon):not(ellipse):not(text):not(use) {
  color: var(--text) !important;
}
[data-theme="light"] .section-subtitle, [data-theme="light"] .hero p,
[data-theme="light"] .bento-desc, [data-theme="light"] .pro-card-desc,
[data-theme="light"] .pro-subtitle, [data-theme="light"] .cmp-panel-desc,
[data-theme="light"] .cta-section p, [data-theme="light"] .cloud-point-desc,
[data-theme="light"] .cloud-card p { color: var(--text-sub) !important; }
[data-theme="light"] .stat-label, [data-theme="light"] .tech-desc,
[data-theme="light"] .bento-sub, [data-theme="light"] .bento-example,
[data-theme="light"] .feature-sub, [data-theme="light"] .feature-tab:not(.active),
[data-theme="light"] .cmp-vs { color: var(--text-dim) !important; }
[data-theme="light"] .cloud-point-icon *, [data-theme="light"] .bento-icon { color: var(--accent) !important; }
/* SVG illustrations + Lucide icons in light mode */
[data-theme="light"] .feature-svg { color: rgba(0,0,0,0.12) !important; }
[data-theme="light"] .feature-illustration svg { color: rgba(0,0,0,0.15) !important; }
[data-theme="light"] .cloud-card svg:not(.cloud-point-icon svg) { color: var(--text-dim) !important; }
[data-theme="light"] .cloud-card div[style*="border"] { border-color: rgba(0,0,0,0.08) !important; }
[data-theme="light"] .cloud-card div[style*="background: rgba(96"] { background: rgba(var(--accent-rgb),0.06) !important; }
[data-theme="light"] .cmp-before .cmp-panel-badge { color: #ef4444 !important; }
[data-theme="light"] .cmp-after .cmp-panel-badge { color: #22c55e !important; }
[data-theme="light"] .btn-primary { color: #fff !important; }
[data-theme="light"] a[style*="linear-gradient"] { color: #fff !important; }
/* FAQ section (page.tsx) — both themes. */
.yoki-faq-item {
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s, border-color 0.2s;
}
.yoki-faq-item:hover { background: rgba(255,255,255,0.04); }
.yoki-faq-q {
  cursor: pointer;
  font-weight: 500;
  font-size: 15px;
  color: #f0f0f5;
  list-style: none;
}
.yoki-faq-q::-webkit-details-marker { display: none; }
.yoki-faq-a {
  margin: 12px 0 0 0;
  color: rgba(240,240,245,0.65);
  font-size: 14px;
  line-height: 1.6;
}
[data-theme="light"] .yoki-faq-item {
  background: #fff !important;
  border-color: var(--border) !important;
}
[data-theme="light"] .yoki-faq-item:hover {
  background: rgba(0,0,0,0.02) !important;
}
[data-theme="light"] .yoki-faq-q { color: var(--text) !important; }
[data-theme="light"] .yoki-faq-a { color: var(--text-sub) !important; }

[data-theme="light"] .yoki-nav { background: rgba(250,250,250,0.8) !important; backdrop-filter: blur(12px); border-bottom-color: var(--border) !important; }
[data-theme="light"] .yoki-footer { background: linear-gradient(transparent, rgba(250,250,250,0.95) 40%) !important; }
[data-theme="light"] .yoki-footer * { color: var(--text-dim) !important; }
[data-theme="light"] input[type="email"], [data-theme="light"] input[type="password"] {
  background: var(--bg) !important; border-color: var(--border) !important; color: var(--text) !important;
}

/* ============ RESPONSIVE ============ */
/* Pricing feature blocks */
.pricing-feature-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
@media (max-width: 900px) {
  .pricing-feature-block { grid-template-columns: 1fr !important; gap: 40px !important; direction: ltr !important; }
}

@media (max-width: 768px) {
  .hero { padding: 120px 20px 60px; }
  .hero h1 { font-size: 2rem; }
  .section { padding: 56px 20px; }
  .section-title { font-size: 1.6rem; }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-wide, .bento-tall, .bento-dragon { grid-column: span 1; grid-row: span 1; }
  .bento-dragon { min-height: 200px; }
  .bento-dragon-img { width: 250px; right: -80px; bottom: -80px; }
  .bento-dragon-spotlight { background-size: 250px; background-position: right -80px bottom -80px; }
  .feature-content { grid-template-columns: 1fr; }
  .stats-bar { gap: 28px; }
  .stat-value { font-size: 1.4rem; }
  .cloud-points { grid-template-columns: 1fr; }
  .pro-grid { grid-template-columns: 1fr; }
  .cmp-panels { grid-template-columns: 1fr; }
  .cmp-vs { padding: 4px 0; }
  .cta-section { padding: 60px 20px; }
  .cta-section h2 { font-size: 1.6rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  /* Kill heavy effects */
  .starfield .stars-layer { display: none !important; }
  .bento-dragon::after { animation: none; }
  .bento-dragon-spotlight { display: none; }
  #pulse-beams { display: none !important; }
}

@media (max-width: 480px) {
  .bento-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.6rem; }
  .hero p { font-size: 0.95rem; }
  .stats-bar { gap: 20px; }
}
