/* RDAPS — DataArt-like corporate system (original CSS; Inter + blue palette) */
:root {
  --blue: #0033ff;
  --blue-hover: #0026cc;
  --blue-soft: #eef2ff;
  --ink: #111;
  --gray: #555;
  --muted: #777;
  --line: #e6e6e6;
  --soft: #f5f5f5;
  --card: #f7f7f8;
  --white: #fff;
  --black: #000;
  --nav-h: 72px;
  --wrap: min(1240px, calc(100% - 48px));
  --font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --da-blue: var(--blue);
  --da-blue-hover: var(--blue-hover);
  --da-ink: var(--ink);
  --da-gray: var(--gray);
  --da-line: var(--line);
  --da-soft: var(--soft);
  --da-orange: var(--blue);
  --da-orange-hover: var(--blue-hover);
  --da-black: var(--black);
  --da-bg: var(--white);
  --da-dark: #111;
  --da-card: var(--card);
  --da-gray-2: #999;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; }
.wrap { width: var(--wrap); margin-inline: auto; }
.skip {
  position: absolute; left: 16px; top: -80px; z-index: 200;
  background: var(--blue); color: #fff; padding: 10px 14px;
}
.skip:focus { top: 16px; }

h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--ink);
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  min-height: 44px; padding: 10px 20px;
  font-size: 14px; font-weight: 600;
  border: 1px solid transparent;
  transition: 0.2s var(--ease);
  cursor: pointer;
}
.btn-ai, .btn-orange { background: var(--blue); color: #fff; }
.btn-ai:hover, .btn-orange:hover { background: var(--blue-hover); }
.btn-outline {
  background: #fff; color: var(--ink); border-color: #cfcfcf;
}
.btn-outline:hover { border-color: var(--ink); }
.btn-outline::after { content: " →"; }
.btn-black { background: var(--black); color: #fff; }
.btn-black:hover { background: #333; }
.btn-ghost {
  background: transparent; color: #fff; border-color: rgba(255,255,255,0.6);
}
.btn-ghost:hover { background: #fff; color: #111; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

.link-more, .link-blue {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: 14px; color: var(--ink);
}
.link-blue { color: var(--blue); }
.link-more::after { content: "→"; }
.link-more:hover, .link-blue:hover { color: var(--blue); text-decoration: underline; }

.eyebrow {
  display: block; font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 12px;
}

/* Header */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid transparent;
}
.header.is-scrolled { border-bottom-color: var(--line); }
.header-inner {
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 22px; letter-spacing: -0.04em;
}
.brand-mark {
  width: 28px; height: 28px;
  background:
    linear-gradient(135deg, #ff8a00 0 25%, transparent 25%),
    linear-gradient(225deg, #0033ff 0 25%, transparent 25%),
    linear-gradient(45deg, #7c3aed 0 25%, transparent 25%),
    linear-gradient(315deg, #22c55e 0 25%, #111 25%);
  background-size: 50% 50%;
  background-position: top left, top right, bottom left, bottom right;
  background-repeat: no-repeat;
  font-size: 0; color: transparent;
}
.nav { display: flex; align-items: center; gap: 2px; }
.nav > a, .nav-drop > summary {
  list-style: none; cursor: pointer;
  padding: 10px 12px; font-size: 14px; font-weight: 500;
}
.nav > a:hover, .nav-drop > summary:hover, .nav > a.is-on { color: var(--blue); }
.nav-drop { position: relative; }
.nav-drop > summary::-webkit-details-marker { display: none; }
.nav-drop > summary::after { content: " ▾"; font-size: 10px; opacity: 0.55; }
.nav-panel {
  position: absolute; top: 100%; left: 0; min-width: 280px;
  background: #fff; border: 1px solid var(--line);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  padding: 8px; display: none; z-index: 50;
}
.nav-drop[open] > .nav-panel { display: block; }
.nav-panel a { display: block; padding: 11px 14px; font-size: 14px; font-weight: 500; }
.nav-panel a:hover { background: var(--soft); color: var(--blue); }
.nav-panel a small { display: block; margin-top: 2px; color: var(--muted); font-weight: 400; font-size: 12px; }
.nav-actions { display: flex; align-items: center; gap: 8px; margin-left: 8px; }
.lang { border: 0; background: transparent; font-size: 14px; font-weight: 500; padding: 8px 6px; }
.burger {
  display: none; width: 42px; height: 42px; border: 1px solid var(--line);
  background: #fff; cursor: pointer; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
}
.burger span { width: 18px; height: 2px; background: var(--ink); }

/* Sections */
.sec { padding: 80px 0; }
.sec-soft { background: var(--soft); }
.sec-dark { background: #111; color: #fff; }
.sec-dark h2, .sec-dark h3 { color: #fff; }
.sec-head { max-width: 720px; margin-bottom: 40px; }
.sec-head h2, .sec-title-row h2, .best-head h2 {
  font-size: clamp(28px, 4vw, 40px);
}
.sec-head p { color: var(--gray); font-size: 17px; margin-top: 12px; }
.sec-title-row, .best-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 16px; margin-bottom: 28px;
}

/* Hero / dash */
.dash-hero { padding: 56px 0 28px; background: #fff; }
.dash-hero .hero-kicker, .hero-kicker {
  color: var(--blue); font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px;
}
.dash-hero h1 {
  font-size: clamp(36px, 5vw, 56px); max-width: 16ch; font-weight: 700;
}
.banner-lead { color: var(--gray); max-width: 560px; margin-top: 12px; font-size: 18px; }

/* Full-window video hero */
.video-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: calc(-1 * var(--nav-h));
  padding: calc(var(--nav-h) + 40px) 0 64px;
  color: #fff;
  background: #0a0a12;
}
.video-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.video-hero-media iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100%;
  min-width: 177.78vh;
  transform: translate(-50%, -50%);
  border: 0;
}
.video-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.45) 45%, rgba(0,0,0,0.7) 100%),
    radial-gradient(ellipse at 30% 40%, rgba(0,51,255,0.25), transparent 55%);
}
.video-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}
.video-hero .hero-kicker {
  color: #9db0ff;
}
.video-hero h1 {
  color: #fff;
  font-size: clamp(36px, 5.5vw, 58px);
  max-width: 16ch;
  font-weight: 700;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.video-hero .banner-lead {
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  margin-top: 16px;
  font-size: clamp(16px, 2vw, 19px);
}
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.65);
}
.btn-outline-light:hover {
  background: #fff;
  color: #111;
  border-color: #fff;
}

/* Transparent header over video hero (homepage) */
body.home-video .header {
  background: transparent;
  border-bottom-color: transparent;
}
body.home-video .header .brand,
body.home-video .header .nav > a,
body.home-video .header .nav-drop > summary,
body.home-video .header .lang {
  color: #fff;
}
body.home-video .header .burger {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.35);
}
body.home-video .header .burger span { background: #fff; }
body.home-video .header .btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.65);
}
body.home-video .header.is-scrolled {
  background: rgba(255,255,255,0.98);
  border-bottom-color: var(--line);
}
body.home-video .header.is-scrolled .brand,
body.home-video .header.is-scrolled .nav > a,
body.home-video .header.is-scrolled .nav-drop > summary,
body.home-video .header.is-scrolled .lang {
  color: var(--ink);
}
body.home-video .header.is-scrolled .burger {
  background: #fff;
  border-color: var(--line);
}
body.home-video .header.is-scrolled .burger span { background: var(--ink); }
body.home-video .header.is-scrolled .btn-outline {
  background: #fff;
  color: var(--ink);
  border-color: #cfcfcf;
}

