*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:   #0D0D0D;
  --white:   #FFFFFF;
  --grey-1:  #F2F2F2;
  --grey-2:  #D4D4D4;
  --grey-3:  #8A8A8A;
  --grey-4:  #3A3A3A;
  --mint:    #00FF9C;
  --mono:    'JetBrains Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--mono);
  background: var(--white);
  color: var(--black);
  font-size: 13px;
  line-height: 1.7;
  font-weight: 500;
  -webkit-font-smoothing: auto;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--grey-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 56px;
}

.nav-brand { display: flex; align-items: center; gap: 16px; }

.nav-logo {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--black);
  text-decoration: none;
}
.nav-logo span { color: var(--mint); }

.nav-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--grey-3);
  text-transform: uppercase;
  font-weight: 500;
}

.live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--mint);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.35; transform: scale(0.65); }
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  font-weight: 500;
  color: var(--grey-3);
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--black); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--black);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 48px 80px;
  border-bottom: 1px solid var(--grey-2);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,255,156,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,156,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  animation: gridfade 4s ease-in-out infinite alternate;
}
@keyframes gridfade { 0% { opacity: 0.5; } 100% { opacity: 1; } }

.hero-scan {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--mint) 50%, transparent);
  opacity: 0.3;
  animation: scandown 7s linear infinite;
  pointer-events: none;
}
@keyframes scandown {
  0%   { transform: translateY(0); }
  100% { transform: translateY(100vh); }
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  color: var(--grey-3);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 48px;
  position: relative; z-index: 1;
}
.hero-eyebrow::before { content: '// '; color: var(--mint); }

.hero-headline {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 840px;
  margin-bottom: 32px;
  position: relative; z-index: 1;
}
.hero-headline .accent { color: var(--mint); }

.hero-sub {
  font-size: 14px;
  font-weight: 500;
  color: #4A4A4A;
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 64px;
  position: relative; z-index: 1;
}

/* Terminal */
.terminal {
  background: var(--black);
  border-radius: 4px;
  padding: 28px 32px;
  max-width: 640px;
  position: relative; z-index: 1;
  overflow: hidden;
}
.terminal::before {
  content: '● ● ●';
  display: block;
  font-size: 10px;
  color: var(--grey-4);
  margin-bottom: 20px;
  letter-spacing: 4px;
}
.t-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 6px;
  font-size: 12px;
}
.t-prompt { color: var(--mint); white-space: nowrap; }
.t-cmd    { color: var(--white); font-weight: 500; }
.t-out    { color: #4A4A4A; padding-left: 24px; margin-bottom: 12px; font-size: 11px; font-weight: 500; }
.t-out span { color: var(--mint); font-weight: 700; }
.cursor {
  display: inline-block;
  width: 8px; height: 14px;
  background: var(--mint);
  vertical-align: middle;
  margin-left: 2px;
  animation: blink 1.1s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ── DATA PIPELINE ── */
.pipeline-section {
  background: var(--black);
  border-bottom: 1px solid var(--grey-4);
  overflow: hidden;
}
.pipeline-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 48px;
}
.pipeline-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-4);
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 500;
}
.pipeline-label::after { content: ''; flex: 1; height: 1px; background: var(--grey-4); }

.pipeline-flow {
  display: flex;
  align-items: center;
  overflow-x: auto;
  padding-bottom: 4px;
}

.pipeline-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  min-width: 120px;
  opacity: 0;
  animation: nodein 0.5s ease forwards;
}
.pipeline-node:nth-child(1) { animation-delay: 0.2s; }
.pipeline-node:nth-child(3) { animation-delay: 0.7s; }
.pipeline-node:nth-child(5) { animation-delay: 1.2s; }
.pipeline-node:nth-child(7) { animation-delay: 1.7s; }
.pipeline-node:nth-child(9) { animation-delay: 2.2s; }

