:root {
  --bg: #0c0e12;
  --bg-alt: #101319;
  --surface: #141821;
  --surface-2: #181d28;
  --border: #232a38;
  --text: #f2f4f8;
  --muted: #9aa3b5;
  --lime: #c8f04a;
  --amber: #ffc24b;
  --lime-dim: rgba(200, 240, 74, 0.12);
  --radius: 16px;
  --font-body: "Space Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Space Grotesk", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--font-display); line-height: 1.08; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 700; margin: 22px 0 22px; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); font-weight: 700; margin: 12px 0 16px; }
h3 { font-size: 1.25rem; font-weight: 600; margin: 14px 0 10px; }
p { color: var(--muted); }
a { color: inherit; }
.lime { color: var(--lime); }
.hero h1 .lime { color: var(--lime); }
.lede { font-size: 1.18rem; max-width: 620px; }
.section-lede { max-width: 620px; margin-bottom: 44px; font-size: 1.05rem; }
.inline-link { color: var(--lime); text-decoration: underline; text-underline-offset: 3px; }
.inline-link:hover { color: var(--text); }

.eyebrow {
  text-transform: uppercase; letter-spacing: 0.16em;
  font-size: 0.76rem; font-weight: 600; color: var(--lime);
}

/* Scroll progress + cursor glow */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%; z-index: 100;
  background: linear-gradient(90deg, var(--lime), var(--amber));
  transform-origin: 0 50%; transform: scaleX(0);
}
.cursor-glow {
  position: fixed; top: 0; left: 0; width: 520px; height: 520px; z-index: 1;
  pointer-events: none; border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 240, 74, 0.07), transparent 65%);
  transform: translate(-50%, -50%);
  opacity: 0; transition: opacity 0.4s ease;
}
@media (pointer: coarse) { .cursor-glow { display: none; } }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* 3D tilt cards */
[data-tilt] { transition: transform 0.25s ease, border-color 0.2s ease, box-shadow 0.25s ease; will-change: transform; }

/* Announcement bar */
.announce { background: var(--lime); color: #0c0e12; font-size: 0.9rem; font-weight: 600; position: relative; z-index: 60; }
.announce a {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 10px 16px; text-decoration: none;
}
.announce-arrow { font-weight: 700; }
.announce-short { display: none; }
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: currentColor; flex: none;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.45; transform: scale(0.8); } }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(12, 14, 18, 0.78);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease;
}
.site-header.scrolled { border-bottom-color: var(--border); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px; position: relative; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; font-weight: 700; }
.brand-logo { width: 36px; height: 36px; border-radius: 11px; display: block; box-shadow: 0 6px 18px rgba(200, 240, 74, 0.25); }
.brand-lockup { height: 36px; width: auto; display: block; }
footer .brand-lockup { height: 40px; }
.brand-name { font-family: var(--font-display); letter-spacing: 0.06em; font-size: 1.02rem; }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--muted); font-weight: 500; font-size: 0.95rem; transition: color 0.15s; }
.nav-links a:hover { color: var(--text); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; border-radius: 2px; }

/* Buttons */
.btn {
  display: inline-block; text-decoration: none; font-weight: 600; font-size: 0.95rem;
  padding: 13px 28px; border-radius: 999px; border: 1px solid transparent;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease, border-color 0.16s ease;
  font-family: var(--font-body); will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--lime); color: #0c0e12; box-shadow: 0 10px 30px rgba(200, 240, 74, 0.22); }
.btn-primary:hover { background: #d6f766; }
.btn-ghost { border-color: var(--border); color: var(--text); background: rgba(255,255,255,0.02); }
.btn-ghost:hover { border-color: var(--lime); }
.btn-dark { background: #0c0e12; color: var(--lime); }
.btn-dark:hover { background: #161a22; }
.btn-sm { padding: 9px 20px; font-size: 0.88rem; }
.btn-lg { padding: 16px 36px; font-size: 1.02rem; }

/* Hero */
.hero { padding: 64px 0 90px; position: relative; overflow: hidden; }
#webgl-hero {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0.85; pointer-events: none;
}
.hero-shade {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(12,14,18,0.5) 0%, rgba(12,14,18,0.1) 40%, rgba(12,14,18,0.55) 100%);
}
.hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(700px 380px at 12% 8%, rgba(200, 240, 74, 0.13), transparent 62%),
    radial-gradient(560px 340px at 88% 78%, rgba(99, 102, 241, 0.14), transparent 60%);
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center;
}
.hero-copy { min-width: 0; }
.hero-cta { display: flex; gap: 14px; margin: 38px 0 60px; flex-wrap: wrap; }
/* Stats bar removed 2026-09-15 */

