:root {
  --ink: #162033;
  --muted: #5d697a;
  --line: #d9e1e8;
  --soft: #f5f8fb;
  --panel: #ffffff;
  --teal: #0f9a9a;
  --blue: #3867d6;
  --green: #4c956c;
  --gold: #c78a1d;
  --rose: #c4566d;
  --shadow: 0 18px 60px rgba(31, 42, 55, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(217, 225, 232, 0.86);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 36px));
  min-height: 76px;
  margin: 0 auto;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
}

.brand img {
  width: 172px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 6px;
  color: #334155;
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a.active {
  background: #edf5f7;
  color: #17415a;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.button,
.ghost-button,
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  min-height: 42px;
  padding: 0 16px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.button {
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(56, 103, 214, 0.2);
}

.button:hover {
  background: #2f58ba;
}

.ghost-button {
  border-color: var(--line);
  background: #ffffff;
  color: #26364d;
}

.ghost-button:hover {
  border-color: #b8c5d2;
  background: var(--soft);
}

.ghost-button-dark {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.ghost-button-dark:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.14);
}

.icon-button {
  display: none;
  width: 44px;
  padding: 0;
  border-color: var(--line);
  background: #ffffff;
}

.icon-button span,
.icon-button span::before,
.icon-button span::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  content: "";
}

.icon-button span {
  position: relative;
}

.icon-button span::before {
  position: absolute;
  top: -6px;
}

.icon-button span::after {
  position: absolute;
  top: 6px;
}

.section,
.hero {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  gap: 44px;
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: 72px 0 48px;
}

.home-hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 150px);
  border-bottom: 1px solid #25334a;
  background: #162033;
  color: #ffffff;
}

.home-hero::before {
  position: absolute;
  inset: auto 0 0 0;
  height: 170px;
  background: #0f1726;
  content: "";
}

.home-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  gap: 34px;
  align-items: center;
  width: min(1280px, calc(100% - 36px));
  min-height: calc(100vh - 150px);
  margin: 0 auto;
  padding: 62px 0 50px;
}

.home-hero-copy {
  max-width: 660px;
  padding-bottom: 70px;
}

.home-hero h1 {
  max-width: 700px;
  color: #ffffff;
}

.home-hero .lede {
  color: #d6e1ea;
}

.hero-product-scene {
  overflow: hidden;
  align-self: stretch;
  margin: 42px 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #eef4f7;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.34);
}

.scene-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid #d7e2eb;
  color: #47566a;
  font-size: 0.82rem;
  font-weight: 900;
}

.scene-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(230px, 0.85fr);
  gap: 16px;
  min-height: 500px;
  padding: 18px;
}

.scene-stack {
  display: grid;
  gap: 16px;
}

.scene-screen,
.scene-assistant {
  overflow: hidden;
  border: 1px solid #d7e2eb;
  border-radius: 8px;
  background: #ffffff;
}

.scene-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}

.scene-assistant {
  padding: 18px;
  background: #fff6df;
  color: #3f321b;
}

.scene-assistant strong {
  display: block;
  margin-bottom: 8px;
  color: #192234;
}

.scene-assistant p {
  margin-bottom: 0;
  color: #57411a;
}

.hero-copy {
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  max-width: 760px;
  font-size: 6.1rem;
  line-height: 0.9;
  letter-spacing: 0;
}

.product-hero h1 {
  font-size: 5.4rem;
}

h2 {
  margin-bottom: 14px;
  font-size: 3.15rem;
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
  line-height: 1.24;
  letter-spacing: 0;
}

.lede {
  max-width: 720px;
  color: #4b596c;
  font-size: 1.25rem;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-stage {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fbfc;
  box-shadow: var(--shadow);
}

.suite-window {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  min-height: 520px;
}

.suite-rail {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 14px;
  border-right: 1px solid #dbe5ee;
  background: #122033;
  color: #dce8f2;
}

.suite-rail strong {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 0.9rem;
}

.suite-rail span {
  padding: 10px 10px;
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 800;
}

.suite-rail span:nth-child(2) {
  background: rgba(15, 154, 154, 0.22);
}

.suite-canvas {
  padding: 24px;
  background: #f4f7fb;
}

.canvas-bar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.canvas-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.mock-panel {
  border: 1px solid #dfe7ef;
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
}

.mock-panel img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: left top;
}

.assistant-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
}

.assistant-panel div {
  padding: 12px;
  border-radius: 6px;
  background: #eef7f4;
  color: #25433d;
  font-size: 0.92rem;
  font-weight: 700;
}

.assistant-panel div:nth-child(2) {
  background: #eef2ff;
  color: #283864;
}

.assistant-panel div:nth-child(3) {
  background: #fff6df;
  color: #57411a;
}

.section {
  padding: 76px 0;
}

.signal-strip {
  border-bottom: 1px solid var(--line);
  background: #f7fbfc;
}

