/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #06060f;
  --bg2: #0d0d1f;
  --purple: #0b0a25;
  --yellow: #f5c842;
  --text: #e8eaf6;
  --muted: #7b7fa8;
  --glass: rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.08);
  --grad: linear-gradient(135deg, #f5c842 0%, #f0a500 100%);
  --grad2: linear-gradient(135deg, #f0a500 0%, #f5c842 100%);
}
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-x: hidden;
  cursor: none;
}
#cursor { position: fixed; width: 12px; height: 12px; background: var(--yellow); border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); transition: width .2s, height .2s, opacity .2s; mix-blend-mode: screen; }
#cursor-ring { position: fixed; width: 36px; height: 36px; border: 1.5px solid rgba(245,200,66,0.5); border-radius: 50%; pointer-events: none; z-index: 9998; transform: translate(-50%,-50%); transition: width .3s, height .3s, border-color .3s; }
body:hover #cursor { opacity: 1; }

/* ========== NAV ========== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; gap: 12px;
  background: rgba(6,6,15,0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: all .3s;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 28px; width: auto; display: block; }
.nav-links { display: flex; gap: 6px; list-style: none; flex-shrink: 1; overflow: hidden; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 11px; font-weight: 500; letter-spacing: .2px; transition: color .2s; white-space: nowrap; padding: 4px 6px; border-radius: 4px; }
.nav-links a:hover { color: var(--yellow); background: rgba(245,200,66,0.08); }
.nav-cta {
  background: var(--grad); border: none; color: #fff; padding: 8px 18px;
  border-radius: 100px; font-size: 12px; font-weight: 700; cursor: none; flex-shrink: 0;
  letter-spacing: .5px; transition: opacity .2s, transform .2s;
}
.nav-cta:hover { opacity: .85; transform: scale(1.04); }

/* ========== SECTIONS ========== */
section {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 100px 48px 60px;
}
.section-inner { max-width: 1100px; width: 100%; }
#bg-canvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 20px;
}
.section-label::before { content: ''; width: 24px; height: 1.5px; background: var(--yellow); }

