/* Little Giant Labs — sleek light theme. Roboto, frosted surfaces, and a
   fractured-glass parallax backdrop (see partials/fracture.ejs + js/site.js). */

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100 900; /* variable font: one file covers every weight */
  font-display: swap;
  src: url('/fonts/roboto-latin.woff2') format('woff2');
}

:root {
  --bg: #f3f5fb;
  --ink: #0b1020;
  --ink-soft: #3f4762;
  --ink-faint: #67708c;
  --line: #e2e6f0;
  --accent: #2f6bff;
  --accent-deep: #1e4fd0;
  --accent-soft: #eaf0ff;
  --accent-2: #12b886;
  --violet: #6a4bff;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 1px 2px rgba(11, 16, 32, .04), 0 10px 34px rgba(11, 16, 32, .07);
  --shadow-lg: 0 24px 64px rgba(30, 79, 208, .16);
  --glass: rgba(255, 255, 255, .9);
  --glass-alt: rgba(240, 243, 251, .88);
  --maxw: 1120px;
  --font: 'Roboto', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
::selection { background: var(--accent); color: #fff; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* ------------------------------------------------ fractured parallax layer */
.fx {
  position: fixed;
  inset: -12% 0;
  z-index: -1;           /* paints above the body background, below content */
  overflow: hidden;
  pointer-events: none;
}
.shard, .fx-line { position: absolute; display: block; will-change: transform; }
.shard {
  background: linear-gradient(135deg, rgba(47, 107, 255, .13), rgba(106, 75, 255, .07) 55%, rgba(18, 184, 134, .06));
  border: 1px solid rgba(47, 107, 255, .10);
  backdrop-filter: blur(1px);
}
.shard-a { top: 4%;  left: -6%;  width: 520px; height: 520px; clip-path: polygon(0 22%, 62% 0, 100% 58%, 38% 100%); }
.shard-b { top: 12%; right: -8%; width: 620px; height: 560px; clip-path: polygon(28% 0, 100% 18%, 78% 100%, 0 74%); opacity: .8; }
.shard-c { top: 42%; left: 6%;   width: 380px; height: 400px; clip-path: polygon(50% 0, 100% 42%, 64% 100%, 0 66%); opacity: .9; }
.shard-d { top: 55%; right: 4%;  width: 460px; height: 430px; clip-path: polygon(0 30%, 74% 0, 100% 70%, 22% 100%); opacity: .7; }
.shard-e { top: 76%; left: 26%;  width: 540px; height: 440px; clip-path: polygon(18% 0, 100% 26%, 82% 100%, 0 82%); opacity: .65; }
.shard-f { top: 26%; left: 38%;  width: 300px; height: 300px; clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
           background: linear-gradient(135deg, rgba(18, 184, 134, .12), rgba(47, 107, 255, .07)); }
.shard-g { top: 88%; right: 18%; width: 340px; height: 320px; clip-path: polygon(0 0, 100% 30%, 66% 100%, 8% 78%); opacity: .75; }
.shard-h { top: -4%; left: 44%;  width: 420px; height: 380px; clip-path: polygon(36% 0, 100% 44%, 58% 100%, 0 58%); opacity: .6; }
.fx-line {
  height: 1px; width: 46vw;
  background: linear-gradient(90deg, transparent, rgba(47, 107, 255, .32), transparent);
}
.fx-line-1 { top: 34%; left: 8%;  transform-origin: left center;  rotate: -14deg; }
.fx-line-2 { top: 68%; right: 4%; transform-origin: right center; rotate: 11deg; }

/* ---------------------------------------------------------------- layout */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 780px; }
.wrap-form { max-width: 720px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; background: var(--glass); }
.section-alt { background: var(--glass-alt); }
.center { text-align: center; }
.center .hero-cta { justify-content: center; }

.eyebrow {
  display: block;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .76rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 16px;
}
.section-title {
  font-size: clamp(1.75rem, 3.4vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -.025em;
  margin: 0 0 18px;
  font-weight: 800;
}
.section-lead {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 68ch;
  margin: 0 0 34px;
  font-weight: 400;
}
.center .section-lead { margin-left: auto; margin-right: auto; }

.prose p { color: var(--ink-soft); font-size: 1.06rem; margin: 0 0 18px; }
.prose-wide { max-width: 74ch; }

/* ---------------------------------------------------------------- buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  font-size: .98rem;
  letter-spacing: .01em;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s cubic-bezier(.2, .8, .3, 1), box-shadow .25s ease, background .2s ease, border-color .2s ease;
  text-decoration: none;
  line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-lg { padding: 16px 32px; font-size: 1.04rem; }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--violet));
  color: #fff;
  box-shadow: 0 10px 28px rgba(47, 107, 255, .32), inset 0 1px 0 rgba(255, 255, 255, .25);
}
.btn-primary:hover { box-shadow: 0 14px 36px rgba(47, 107, 255, .42), inset 0 1px 0 rgba(255, 255, 255, .25); }
.btn-ghost {
  background: rgba(255, 255, 255, .75);
  color: var(--ink);
  border-color: var(--line);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-nav { padding: 10px 20px; background: linear-gradient(135deg, var(--accent), var(--violet)); color: #fff; font-size: .9rem; box-shadow: 0 6px 18px rgba(47, 107, 255, .3); }
.btn-nav:hover { color: #fff; }

/* ---------------------------------------------------------------- header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .78);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid rgba(226, 230, 240, .8);
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 800; letter-spacing: -.02em; }
.logo:hover { text-decoration: none; }
.logo-mark {
  display: inline-grid; place-items: center;
  width: 38px; height: 38px; border-radius: 11px;
  color: #fff; background: linear-gradient(135deg, var(--accent), var(--violet));
  box-shadow: 0 6px 16px rgba(47, 107, 255, .32);
}
.logo-text { font-size: 1.1rem; }
.logo-text span { color: var(--accent); }
.main-nav { display: flex; align-items: center; gap: 28px; }
.nav-link {
  color: var(--ink-soft); font-weight: 500; font-size: .96rem;
  background: linear-gradient(var(--accent), var(--accent)) no-repeat 0 100% / 0 2px;
  padding-bottom: 3px;
  transition: color .2s ease, background-size .25s ease;
}
.nav-link:hover, .nav-link.is-active { color: var(--accent); text-decoration: none; background-size: 100% 2px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .2s; }

/* ---------------------------------------------------------------- hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 96px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .55) 0%, rgba(243, 245, 251, .35) 100%);
}
.hero-inner { position: relative; z-index: 2; max-width: 860px; margin: 0 auto; padding: 0 24px; text-align: center; }
.hero-h1 { margin: 0; }
.hero-title {
  display: block;
  font-size: clamp(2.6rem, 6.4vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -.035em;
  font-weight: 900;
  margin: 0 0 24px;
}
.grad { background: linear-gradient(120deg, var(--accent), var(--violet) 60%, var(--accent-2)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub { font-size: 1.28rem; color: var(--ink-soft); max-width: 62ch; margin: 0 auto 36px; font-weight: 400; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.center-cta { justify-content: center; }
.hero-note { margin: 32px auto 0; max-width: 60ch; color: var(--ink-faint); font-size: .98rem; }
.hero-glow { position: absolute; top: -180px; left: 50%; transform: translateX(-50%); width: 980px; height: 540px; background: radial-gradient(closest-side, rgba(106, 75, 255, .18), transparent 70%); z-index: 1; pointer-events: none; }

/* ---------------------------------------------------------------- vision/mission */
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.vm-card {
  background: linear-gradient(160deg, var(--accent-soft), rgba(234, 240, 255, .5));
  border: 1px solid #d7e2ff; border-radius: var(--radius); padding: 28px;
}
.vm-card h3 { margin: 0 0 8px; font-size: .95rem; color: var(--accent-deep); text-transform: uppercase; letter-spacing: .1em; font-weight: 700; }
.vm-card p { margin: 0; color: var(--ink); font-size: 1.1rem; font-weight: 500; }

/* ---------------------------------------------------------------- values */
.values-heading { font-size: 1.45rem; margin: 68px 0 26px; font-weight: 800; letter-spacing: -.015em; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .25s ease, border-color .25s ease;
}
.value-card:hover { transform: translateY(-3px); border-color: rgba(47, 107, 255, .35); box-shadow: var(--shadow-lg); }
.value-card h4 { margin: 0 0 10px; font-size: 1.08rem; font-weight: 700; }
.value-card p { margin: 0; color: var(--ink-soft); font-size: .98rem; }

/* ---------------------------------------------------------------- big statement */
.bigstatement { margin-top: 60px; border-left: 4px solid; border-image: linear-gradient(var(--accent), var(--violet)) 1; padding: 8px 0 8px 30px; }
.bigstatement p { font-size: clamp(1.3rem, 2.4vw, 1.75rem); line-height: 1.38; font-weight: 500; letter-spacing: -.015em; margin: 0; color: var(--ink); }

/* ---------------------------------------------------------------- services */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 60px; }
.service-card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: transform .2s cubic-bezier(.2, .8, .3, 1), box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(47, 107, 255, .4); }
.service-num { font-size: .82rem; font-weight: 900; color: var(--accent); letter-spacing: .14em; }
.service-card h3 { margin: 10px 0 12px; font-size: 1.32rem; font-weight: 800; letter-spacing: -.015em; }
.service-card p { color: var(--ink-soft); font-size: .98rem; margin: 0 0 22px; }
.service-link { margin-top: auto; font-weight: 700; }

