/* NEX7 — clinical, data-forward */
:root {
  --bg: #ffffff;
  --bg-soft: #fafaf9;
  --fg: #0a0a0a;
  --fg-soft: #4a4a4a;
  --fg-mute: #8a8a8a;
  --rule: #e8e8e6;
  --rule-strong: #1a1a1a;
  --accent: #4f46e5;
  --accent-soft: #eef0ff;
  --grid-line: rgba(10, 10, 10, 0.04);
  --max: 1320px;
  --gutter: 32px;
  --pad-y: 96px;

  --font-sans: 'Inter Tight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
}

[data-theme="dark"] {
  --bg: #0a0b0d;
  --bg-soft: #111214;
  --fg: #f5f5f3;
  --fg-soft: #b4b4b1;
  --fg-mute: #6a6a6a;
  --rule: #1d1f23;
  --rule-strong: #f5f5f3;
  --accent: #8b85ff;
  --accent-soft: #1a1c2e;
  --grid-line: rgba(245, 245, 243, 0.04);
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  background-image:
    linear-gradient(to right, var(--grid-line) 1px, transparent 1px);
  background-size: calc((100vw - var(--gutter) * 2) / 12) 100%;
  background-position: var(--gutter) 0;
  background-repeat: repeat-y;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* Layout */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

/* Type */
h1, h2, h3, h4 {
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-mute);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}

.mono {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--fg-mute);
}