@keyframes nodein {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.node-box {
  width: 56px; height: 56px;
  border: 1px solid var(--grey-4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: var(--grey-3);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  transition: border-color 0.3s, color 0.3s;
  position: relative;
}
.node-box.active {
  border-color: var(--mint);
  color: var(--mint);
}
.node-box.active::after {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(0,255,156,0.2);
}
.pipeline-node:hover .node-box { border-color: var(--mint); color: var(--mint); }

.node-name {
  font-size: 10px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
  text-align: center;
}
.node-sub {
  font-size: 9px;
  color: var(--grey-4);
  text-align: center;
  line-height: 1.7;
  font-weight: 400;
}

.pipeline-connector {
  flex: 1;
  min-width: 48px;
  height: 1px;
  background: var(--grey-4);
  position: relative;
  margin-bottom: 38px;
  overflow: visible;
}
.conn-dot {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--mint);
  animation: flowdot 2.2s linear infinite;
  opacity: 0;
}
.conn-dot:nth-child(2) { animation-delay: 0.73s; }
.conn-dot:nth-child(3) { animation-delay: 1.47s; }
@keyframes flowdot {
  0%   { left: -5px; opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { left: calc(100% + 5px); opacity: 0; }
}

/* ── SECTION SHELL ── */
section { border-bottom: 1px solid var(--grey-2); }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 96px 48px; }
.section-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-3);
  margin-bottom: 64px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 500;
}
.section-label::after { content: ''; flex: 1; height: 1px; background: var(--grey-2); }

/* ── RESULTS ── */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
  background: var(--grey-2);
  border: 1px solid var(--grey-2);
}
.result-card { background: var(--white); padding: 40px 36px; transition: background 0.2s; }
.result-card:hover { background: var(--grey-1); }

.result-metric {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 8px;
}
.result-metric .unit { font-size: 20px; font-weight: 400; color: var(--mint); }

.result-label {
  font-size: 11px;
  color: var(--grey-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0;
  font-weight: 500;
}

/* Mini charts */
.mini-chart { margin: 20px 0 18px; }
.chart-title {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-3);
  margin-bottom: 10px;
  font-weight: 500;
}