.signal-strip div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  width: min(1180px, calc(100% - 36px));
  min-height: 82px;
  margin: 0 auto;
}

.signal-strip strong {
  margin-right: 8px;
  color: #26364d;
}

.signal-strip span {
  padding: 8px 10px;
  border: 1px solid #d5e2ea;
  border-radius: 6px;
  background: #ffffff;
  color: #47566a;
  font-size: 0.82rem;
  font-weight: 900;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}

.section-head p {
  max-width: 640px;
  color: var(--muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-card,
.feature-card,
.use-card,
.prompt-card,
.metric-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 398px;
  padding: 22px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.product-card:hover {
  border-color: #a8c3d7;
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(31, 42, 55, 0.1);
}

.product-mark {
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  border-radius: 6px;
}

.mark-crm {
  background: var(--blue);
}

.mark-workspace {
  background: var(--teal);
}

.mark-drive {
  background: var(--green);
}

.mark-publisher {
  background: var(--gold);
}

.product-card p,
.feature-card p,
.use-card p,
.prompt-card p,
.metric-card p {
  color: var(--muted);
}

.product-card img {
  width: calc(100% + 28px);
  height: 120px;
  margin: 10px -14px 18px;
  border: 1px solid #dce6ee;
  border-radius: 8px;
  object-fit: cover;
  object-position: left top;
}

.product-card .text-link {
  margin-top: auto;
}

.text-link {
  color: #2557be;
  font-weight: 900;
}

.workflow {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  align-items: start;
  padding: 42px;
  border-radius: 8px;
  background: #162033;
  color: #ffffff;
}

.workflow-expanded {
  grid-template-columns: 0.72fr 1.28fr;
}

.workflow p {
  color: #d7e1ea;
}

.workflow-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.workflow-step {
  min-height: 130px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.workflow-step span {
  display: block;
  margin-bottom: 18px;
  color: #9bdad8;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.workflow-line {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.workflow-line .workflow-step {
  position: relative;
  min-height: 190px;
}

.workflow-line .workflow-step::after {
  position: absolute;
  top: 33px;
  right: -13px;
  width: 26px;
  height: 2px;
  background: #8bd1d0;
  content: "";
}

.workflow-line .workflow-step:last-child::after {
  display: none;
}

.assistant-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.assistant-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.86fr);
  gap: 18px;
}

.assistant-console {
  overflow: hidden;
  border: 1px solid #24354d;
  border-radius: 8px;
  background: #162033;
  color: #ffffff;
}

.console-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: #b9c7d4;
  font-size: 0.84rem;
  font-weight: 900;
}

.console-thread {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.console-thread p {
  margin: 0;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: #dce7ef;
}

.console-thread p:nth-child(even) {
  background: #eef7f4;
  color: #25433d;
}

.console-thread strong {
  display: block;
  margin-bottom: 6px;
  color: inherit;
}

.assistant-prompt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.prompt-card {
  padding: 22px;
}

.prompt-card strong {
  display: block;
  margin-bottom: 10px;
  color: #233045;
}

.use-grid,
.feature-grid,
.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.compare-panel {
  min-height: 390px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.compare-panel span {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 7px 10px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.problem-panel span {
  background: #fff1f3;
  color: #9a324a;
}

.solution-panel span {
  background: #eef7f4;
  color: #176b64;
}

.compare-panel h3 {
  margin-bottom: 22px;
  font-size: 1.75rem;
}

.compare-panel ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.compare-panel li {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.portal-band {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  gap: 28px;
  align-items: center;
  padding: 42px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f7fbfc;
}

.portal-band p {
  color: var(--muted);
}

.route-list {
  display: grid;
  gap: 10px;
}

.route-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border: 1px solid #d5e2ea;
  border-radius: 8px;
  background: #ffffff;
}

.route-list span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.route-list strong {
  color: #1f3149;
  text-align: right;
}

.feature-card,
.use-card,
.metric-card {
  padding: 22px;
}

.media-band {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.media-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: left top;
}

.product-montage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 0.62fr;
  gap: 14px;
}

.product-hero-frame img {
  aspect-ratio: 16 / 10;
}

.montage-main,
.montage-side img,
.stacked-shots img,
.screenshot-row img,
.capability-panel img {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.montage-main img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: left top;
}

.montage-side {
  display: grid;
  gap: 14px;
}

.montage-side img {
  width: 100%;
  height: 100%;
  min-height: 202px;
  object-fit: cover;
  object-position: left top;
}

.crm-capability-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 16px;
  align-items: stretch;
}

.crm-story-list {
  display: grid;
  gap: 18px;
}

.crm-story-row {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: 28px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.crm-story-row:nth-child(even) > div:first-child {
  order: 2;
}

.crm-story-row h3 {
  max-width: 520px;
  font-size: 2rem;
}

.crm-story-row p {
  max-width: 560px;
  color: var(--muted);
}

.story-split-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.story-split-images img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  object-fit: cover;
  object-position: left top;
  box-shadow: var(--shadow);
}

.capability-panel {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.capability-large {
  grid-row: span 2;
  padding: 30px;
}

.capability-large p:not(.eyebrow),
.capability-panel p {
  color: var(--muted);
}

.capability-panel img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: left top;
}

.capability-large img {
  aspect-ratio: 16 / 11;
}

.screenshot-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.screenshot-row article {
  display: grid;
  gap: 14px;
}

.screenshot-row img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: left top;
}