p {
  margin: 0;
  text-wrap: pretty;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--rule);
}
.site-header .inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.brand {
  display: flex;
  align-items: center;
  color: var(--fg);
}
.nex-mark {
  display: block;
  overflow: visible;
}
.nex-mark path {
  fill: none;
  stroke: var(--fg);
  stroke-linecap: round;
  stroke-linejoin: round;
}
[data-theme="dark"] .nex-mark {
  filter:
    drop-shadow(0 0 0.5px #f0fbff)
    drop-shadow(0 0 1.5px #6ed0ff)
    drop-shadow(0 0 4px #6ed0ff)
    drop-shadow(0 0 10px #2a8ec8)
    drop-shadow(0 0 22px #2a8ec8);
  animation: nex-breathe 6s ease-in-out infinite;
}
[data-theme="dark"] .nex-mark path {
  stroke: #f0fbff;
}
@keyframes nex-breathe {
  0%, 100% { filter:
    drop-shadow(0 0 0.5px #f0fbff)
    drop-shadow(0 0 1.5px #6ed0ff)
    drop-shadow(0 0 4px #6ed0ff)
    drop-shadow(0 0 10px #2a8ec8)
    drop-shadow(0 0 22px #2a8ec8); }
  50% { filter:
    drop-shadow(0 0 0.5px #f0fbff)
    drop-shadow(0 0 2px #6ed0ff)
    drop-shadow(0 0 5.5px #6ed0ff)
    drop-shadow(0 0 13px #2a8ec8)
    drop-shadow(0 0 28px #2a8ec8); }
}
.nav {
  display: flex;
  gap: 32px;
  font-size: 14px;
  color: var(--fg-soft);
}
.nav a { transition: color .15s ease; }
.nav a:hover, .nav a.active { color: var(--fg); }
.nav-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-mute);
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-meta::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2bbf6c;
  box-shadow: 0 0 0 4px color-mix(in oklab, #2bbf6c 22%, transparent);
}
.theme-opt {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: none;
  border: none;
  padding: 0;
  color: var(--fg-mute);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  transition: color .2s ease;
}
.theme-opt::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fg-mute);
  box-shadow: none;
  transition: background .2s ease, box-shadow .2s ease;
  flex-shrink: 0;
}
.theme-opt[aria-pressed="true"] {
  color: var(--fg);
}
.theme-opt[aria-pressed="true"]::before {
  background: #4da6ff;
  box-shadow: 0 0 0 4px color-mix(in oklab, #4da6ff 22%, transparent);
}
.theme-opt:hover:not([aria-pressed="true"])::before {
  background: color-mix(in oklab, #4da6ff 55%, var(--fg-mute));
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid var(--fg);
  background: var(--fg);
  color: var(--bg);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border-radius: 0;
  transition: transform .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--rule);
}
.btn--ghost:hover { border-color: var(--fg); }
.btn .arrow {
  display: inline-block;
  transition: transform .2s ease;
}
.btn:hover .arrow { transform: translateX(3px); }

/* Hero */
.hero {
  padding: 56px 0 0;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.hero .row { align-items: end; }
.hero-meta {
  grid-column: 1 / span 12;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--rule);
}
.hero-meta .left { display: flex; gap: 32px; align-items: baseline; }
.hero-headline {
  grid-column: 1 / span 8;
  font-size: clamp(48px, 6.5vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 500;
  margin-top: 28px;
}
.hero-headline em {
  font-style: normal;
  color: var(--accent);
}
.hero-side {
  grid-column: 9 / span 4;
  align-self: end;
  padding-bottom: 8px;
}
.hero-sub {
  font-size: 24px;
  line-height: 1.5;
  color: var(--fg-soft);
  max-width: 48ch;
  margin-bottom: 14px;
  margin-top: 10px;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-visual {
  grid-column: 1 / span 12;
  margin-top: 20px;
  height: 260px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.hero-visual canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.hero-visual .corners {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-visual .corner {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-mute);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 16px;
}
.hero-visual .corner.tl { top: 0; left: 0; }
.hero-visual .corner.tr { top: 0; right: 0; text-align: right; }
.hero-visual .corner.bl { bottom: 0; left: 0; }
.hero-visual .corner.br { bottom: 0; right: 0; text-align: right; }
.hero-visual .legend {
  display: flex;
  gap: 18px;
}
.hero-visual .legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-visual .legend i {
  width: 10px; height: 2px;
  background: currentColor;
  display: inline-block;
}
.hero-visual .legend .signal { color: var(--fg); }
.hero-visual .legend .baseline { color: var(--fg-mute); }
.hero-visual .legend .risk { color: var(--accent); }

/* Section */
section.block {
  padding: var(--pad-y) 0;
  border-bottom: 1px solid var(--rule);
}
.block-head {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.block-head .label {
  grid-column: 1 / span 3;
}
.block-head h2 {
  grid-column: 4 / span 9;
  font-size: clamp(32px, 3.6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 500;
}
.block-head h2 .mute { color: var(--fg-mute); }

/* What we do */
.pillars {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
.pillar {
  grid-column: span 4;
  padding: 32px 24px 32px 0;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 320px;
  position: relative;
}
.pillar:nth-child(3n) { border-right: none; padding-right: 0; }
.pillar:nth-child(n+1) { padding-left: 24px; }
.pillar:first-child { padding-left: 0; }
.pillar .num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-mute);
  letter-spacing: 0.06em;
}
.pillar h3 {
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  font-weight: 500;
}
.pillar p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-soft);
}
.pillar .glyph {
  width: 100%;
  height: 90px;
  border-top: 1px dashed var(--rule);
  margin-top: auto;
  position: relative;
  overflow: hidden;
}
.pillar .glyph svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}
.pillar .glyph .stroke { stroke: var(--fg); fill: none; stroke-width: 1.25; }
.pillar .glyph .stroke-mute { stroke: var(--fg-mute); fill: none; stroke-width: 1; stroke-dasharray: 2 3; }
.pillar .glyph .accent { stroke: var(--accent); fill: none; stroke-width: 1.5; }
.pillar .glyph .dot { fill: var(--accent); }

/* Product spotlight */
.spotlight {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  align-items: stretch;
}
.spotlight .left-col {
  grid-column: 1 / span 5;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.spotlight .right-col {
  grid-column: 6 / span 7;
  border: 1px solid var(--rule);
  background: var(--bg-soft);
  padding: 24px;
  position: relative;
  min-height: 460px;
  display: flex;
  flex-direction: column;
}
.spotlight .right-col .forecast { flex: 1; }
.forecast-chart canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.spotlight .product-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.spotlight h3 {
  font-size: clamp(40px, 4.4vw, 64px);
  letter-spacing: -0.03em;
  line-height: 1;
  font-weight: 500;
}
.spotlight .desc {
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg-soft);
}
.spotlight .stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
  margin-top: auto;
}
.spotlight .stat {
  padding: 20px 0 0;
  border-right: 1px solid var(--rule);
}
.spotlight .stat:last-child { border-right: none; padding-left: 20px; }
.spotlight .stat .v {
  font-size: 36px;
  letter-spacing: -0.03em;
  font-weight: 500;
}
.spotlight .stat .k {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-mute);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Forecast panel inside spotlight */
.forecast {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}
.forecast-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-mute);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
}
.forecast-head .live {
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.forecast-head .live::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.forecast-chart {
  flex: 1;
  position: relative;
  min-height: 240px;
}
.forecast-chart svg { width: 100%; height: 100%; display: block; }
.forecast-axis {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-top: 1px solid var(--rule);
  padding-top: 8px;
}
.forecast-axis span {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-mute);
  letter-spacing: 0.04em;
}
.forecast-legend {
  display: flex;
  gap: 18px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-mute);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
}
.forecast-legend span { display: inline-flex; align-items: center; gap: 6px; }
.forecast-legend i { width: 14px; height: 2px; display: inline-block; background: currentColor; }
.forecast-legend .risk-l { color: var(--accent); }
.forecast-legend .signal-l { color: var(--fg); }

/* Footer */
.footer {
  padding: 64px 0 40px;
  font-size: 13px;
}
.footer .row { align-items: start; }
.footer .col-brand { grid-column: 1 / span 5; }
.footer .col-links { grid-column: 6 / span 2; }
.footer .col-meta { grid-column: 10 / span 3; text-align: right; color: var(--fg-mute); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.05em; }
.footer h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-mute);
  font-weight: 500;
  margin-bottom: 16px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; color: var(--fg-soft); }
.footer ul a:hover { color: var(--fg); }
.footer .tag {
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 28ch;
  margin-top: 8px;
}

/* Inner page hero */
.page-hero {
  padding: 96px 0 80px;
  border-bottom: 1px solid var(--rule);
}
.page-hero .row { align-items: end; }
.page-hero h1 {
  grid-column: 1 / span 9;
  font-size: clamp(48px, 6vw, 88px);
  letter-spacing: -0.035em;
  line-height: 0.98;
  font-weight: 500;
}
.page-hero .label {
  grid-column: 1 / span 12;
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px dashed var(--rule);
  padding-bottom: 16px;
}

/* Breadcrumb */
.crumb { display: flex; gap: 8px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--fg-mute); }
.crumb a:hover { color: var(--fg); }
.crumb .sep { opacity: 0.5; }

/* Prose */
.prose {
  grid-column: 3 / span 8;
  font-size: 18px;
  line-height: 1.6;
  color: var(--fg-soft);
}
.prose h3 {
  color: var(--fg);
  font-size: 22px;
  margin: 40px 0 12px;
  letter-spacing: -0.015em;
}
.prose p + p { margin-top: 18px; }
.prose .lead {
  color: var(--fg);
  font-size: 22px;
  line-height: 1.45;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  align-items: start;
}
.contact-grid .info { grid-column: 1 / span 5; }
.contact-grid .form { grid-column: 7 / span 6; display: flex; flex-direction: column; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.field input, .field textarea, .field select {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  padding: 10px 0;
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--fg);
  outline: none;
  transition: border-color .15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-bottom-color: var(--fg);
}
.field textarea { resize: vertical; min-height: 100px; }
.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--rule);
}
.contact-info-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.contact-info-list .k {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.contact-info-list .v { font-size: 16px; color: var(--fg); }

/* Product page */
.product-feature {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid var(--rule);
}
.product-feature .num {
  grid-column: 1 / span 2;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-mute);
  letter-spacing: 0.06em;
  padding-top: 6px;
}
.product-feature h3 {
  grid-column: 3 / span 5;
  font-size: 28px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-weight: 500;
}
.product-feature p {
  grid-column: 8 / span 5;
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-soft);
}

/* Mission */
.mission {
  padding: 120px 0 96px;
  border-bottom: 1px solid var(--rule);
}
.mission .row { align-items: start; }
.mission .label { grid-column: 1 / span 3; }
.mission .body { grid-column: 4 / span 9; }
.mission h2 {
  font-size: clamp(32px, 3.4vw, 52px);
  letter-spacing: -0.025em;
  line-height: 1.15;
  font-weight: 500;
  margin-bottom: 28px;
}
.mission h2 .mute { color: var(--fg-mute); }
.mission p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--fg-soft);
  max-width: 62ch;
}

/* Use case */
.usecase {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  align-items: stretch;
}
.usecase .visual {
  grid-column: 1 / span 5;
  border: 1px solid var(--rule);
  background: var(--bg-soft);
  position: relative;
  min-height: 380px;
  overflow: hidden;
}
.usecase .visual canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.usecase .visual .corner {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-mute);
  padding: 14px 16px;
}
.usecase .visual .corner.tl { top: 0; left: 0; }
.usecase .visual .corner.br { bottom: 0; right: 0; }
.usecase .visual .corner.bl { bottom: 0; left: 0; color: var(--accent); }
.usecase .copy { grid-column: 7 / span 6; display: flex; flex-direction: column; justify-content: center; }
.usecase .product-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-mute); margin-bottom: 16px; }
.usecase h3 {
  font-size: clamp(32px, 3.4vw, 48px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  font-weight: 500;
  margin-bottom: 20px;
}
.usecase p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--fg-soft);
  max-width: 56ch;
}

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.step {
  padding: 40px 32px 40px 0;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.step:nth-child(n+2) { padding-left: 32px; }
.step:last-child { border-right: none; padding-right: 0; }
.step .step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 10px;
}
.step .step-num::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rule);
}
.step h3 {
  font-size: 28px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-weight: 500;
}
.step p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-soft);
}
.step .step-glyph {
  margin-top: 12px;
  height: 110px;
  border-top: 1px dashed var(--rule);
  padding-top: 12px;
}
.step .step-glyph svg { width: 100%; height: 100%; display: block; overflow: visible; }