.hero-visual {
  position: relative; border-radius: 24px; overflow: visible;
}
.hero-visual img {
  display: block; width: 100%; border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(200, 240, 74, 0.08), 0 0 90px rgba(200, 240, 74, 0.1);
  aspect-ratio: 4 / 3.4; object-fit: cover;
}
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }


/* Marquee */
.marquee {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  overflow: hidden; padding: 20px 0; background: var(--bg-alt);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track { display: flex; gap: 34px; width: max-content; animation: marquee 28s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: var(--font-display); font-size: 1.05rem; font-weight: 500; color: var(--muted); white-space: nowrap; }
.marquee-track i { color: var(--lime); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Sections */
.section { padding: 104px 0; position: relative; }
.section-alt {
  background: radial-gradient(1100px 380px at 50% -120px, rgba(200, 240, 74, 0.055), transparent 70%), var(--bg-alt);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}

/* Project card */
.project-card {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 0;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 22px; overflow: hidden; margin-bottom: 22px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.project-card:hover { border-color: rgba(200, 240, 74, 0.45); transform: translateY(-3px); }
.project-body { padding: 44px 42px; }
.project-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 6px; }
.tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em;
  border: 1px solid var(--border); border-radius: 999px; padding: 6px 14px; color: var(--muted);
  background: rgba(255,255,255,0.02);
}
.tag .pulse-dot { color: var(--lime); }
.tag-live { border-color: rgba(200, 240, 74, 0.5); color: var(--lime); }
.project-body h3 { font-size: 1.7rem; }
.project-points { list-style: none; margin: 20px 0 28px; display: flex; flex-direction: column; gap: 10px; }
.project-points li { position: relative; padding-left: 28px; color: var(--muted); font-size: 0.97rem; }
.project-points li::before { content: "→"; position: absolute; left: 0; color: var(--lime); font-weight: 700; }
.project-visual {
  display: flex; align-items: center; justify-content: center; padding: 44px;
  border-left: 1px solid var(--border); position: relative; overflow: hidden; min-height: 380px;
}
.project-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
}
.project-visual::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(12,14,18,0.55), rgba(12,14,18,0.15) 55%, rgba(200,240,74,0.08));
  pointer-events: none;
}
.visual-card {
  position: relative; z-index: 2; width: 100%; max-width: 300px;
  background: rgba(12, 14, 18, 0.72); border: 1px solid var(--border);
  border-radius: 18px; padding: 22px; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  animation: floaty 6s ease-in-out infinite;
}
.visual-bar { display: flex; gap: 7px; margin-bottom: 18px; }
.visual-bar span { width: 10px; height: 10px; border-radius: 50%; background: var(--border); }
.visual-bar span:first-child { background: var(--lime); }
.visual-deal {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 12px; padding: 13px 16px; margin-bottom: 10px;
}
.visual-deal:last-child { margin-bottom: 0; }
.visual-deal strong { font-family: var(--font-display); color: var(--lime); font-size: 1.15rem; }
.visual-deal span { color: var(--muted); font-size: 0.82rem; }

/* Bento services */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bento-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 34px 30px; transition: transform 0.18s ease, border-color 0.18s ease;
  position: relative; overflow: hidden;
}
.bento-card::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity 0.25s ease; pointer-events: none;
  background: radial-gradient(420px 200px at var(--mx, 50%) var(--my, 0%), rgba(200, 240, 74, 0.09), transparent 65%);
}
.bento-card:hover::before { opacity: 1; }
.bento-card:hover { transform: translateY(-4px); border-color: rgba(200, 240, 74, 0.45); }
.bento-wide { grid-column: span 2; }
.bento-card p { font-size: 0.96rem; }
.card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 13px; margin-bottom: 8px;
  background: var(--lime-dim); color: var(--lime); font-size: 1.4rem;
}

