/* ═══════════════════════════════════════════════
   MILLIGRAM — Mobile-First Landing Page
   Base = 375px mobile. Enhanced upward via min-width.
   Outfit (display) + DM Sans (body) + JetBrains Mono (data)
   ═══════════════════════════════════════════════ */

/* ─── TOKENS ─── */
:root {
  --bg: #08080D;
  --surface: #101018;
  --elevated: #181824;
  --border: rgba(255,255,255,0.06);
  --border-accent: rgba(0,255,136,0.18);
  --green: #00FF88;
  --green-dim: rgba(0,255,136,0.08);
  --green-glow: rgba(0,255,136,0.25);
  --purple: #A78BFA;
  --text: #EEEEF2;
  --text-secondary: rgba(238,238,242,0.5);
  --text-tertiary: rgba(238,238,242,0.25);
  --radius: 14px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --max-w: 1160px;
  --section-pad: 48px;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input { font-family: inherit; }

/* ─── TYPOGRAPHY (mobile base) ─── */
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
h1 { font-size: 2rem; font-weight: 800; }
h2 { font-size: 1.45rem; }
h3 { font-size: 1.1rem; }
h4 { font-family: var(--font-body); font-weight: 600; }

.accent { color: var(--green); }

.section-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.section-header { text-align: center; margin-bottom: 32px; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 16px; }

/* ─── BUTTONS (mobile: full-width) ─── */
.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: var(--green);
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  -webkit-tap-highlight-color: transparent;
}
.btn-primary:active { transform: scale(0.97); }
.btn-primary svg { width: 18px; height: 18px; }

.btn-ghost {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 24px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: all 0.25s;
  -webkit-tap-highlight-color: transparent;
}
.btn-ghost:active { border-color: var(--green); color: var(--green); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border: 1px solid var(--green);
  color: var(--green);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
  transition: all 0.25s;
  -webkit-tap-highlight-color: transparent;
}
.btn-secondary svg { width: 16px; height: 16px; }

.btn-glow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  padding: 17px 32px;
  background: var(--green);
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 30px var(--green-glow), 0 0 80px rgba(0,255,136,0.08);
  animation: glow-pulse 3s ease-in-out infinite;
  transition: all 0.25s;
  -webkit-tap-highlight-color: transparent;
}
.btn-glow:active { transform: scale(0.97); }
.btn-glow svg { width: 20px; height: 20px; }

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 30px var(--green-glow), 0 0 80px rgba(0,255,136,0.08); }
  50% { box-shadow: 0 0 40px var(--green-glow), 0 0 100px rgba(0,255,136,0.12); }
}

/* ═══════════════════════════════════════
   HERO — Mobile: centered, stacked
   ═══════════════════════════════════════ */
.hero {
  position: relative;
  padding: calc(60px + 40px) 0 32px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  width: 120%;
  height: 60%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(0,255,136,0.04) 0%, transparent 65%);
  pointer-events: none;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}

.hero-text { max-width: 100%; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
  opacity: 0;
  animation: fade-in 0.8s 0.2s ease forwards;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: dot-pulse 2s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  margin-bottom: 16px;
  opacity: 0;
  animation: fade-up 0.9s 0.3s cubic-bezier(0.16,1,0.3,1) forwards;
}

.hero-sub {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 28px;
  opacity: 0;
  animation: fade-up 0.9s 0.45s cubic-bezier(0.16,1,0.3,1) forwards;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fade-up 0.9s 0.6s cubic-bezier(0.16,1,0.3,1) forwards;
}

.hero-trust {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 0.9s 0.75s cubic-bezier(0.16,1,0.3,1) forwards;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.03em;
  color: var(--text-secondary);
  padding: 6px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
}
.trust-pill svg { width: 12px; height: 12px; opacity: 0.5; }

@keyframes fade-in { to { opacity: 1; } }
@keyframes fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── Hero Chart ─── */
.hero-chart-side {
  width: 100%;
  opacity: 0;
  animation: chart-enter 1s 0.5s cubic-bezier(0.16,1,0.3,1) forwards;
}
@keyframes chart-enter {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-chart-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 12px 10px;
  position: relative;
  overflow: hidden;
}
.hero-chart-card::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 20%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(0,255,136,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  padding: 0 4px;
}
.chart-title {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.chart-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: dot-pulse 2s ease-in-out infinite;
}

#pk-chart { width: 100%; height: auto; display: block; }

.chart-grid { stroke: rgba(255,255,255,0.035); stroke-width: 1; stroke-dasharray: 4 4; }
.chart-legend-text { font-family: var(--font-mono); font-size: 9px; fill: rgba(238,238,242,0.35); }
.chart-axis-text { font-family: var(--font-mono); font-size: 8px; fill: rgba(238,238,242,0.2); }
.pk-now-line { stroke: rgba(238,238,242,0.12); stroke-width: 1; stroke-dasharray: 4 3; }
.pk-now-badge { fill: rgba(238,238,242,0.06); }
.pk-now-text { font-family: var(--font-mono); font-size: 8px; fill: rgba(238,238,242,0.35); letter-spacing: 0.08em; }