.usecases { border-top: 1px solid var(--line); padding-top: 48px; }
.usecases h3 { font-size: 1.5rem; margin: 0 0 14px; font-weight: 800; letter-spacing: -.015em; }
.usecase-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.usecase-list li { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 20px 22px; color: var(--ink-soft); }
.usecase-list span { display: block; color: var(--ink); font-weight: 700; margin-bottom: 4px; }

/* ---------------------------------------------------------------- process steps */
.steps { list-style: none; counter-reset: step; padding: 0; margin: 8px 0 0; max-width: 820px; }
.step { display: flex; gap: 24px; padding: 0 0 8px; }
.step:not(:last-child) .step-num::after { content: ""; position: absolute; top: 46px; left: 50%; transform: translateX(-50%); width: 2px; height: calc(100% - 20px); background: linear-gradient(var(--line), rgba(226, 230, 240, .4)); }
.step-num {
  position: relative; flex: 0 0 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--violet)); color: #fff;
  font-weight: 900; display: grid; place-items: center;
  box-shadow: 0 8px 20px rgba(47, 107, 255, .3);
}
.step-body { padding-bottom: 36px; }
.step-body h3 { margin: 9px 0 8px; font-size: 1.22rem; font-weight: 800; letter-spacing: -.01em; }
.step-body h3 span { display: block; font-size: .98rem; font-weight: 500; color: var(--accent); margin-top: 2px; }
.step-body p { margin: 0; color: var(--ink-soft); }