h1, h2 { line-height: 1.08; }
h1 { font-size: clamp(48px, 7vw, 88px); font-weight: 900; letter-spacing: -2px; }
h2 { font-size: clamp(36px, 5vw, 60px); font-weight: 800; letter-spacing: -1.5px; }
h3 { font-size: 22px; font-weight: 700; }
.grad-text { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.grad-text2 { background: var(--grad2); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(12px);
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.card:hover {
  border-color: rgba(245,200,66,0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(245,200,66,0.06);
}

.reveal { opacity: 0; transform: translateY(40px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ========== HERO ========== */
#hero { text-align: center; flex-direction: column; }
#hero .tagline {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(245,200,66,0.08); border: 1px solid rgba(245,200,66,0.25);
  padding: 8px 20px; border-radius: 100px; font-size: 13px; font-weight: 600;
  color: var(--yellow); margin-bottom: 32px;
}
.pulse-dot { width: 7px; height: 7px; background: var(--yellow); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity:1; box-shadow: 0 0 0 0 rgba(245,200,66,.6); } 50% { opacity:.7; box-shadow: 0 0 0 8px rgba(245,200,66,0); } }
#hero h1 { margin-bottom: 24px; }
#hero p { font-size: 20px; color: var(--muted); max-width: 640px; margin: 0 auto 48px; line-height: 1.6; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--grad); color: #fff; padding: 16px 40px; border-radius: 100px;
  font-size: 15px; font-weight: 700; text-decoration: none; cursor: none;
  transition: opacity .2s, transform .2s; letter-spacing: .3px;
}
.btn-primary:hover { opacity: .85; transform: scale(1.04); }
.btn-secondary {
  background: transparent; color: var(--text); padding: 15px 40px; border-radius: 100px;
  font-size: 15px; font-weight: 600; text-decoration: none; cursor: none;
  border: 1px solid var(--glass-border); transition: border-color .2s, color .2s, transform .2s;
}
.btn-secondary:hover { border-color: var(--yellow); color: var(--yellow); transform: scale(1.04); }
.hero-badges { display: flex; gap: 24px; justify-content: center; margin-top: 64px; flex-wrap: wrap; }
.hero-badge { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.hero-badge-val { font-size: 32px; font-weight: 900; color: var(--yellow); }
.hero-badge-label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; }
.hero-divider { width: 1px; height: 48px; background: var(--glass-border); }

/* ========== TICKER ========== */
.ticker-wrap { overflow: hidden; white-space: nowrap; border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); padding: 14px 0; margin-bottom: 0; background: rgba(11,10,37,0.15); }
.ticker-inner { display: inline-flex; animation: ticker 25s linear infinite; }
.ticker-inner span { padding: 0 40px; font-size: 13px; font-weight: 600; color: var(--muted); letter-spacing: 1px; }
.ticker-inner span b { color: var(--yellow); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ========== PROBLEM ========== */
#problem .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.problem-item { display: flex; gap: 20px; align-items: flex-start; }
.problem-icon { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; background: rgba(255,60,60,0.1); border: 1px solid rgba(255,60,60,0.2); }
.problem-item h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.problem-item p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ========== SOLUTION ========== */
#solution .split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.solution-list { list-style: none; display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.solution-list li { display: flex; align-items: flex-start; gap: 16px; font-size: 15px; line-height: 1.5; }
.solution-list li::before { content: ''; width: 20px; height: 20px; border-radius: 50%; background: var(--grad); flex-shrink: 0; margin-top: 2px; }
.terminal {
  background: #0d0d1f; border: 1px solid rgba(245,200,66,0.15);
  border-radius: 16px; overflow: hidden; font-family: 'Fira Code', 'Courier New', monospace;
  box-shadow: 0 0 60px rgba(245,200,66,0.06);
}
.terminal-bar { background: rgba(255,255,255,0.04); padding: 12px 16px; display: flex; align-items: center; gap: 8px; }
.terminal-dot { width: 12px; height: 12px; border-radius: 50%; }
.terminal-body { padding: 20px 24px; font-size: 13px; line-height: 1.7; }
.t-comment { color: #4a4a7a; }
.t-keyword { color: #c792ea; }
.t-string { color: #a8ff78; }
.t-func { color: var(--yellow); }
.t-var { color: #ffcb6b; }
.t-num { color: #f78c6c; }
.t-prop { color: #82aaff; }
.type-cursor { border-right: 2px solid var(--yellow); animation: blink .7s infinite; }
@keyframes blink { 0%,100% { border-color: var(--yellow); } 50% { border-color: transparent; } }

/* ========== PRODUCTS ========== */
#products .products-grid { display: grid; grid-template-columns: 5fr 4fr; gap: 24px; margin-top: 48px; }
.product-card { position: relative; overflow: hidden; }
.product-card .accent-bar { height: 3px; width: 60px; border-radius: 3px; margin-bottom: 20px; }
.product-badge { position: absolute; top: 20px; right: 20px; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; }
.badge-live { background: rgba(245,200,66,0.1); color: var(--yellow); border: 1px solid rgba(245,200,66,0.3); }
.badge-sdk { background: rgba(245,200,66,0.1); color: var(--yellow); border: 1px solid rgba(245,200,66,0.3); }
.badge-primary { background: rgba(245,200,66,0.1); color: var(--yellow); border: 1px solid rgba(245,200,66,0.3); }
.product-features { list-style: none; margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.product-features li { font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.product-features li::before { content: '›'; color: var(--yellow); font-weight: 700; }
.products-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 24px; }

/* ========== TRACTION ========== */
#traction .stat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 48px; }
.stat-card { text-align: center; }
.stat-val { font-size: clamp(36px,5vw,52px); font-weight: 900; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: block; }
.stat-label { font-size: 13px; color: var(--muted); margin-top: 6px; line-height: 1.4; }

/* ========== MARKET ========== */
#market .market-bars { display: flex; flex-direction: column; gap: 24px; margin-top: 48px; }
.market-bar-row { display: flex; flex-direction: column; gap: 10px; }
.market-bar-header { display: flex; justify-content: space-between; align-items: baseline; }
.market-bar-label { font-size: 15px; font-weight: 600; }
.market-bar-val { font-size: 22px; font-weight: 900; }
.market-bar-track { height: 12px; background: var(--glass); border-radius: 100px; border: 1px solid var(--glass-border); overflow: hidden; }
.market-bar-fill { height: 100%; border-radius: 100px; width: 0; transition: width 1.5s cubic-bezier(.16,1,.3,1); }

/* ========== BUSINESS MODEL ========== */
#bizmodel .model-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.model-card { position: relative; overflow: hidden; display: flex; flex-direction: column; }
.model-card::after { content: ''; position: absolute; bottom: -40px; right: -40px; width: 120px; height: 120px; border-radius: 50%; opacity: .06; }
.model-card.saas::after { background: var(--yellow); }
.model-card.sdk-card::after { background: var(--yellow); }
.model-target { margin-top: auto; padding: 12px; background: rgba(11,10,37,0.3); border-radius: 10px; border: 1px solid rgba(245,200,66,0.15); }
.model-price { font-size: 36px; font-weight: 900; margin: 16px 0; }
.model-price span { font-size: 14px; font-weight: 400; color: var(--muted); }
.model-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.model-features li { font-size: 14px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.model-features li::before { content: '✓'; color: var(--yellow); font-weight: 700; }

/* ========== GTM ========== */
.gtm-flywheel { display: flex; align-items: center; justify-content: center; gap: 0; margin: 48px 0 16px; flex-wrap: wrap; }
.gtm-flywheel-step { display: flex; align-items: center; gap: 0; }
.gtm-flywheel-node { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 12px; padding: 12px 20px; font-size: 13px; font-weight: 600; text-align: center; white-space: nowrap; }
.gtm-flywheel-node.active { background: rgba(245,200,66,0.1); border-color: rgba(245,200,66,0.35); color: var(--yellow); }
.gtm-flywheel-arrow { color: var(--muted); font-size: 18px; margin: 0 8px; opacity: 0.5; }
.gtm-flywheel-caption { text-align: center; font-size: 13px; color: var(--muted); margin-bottom: 40px; font-style: italic; }
#gtm .phase-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.phase-card { position: relative; overflow: hidden; }
.phase-num { font-size: 100px; font-weight: 900; position: absolute; top: -16px; right: -6px; opacity: .04; line-height: 1; color: var(--muted); }
.phase-tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; margin-bottom: 12px; }
.phase-tag.capture { background: rgba(245,200,66,0.1); color: var(--yellow); border: 1px solid rgba(245,200,66,0.25); }
.phase-tag.convert { background: rgba(245,200,66,0.1); color: var(--yellow); border: 1px solid rgba(245,200,66,0.25); }
.phase-tag.scale { background: rgba(245,200,66,0.1); color: var(--yellow); border: 1px solid rgba(245,200,66,0.25); }
.phase-card h3 { font-size: 18px; margin-bottom: 16px; }
.gtm-tactics { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 0; padding: 0; }
.gtm-tactics li { font-size: 13px; color: var(--muted); line-height: 1.5; display: flex; align-items: flex-start; gap: 8px; }
.gtm-tactics li::before { content: '›'; color: var(--yellow); font-weight: 700; flex-shrink: 0; margin-top: 0; }
.gtm-target { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--glass-border); font-size: 13px; }
.gtm-target strong { display: block; font-size: 20px; margin-top: 4px; }
.gtm-target strong.green { color: var(--yellow); }
.gtm-target strong.purple { color: var(--yellow); }
.gtm-target strong.blue { color: var(--yellow); }
.gtm-playbook { margin-top: 32px; padding: 20px 28px; background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 16px; text-align: center; font-size: 14px; color: var(--muted); line-height: 1.7; }
.gtm-playbook strong { color: var(--text); }

/* ========== TEAM ========== */
#team .team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 48px; }
.team-card { display: flex; gap: 24px; align-items: flex-start; }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 32px; font-weight: 900; color: #fff; }
.avatar-sam { background: linear-gradient(135deg, var(--yellow), var(--purple)); }
.avatar-karl { background: linear-gradient(135deg, #1a1440, #0b0a25); }
.team-info h3 { font-size: 20px; margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--yellow); font-weight: 600; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px; }
.team-bio { font-size: 14px; color: var(--muted); line-height: 1.6; }
.team-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.team-tag { font-size: 11px; padding: 4px 10px; border-radius: 6px; background: var(--glass); border: 1px solid var(--glass-border); color: var(--muted); }

/* ========== ASK ========== */
#ask { text-align: center; }
.ask-amount { font-size: clamp(64px, 10vw, 120px); font-weight: 900; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin: 24px 0; }
.ask-subtitle { font-size: 18px; color: var(--muted); margin-bottom: 48px; }
#donut-wrap { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; margin-top: 48px; }
#donut-svg { width: 220px; height: 220px; flex-shrink: 0; }
.donut-legend { display: flex; flex-direction: column; gap: 14px; text-align: left; }
.legend-row { display: flex; align-items: center; gap: 12px; font-size: 14px; }
.legend-dot { width: 12px; height: 12px; border-radius: 3px; flex-shrink: 0; }
.legend-pct { font-weight: 700; font-size: 15px; margin-left: auto; color: var(--text); }
.ask-tagline { margin-top: 48px; font-size: 15px; color: var(--muted); font-style: italic; }

/* ========== THANK YOU ========== */
#thankyou { text-align: center; flex-direction: column; background: radial-gradient(ellipse at center, rgba(245,200,66,0.06) 0%, transparent 70%); }
#thankyou h1 { margin-bottom: 16px; }
#thankyou p { color: var(--muted); font-size: 18px; margin-bottom: 48px; }
.contact-cards { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-top: 48px; }
.contact-card { padding: 16px 28px; border-radius: 14px; background: var(--glass); border: 1px solid var(--glass-border); font-size: 14px; transition: all .3s; }
.contact-card:hover { border-color: var(--yellow); transform: translateY(-2px); }
.contact-card span { display: block; font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 4px; }

.orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }

/* ========== INSTALL BAR ========== */
.install-bar {
  background: #0d0d1f; border: 1px solid rgba(245,200,66,0.15); border-radius: 12px;
  padding: 14px 20px; font-family: 'Fira Code', monospace; font-size: 14px;
  display: flex; align-items: center; gap: 12px; margin-top: 32px; max-width: 520px;
}
.install-bar .prompt { color: var(--yellow); font-weight: 700; }
.install-bar .cmd { color: var(--text); }
.install-bar .flag { color: var(--yellow); }

/* ========== WHY NOW ========== */
#whynow .timing-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-top: 48px; }
.timing-card { position: relative; overflow: hidden; }
.timing-card .timing-icon { font-size: 32px; margin-bottom: 16px; }
.timing-card h4 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.timing-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.timing-card .timing-stat { font-size: 28px; font-weight: 900; margin-top: 12px; }

/* ========== COMPETITIVE LANDSCAPE ========== */
.comp-table { width: 100%; border-collapse: collapse; margin-top: 48px; font-size: 13px; }
.comp-table th { text-align: left; padding: 14px 16px; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); border-bottom: 1px solid var(--glass-border); }
.comp-table td { padding: 14px 16px; border-bottom: 1px solid var(--glass-border); color: var(--muted); vertical-align: top; }
.comp-table tr:hover td { background: rgba(255,255,255,0.02); }
.comp-table .comp-hiyve { color: var(--text); font-weight: 600; }
.comp-table .comp-hiyve td { background: rgba(11,10,37,0.6); border-color: rgba(245,200,66,0.15); }
.comp-check { color: var(--yellow); font-weight: 700; }
.comp-partial { color: var(--muted); }
.comp-no { color: #ff5555; opacity: 0.5; }
.comp-highlight { background: rgba(245,200,66,0.08); border: 1px solid rgba(245,200,66,0.25); border-radius: 6px; padding: 2px 8px; color: var(--yellow); font-weight: 700; }
.comp-moat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 32px; }
.comp-moat-card { text-align: center; padding: 24px 20px; }
.comp-moat-card h4 { font-size: 15px; font-weight: 700; margin: 12px 0 8px; }
.comp-moat-card p { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ========== PATH TO SERIES A ========== */
.milestone-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 48px; }
.milestone-card { text-align: center; position: relative; }
.milestone-card::after { content: '→'; position: absolute; right: -14px; top: 50%; transform: translateY(-50%); color: var(--glass-border); font-size: 20px; font-weight: 700; }
.milestone-card:last-child::after { display: none; }
.milestone-num { font-size: 13px; font-weight: 700; color: var(--yellow); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
.milestone-val { font-size: 28px; font-weight: 900; margin: 8px 0; }

/* ========== ORIGIN STORY ========== */
#origin .origin-timeline { display: flex; flex-direction: column; gap: 20px; margin-top: 48px; }
.origin-step { display: flex; gap: 24px; align-items: flex-start; }
.origin-marker { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.origin-dot { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.origin-line { width: 2px; height: 24px; background: var(--glass-border); }
.origin-content h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.origin-content p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ========== FAQ ========== */
#faq .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
.faq-item { cursor: pointer; transition: all .3s; }
.faq-item:hover { border-color: rgba(245,200,66,0.3); }
.faq-q { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; font-weight: 700; color: var(--text); }
.faq-q::before { content: 'Q'; font-size: 11px; font-weight: 800; padding: 3px 7px; border-radius: 6px; background: rgba(245,200,66,0.1); color: var(--yellow); flex-shrink: 0; margin-top: 1px; }
.faq-a { margin-top: 12px; padding-left: 32px; font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  nav { padding: 14px 20px; }
  .nav-links { display: none; }
  section { padding: 80px 20px 40px; }
  #problem .grid, #solution .split, #products .products-grid,
  #traction .stat-grid, #bizmodel .model-grid, #gtm .phase-grid, .gtm-flywheel,
  #team .team-grid, .products-row2, #whynow .timing-grid, #faq .faq-grid,
  .comp-moat-grid, .milestone-grid { grid-template-columns: 1fr; }
  .milestone-card::after { display: none; }
  .comp-table { font-size: 11px; display: block; overflow-x: auto; }
  .comp-table th, .comp-table td { padding: 10px 8px; white-space: nowrap; }
  #products .products-grid { grid-template-columns: 1fr; }
  /* Force inline grids to stack on mobile */
  #products [style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
  #market [style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
}

/* ========== DEMO BUTTON & MODAL ========== */
.btn-demo {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--grad); color: #fff; padding: 14px 36px;
  border-radius: 100px; border: none; font-size: 15px; font-weight: 700;
  cursor: none; letter-spacing: .3px;
  transition: opacity .2s, transform .2s;
}
.btn-demo:hover { opacity: .85; transform: scale(1.04); }
.demo-pulse {
  width: 8px; height: 8px; background: #fff; border-radius: 50%;
  animation: pulse 2s infinite;
}
