:root {
  --ink: #07111f;
  --ink-2: #101c33;
  --text: #162338;
  --muted: #627087;
  --line: #dfe5ee;
  --soft: #f4f7fb;
  --white: #ffffff;
  --coral: #ff526d;
  --violet: #7c5cfc;
  --blue: #3a7bff;
  --cyan: #38dcc8;
  --success: #15a57a;
  --warning: #f6a93b;
  --danger: #e5435d;
  --gradient: linear-gradient(135deg, var(--coral), var(--violet) 52%, var(--blue));
  --gradient-soft: linear-gradient(135deg, rgba(255, 82, 109, 0.11), rgba(124, 92, 252, 0.09) 52%, rgba(58, 123, 255, 0.09));
  --shadow-sm: 0 10px 30px rgba(7, 17, 31, 0.08);
  --shadow-md: 0 22px 70px rgba(7, 17, 31, 0.14);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1200px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { background: rgba(124, 92, 252, 0.22); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 14px;
  color: white;
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
.site-shell { min-height: 100vh; overflow: hidden; }
.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.section { padding: 104px 0; }
.section-sm { padding: 72px 0; }
.section-dark { color: white; background: var(--ink); }
.section-soft { background: var(--soft); }
.section-gradient { background: var(--gradient-soft); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--violet);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 8px;
  height: 8px;
  content: "";
  background: var(--gradient);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(124, 92, 252, 0.1);
}
.section-dark .eyebrow { color: #b8aaff; }
.section-heading { max-width: 730px; margin-bottom: 44px; }
.section-heading.center { margin-right: auto; margin-left: auto; text-align: center; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.08; letter-spacing: -0.035em; }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: white; }
h1 { font-size: clamp(3rem, 7vw, 6.6rem); }
h2 { margin-bottom: 18px; font-size: clamp(2.2rem, 4.4vw, 4.2rem); }
h3 { margin-bottom: 12px; font-size: 1.35rem; }
.lead { color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.3rem); line-height: 1.65; }
.section-dark .lead, .section-dark .muted { color: #aebbd0; }
.gradient-text {
  color: transparent;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
}
.kicker { color: var(--muted); font-size: 0.95rem; }

.button-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .nav-link:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, .reaction-button:focus-visible {
  outline: 3px solid rgba(56, 220, 200, 0.45);
  outline-offset: 3px;
}
.button-primary { color: white; background: var(--gradient); box-shadow: 0 12px 28px rgba(124, 92, 252, 0.25); }
.button-primary:hover { box-shadow: 0 18px 36px rgba(124, 92, 252, 0.34); }
.button-dark { color: white; background: var(--ink); }
.button-dark:hover { background: #15233a; box-shadow: var(--shadow-sm); }
.button-ghost { color: var(--ink); background: transparent; border-color: var(--line); }
.button-ghost:hover { background: var(--soft); border-color: #cbd4e1; }
.button-light { color: var(--ink); background: white; }
.button-sm { min-height: 42px; padding: 0 17px; font-size: 0.9rem; }
.button-arrow::after { content: "→"; transition: transform 160ms ease; }
.button-arrow:hover::after { transform: translateX(3px); }
.text-link { color: var(--violet); font-weight: 800; }
.text-link:hover { text-decoration: underline; }

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.site-header.is-scrolled { border-color: rgba(223, 229, 238, 0.88); box-shadow: 0 8px 30px rgba(7, 17, 31, 0.05); }
.header-inner { display: grid; grid-template-columns: auto 1fr auto; min-height: 82px; align-items: center; gap: 34px; }
.brand { display: inline-flex; align-items: center; }
.brand img { display: block; width: 146px; }
.primary-nav { display: flex; justify-content: center; align-items: center; gap: 4px; }
.nav-link { position: relative; padding: 10px 13px; color: #47556b; border-radius: 10px; font-size: 0.92rem; font-weight: 750; }
.nav-link:hover, .nav-link.active { color: var(--ink); background: var(--soft); }
.nav-link.active::after {
  position: absolute;
  right: 14px;
  bottom: 4px;
  left: 14px;
  height: 2px;
  content: "";
  background: var(--gradient);
  border-radius: 999px;
}
.header-actions { display: flex; align-items: center; gap: 9px; }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 9px; background: white; border: 1px solid var(--line); border-radius: 12px; }
.nav-toggle span:not(.sr-only) { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--ink); border-radius: 4px; }

.hero {
  position: relative;
  min-height: 820px;
  padding: 170px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 16%, rgba(255, 82, 109, 0.08), transparent 26%),
    radial-gradient(circle at 84% 20%, rgba(124, 92, 252, 0.14), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fafbfe 100%);
}
.hero::before {
  position: absolute;
  top: 100px;
  right: -150px;
  width: 580px;
  height: 580px;
  content: "";
  border: 1px solid rgba(124, 92, 252, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(124, 92, 252, 0.03), 0 0 0 180px rgba(58, 123, 255, 0.02);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(480px, 1.05fr); align-items: center; gap: 58px; }
.hero-copy { max-width: 670px; }
.hero h1 { margin-bottom: 26px; }
.hero .lead { max-width: 650px; margin-bottom: 34px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 34px; color: var(--muted); font-size: 0.88rem; font-weight: 700; }
.hero-proof span { display: inline-flex; align-items: center; gap: 8px; }
.hero-proof span::before { width: 18px; height: 18px; content: "✓"; color: var(--success); background: rgba(21, 165, 122, 0.1); border-radius: 50%; font-size: 0.72rem; text-align: center; line-height: 18px; }

.product-stage { position: relative; padding: 24px; }
.product-stage::before { position: absolute; inset: 0; content: ""; background: var(--gradient); border-radius: 40px; opacity: 0.1; filter: blur(4px); transform: rotate(-3deg); }
.tv-frame { position: relative; padding: 14px; background: #050b14; border: 1px solid #1f2b3d; border-radius: 30px; box-shadow: 0 38px 90px rgba(7, 17, 31, 0.28); }
.tv-topbar { display: flex; min-height: 46px; align-items: center; justify-content: space-between; padding: 0 11px; color: #a9b6c9; font-size: 0.73rem; font-weight: 700; }
.live-badge { display: inline-flex; align-items: center; gap: 7px; color: white; }
.live-badge::before { width: 8px; height: 8px; content: ""; background: var(--coral); border-radius: 50%; box-shadow: 0 0 0 5px rgba(255, 82, 109, 0.16); animation: pulse 1.7s infinite; }
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(0.82); opacity: 0.65; } }
.tv-screen { position: relative; min-height: 330px; overflow: hidden; background: linear-gradient(145deg, #182842, #0c1526 70%); border-radius: 20px; }
.field-lines { position: absolute; inset: 0; opacity: 0.48; background: linear-gradient(90deg, transparent 49.5%, rgba(255,255,255,0.25) 50%, transparent 50.5%), radial-gradient(circle at 50% 50%, transparent 0 18%, rgba(255,255,255,0.28) 18.5% 19%, transparent 19.5%), linear-gradient(160deg, rgba(56, 220, 200, 0.34), rgba(58, 123, 255, 0.03) 48%, rgba(255, 82, 109, 0.25)); }
.game-score { position: absolute; top: 22px; left: 22px; display: flex; align-items: center; gap: 13px; padding: 10px 14px; color: white; background: rgba(7,17,31,0.78); border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; backdrop-filter: blur(10px); font-size: 0.78rem; font-weight: 800; }
.game-score strong { color: var(--cyan); font-size: 1.1rem; }
.player-orb { position: absolute; top: 45%; left: 55%; width: 72px; height: 72px; background: var(--gradient); border: 5px solid white; border-radius: 50%; box-shadow: 0 14px 40px rgba(7,17,31,0.3); transform: translate(-50%, -50%); }
.player-orb::after { position: absolute; top: 50%; left: 50%; width: 16px; height: 16px; content: ""; background: white; border-radius: 50%; transform: translate(-50%, -50%); }
.screen-caption { position: absolute; right: 20px; bottom: 18px; left: 20px; display: flex; align-items: end; justify-content: space-between; color: white; }
.screen-caption h3 { margin: 0; color: white; font-size: 1rem; }
.screen-caption p { margin: 3px 0 0; color: #b6c2d5; font-size: 0.75rem; }
.viewer-count { padding: 8px 11px; background: rgba(7,17,31,0.72); border: 1px solid rgba(255,255,255,0.12); border-radius: 999px; font-size: 0.7rem; }
.reaction-bar { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; padding: 10px 0 0; }
.reaction-button { display: flex; min-width: 0; min-height: 54px; align-items: center; justify-content: center; gap: 5px; color: white; background: #101b2d; border: 1px solid #213047; border-radius: 15px; font-size: 0.76rem; font-weight: 800; transition: transform 140ms ease, background 140ms ease, border-color 140ms ease; }
.reaction-button:hover, .reaction-button.is-active { background: #182944; border-color: #405c85; transform: translateY(-2px); }
.reaction-button .emoji { font-size: 1.15rem; }
.floating-comment { position: absolute; z-index: 4; max-width: 210px; padding: 12px 14px; color: #24324a; background: white; border: 1px solid var(--line); border-radius: 15px; box-shadow: var(--shadow-sm); font-size: 0.76rem; animation: float 4s ease-in-out infinite; }
.floating-comment strong { display: block; margin-bottom: 3px; color: var(--ink); font-size: 0.72rem; }
.comment-one { top: 3%; right: -4%; }
.comment-two { bottom: 16%; left: -8%; animation-delay: -1.4s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.logo-strip { padding: 30px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: white; }
.logo-strip-inner { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 32px; }
.logo-strip p { margin: 0; color: var(--muted); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.category-list { display: flex; flex-wrap: wrap; justify-content: space-around; gap: 18px 30px; color: #627087; font-size: 1rem; font-weight: 800; }
.category-list span { display: inline-flex; align-items: center; gap: 8px; }
.category-list i { width: 9px; height: 9px; background: var(--gradient); border-radius: 50%; }

.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.stat { padding: 36px 30px; background: white; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; margin-bottom: 8px; color: var(--ink); font-size: clamp(2rem, 4vw, 3.6rem); line-height: 1; letter-spacing: -0.05em; }
.stat span { color: var(--muted); font-size: 0.9rem; font-weight: 700; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card { position: relative; min-height: 300px; padding: 30px; overflow: hidden; background: white; border: 1px solid var(--line); border-radius: var(--radius-md); transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease; }
.feature-card:hover { border-color: #c8d2df; box-shadow: var(--shadow-sm); transform: translateY(-5px); }
.feature-card.large { grid-column: span 2; }
.feature-card.dark { color: white; background: var(--ink); border-color: var(--ink); }
.feature-card.dark h3 { color: white; }
.feature-card p { color: var(--muted); }
.feature-card.dark p { color: #aebbd0; }
.icon-box { display: inline-grid; width: 48px; height: 48px; margin-bottom: 58px; place-items: center; color: white; background: var(--gradient); border-radius: 14px; box-shadow: 0 10px 28px rgba(124,92,252,0.22); font-size: 1.15rem; font-weight: 900; }
.feature-card.dark .icon-box { color: var(--ink); background: var(--cyan); }
.feature-number { position: absolute; top: 25px; right: 27px; color: #d8dee8; font-size: 0.78rem; font-weight: 900; letter-spacing: 0.1em; }
.feature-card.dark .feature-number { color: #44516a; }

.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 78px; }
.split-copy { max-width: 570px; }
.check-list { display: grid; gap: 16px; margin: 28px 0 34px; padding: 0; list-style: none; }
.check-list li { display: grid; grid-template-columns: 24px 1fr; gap: 11px; color: #34435a; }
.check-list li::before { display: grid; width: 22px; height: 22px; place-items: center; content: "✓"; color: var(--success); background: rgba(21,165,122,0.11); border-radius: 50%; font-size: 0.7rem; font-weight: 900; }

.dashboard-card { padding: 18px; background: white; border: 1px solid var(--line); border-radius: 28px; box-shadow: var(--shadow-md); }
.dashboard-header { display: flex; align-items: center; justify-content: space-between; padding: 8px 7px 20px; }
.dashboard-header strong { color: var(--ink); font-size: 0.9rem; }
.dashboard-header span { color: var(--muted); font-size: 0.75rem; }
.chart-area { position: relative; min-height: 310px; padding: 20px; overflow: hidden; background: linear-gradient(180deg, #f9fbfe, #f2f5fa); border: 1px solid #e8edf4; border-radius: 20px; }
.chart-lines { position: absolute; inset: 22px; background: repeating-linear-gradient(to bottom, transparent 0 55px, #dfe5ee 56px 57px); }
.chart-svg { position: absolute; inset: 42px 26px 44px; }
.chart-svg svg { width: 100%; height: 100%; overflow: visible; }
.chart-legend { position: absolute; right: 20px; bottom: 16px; left: 20px; display: flex; gap: 18px; color: var(--muted); font-size: 0.68rem; font-weight: 700; }
.chart-legend span { display: flex; align-items: center; gap: 6px; }
.chart-legend i { width: 8px; height: 8px; border-radius: 50%; background: var(--violet); }
.chart-legend span:nth-child(2) i { background: var(--coral); }
.chart-legend span:nth-child(3) i { background: var(--cyan); }
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 10px; }
.metric { padding: 15px; background: var(--soft); border-radius: 14px; }
.metric strong { display: block; color: var(--ink); font-size: 1.25rem; }
.metric span { color: var(--muted); font-size: 0.7rem; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; counter-reset: step; }
.step { position: relative; padding-top: 80px; counter-increment: step; }
.step::before { position: absolute; top: 0; left: 0; display: grid; width: 56px; height: 56px; place-items: center; content: "0" counter(step); color: white; background: var(--ink); border-radius: 17px; font-size: 0.9rem; font-weight: 900; }
.step:not(:last-child)::after { position: absolute; top: 27px; right: -5px; left: 82px; height: 1px; content: ""; background: linear-gradient(90deg, var(--line), transparent); }
.step p { color: var(--muted); }

.quote-card { display: grid; grid-template-columns: 0.9fr 1.1fr; min-height: 430px; overflow: hidden; background: var(--ink); border-radius: 34px; box-shadow: var(--shadow-md); }
.quote-art { position: relative; overflow: hidden; background: var(--gradient); }
.quote-art::before { position: absolute; top: -150px; left: -80px; width: 390px; height: 390px; content: ""; border: 70px solid rgba(255,255,255,0.13); border-radius: 50%; }
.quote-art::after { position: absolute; right: -100px; bottom: -100px; width: 300px; height: 300px; content: ""; background: rgba(56,220,200,0.22); border-radius: 48% 52% 31% 69%; transform: rotate(23deg); }
.quote-mark { position: absolute; top: 50%; left: 50%; width: 140px; transform: translate(-50%, -50%) rotate(-5deg); }
.quote-copy { display: flex; flex-direction: column; justify-content: center; padding: 60px; color: white; }
.quote-copy blockquote { margin: 0 0 28px; font-size: clamp(1.45rem, 3vw, 2.55rem); font-weight: 700; line-height: 1.3; letter-spacing: -0.03em; }
.quote-copy p { margin: 0; color: #aebbd0; font-size: 0.9rem; }

.cta-panel { position: relative; padding: 74px; overflow: hidden; color: white; background: var(--ink); border-radius: 34px; }
.cta-panel::before { position: absolute; top: -180px; right: -130px; width: 520px; height: 520px; content: ""; background: radial-gradient(circle, rgba(124,92,252,0.55), rgba(124,92,252,0) 68%); }
.cta-panel::after { position: absolute; bottom: -170px; left: 20%; width: 430px; height: 430px; content: ""; background: radial-gradient(circle, rgba(56,220,200,0.2), rgba(56,220,200,0) 70%); }
.cta-content { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; }
.cta-panel h2 { max-width: 720px; margin-bottom: 16px; color: white; }
.cta-panel p { max-width: 690px; margin: 0; color: #aebbd0; font-size: 1.08rem; }

.form-card { padding: 28px; background: white; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: grid; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { color: var(--ink); font-size: 0.78rem; font-weight: 800; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--text);
  background: white;
  border: 1px solid #d6deea;
  border-radius: 12px;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--violet); box-shadow: 0 0 0 4px rgba(124,92,252,0.1); outline: 0; }
.form-note { margin: 14px 0 0; color: var(--muted); font-size: 0.75rem; }
.form-status { display: none; margin-top: 14px; padding: 12px 14px; border-radius: 10px; font-size: 0.85rem; font-weight: 700; }
.form-status.is-success { display: block; color: #086e52; background: rgba(21,165,122,0.1); }
.form-status.is-error { display: block; color: #a9293c; background: rgba(229,67,93,0.1); }
.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.page-hero { position: relative; padding: 176px 0 95px; overflow: hidden; text-align: center; background: linear-gradient(180deg, #fff, #f8faff); }
.page-hero::before { position: absolute; top: 90px; left: 50%; width: 720px; height: 420px; content: ""; background: radial-gradient(circle, rgba(124,92,252,0.12), rgba(124,92,252,0) 70%); transform: translateX(-50%); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { max-width: 960px; margin-right: auto; margin-bottom: 24px; margin-left: auto; font-size: clamp(3rem, 6.5vw, 6rem); }
.page-hero .lead { max-width: 760px; margin-right: auto; margin-bottom: 0; margin-left: auto; }
.page-hero .button-row { justify-content: center; margin-top: 34px; }

.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.bento-card { min-height: 310px; padding: 34px; background: white; border: 1px solid var(--line); border-radius: 24px; }
.bento-card.span-7 { grid-column: span 7; }
.bento-card.span-5 { grid-column: span 5; }
.bento-card.span-4 { grid-column: span 4; }
.bento-card.span-8 { grid-column: span 8; }
.bento-card h3 { font-size: 1.55rem; }
.bento-card p { color: var(--muted); }
.bento-visual { position: relative; min-height: 160px; margin-bottom: 28px; overflow: hidden; background: var(--soft); border-radius: 16px; }
.pulse-visual { display: flex; align-items: end; justify-content: center; gap: 7px; padding: 30px; }
.pulse-visual span { width: 12px; background: var(--gradient); border-radius: 999px; animation: bars 1.4s ease-in-out infinite alternate; }
.pulse-visual span:nth-child(1) { height: 36px; }
.pulse-visual span:nth-child(2) { height: 78px; animation-delay: -0.8s; }
.pulse-visual span:nth-child(3) { height: 110px; animation-delay: -0.3s; }
.pulse-visual span:nth-child(4) { height: 64px; animation-delay: -1s; }
.pulse-visual span:nth-child(5) { height: 92px; animation-delay: -0.5s; }
@keyframes bars { to { transform: scaleY(0.65); opacity: 0.65; } }
.comment-stack { padding: 22px; }
.comment-stack div { width: 75%; margin: 0 0 9px; padding: 12px 15px; background: white; border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 8px 18px rgba(7,17,31,0.05); font-size: 0.72rem; }
.comment-stack div:nth-child(2) { margin-left: 18%; }
.comment-stack div:nth-child(3) { width: 62%; margin-left: 7%; }
.vote-visual { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 22px; }
.vote-visual div { display: grid; min-height: 100px; place-items: center; color: var(--ink); background: white; border: 1px solid var(--line); border-radius: 16px; font-size: 1.5rem; font-weight: 900; }
.vote-visual div:first-child { color: white; background: var(--gradient); border-color: transparent; }

.demo-shell { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(340px, 0.55fr); gap: 18px; }
.demo-video { overflow: hidden; background: #050b14; border-radius: 24px; box-shadow: var(--shadow-md); }
.demo-video-screen { position: relative; min-height: 520px; overflow: hidden; background: linear-gradient(145deg, #152941, #07111f); }
.demo-video-screen .field-lines { opacity: 0.7; }
.demo-overlay { position: absolute; right: 0; bottom: 0; left: 0; padding: 90px 28px 26px; color: white; background: linear-gradient(transparent, rgba(5,11,20,0.94)); }
.demo-overlay h2 { margin: 0 0 4px; color: white; font-size: 1.9rem; }
.demo-overlay p { margin: 0; color: #b9c5d7; }
.demo-controls { display: flex; gap: 8px; padding: 12px; }
.demo-controls .reaction-button { flex: 1; }
.demo-sidebar { display: flex; min-height: 610px; flex-direction: column; overflow: hidden; background: white; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow-sm); }
.demo-tabs { display: grid; grid-template-columns: 1fr 1fr; padding: 8px; background: var(--soft); border-bottom: 1px solid var(--line); }
.demo-tab { padding: 11px; color: var(--muted); background: transparent; border: 0; border-radius: 10px; font-size: 0.82rem; font-weight: 800; }
.demo-tab.is-active { color: var(--ink); background: white; box-shadow: 0 5px 15px rgba(7,17,31,0.08); }
.comment-feed { display: flex; flex: 1; flex-direction: column; gap: 14px; padding: 20px; overflow-y: auto; }
.comment-item { display: grid; grid-template-columns: 34px 1fr; gap: 10px; }
.avatar { display: grid; width: 34px; height: 34px; place-items: center; color: white; background: var(--gradient); border-radius: 50%; font-size: 0.72rem; font-weight: 900; }
.comment-body { padding: 10px 12px; background: var(--soft); border-radius: 4px 14px 14px; }
.comment-body strong { display: block; margin-bottom: 2px; color: var(--ink); font-size: 0.72rem; }
.comment-body p { margin: 0; color: #445269; font-size: 0.76rem; line-height: 1.45; }
.comment-meta { margin-top: 4px; color: #98a3b3; font-size: 0.62rem; }
.comment-compose { display: grid; grid-template-columns: 1fr auto; gap: 8px; padding: 14px; border-top: 1px solid var(--line); }
.comment-compose input { min-width: 0; min-height: 42px; padding: 0 13px; border: 1px solid #d6deea; border-radius: 999px; }
.comment-compose button { width: 42px; height: 42px; color: white; background: var(--gradient); border: 0; border-radius: 50%; font-weight: 900; }
.reaction-surge { position: absolute; z-index: 6; pointer-events: none; font-size: 2rem; animation: surge 1.2s ease-out forwards; }
@keyframes surge { 0% { opacity: 0; transform: translateY(0) scale(0.6) rotate(-8deg); } 20% { opacity: 1; } 100% { opacity: 0; transform: translateY(-130px) scale(1.25) rotate(8deg); } }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.price-card { position: relative; display: flex; min-height: 520px; flex-direction: column; padding: 34px; background: white; border: 1px solid var(--line); border-radius: 26px; }
.price-card.featured { color: white; background: var(--ink); border-color: var(--ink); box-shadow: var(--shadow-md); transform: translateY(-12px); }
.price-card.featured h3, .price-card.featured .price { color: white; }
.price-card .tag { position: absolute; top: 20px; right: 20px; padding: 6px 10px; color: white; background: var(--gradient); border-radius: 999px; font-size: 0.65rem; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.price-card h3 { margin: 0 0 8px; font-size: 1.4rem; }
.price-card > p { min-height: 50px; color: var(--muted); }
.price-card.featured > p, .price-card.featured li { color: #aebbd0; }
.price { margin: 26px 0; color: var(--ink); font-size: 2.6rem; font-weight: 900; letter-spacing: -0.05em; }
.price small { color: var(--muted); font-size: 0.8rem; font-weight: 700; letter-spacing: 0; }
.price-list { display: grid; gap: 13px; margin: 0 0 32px; padding: 0; list-style: none; }
.price-list li { display: grid; grid-template-columns: 20px 1fr; gap: 8px; color: #405068; font-size: 0.88rem; }
.price-list li::before { content: "✓"; color: var(--success); font-weight: 900; }
.price-card .button { margin-top: auto; }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 22px; }
.compare-table { width: 100%; min-width: 760px; border-collapse: collapse; background: white; }
.compare-table th, .compare-table td { padding: 18px 20px; border-bottom: 1px solid var(--line); text-align: left; }
.compare-table th { color: var(--ink); background: var(--soft); font-size: 0.82rem; }
.compare-table td { color: #46556b; font-size: 0.86rem; }
.compare-table tr:last-child td { border-bottom: 0; }
.compare-table td:not(:first-child), .compare-table th:not(:first-child) { text-align: center; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.team-card { padding: 30px; background: white; border: 1px solid var(--line); border-radius: 22px; }
.team-avatar { display: grid; width: 68px; height: 68px; margin-bottom: 24px; place-items: center; color: white; background: var(--gradient); border-radius: 20px; font-size: 1.2rem; font-weight: 900; }
.team-card p { color: var(--muted); }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card { padding: 30px; border-top: 3px solid transparent; border-image: var(--gradient) 1; background: white; box-shadow: var(--shadow-sm); }
.value-card p { color: var(--muted); }

.contact-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 70px; align-items: start; }
.contact-points { display: grid; gap: 18px; margin-top: 30px; }
.contact-point { display: grid; grid-template-columns: 44px 1fr; gap: 14px; }
.contact-point i { display: grid; width: 44px; height: 44px; place-items: center; color: white; background: var(--gradient); border-radius: 13px; font-style: normal; font-weight: 900; }
.contact-point strong { display: block; color: var(--ink); }
.contact-point span { color: var(--muted); font-size: 0.88rem; }

.legal-copy { max-width: 860px; margin: 0 auto; }
.legal-copy h2 { margin-top: 52px; font-size: 1.8rem; }
.legal-copy h3 { margin-top: 32px; font-size: 1.15rem; }
.legal-copy p, .legal-copy li { color: #526078; }
.legal-copy a { color: var(--violet); text-decoration: underline; }
.legal-meta { margin-bottom: 38px; padding: 18px 20px; color: var(--muted); background: var(--soft); border-radius: 14px; }

.faq-list { display: grid; gap: 12px; max-width: 860px; margin: 0 auto; }
.faq-item { overflow: hidden; background: white; border: 1px solid var(--line); border-radius: 16px; }
.faq-question { display: flex; width: 100%; align-items: center; justify-content: space-between; padding: 20px 22px; color: var(--ink); background: transparent; border: 0; text-align: left; font-weight: 800; }
.faq-question::after { content: "+"; color: var(--violet); font-size: 1.3rem; }
.faq-item.is-open .faq-question::after { content: "−"; }
.faq-answer { display: none; padding: 0 22px 20px; color: var(--muted); }
.faq-item.is-open .faq-answer { display: block; }

.site-footer { padding: 80px 0 28px; color: #aebbd0; background: #050b14; }
.footer-grid { display: grid; grid-template-columns: 1.7fr repeat(3, 0.75fr); gap: 60px; padding-bottom: 58px; }
.brand-footer img { width: 146px; }
.footer-brand p { max-width: 360px; margin: 24px 0 22px; }
.status-pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 11px; color: #b9c6d8; background: #0d1727; border: 1px solid #1c2a40; border-radius: 999px; font-size: 0.74rem; font-weight: 700; }
.status-pill span { width: 8px; height: 8px; background: var(--cyan); border-radius: 50%; box-shadow: 0 0 0 4px rgba(56,220,200,0.12); }
.site-footer h2 { margin: 0 0 18px; color: white; font-size: 0.83rem; letter-spacing: 0.04em; text-transform: uppercase; }
.site-footer a { display: block; margin: 0 0 12px; color: #aebbd0; font-size: 0.86rem; }
.site-footer a:hover { color: white; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; border-top: 1px solid #19263a; font-size: 0.76rem; }
.footer-bottom p { margin: 0; }
.toast { position: fixed; right: 22px; bottom: 22px; z-index: 2000; max-width: 330px; padding: 13px 16px; color: white; background: var(--ink); border: 1px solid #2a3850; border-radius: 12px; box-shadow: var(--shadow-md); opacity: 0; pointer-events: none; transform: translateY(12px); transition: opacity 180ms ease, transform 180ms ease; }
.toast.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1060px) {
  .header-inner { grid-template-columns: auto auto; justify-content: space-between; }
  .primary-nav { position: fixed; top: 78px; right: 20px; left: 20px; display: none; flex-direction: column; align-items: stretch; padding: 14px; background: white; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-md); }
  .primary-nav.is-open { display: flex; }
  .nav-link { padding: 13px 15px; }
  .header-actions { display: none; }
  .nav-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 820px; text-align: center; margin: 0 auto; }
  .hero .button-row, .hero-proof { justify-content: center; }
  .product-stage { max-width: 760px; margin: 0 auto; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .split { gap: 44px; }
  .demo-shell { grid-template-columns: 1fr; }
  .demo-sidebar { min-height: 520px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 660px; margin: 0 auto; }
  .price-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1.5fr repeat(3, 1fr); gap: 28px; }
}

@media (max-width: 780px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 78px 0; }
  .section-sm { padding: 56px 0; }
  .header-inner { min-height: 72px; }
  .brand img { width: 132px; }
  .primary-nav { top: 68px; right: 14px; left: 14px; }
  .hero { min-height: auto; padding: 130px 0 70px; }
  .hero-grid { gap: 42px; }
  .hero h1 { font-size: clamp(3.1rem, 15vw, 5rem); }
  .floating-comment { display: none; }
  .product-stage { padding: 8px; }
  .tv-screen { min-height: 280px; }
  .reaction-bar { grid-template-columns: repeat(5, minmax(50px, 1fr)); overflow-x: auto; }
  .reaction-button { flex-direction: column; gap: 2px; min-width: 58px; font-size: 0.62rem; }
  .logo-strip-inner { grid-template-columns: 1fr; text-align: center; }
  .category-list { justify-content: center; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card.large { grid-column: auto; }
  .split { grid-template-columns: 1fr; }
  .split .dashboard-card { order: 2; }
  .steps { grid-template-columns: 1fr; }
  .step:not(:last-child)::after { top: 76px; right: auto; bottom: -22px; left: 28px; width: 1px; height: auto; background: linear-gradient(var(--line), transparent); }
  .quote-card { grid-template-columns: 1fr; }
  .quote-art { min-height: 260px; }
  .quote-copy { padding: 38px 28px; }
  .cta-panel { padding: 48px 28px; }
  .cta-content { grid-template-columns: 1fr; }
  .page-hero { padding: 135px 0 72px; }
  .bento-card.span-7, .bento-card.span-5, .bento-card.span-4, .bento-card.span-8 { grid-column: span 12; }
  .demo-video-screen { min-height: 430px; }
  .team-grid, .value-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 44px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
}

@media (max-width: 520px) {
  .button-row { align-items: stretch; flex-direction: column; }
  .button-row .button { width: 100%; }
  .hero-proof { align-items: flex-start; flex-direction: column; gap: 10px; }
  .stat-grid { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
  .metric-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .demo-controls { overflow-x: auto; }
  .demo-controls .reaction-button { min-width: 62px; }
  .screen-caption { align-items: flex-start; flex-direction: column; gap: 10px; }
}

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

/* Homepage product demo video */
.hero-video-stage { position: relative; min-width: 0; padding: 18px; }
.hero-video-stage::before {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--gradient);
  border-radius: 42px;
  opacity: 0.12;
  filter: blur(5px);
  transform: rotate(-2.2deg);
}
.hero-video-shell {
  position: relative;
  z-index: 2;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #050b14;
  border: 1px solid #253550;
  border-radius: 28px;
  box-shadow: 0 38px 90px rgba(7, 17, 31, 0.3);
}
.hero-demo-video { display: block; width: 100%; height: 100%; object-fit: cover; background: #07111f; }
.hero-video-topline {
  position: absolute;
  top: 16px;
  right: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  pointer-events: none;
}
.hero-video-topline a,
.hero-video-badge {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  color: white;
  background: rgba(5, 11, 20, 0.72);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  font-size: 0.72rem;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(0,0,0,0.16);
}
.hero-video-topline a { pointer-events: auto; transition: background 160ms ease, transform 160ms ease; }
.hero-video-topline a:hover { background: rgba(16, 28, 51, 0.92); transform: translateY(-1px); }
.hero-video-badge i { width: 8px; height: 8px; background: var(--coral); border-radius: 50%; box-shadow: 0 0 0 5px rgba(255,82,109,0.17); }
.hero-video-control {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  color: white;
  background: rgba(5, 11, 20, 0.78);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  font-size: 0.76rem;
  font-weight: 800;
  transition: background 160ms ease, transform 160ms ease;
}
.hero-video-control:hover { background: rgba(16, 28, 51, 0.94); transform: translateY(-1px); }
.hero-video-control-icon { min-width: 12px; font-size: 0.8rem; text-align: center; }
.hero-video-caption {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 9px 0;
  color: var(--muted);
  font-size: 0.78rem;
}
.hero-video-caption strong { color: var(--ink); font-size: 0.82rem; }

@media (max-width: 1080px) {
  .hero-video-stage { width: min(900px, 100%); margin: 0 auto; }
}
@media (max-width: 620px) {
  .hero-video-stage { padding: 8px; }
  .hero-video-shell { border-radius: 20px; }
  .hero-video-topline { top: 10px; right: 10px; left: 10px; }
  .hero-video-topline a { display: none; }
  .hero-video-badge { min-height: 30px; padding: 0 10px; font-size: 0.64rem; }
  .hero-video-control { right: 10px; bottom: 10px; min-height: 36px; padding: 0 11px; }
  .hero-video-caption { align-items: flex-start; flex-direction: column; gap: 2px; padding: 12px 6px 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-video-stage::before { transform: none; }
}

/* Keep the demo playback control in the caption, clear of video content. */
.hero-video-caption .hero-video-control {
  position: static;
  flex: 0 0 auto;
  min-height: 38px;
  margin-left: auto;
  color: var(--ink);
  background: white;
  border-color: var(--line);
  backdrop-filter: none;
  box-shadow: var(--shadow-sm);
}
.hero-video-caption .hero-video-control:hover { background: var(--soft); }
@media (max-width: 620px) {
  .hero-video-caption .hero-video-control { width: 100%; margin-top: 8px; margin-left: 0; }
}