@media (max-width: 900px) {
  .mission .label, .mission .body { grid-column: 1 / span 12; }
  .usecase .visual, .usecase .copy { grid-column: 1 / span 12; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--rule); padding: 24px 0 !important; }
  .step:last-child { border-bottom: none; }
}

/* Responsive */
@media (max-width: 768px) {
  body { background-image: none; }
  .hero-headline { grid-column: 1 / span 12; font-size: 44px; }
  .hero-side { grid-column: 1 / span 12; margin-top: 24px; }
  .hero-visual { margin-top: 40px; height: 220px; }
  .block-head .label { grid-column: 1 / span 12; margin-bottom: 16px; }
  .block-head h2 { grid-column: 1 / span 12; }
  .pillar { grid-column: span 12; border-right: none !important; padding: 24px 0 !important; min-height: auto; }
  .spotlight .left-col, .spotlight .right-col { grid-column: 1 / span 12; }
  .footer .col-brand, .footer .col-links, .footer .col-meta { grid-column: 1 / span 12; text-align: left; }
  .nav { display: none; }
  .product-feature > * { grid-column: 1 / span 12 !important; }
  .contact-grid .info, .contact-grid .form { grid-column: 1 / span 12; }
  .prose { grid-column: 1 / span 12; }
  .page-hero h1 { grid-column: 1 / span 12; font-size: 44px; }
}