.dash-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line);
  margin-bottom: 24px;
}
.dash-card {
  padding: 28px 26px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: #fff; min-height: 170px; display: flex; flex-direction: column; gap: 12px;
}
.dash-card h3 { font-size: clamp(18px, 2vw, 22px); }
.dash-card p { color: var(--gray); font-size: 14px; }
.dash-card.span-2 { grid-column: span 2; }
.dash-card.bg-soft { background: var(--soft); }
.dash-card.bg-blue { background: var(--blue); color: #fff; }
.dash-card.bg-blue h3, .dash-card.bg-blue p { color: #fff; }
.dash-card.with-badge {
  display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center;
}
.dash-badge {
  width: 110px; height: 110px; border-radius: 50%; border: 3px solid #111;
  display: grid; place-items: center; text-align: center;
  font-size: 11px; font-weight: 800; line-height: 1.2; background: #fff;
}

/* Best at / services */
.best-grid, .do-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.do-grid { grid-template-columns: 1fr 1fr; }
.best-card, .do-card {
  position: relative; background: var(--card); border: 1px solid var(--line);
  padding: 28px 24px 130px; min-height: 340px; display: flex; flex-direction: column;
  transition: 0.2s ease;
}
.do-card { padding: 32px; min-height: 220px; }
.do-card.hot { border-color: rgba(0,51,255,0.35); background: #f7f9ff; }
.best-card:hover, .do-card:hover { background: #f0f2f7; }
.best-card h3, .do-card h3 { font-size: 20px; margin-bottom: 12px; }
.best-card p, .do-card p { color: var(--gray); font-size: 14px; flex: 1; }
.best-card .link-more { margin-top: 16px; position: relative; z-index: 2; }

.cube {
  position: absolute; right: 16px; bottom: 16px; width: 100px; height: 100px;
  transform: rotateX(12deg) rotateZ(-18deg); pointer-events: none;
}
.cube span {
  position: absolute; inset: 16px;
  background: linear-gradient(145deg, rgba(255,255,255,0.55), rgba(200,210,230,0.25));
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}
.cube.c2 span { background: linear-gradient(160deg, rgba(120,200,90,0.45), rgba(80,160,255,0.35)), #cfe8ff; }
.cube.c3 span {
  background: radial-gradient(circle at 40% 40%, #7c5cff, transparent 55%),
    radial-gradient(circle at 70% 70%, #3aa0ff, #1a1a40 70%);
}
.cube.c4 span {
  background: linear-gradient(135deg, transparent 40%, rgba(255,0,170,0.55) 41% 42%, transparent 43%),
    linear-gradient(45deg, #111, #2a1040);
  background-size: 14px 14px, auto;
}

/* Why / results / stories */
.why-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.why-item { padding-top: 16px; border-top: 2px solid var(--blue); }
.why-item h3 { font-size: 17px; margin-bottom: 8px; }
.why-item p { color: var(--gray); font-size: 14px; }

.results { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.result {
  padding: 22px; background: #1a1a1a; border: 1px solid #2a2a2a;
}
.result strong {
  display: block; font-size: 36px; color: var(--blue); margin-bottom: 10px; line-height: 1;
}
.result span { color: #b0b0b0; font-size: 13px; }

.stories {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}
.story {
  padding: 26px 22px; border-right: 1px solid var(--line);
  background: #fff; min-height: 190px; display: flex; flex-direction: column;
}
.story:last-child { border-right: 0; }
.story:hover { background: #f7f9ff; }
.story-tag {
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 10px;
}
.story h3 { font-size: 17px; margin-bottom: 8px; }
.story p { color: var(--gray); font-size: 14px; flex: 1; margin-bottom: 12px; }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.blog-card {
  border: 1px solid var(--line); background: #fff;
  display: flex; flex-direction: column; transition: box-shadow 0.2s ease;
}
.blog-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.blog-img, .blog-cover {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #0033ff, #111);
}
.blog-img.a2, .blog-cover.alt-2 { background: linear-gradient(145deg, #222, #0033ff); }
.blog-img.a3, .blog-cover.alt-3 { background: linear-gradient(160deg, #4f7cff, #111); }
.blog-img.a4 { background: linear-gradient(120deg, #0a0a0a, #0033ff 80%); }
.blog-img.a5 { background: linear-gradient(160deg, #1e3a8a, #60a5fa); }
.blog-img.a6 { background: linear-gradient(140deg, #111827, #6366f1); }
.blog-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.blog-meta, .meta {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--blue); margin-bottom: 10px;
}
.blog-body h3 { font-size: 18px; margin-bottom: 8px; }
.blog-body p { color: var(--gray); font-size: 14px; flex: 1; }

/* Clients */
.clients-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--line); border-left: 1px solid var(--line);
}
.clients-grid.clients-7 { grid-template-columns: repeat(4, 1fr); }
.client-card {
  position: relative; min-height: 168px;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: #fff; display: flex; flex-direction: column;
  align-items: center; justify-content: center; padding: 28px 20px 44px;
  transition: background 0.2s ease;
}
.client-card:hover { background: #f4f7fa; }
.client-card img { max-width: 150px; max-height: 64px; object-fit: contain; }
.client-card img[src*="abbott"] { max-height: 28px; width: 140px; }
.client-name {
  position: absolute; left: 16px; bottom: 14px; font-size: 13px; font-weight: 500;
}
.client-card:hover .client-name { color: var(--blue); text-decoration: underline; }

/* Quotes / CTA / page */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.quote {
  padding: 26px; background: #fff; border-left: 3px solid var(--blue);
}
.quote p { margin-bottom: 14px; }
.quote cite { font-style: normal; font-size: 13px; color: var(--muted); font-weight: 600; }

.cta {
  background: var(--blue); color: #fff; padding: 52px;
}
.cta h2 { color: #fff; font-size: clamp(28px, 3.5vw, 40px); margin-bottom: 12px; max-width: 16ch; }
.cta p { color: rgba(255,255,255,0.92); max-width: 520px; margin-bottom: 22px; }

.page-hero { background: #111; color: #fff; padding: 72px 0 56px; }
.page-hero h1 { color: #fff; font-size: clamp(34px, 5vw, 52px); max-width: 14ch; margin-bottom: 14px; }
.page-hero p { color: #bdbdbd; max-width: 640px; font-size: 18px; }
.crumbs {
  display: flex; flex-wrap: wrap; gap: 8px; color: #888; font-size: 13px; margin-bottom: 16px;
}
.crumbs a:hover { color: var(--blue); }

.prose { max-width: 760px; }
.prose p + p { margin-top: 14px; }
.prose h2 { font-size: 28px; margin: 32px 0 12px; }
.prose h3 { font-size: 20px; margin: 24px 0 10px; }
.prose ul, .prose ol { margin: 12px 0 12px 20px; }
.prose li { list-style: disc; color: var(--gray); margin-bottom: 8px; }
.prose a { color: var(--blue); font-weight: 600; }

.faq { display: grid; gap: 12px; }
.faq-list { display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); padding: 20px 22px; background: #fff; }
.faq-item h3 { font-size: 17px; margin-bottom: 8px; }
.faq-item p { color: var(--gray); font-size: 15px; }

.panel { border: 1px solid var(--line); padding: 28px; background: #fff; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field, .form-field { display: flex; flex-direction: column; gap: 6px; }
.field.full, .form-field.full { grid-column: 1 / -1; }
.field label, .form-field label { font-size: 13px; font-weight: 600; }
.field input, .field select, .field textarea,
.form-field input, .form-field select, .form-field textarea {
  border: 1px solid var(--line); padding: 12px 14px; background: #fff; outline: none;
}
.field textarea, .form-field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus,
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--blue);
}
.note, .form-note { margin-top: 12px; font-size: 14px; color: var(--muted); }
.note.ok, .form-note.success { color: var(--blue); }
.captcha-row {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
}
.captcha-prompt {
  display: inline-flex; align-items: center;
  min-height: 44px; padding: 0 14px;
  background: var(--soft); border: 1px solid var(--line);
  font-weight: 700; font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em; white-space: nowrap;
}
.captcha-row input {
  width: 120px; flex: 0 0 auto;
}
.captcha-refresh {
  min-width: 44px; padding-inline: 12px;
  font-size: 18px; line-height: 1;
}
.captcha-refresh::after { content: none !important; }
.map, .map-embed {
  border: 1px solid var(--line); aspect-ratio: 16/10; margin-top: 16px; overflow: hidden;
}
.map iframe, .map-embed iframe { width: 100%; height: 100%; border: 0; }
.contact-line, .contact-strip {
  display: flex; flex-wrap: wrap; gap: 12px 18px; margin-top: 14px;
}
.contact-line a, .contact-strip a { color: var(--blue); font-weight: 600; font-size: 14px; }
.split {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: start;
}

.service-stack { display: grid; gap: 40px; }
.stack-block h3 {
  font-size: 22px; margin-bottom: 8px; padding-bottom: 10px; border-bottom: 2px solid var(--blue);
}
.stack-links {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px 18px; margin-top: 16px;
}
.stack-links a {
  padding: 12px 0; border-bottom: 1px solid var(--line); font-weight: 600; font-size: 14px;
}
.stack-links a:hover { color: var(--blue); }

.marquee { overflow: hidden; border-block: 1px solid var(--line); padding: 20px 0; }
.marquee-track, .logo-track {
  display: flex; gap: 40px; width: max-content; animation: slide 30s linear infinite;
}
.marquee-track span, .logo-track span {
  font-weight: 600; font-size: 13px; color: #999;
  text-transform: uppercase; letter-spacing: 0.04em; white-space: nowrap;
}
@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.article { max-width: 760px; margin: 0 auto; }
.reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.reveal.show, .reveal.visible { opacity: 1; transform: none; }

/* Footer */
.footer, .site-footer {
  background: var(--black); color: #aaa; padding: 64px 0 28px;
}
.footer .brand, .site-footer .brand, .site-footer .logo { color: #fff; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px;
}
.footer-grid p { margin-top: 14px; max-width: 340px; font-size: 14px; }
.footer h4, .site-footer h4 {
  color: #fff; font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 16px;
}
.footer a, .site-footer a { display: block; color: #aaa; font-size: 14px; margin-bottom: 10px; }
.footer a:hover, .site-footer a:hover { color: var(--blue); }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  padding-top: 24px; border-top: 1px solid #222; font-size: 13px;
}

@media (max-width: 1024px) {
  .stories, .why-grid, .results, .best-grid, .clients-grid, .dash-grid,
  .blog-grid, .quote-grid, .footer-grid, .stack-links { grid-template-columns: 1fr 1fr; }
  .do-grid { grid-template-columns: 1fr 1fr; }
  .dash-card.span-2 { grid-column: span 2; }
  .burger { display: flex; }
  .nav {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    flex-direction: column; align-items: stretch;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 12px; display: none; max-height: calc(100vh - var(--nav-h)); overflow: auto;
  }
  .nav.open { display: flex; }
  .nav-panel { position: static; box-shadow: none; border: 0; display: block; }
  .nav-drop > summary::after { content: ""; }
  .nav .btn, .nav-actions { margin: 8px 0 0; width: 100%; }
  .nav-actions { flex-wrap: wrap; }
  body.home-video .header .nav.open > a,
  body.home-video .header .nav.open .nav-drop > summary,
  body.home-video .header .nav.open .lang {
    color: var(--ink);
  }
  body.home-video .header .nav.open .btn-outline {
    background: #fff;
    color: var(--ink);
    border-color: #cfcfcf;
  }
}

@media (max-width: 720px) {
  :root { --wrap: min(1240px, calc(100% - 28px)); }
  .stories, .why-grid, .results, .best-grid, .do-grid, .clients-grid, .dash-grid,
  .blog-grid, .quote-grid, .footer-grid, .form-grid, .split, .stack-links {
    grid-template-columns: 1fr;
  }
  .dash-card.span-2, .dash-card.with-badge { grid-column: span 1; }
  .dash-card.with-badge { grid-template-columns: 1fr; }
  .story { border-right: 0; border-bottom: 1px solid var(--line); }
  .cta { padding: 36px 24px; }
  .btn-row .btn { width: 100%; }
  .dash-hero { padding: 40px 0 24px; }
  .video-hero { padding: calc(var(--nav-h) + 28px) 0 48px; }
  .best-card { min-height: 280px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .video-hero-media { display: none; }
}