/* Why SVR ONE — editorial numbered rows */
.why-list { margin-top: 48px; }
.why-row {
  display: grid; grid-template-columns: 92px 1fr; gap: 28px; align-items: start;
  padding: 34px 0; border-top: 1px solid var(--border);
  transition: padding-left 0.2s ease;
}
.why-row:last-child { border-bottom: 1px solid var(--border); }
.why-row:hover { padding-left: 8px; }
.why-num {
  font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px rgba(200, 240, 74, 0.55);
}
.why-row h3 { font-size: 1.3rem; margin: 2px 0 10px; }
.why-row p { font-size: 1rem; max-width: 62ch; }

/* Pain quotes */
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 44px 0 56px; }
.pain-card {
  margin: 0; background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 26px; position: relative;
}
.pain-card::before {
  content: "\201C"; position: absolute; top: 10px; left: 18px;
  font-family: var(--font-display); font-size: 3rem; color: var(--lime); opacity: 0.35; line-height: 1;
}
.pain-card blockquote {
  font-family: var(--font-display); font-size: 1.12rem; font-weight: 600; color: var(--text);
  line-height: 1.45; margin: 22px 0 14px;
}
.pain-card figcaption { color: var(--lime); font-size: 0.92rem; font-weight: 600; }

/* Stack strip */
.stack-strip {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  border: 1px dashed var(--border); border-radius: var(--radius); padding: 22px 28px;
  background: rgba(255, 255, 255, 0.015);
}
.stack-label { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; color: var(--text); white-space: nowrap; }
.stack-pills { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; }
.stack-pills li {
  font-size: 0.85rem; font-weight: 600; color: var(--muted);
  border: 1px solid var(--border); border-radius: 999px; padding: 7px 16px;
  transition: color 0.2s, border-color 0.2s;
}
.stack-pills li:hover { color: var(--lime); border-color: rgba(200, 240, 74, 0.45); }

/* Engagement models */
.engage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
.engage-card:first-child {
  grid-row: span 2;
  background: linear-gradient(160deg, rgba(200, 240, 74, 0.1), var(--surface) 55%);
  border-color: rgba(200, 240, 74, 0.35);
  display: flex; flex-direction: column; justify-content: center;
}
.engage-card:first-child h3 { font-size: 1.45rem; }
.engage-card:last-child { grid-column: span 2; display: flex; gap: 26px; align-items: baseline; }
.engage-card:last-child h3 { white-space: nowrap; margin: 0; }
.engage-card:last-child p { margin: 0; }
.engage-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 26px; border-top: 3px solid var(--lime);
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.engage-card:hover { transform: translateY(-4px); border-color: rgba(200, 240, 74, 0.45); }
.engage-card h3 { font-size: 1.08rem; margin-bottom: 10px; }
.engage-card p { font-size: 0.94rem; }

/* About */
.about-banner { margin: 0 0 64px; border-radius: 22px; overflow: hidden; border: 1px solid var(--border); position: relative; }
.about-banner img { display: block; width: 100%; aspect-ratio: 21 / 8; object-fit: cover; transform: scale(1.12); }
.about-banner::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(12,14,18,0.55));
  pointer-events: none;
}
.split { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 64px; align-items: center; }
.split p + p { margin-top: 16px; }
.checklist { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.checklist li {
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
  padding: 16px 20px 16px 52px; position: relative; font-weight: 500; color: var(--text);
}
.checklist li::before {
  content: "✓"; position: absolute; left: 20px; top: 15px;
  color: var(--lime); font-weight: 800;
}

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; list-style: none; counter-reset: step; }
.steps li {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 34px 30px; position: relative; overflow: hidden;
}
.steps li::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--lime), transparent);
  opacity: 0; transition: opacity 0.25s;
}
.steps li:hover::after { opacity: 1; }
.step-num { font-family: var(--font-display); font-size: 0.85rem; font-weight: 700; color: var(--lime); letter-spacing: 0.12em; }
.steps p { font-size: 0.95rem; }