/* Sparkline bars */
.spark-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 36px;
}
.sp-bar {
  flex: 1;
  background: var(--mint);
  opacity: 0;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: opacity 0.3s ease, transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.spark-bars.animate .sp-bar { opacity: 1; transform: scaleY(1); }
.sp-bar:nth-child(1)  { height:35%; transition-delay:0.05s; }
.sp-bar:nth-child(2)  { height:52%; transition-delay:0.10s; }
.sp-bar:nth-child(3)  { height:48%; transition-delay:0.15s; }
.sp-bar:nth-child(4)  { height:65%; transition-delay:0.20s; }
.sp-bar:nth-child(5)  { height:72%; transition-delay:0.25s; }
.sp-bar:nth-child(6)  { height:68%; transition-delay:0.30s; }
.sp-bar:nth-child(7)  { height:80%; transition-delay:0.35s; }
.sp-bar:nth-child(8)  { height:88%; transition-delay:0.40s; }
.sp-bar:nth-child(9)  { height:84%; transition-delay:0.45s; }
.sp-bar:nth-child(10) { height:95%; transition-delay:0.50s; }
.sp-bar:nth-child(11) { height:100%;transition-delay:0.55s; }
.sp-bar:nth-child(12) { height:98%; transition-delay:0.60s; opacity: 0.5; }

/* Before/after bars */
.cmp-chart { display: flex; flex-direction: column; gap: 10px; }
.cmp-row { display: flex; align-items: center; gap: 10px; }
.cmp-label { font-size: 9px; color: var(--grey-3); width: 58px; flex-shrink: 0; font-weight: 500; letter-spacing: 0.04em; }
.cmp-track { flex: 1; height: 7px; background: var(--grey-1); border: 1px solid var(--grey-2); position: relative; overflow: hidden; }
.cmp-fill {
  height: 100%;
  width: 0;
  transition: width 1.6s cubic-bezier(0.16,1,0.3,1);
}
.cmp-fill.is-control   { background: var(--grey-3); opacity: 0.45; }
.cmp-fill.is-treatment { background: var(--mint); }
.cmp-val { font-size: 9px; font-weight: 700; color: var(--black); width: 48px; text-align: right; white-space: nowrap; }
.cmp-delta { color: var(--mint); font-size: 8px; }

/* Donut */
.donut-wrap { display: flex; align-items: center; gap: 16px; }
.donut-legend { display: flex; flex-direction: column; gap: 7px; }
.legend-row { display: flex; align-items: center; gap: 7px; font-size: 9px; color: var(--grey-3); font-weight: 400; letter-spacing: 0.04em; }
.legend-pip { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }

/* SVG donut segments */
.donut-seg {
  stroke-dasharray: 0 151;
  transition: stroke-dasharray 1.2s cubic-bezier(0.16,1,0.3,1);
}

/* Phase bars */
.phase-wrap { display: flex; align-items: flex-end; gap: 8px; height: 72px; }
.phase-col { display: flex; flex-direction: column; align-items: center; gap: 6px; flex: 1; justify-content: flex-end; }
.phase-bar {
  width: 100%;
  height: 0;
  background: var(--mint);
  opacity: 0;
  transition: height 0.9s cubic-bezier(0.16,1,0.3,1), opacity 0.3s;
}
.phase-lbl { font-size: 8px; color: var(--grey-3); font-weight: 500; letter-spacing: 0.06em; text-align: center; }

.result-desc {
  font-size: 12px;
  color: #4A4A4A;
  font-weight: 500;
  line-height: 1.8;
  border-top: 1px solid var(--grey-2);
  padding-top: 16px;
}

/* ── SERVICES ── */
.services-list { display: flex; flex-direction: column; }
.service-row {
  display: grid;
  grid-template-columns: 48px 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding: 40px 0;
  border-top: 1px solid var(--grey-2);
  transition: background 0.15s;
}
.service-row:hover { background: var(--grey-1); margin: 0 -48px; padding: 40px 48px; }
.service-num { font-size: 11px; color: var(--mint); font-weight: 700; padding-top: 3px; }
.service-name { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 8px; }
.service-tag {
  display: inline-block;
  font-size: 10px;
  color: var(--grey-3);
  border: 1px solid var(--grey-2);
  padding: 2px 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 500;
}
.service-body { font-size: 12px; color: #4A4A4A; font-weight: 500; line-height: 1.9; }
.service-detail { font-size: 12px; color: #4A4A4A; font-weight: 500; line-height: 2; }
.service-detail li { list-style: none; padding-left: 0; margin-bottom: 4px; }
.service-detail li::before { content: '→ '; color: var(--mint); }

/* ── WHO WE SERVE ── */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2px;
  background: var(--grey-2);
  border: 1px solid var(--grey-2);
}
.client-cell { background: var(--white); padding: 36px 32px; }
.client-sector { font-size: 13px; font-weight: 700; margin-bottom: 8px; }
.client-desc { font-size: 11px; color: #4A4A4A; font-weight: 500; line-height: 1.8; }

/* ── APPROACH ── */
.approach-block { display: grid; grid-template-columns: 1fr 2fr; gap: 96px; align-items: start; }
.approach-left h2 { font-size: 28px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 24px; }
.approach-left p { font-size: 12px; color: #4A4A4A; font-weight: 500; line-height: 1.9; }
.approach-right { display: flex; flex-direction: column; }

.approach-step {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--grey-2);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.approach-step.visible { opacity: 1; transform: translateY(0); }
.step-num { font-size: 11px; color: var(--mint); font-weight: 700; padding-top: 2px; }
.step-title { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.step-body { font-size: 12px; color: #4A4A4A; font-weight: 500; line-height: 1.8; }

/* ── CTA ── */
.cta-section { background: var(--black); border-bottom: none; }
.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 48px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 64px;
}
.cta-left h2 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  max-width: 560px;
  margin-bottom: 20px;
}
.cta-left h2 .accent { color: var(--mint); }
.cta-left p { font-size: 12px; color: #4A4A4A; font-weight: 500; max-width: 440px; line-height: 1.9; }
.cta-right { display: flex; flex-direction: column; gap: 16px; align-items: flex-end; flex-shrink: 0; }

.contact-form { display: flex; flex-direction: column; gap: 12px; width: 100%; max-width: 320px; }
.contact-form input,
.contact-form textarea {
  background: transparent;
  border: 1px solid var(--grey-4);
  color: var(--white);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  padding: 12px 14px;
  resize: vertical;
  transition: border-color 0.2s;
  width: 100%;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--grey-3); }
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--mint); }
.contact-form button { width: 100%; }
.form-status { font-size: 11px; color: var(--grey-3); min-height: 14px; }
.form-status.success { color: var(--mint); }
.form-status.error { color: #ff6b6b; }

.btn-primary {
  display: inline-block;
  background: var(--mint);
  color: var(--black);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 32px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.85; }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--grey-3);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 24px;
  border: 1px solid var(--grey-4);
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--grey-3); color: var(--white); }