.pk-line { opacity: 0; transition: opacity 0.3s ease; }
.pk-line.ready {
  opacity: 1;
  stroke-dashoffset: 0 !important;
  transition: stroke-dashoffset 2.4s cubic-bezier(0.4,0,0.1,1), opacity 0.3s ease;
}
.pk-fill { opacity: 0; transition: opacity 1.2s ease; }
.pk-fill.visible { opacity: 1; }

/* ═══════════════════════════════════════
   BENTO FEATURES — Mobile: single column
   ═══════════════════════════════════════ */
.bento-section { padding: var(--section-pad) 0; }

.bento-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bento-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  overflow: hidden;
  transition: border-color 0.3s;
  -webkit-tap-highlight-color: transparent;
}
.bento-card:active { border-color: var(--border-accent); }

.bento-num {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
  margin-bottom: 16px;
}

.bento-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-dim);
  border: 1px solid var(--border-accent);
  border-radius: 10px;
  color: var(--green);
  margin-bottom: 16px;
}
.bento-icon svg { width: 20px; height: 20px; }

.bento-card h3 { margin-bottom: 8px; }
.bento-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.bento-decoration {
  margin-top: 20px;
  width: 100%;
  height: auto;
  opacity: 0.7;
}

/* ═══════════════════════════════════════
   CATEGORIES — Mobile: wrap, small
   ═══════════════════════════════════════ */
.categories-section { padding: 0 0 var(--section-pad); }

.categories-row {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.category-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
  -webkit-tap-highlight-color: transparent;
}

.cat-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   CALCULATOR — Mobile: stacked inputs
   ═══════════════════════════════════════ */
.calculator-section { padding: var(--section-pad) 0; }

.calc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  max-width: 640px;
  margin: 0 auto;
}