/* FAQ */
.faq-inner { max-width: 800px; }
.accordion { display: flex; flex-direction: column; gap: 12px; margin-top: 36px; }
.acc-item { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: border-color 0.2s; }
.acc-item.open { border-color: rgba(200, 240, 74, 0.45); }
.acc-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: 0; color: var(--text); cursor: pointer;
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 600;
  padding: 22px 26px; text-align: left;
}
.acc-icon { color: var(--lime); font-size: 1.5rem; font-weight: 400; transition: transform 0.25s; flex: none; }
.acc-item.open .acc-icon { transform: rotate(45deg); }
.acc-panel { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.acc-panel p { padding: 0 26px 24px; font-size: 0.97rem; }

/* Contact */
.contact-inner { text-align: center; }
.contact-inner .section-lede { margin-left: auto; margin-right: auto; }
.contact-grid { display: grid; grid-template-columns: 1.45fr 0.55fr; gap: 22px; margin-top: 44px; align-items: start; text-align: left; }
.contact-side { display: flex; flex-direction: column; gap: 20px; }

/* Contact form */
.contact-form {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 36px 34px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--border); border-radius: 10px;
  color: var(--text); font: inherit; font-size: 0.95rem; padding: 13px 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239aa3b5' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-field select option { background: var(--surface); }
.form-field input::placeholder, .form-field textarea::placeholder { color: #5b6478; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--lime); box-shadow: 0 0 0 3px rgba(200, 240, 74, 0.15);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.hidden-botcheck { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.form-note { margin-top: 16px; font-size: 0.92rem; min-height: 1.5em; }
.form-note.success { color: var(--lime); }
.form-note.error { color: #ff8585; }
.contact-form .btn[disabled] { opacity: 0.6; cursor: wait; transform: none; }
.contact-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 36px 48px; text-decoration: none; min-width: 270px;
  transition: transform 0.18s ease, border-color 0.18s ease;
}
a.contact-card:hover { transform: translateY(-4px); border-color: rgba(200, 240, 74, 0.45); }
.contact-card p { color: var(--text); font-weight: 600; }

/* Footer */
.site-footer { border-top: 1px solid var(--border); padding: 56px 0 0; background: var(--bg-alt); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { text-decoration: none; color: var(--muted); font-size: 0.94rem; }
.footer-links a:hover { color: var(--lime); }
.footer-siblings p { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 12px; color: var(--muted); }
.footer-siblings a { display: block; text-decoration: none; color: var(--text); font-weight: 500; margin-bottom: 8px; font-size: 0.94rem; }
.footer-siblings a:hover { color: var(--lime); }
.footer-bottom { border-top: 1px solid var(--border); padding: 22px 24px; }
.footer-bottom p { font-size: 0.86rem; }

/* Responsive */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 560px; }
}
@media (max-width: 900px) {
  .bento { grid-template-columns: 1fr 1fr; }
  .bento-wide { grid-column: span 2; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .project-card { grid-template-columns: 1fr; }
  .project-visual { border-left: 0; border-top: 1px solid var(--border); min-height: 320px; }
  .engage-grid { grid-template-columns: repeat(2, 1fr); }
.pain-grid { grid-template-columns: 1fr; }
.steps { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .bento, .engage-grid, .steps { grid-template-columns: 1fr; }
  .engage-card:first-child { grid-row: auto; }
  .engage-card:last-child { grid-column: auto; display: block; }
  .engage-card:last-child h3 { margin-bottom: 10px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 22px; }
  .bento-wide { grid-column: span 1; }
  .hero { padding: 52px 0 70px; }
  .section { padding: 70px 0; }
  .project-body { padding: 32px 26px; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-banner img { aspect-ratio: 16 / 10; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 70px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg-alt); border-bottom: 1px solid var(--border); padding: 12px 24px 20px;
  }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 10px 0; border-top: 1px solid var(--border); }
  .nav-links li:first-child { border-top: 0; }
  .announce-full { display: none; }
  .announce-short { display: inline; }
  .announce a { font-size: 0.82rem; padding: 9px 12px; }
  .why-row { grid-template-columns: 58px 1fr; gap: 18px; padding: 26px 0; }
  .why-num { font-size: 1.9rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track, .pulse-dot, .visual-card { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  #webgl-hero { display: none; }
}