/* ── FOOTER ── */
footer {
  background: var(--black);
  padding: 32px 48px;
  border-top: 1px solid var(--grey-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo { font-size: 13px; font-weight: 700; color: var(--white); letter-spacing: 0.06em; }
.footer-logo span { color: var(--mint); }
.footer-meta { font-size: 11px; color: var(--grey-4); letter-spacing: 0.08em; font-weight: 500; }

.newsletter-form { display: flex; align-items: center; gap: 8px; }
.newsletter-form input {
  background: transparent;
  border: 1px solid var(--grey-4);
  color: var(--white);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  padding: 8px 12px;
  width: 200px;
}
.newsletter-form input::placeholder { color: var(--grey-4); }
.newsletter-form input:focus { outline: none; border-color: var(--mint); }
.newsletter-form button {
  background: var(--mint);
  color: var(--black);
  border: none;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 16px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.newsletter-form button:hover { opacity: 0.85; }
.newsletter-status { font-size: 10px; color: var(--grey-4); }
.newsletter-status.success { color: var(--mint); }
.newsletter-status.error { color: #ff6b6b; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 0 24px; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--grey-2);
    padding: 8px 24px 16px;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-top: 1px solid var(--grey-1); }
  .nav-links a { display: block; padding: 16px 0; }
  .hero { padding: 100px 24px 64px; }
  .section-inner { padding: 64px 24px; }
  .pipeline-inner { padding: 56px 24px; }
  .service-row { grid-template-columns: 32px 1fr; }
  .service-row .service-detail { display: none; }
  .approach-block { grid-template-columns: 1fr; gap: 48px; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .cta-right { align-items: flex-start; }
  footer { flex-direction: column; gap: 12px; align-items: flex-start; }
  .newsletter-form { width: 100%; }
  .newsletter-form input { flex: 1; width: auto; }
  .service-row:hover { margin: 0; padding: 40px 0; background: transparent; }
  .pipeline-node { min-width: 88px; }
}

@media (prefers-reduced-motion: reduce) {
  .cursor, .hero-scan, .live-dot, .conn-dot { animation: none !important; }
  .approach-step { opacity: 1; transform: none; }
  .donut-seg { transition: none; }
  .cmp-fill, .phase-bar, .sp-bar { transition: none; }
}

/* ── ARTICLE / INSIGHTS ── */
.article-hero {
  padding: 140px 48px 64px;
  border-bottom: 1px solid var(--grey-2);
  max-width: 760px;
  margin: 0 auto;
}
.article-eyebrow {
  font-size: 11px;
  font-weight: 500;
  color: var(--grey-3);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.article-eyebrow::before { content: '// '; color: var(--mint); }
.article-title {
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.article-meta {
  display: flex;
  gap: 16px;
  font-size: 11px;
  color: var(--grey-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 48px 96px;
}
.article-body p {
  font-size: 15px;
  line-height: 1.9;
  color: #333;
  font-weight: 500;
  margin-bottom: 28px;
}
.article-body h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 56px 0 20px;
}
.article-hook {
  font-size: 17px;
  line-height: 1.85;
  color: var(--black);
  font-weight: 600;
  margin-bottom: 36px;
}
.article-callout {
  border-left: 2px solid var(--mint);
  padding: 4px 0 4px 24px;
  margin: 36px 0;
  font-size: 14px;
  color: #333;
  font-weight: 500;
  font-style: italic;
  line-height: 1.8;
}
.article-cta {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--grey-2);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .article-hero { padding: 100px 24px 48px; }
  .article-body { padding: 48px 24px 64px; }
}