.screenshot-row p {
  color: var(--muted);
}

.stacked-shots {
  display: grid;
  gap: 16px;
}

.stacked-shots img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: left top;
}

.split-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.split-list li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: #47566a;
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 36px;
  border-radius: 8px;
  background: #e9f6f5;
}

.site-footer {
  margin-top: 60px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  gap: 20px;
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  font-weight: 800;
}

.product-hero {
  min-height: auto;
  padding-top: 64px;
}

.page-kicker {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 6px;
  background: #edf5f7;
  color: #17415a;
  font-size: 0.8rem;
  font-weight: 900;
}

@media (max-width: 980px) {
  .icon-button {
    display: inline-flex;
  }

  h1,
  .product-hero h1 {
    font-size: 4.4rem;
  }

  h2 {
    font-size: 2.65rem;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .menu-open .nav-links {
    position: fixed;
    inset: 76px 0 auto 0;
    display: grid;
    gap: 0;
    padding: 18px;
    border-bottom: 1px solid var(--line);
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(31, 42, 55, 0.12);
  }

  .menu-open .nav-links a {
    padding: 16px 10px;
  }

  .hero,
  .product-hero,
  .home-hero-inner,
  .workflow,
  .assistant-band,
  .assistant-showcase,
  .media-band,
  .cta-band,
  .compare-grid,
  .portal-band,
  .product-montage,
  .crm-capability-grid,
  .crm-story-row {
    grid-template-columns: 1fr;
  }

  .crm-story-row:nth-child(even) > div:first-child {
    order: 0;
  }

  .home-hero-inner {
    min-height: auto;
    padding-top: 46px;
  }

  .home-hero-copy {
    padding-bottom: 0;
  }

  .scene-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero {
    min-height: auto;
    padding-top: 50px;
  }

  .product-grid,
  .use-grid,
  .feature-grid,
  .metric-grid,
  .screenshot-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .suite-window {
    grid-template-columns: 1fr;
  }

  .suite-rail {
    flex-direction: row;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid #dbe5ee;
  }

  .suite-rail strong {
    display: none;
  }

  .canvas-grid,
  .workflow-list,
  .workflow-line {
    grid-template-columns: 1fr;
  }

  .workflow-line .workflow-step::after {
    top: auto;
    right: auto;
    bottom: -8px;
    left: 20px;
    width: 2px;
    height: 16px;
  }

  .cta-band {
    align-items: start;
  }
}

@media (max-width: 640px) {
  .nav,
  .section,
  .hero {
    width: min(100% - 28px, 1180px);
  }

  .brand img {
    width: 148px;
  }

  h1 {
    font-size: 2.85rem;
  }

  .product-hero h1 {
    font-size: 3.1rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .lede {
    font-size: 1.08rem;
  }

  .product-grid,
  .use-grid,
  .feature-grid,
  .metric-grid,
  .screenshot-row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 54px 0;
  }

  .section-head {
    display: block;
  }

  .workflow,
  .cta-band,
  .portal-band {
    padding: 24px;
  }

  .home-hero-inner {
    width: min(100% - 28px, 1180px);
    gap: 18px;
    padding-top: 30px;
    padding-bottom: 26px;
  }

  .hero-product-scene {
    margin-top: 20px;
  }

  .scene-header {
    padding: 10px 12px;
    font-size: 0.72rem;
  }

  .scene-header span:last-child {
    display: none;
  }

  .scene-grid {
    padding: 12px;
  }

  .scene-screen-large {
    max-height: 245px;
  }

  .scene-stack {
    display: none;
  }

  .suite-canvas {
    padding: 14px;
  }

  .mock-panel img {
    min-height: 220px;
  }

  .footer-inner {
    display: grid;
  }

  .route-list div {
    display: grid;
  }

  .route-list strong {
    text-align: left;
    overflow-wrap: anywhere;
  }

  .montage-main img,
  .montage-side img {
    min-height: auto;
    aspect-ratio: 16 / 10;
  }

  .crm-story-row {
    padding: 20px;
  }

  .crm-story-row h3 {
    font-size: 1.45rem;
  }

  .story-split-images {
    grid-template-columns: 1fr;
  }

  .capability-large {
    padding: 22px;
  }
}