.callout {
  margin-top: 22px;
  background: linear-gradient(135deg, var(--accent-soft), #f0ecff);
  border: 1px solid #d7e2ff; border-radius: var(--radius); padding: 30px 32px;
}
.callout h3 { margin: 0 0 8px; color: var(--accent-deep); font-size: 1.22rem; font-weight: 800; }
.callout p { margin: 0; color: var(--ink); }

/* ---------------------------------------------------------------- benefits */
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 8px 0 44px; }
.benefit {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px;
  transition: transform .2s ease, border-color .25s ease;
}
.benefit:hover { transform: translateY(-3px); border-color: rgba(47, 107, 255, .35); }
.benefit h4 { margin: 0 0 8px; font-size: 1.05rem; font-weight: 700; }
.benefit p { margin: 0; color: var(--ink-soft); font-size: .96rem; }

.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 8px 0 40px; }
.stat {
  text-align: center; color: #fff; border-radius: var(--radius); padding: 30px 22px;
  background: linear-gradient(160deg, #10162c, #1a2340);
  border: 1px solid rgba(127, 165, 255, .18);
}
.stat strong { display: block; font-size: 2.4rem; font-weight: 900; line-height: 1; margin-bottom: 10px; letter-spacing: -.02em; color: #fff; }
.stat span { font-size: .92rem; color: #b9c2da; }
.stat sup { color: var(--accent-2); }

.bottomline { font-size: 1.1rem; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 26px; box-shadow: var(--shadow); }
.citations { font-size: .82rem; color: var(--ink-faint); margin-top: 16px; }

/* ---------------------------------------------------------------- advantage */
.adv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.adv {
  padding: 24px 26px; border-left: 3px solid var(--accent);
  background: rgba(240, 243, 251, .8); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  transition: border-color .2s ease, background .2s ease;
}
.adv:hover { border-color: var(--violet); background: rgba(234, 240, 255, .9); }
.adv h4 { margin: 0 0 6px; font-size: 1.05rem; font-weight: 700; }
.adv p { margin: 0; color: var(--ink-soft); font-size: .96rem; }

/* ---------------------------------------------------------------- faq */
.faq { display: grid; gap: 12px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 4px 22px; box-shadow: var(--shadow); transition: border-color .2s ease; }
.faq details[open] { border-color: rgba(47, 107, 255, .4); }
.faq summary { cursor: pointer; font-weight: 700; font-size: 1.06rem; padding: 17px 0; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent); font-size: 1.6rem; font-weight: 300; line-height: 1; transition: transform .2s ease; }
.faq details[open] summary::after { content: "+"; transform: rotate(45deg); }
.faq details p { margin: 0 0 20px; color: var(--ink-soft); }

/* ---------------------------------------------------------------- cta */
.cta {
  position: relative; overflow: hidden;
  background:
    radial-gradient(720px 300px at 78% 118%, rgba(18, 184, 134, .25), transparent 68%),
    linear-gradient(135deg, var(--accent-deep), var(--violet));
  color: #fff; padding: 92px 0;
}
.cta h2 { font-size: clamp(1.85rem, 4vw, 2.7rem); font-weight: 900; letter-spacing: -.025em; margin: 0 0 18px; }
.cta p { color: #e6ecff; font-size: 1.12rem; max-width: 60ch; margin: 0 auto 30px; }
.cta .btn-ghost { background: rgba(255, 255, 255, .12); color: #fff; border-color: rgba(255, 255, 255, .4); }
.cta .btn-ghost:hover { background: rgba(255, 255, 255, .22); color: #fff; }
.cta-email { font-size: 1rem !important; margin-top: 28px !important; }
.cta-email a { color: #fff; text-decoration: underline; }
.cta-tag { font-style: italic; color: #cdd8ff !important; margin-top: 8px !important; font-size: .98rem !important; }

/* ---------------------------------------------------------------- forms */
.form-section { padding-top: 64px; }
.intake-form { margin-top: 12px; }
.fieldset { border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; margin: 0 0 22px; background: #fff; box-shadow: var(--shadow); }
.fieldset legend { font-weight: 800; font-size: 1.1rem; padding: 0 10px; letter-spacing: -.01em; }
.field { margin-bottom: 18px; }
.field:last-child { margin-bottom: 0; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { display: block; font-weight: 500; margin-bottom: 7px; font-size: .96rem; }
.field .hint { font-weight: 400; color: var(--ink-faint); font-size: .85rem; }
.req-mark { color: var(--accent); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; font: inherit; color: var(--ink);
  border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(47, 107, 255, .14);
}
.field textarea { resize: vertical; }
.checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.checkbox {
  display: flex; align-items: center; gap: 10px; padding: 13px 15px;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm); cursor: pointer; font-weight: 500;
  transition: border-color .15s ease, background .15s ease;
}
.checkbox:hover { border-color: var(--accent); background: var(--accent-soft); }
.checkbox input { width: 18px; height: 18px; accent-color: var(--accent); }
.field-error { display: block; color: #d92d20; font-size: .86rem; margin-top: 6px; font-weight: 600; }
.form-error-banner { background: #fef3f2; border: 1px solid #fda29b; color: #b42318; border-radius: var(--radius-sm); padding: 14px 18px; margin-bottom: 20px; font-weight: 600; }
.form-actions { margin-top: 24px; text-align: center; }
.form-note { color: var(--ink-faint); font-size: .92rem; margin-top: 14px; }
.cf-turnstile { margin: 8px 0 4px; }

/* ---------------------------------------------------------------- message pages */
.message-block { padding: 40px 0; }
.check-badge { width: 76px; height: 76px; border-radius: 50%; background: linear-gradient(135deg, var(--accent-2), #0ca678); color: #fff; display: grid; place-items: center; margin: 0 auto 24px; box-shadow: 0 14px 34px rgba(18, 184, 134, .35); }

/* ---------------------------------------------------------------- footer */
.site-footer { background: #0b1020; color: #b9c2da; padding: 64px 0 0; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1.2fr 2fr; gap: 40px; }
.logo--footer { color: #fff; }
.logo--footer .logo-text span { color: #7fa5ff; }
.footer-tag { margin: 14px 0 0; color: #7c86a3; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-col h4 { color: #fff; font-size: .88rem; text-transform: uppercase; letter-spacing: .1em; margin: 0 0 14px; font-weight: 700; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a { color: #b9c2da; font-size: .96rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #222a44; margin-top: 52px; padding: 22px 24px; text-align: center; }
.footer-bottom p { max-width: var(--maxw); margin: 0 auto; font-size: .88rem; color: #7c86a3; }

/* ---------------------------------------------------------------- reveal-on-scroll (JS adds .rv, then .in) */
.rv { opacity: 0; transform: translateY(20px); transition: opacity .6s cubic-bezier(.2, .8, .3, 1), transform .6s cubic-bezier(.2, .8, .3, 1); }
.rv.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rv { opacity: 1; transform: none; transition: none; }
  .btn, .value-card, .service-card, .benefit { transition: none; }
}

/* ---------------------------------------------------------------- responsive */
@media (max-width: 900px) {
  .values-grid, .services-grid, .benefit-grid, .adv-grid, .stat-row { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .hero { padding: 84px 0 72px; }
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; inset: 62px 0 auto 0; flex-direction: column; align-items: stretch;
    gap: 0; background: #fff; border-bottom: 1px solid var(--line); padding: 10px 24px 20px;
    transform: translateY(-120%); transition: transform .25s ease; box-shadow: var(--shadow);
  }
  .main-nav.open { transform: translateY(0); }
  .nav-link { padding: 12px 0; border-bottom: 1px solid var(--line); background: none; }
  .btn-nav { margin-top: 12px; }
  .vm-grid, .values-grid, .services-grid, .benefit-grid, .adv-grid, .stat-row,
  .usecase-list, .field-row, .checkbox-grid { grid-template-columns: 1fr; }
  .hero-sub { font-size: 1.12rem; }
  .shard { opacity: .5; }
}