.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.calc-field label {
  display: block;
  font-size: 0.68rem;
  color: var(--text-secondary);
  margin-bottom: 5px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.calc-field input {
  width: 100%;
  padding: 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  color: var(--text);
  font-size: 1.1rem;
  font-family: var(--font-mono);
  font-weight: 500;
  outline: none;
  transition: border-color 0.2s;
  -moz-appearance: textfield;
  -webkit-tap-highlight-color: transparent;
}
.calc-field input::-webkit-outer-spin-button,
.calc-field input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.calc-field input:focus { border-color: var(--green); }

.calc-results {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
  padding: 16px 12px;
  background: var(--bg);
  border-radius: var(--radius-sm);
}
.calc-result-item { text-align: center; }
.calc-result-item .value {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1.2;
}
.calc-result-item .label {
  font-size: 0.6rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.syringe-wrap { margin-bottom: 12px; text-align: center; }
.syringe-wrap svg { max-width: 260px; margin: 0 auto; }
.calc-context {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.calc-cta {
  text-align: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.calc-cta p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

/* ═══════════════════════════════════════
   COMPOUND STRIP — Dual row, works at any width
   ═══════════════════════════════════════ */
.compound-strip {
  padding: 24px 0;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.compound-strip::before,
.compound-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.compound-strip::before { left: 0; background: linear-gradient(90deg, var(--bg) 0%, transparent 100%); }
.compound-strip::after { right: 0; background: linear-gradient(270deg, var(--bg) 0%, transparent 100%); }

.marquee-track {
  display: flex;
  gap: 8px;
  width: max-content;
}
.marquee-row-1 { animation: marquee-left 60s linear infinite; }
.marquee-row-2 { animation: marquee-right 70s linear infinite; }

@keyframes marquee-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marquee-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.compound-pill {
  flex-shrink: 0;
  padding: 6px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-tertiary);
  white-space: nowrap;
}
.pill-accent {
  color: var(--text-secondary);
  border-color: var(--border-accent);
}

/* ═══════════════════════════════════════
   RESOURCES — Mobile: single column
   ═══════════════════════════════════════ */
.resources-section { padding: var(--section-pad) 0; }

.resources-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.resource-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color 0.3s;
  -webkit-tap-highlight-color: transparent;
}
.resource-card:active { border-color: var(--border-accent); }
.resource-card h3 { font-size: 1rem; margin-bottom: 4px; }
.resource-card p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.resource-card .arrow {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.78rem;
  color: var(--green);
  font-weight: 600;
}

/* ═══════════════════════════════════════
   FAQ
   ═══════════════════════════════════════ */
.faq-section { padding: var(--section-pad) 0; }

.faq-list { max-width: 720px; margin: 0 auto; }
.faq-list details { border-bottom: 1px solid var(--border); }
.faq-list summary {
  padding: 18px 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--text-tertiary);
  flex-shrink: 0;
}
details[open] summary::after {
  content: '\2212';
  color: var(--green);
}
.faq-list .faq-answer {
  padding: 0 0 18px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════ */
.final-cta-section {
  position: relative;
  padding: var(--section-pad) 0;
  text-align: center;
  overflow: hidden;
}
.final-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0,255,136,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta-section h2 { margin-bottom: 12px; }
.final-cta-sub {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
}
.final-cta-legal {
  font-size: 0.68rem;
  color: var(--text-tertiary);
  margin-top: 16px;
}

/* ═══════════════════════════════════════
   STICKY MOBILE CTA — visible by default on mobile
   ═══════════════════════════════════════ */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(8,8,13,0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-icon { width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0; }
.sticky-text { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.sticky-name { font-family: var(--font-display); font-weight: 700; font-size: 0.85rem; color: var(--text); line-height: 1.2; }
.sticky-sub { font-size: 0.65rem; color: var(--text-secondary); line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-btn {
  display: inline-flex;
  padding: 9px 20px;
  background: var(--green);
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  border-radius: 100px;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}

/* ═══════════════════════════════════════
   REVEAL SYSTEM
   ═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.25,0.46,0.45,0.94),
              transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.24s; }

/* TikTok fallback */
.tt-fallback-btn {
  display: block;
  margin-top: 12px;
  padding: 14px 24px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}
.tt-fallback-btn.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════
   TABLET — min-width: 640px
   ═══════════════════════════════════════ */
@media (min-width: 640px) {
  :root { --section-pad: 64px; }
  .container { padding: 0 24px; }

  h1 { font-size: 2.6rem; }
  h2 { font-size: 1.8rem; }
  .section-header { margin-bottom: 40px; }

  .hero { padding-top: calc(60px + 56px); }
  .hero-sub { font-size: 1.05rem; }

  .hero-actions {
    flex-direction: row;
    justify-content: center;
  }
  .btn-primary, .btn-ghost { width: auto; }

  .hero-chart-card { padding: 18px 16px 12px; }

  .bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .bento-tall { grid-row: span 2; }
  .bento-card { padding: 28px 24px; }

  .calc-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
  }
  .calc-card { padding: 32px 28px; }
  .calc-result-item .value { font-size: 1.7rem; }

  .resources-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
}

/* ═══════════════════════════════════════
   DESKTOP — min-width: 1024px
   ═══════════════════════════════════════ */
@media (min-width: 1024px) {
  :root {
    --section-pad: clamp(80px, 10vw, 130px);
    --radius: 16px;
  }

  h1 { font-size: 3.6rem; letter-spacing: -0.03em; }
  h2 { font-size: 2.4rem; }
  h3 { font-size: 1.3rem; }
  .section-header { margin-bottom: 56px; }

  /* Hero → asymmetric grid */
  .hero { padding: calc(60px + 72px) 0 48px; }

  .hero-grid {
    flex-direction: row;
    text-align: left;
    gap: 56px;
    align-items: center;
  }
  .hero-text { max-width: 480px; flex-shrink: 0; }
  .hero-chart-side { flex: 1; min-width: 0; }

  .hero-actions { justify-content: flex-start; }
  .hero-trust { justify-content: flex-start; }

  .hero-glow {
    top: -20%;
    left: auto;
    right: -10%;
    width: 55%;
    height: 120%;
    transform: none;
    background: radial-gradient(ellipse at 60% 40%, rgba(0,255,136,0.06) 0%, transparent 65%);
  }

  .hero-chart-card { padding: 20px 20px 14px; }

  /* Buttons → inline, not full-width */
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,255,136,0.25); }
  .btn-ghost:hover { border-color: var(--green); color: var(--green); }

  /* Bento → richer spacing */
  .bento-grid { gap: 16px; }
  .bento-card { padding: 32px 28px; }
  .bento-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-3px);
  }

  /* Categories */
  .category-tag {
    font-size: 0.82rem;
    padding: 10px 20px;
    transition: border-color 0.25s, color 0.25s;
  }
  .category-tag:hover { border-color: var(--border-accent); color: var(--text); }

  /* Calculator */
  .calc-card { padding: 36px; }
  .calc-result-item .value { font-size: 1.8rem; }

  /* Resources → hover effects */
  .resource-card { padding: 28px 24px; transition: border-color 0.3s, transform 0.3s; }
  .resource-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-3px);
  }
  .resource-card .arrow { transition: transform 0.25s; }
  .resource-card:hover .arrow { transform: translateX(5px); }

  /* FAQ */
  .faq-list summary { font-size: 1.05rem; padding: 20px 0; }
  .faq-list summary:hover { color: var(--green); }

  /* CTA */
  .btn-glow { width: auto; max-width: none; }
  .btn-glow:hover { transform: translateY(-2px); }
  .final-cta-glow { width: 500px; height: 500px; }

  /* Sticky CTA → hide on desktop */
  .sticky-cta { display: none !important; }

  /* Compound strip */
  .compound-strip { padding: 32px 0; gap: 10px; }
  .compound-strip::before,
  .compound-strip::after { width: 100px; }
  .compound-pill { padding: 7px 16px; font-size: 0.78rem; }
  .compound-pill:hover { color: var(--text-secondary); border-color: rgba(255,255,255,0.12); }
}
