@import url("https://fonts.googleapis.com/css2?family=Cabin:wght@400;500&family=Geist+Mono:wght@400&family=Inter:wght@400;500;600;700&family=Schibsted+Grotesk:wght@400;500&display=swap");

:root {
  --black: #050505;
  --ink: #0a0a0a;
  --paper: #f6f6f4;
  --white: #ffffff;
  --line-dark: rgba(255, 255, 255, 0.14);
  --line-light: rgba(0, 0, 0, 0.13);
  --muted-dark: rgba(255, 255, 255, 0.62);
  --muted-light: rgba(0, 0, 0, 0.65);
  --accent: #8cff72;
  --content: 1131px;
  --frame-max: 1320px;
  --grid-max: 1240px;
  --grid-gutter: 40px;
  --grid-gap: 24px;
  --card-stack-gap: 48px;
  --section-space: 96px;
  --corner-size: 6px;
  --display: "Schibsted Grotesk", "Helvetica Neue", sans-serif;
  --body: "Cabin", "Helvetica Neue", sans-serif;
  --ui: "Inter", sans-serif;
  --mono: "Geist Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 68px;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 68px;
  color: var(--white);
  background: rgba(5, 5, 5, 0.98);
  border-bottom: 1px solid var(--line-dark);
}

.header-inner {
  width: 100%;
  height: 68px;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 190px 1fr 150px;
  align-items: center;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-family: var(--display);
  font-size: 25px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.brand-logo {
  width: 43px;
  height: 30px;
  flex: 0 0 auto;
  object-fit: contain;
}

.desktop-nav {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 31px;
  padding-left: 16px;
  font-family: var(--body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.64);
}

.desktop-nav a {
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--white);
}

.header-cta {
  justify-self: end;
  min-width: 139px;
}

.button {
  min-height: 40px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  font-family: var(--ui);
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  transition: transform 150ms ease, background 150ms ease, color 150ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-solid {
  background: var(--accent);
  color: var(--black);
}

.button-outline {
  border-color: rgba(140, 255, 114, 0.65);
  color: var(--white);
  background: transparent;
}

.button-dark {
  background: var(--black);
  color: var(--white);
}

.button-arrow::before {
  content: "↗";
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-right: 10px;
  background: var(--black);
  color: var(--accent);
  font-size: 14px;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.dark-section,
.section-dark {
  color: var(--white);
  background: var(--black);
}

.section-light {
  color: var(--ink);
  background: var(--paper);
}

.hero {
  min-height: 560px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line-dark);
}

.announcement-bar {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 4;
  width: min(calc(100% - 80px), var(--grid-max));
  min-height: 40px;
  padding: 0 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 255, 255, 0.62);
  border-bottom: 1px solid var(--line-dark);
  font-family: var(--ui);
  font-size: 11px;
  line-height: 1.35;
  transform: translateX(-50%);
}

.announcement-bar p {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.announcement-bar a {
  flex: 0 0 auto;
  color: var(--accent);
  font-weight: 600;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: 660px;
  margin: 0 auto;
  padding-top: 84px;
  text-align: center;
}

.hero-copy h1 {
  margin-bottom: 13px;
  font-family: var(--display);
  font-size: clamp(64px, 5vw, 88px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.05em;
}

.hero-copy > p {
  width: 600px;
  margin: 0 auto 35px;
  font-family: var(--ui);
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
}

.button-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
}

.brand-strip {
  min-height: 160px;
  padding: 0 max(30px, calc((100% - var(--content)) / 2));
  display: grid;
  grid-template-columns: 295px 1fr;
  align-items: center;
  background: var(--paper);
  border-bottom: 1px solid var(--line-light);
}

.brand-strip > p {
  margin: 0;
  font-family: var(--ui);
  font-size: 14px;
  line-height: 1.65;
}

.brand-list {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 24px;
}

.brand-list span {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  letter-spacing: -0.035em;
  opacity: 0.75;
}

.section {
  position: relative;
  overflow: hidden;
}

.section-inner,
.footer-inner,
.footer-bottom {
  width: min(calc(100% - 60px), var(--content));
  margin-inline: auto;
}

.section-intro {
  position: relative;
  z-index: 2;
}

.section-intro-wide {
  width: 680px;
}

.eyebrow {
  width: fit-content;
  min-height: 25px;
  padding: 3px 10px 3px 18px;
  position: relative;
  display: inline-flex;
  align-items: center;
  border: 1px solid currentColor;
  font-family: var(--ui);
  font-size: 13px;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--accent);
  transform: translateY(-50%);
}

.eyebrow-dark {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

.eyebrow-light {
  color: var(--white);
  border-color: rgba(140, 255, 114, 0.75);
}

.section-intro h2,
.security-intro h2,
.faq-intro h2,
.cta h2 {
  margin: 21px 0 22px;
  font-family: var(--display);
  font-size: 52px;
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.section-intro > p,
.security-intro > p,
.faq-intro > p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted-light);
}

.section-dark .section-intro > p {
  color: var(--muted-dark);
}

.challenge {
  min-height: 980px;
  padding: 60px 0 80px;
}

.three-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.challenge-grid {
  margin-top: 66px;
}

.feature-card,
.capability-card,
.security-card {
  position: relative;
}

.feature-card::before,
.feature-card::after,
.capability-card::before,
.security-card::before,
.blog-row::before,
.step::before {
  content: "";
  position: absolute;
  z-index: 3;
  width: 6px;
  height: 6px;
  background: currentColor;
}

.feature-card::before,
.capability-card::before,
.security-card::before,
.blog-row::before,
.step::before {
  left: -3px;
  top: -3px;
}

.feature-card::after {
  right: -3px;
  bottom: -3px;
}

.placeholder-media {
  height: 260px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #080808;
  border: 1px solid rgba(0, 0, 0, 0.25);
}

.placeholder-wave,
.placeholder-orbit,
.placeholder-bars {
  position: relative;
  overflow: hidden;
  background-color: #070907;
}

.placeholder-wave::before,
.placeholder-orbit::before,
.placeholder-bars::before {
  content: "";
  position: absolute;
  width: 150%;
  height: 120px;
  border: 14px solid rgba(140, 255, 114, 0.9);
  border-radius: 50%;
  filter: blur(7px);
  opacity: 0.7;
  transform: rotate(-18deg);
}

.placeholder-wave::before { left: -30%; top: 18%; }
.placeholder-orbit::before { width: 270px; height: 270px; left: 20%; top: 15%; border-width: 8px; }
.placeholder-bars::before { width: 80%; height: 180%; left: 10%; top: -40%; border-radius: 0; border-width: 0; background: repeating-linear-gradient(90deg, transparent 0 22px, rgba(140,255,114,.75) 23px 29px, transparent 30px 46px); transform: rotate(14deg); }

.media-glyph {
  position: relative;
  z-index: 2;
  font-family: var(--display);
  font-size: 62px;
  color: var(--white);
}

.card-copy {
  min-height: 220px;
  padding: 29px 24px 30px;
  border: 1px solid var(--line-light);
  border-top: 0;
}

.card-copy h3,
.capability-card > h3,
.security-card h3,
.blog-row h3 {
  margin-bottom: 17px;
  font-family: var(--display);
  font-size: 24px;
  line-height: 1.33;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.card-copy p,
.capability-card > p,
.security-card p,
.blog-row p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted-light);
}

.solutions {
  min-height: 2130px;
  padding: 53px 0 0;
}

.glow-field {
  position: absolute;
  pointer-events: none;
  width: 900px;
  height: 900px;
  border: 110px solid rgba(56, 133, 47, 0.18);
  border-radius: 50%;
  filter: blur(46px);
}

.glow-field-top {
  right: -300px;
  top: -220px;
}

.solution-shell {
  margin-top: 70px;
  display: grid;
  grid-template-columns: 276px minmax(0, 1fr);
  border-top: 1px solid var(--line-dark);
}

.solution-tabs {
  padding-right: 36px;
  border-right: 1px solid var(--line-dark);
}

.solution-tabs a {
  min-height: 76px;
  display: flex;
  align-items: center;
  position: relative;
  border-bottom: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--body);
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}

.solution-tabs a::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 12px;
  background: rgba(140, 255, 114, 0.5);
}

.solution-tabs a.active {
  color: var(--white);
}

.solution-content {
  min-width: 0;
}

.solution-row {
  min-height: 545px;
  position: relative;
  display: grid;
  grid-template-columns: 385px minmax(0, 1fr);
  border-bottom: 1px solid var(--line-dark);
}

.frame-corners {
  position: absolute;
  z-index: 5;
  inset: 0;
  pointer-events: none;
}

.frame-corners i {
  position: absolute;
  width: var(--corner-size);
  height: var(--corner-size);
  background: var(--white);
}

.frame-corners i:nth-child(1) { top: -3px; left: -3px; }
.frame-corners i:nth-child(2) { top: -3px; right: -3px; }
.frame-corners i:nth-child(3) { right: -3px; bottom: -3px; }
.frame-corners i:nth-child(4) { bottom: -3px; left: -3px; }

.solution-copy {
  padding: 42px 38px;
  border-right: 1px solid var(--line-dark);
}

.solution-copy h3 {
  margin-bottom: 18px;
  font-family: var(--display);
  font-size: 32px;
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.solution-copy > p {
  margin-bottom: 34px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted-dark);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-row span,
.task-list span,
.industry-row span {
  padding: 10px 14px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.035);
  font-family: var(--ui);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

.ui-frame {
  margin: 28px;
  min-height: 445px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: rgba(4, 9, 5, 0.78);
  font-family: var(--ui);
}

.ui-label {
  padding: 23px 24px 10px;
  color: var(--muted-dark);
  font-size: 13px;
}

.search-bar {
  height: 56px;
  margin: 0 24px 24px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(140, 255, 114, 0.32);
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.search-bar b {
  color: var(--accent);
  font-size: 22px;
}

.task-list {
  display: grid;
  gap: 8px;
  padding: 0 24px;
}

.process-head,
.process-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line-dark);
  font-size: 13px;
}

.process-status span {
  color: var(--muted-dark);
}

.agent-row {
  margin: 40px 18px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.agent-row > div {
  min-width: 0;
  padding: 16px 10px;
  display: grid;
  gap: 6px;
  border: 1px solid var(--line-dark);
  font-size: 12px;
}

.agent-row span {
  color: var(--muted-dark);
}

.agent-row i {
  height: 16px;
  display: block;
  background: repeating-linear-gradient(90deg, var(--accent) 0 7px, transparent 7px 11px);
}

.agent-row > div:nth-child(2) i { filter: hue-rotate(105deg); }
.agent-row > div:nth-child(3) i { filter: hue-rotate(190deg); }

.thought-pill {
  position: absolute;
  right: 18px;
  bottom: 22px;
  padding: 10px 13px;
  border: 1px solid var(--line-dark);
  color: var(--muted-dark);
  font-size: 12px;
}

.metric-callout {
  margin-top: 60px;
  display: grid;
  gap: 8px;
}

.metric-callout strong {
  font-family: var(--display);
  font-size: 44px;
  line-height: 1;
  font-weight: 400;
}

.metric-callout span {
  color: var(--muted-dark);
  font-size: 14px;
}

.analytics-ui {
  padding: 46px 30px 24px;
}

.chart-bars {
  height: 210px;
  display: flex;
  align-items: flex-end;
  gap: 16px;
}

.chart-bars i {
  flex: 1;
  min-width: 5px;
  height: 15%;
  background: linear-gradient(to top, rgba(140,255,114,.2), var(--accent));
}

.chart-bars i:nth-child(2) { height: 22%; }
.chart-bars i:nth-child(3) { height: 30%; }
.chart-bars i:nth-child(4) { height: 37%; }
.chart-bars i:nth-child(5) { height: 46%; }
.chart-bars i:nth-child(6) { height: 55%; }
.chart-bars i:nth-child(7) { height: 62%; }
.chart-bars i:nth-child(8) { height: 70%; }
.chart-bars i:nth-child(9) { height: 77%; }
.chart-bars i:nth-child(10) { height: 86%; }
.chart-bars i:nth-child(11) { height: 95%; }
.chart-bars i:nth-child(12) { height: 100%; }

.mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 30px;
}

.mini-stats div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px 12px;
  padding: 16px;
  border: 1px solid var(--line-dark);
}

.mini-stats span {
  grid-column: 1 / -1;
  color: var(--muted-dark);
  font-size: 12px;
}

.mini-stats strong {
  font-size: 20px;
}

.mini-stats small {
  color: var(--accent);
}

.capabilities {
  min-height: 1540px;
  padding: 41px 0 120px;
}

.capability-feature-grid {
  margin-top: 65px;
  display: grid;
  grid-template-columns: 1fr 1.13fr;
  gap: 24px;
}

.large-media {
  min-height: 450px;
  position: relative;
  overflow: hidden;
}

.placeholder-photo {
  background:
    linear-gradient(135deg, transparent 20%, rgba(255,255,255,.09) 20% 21%, transparent 21% 64%, rgba(255,255,255,.08) 64% 65%, transparent 65%),
    radial-gradient(circle at 55% 38%, #4e514b 0 16%, transparent 16.5%),
    linear-gradient(135deg, #111 0 32%, #444 32% 62%, #171717 62%);
}

.tag-cloud {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.tag-cloud span {
  padding: 10px 13px;
  background: rgba(0,0,0,.9);
  color: var(--white);
  font-family: var(--ui);
  font-size: 13px;
}

.capability-panel {
  padding: 38px 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  background:
    radial-gradient(circle at 40% 110%, transparent 0 34%, rgba(140,255,114,.48) 35% 38%, transparent 39%),
    radial-gradient(circle at 80% 0%, transparent 0 30%, rgba(140,255,114,.35) 31% 34%, transparent 35%),
    #050805;
}

.capability-panel h3 {
  width: 390px;
  margin-bottom: 12px;
  font-family: var(--display);
  font-size: 32px;
  line-height: 1.25;
  font-weight: 400;
}

.capability-panel p {
  width: 380px;
  color: var(--muted-dark);
}

.command-line {
  width: 340px;
  padding: 15px 18px;
  border: 1px solid var(--line-dark);
  background: rgba(0,0,0,.6);
  font-family: var(--mono);
  font-size: 12px;
}

.command-line span {
  color: var(--accent);
}

.industry-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.industry-row span {
  min-height: 76px;
  display: flex;
  align-items: center;
  font-size: 12px;
}

.capability-cards {
  margin-top: 24px;
}

.capability-card {
  border: 1px solid var(--line-light);
  background: var(--white);
  padding-bottom: 28px;
}

.capability-card > h3,
.capability-card > p {
  margin-left: 24px;
  margin-right: 24px;
}

.capability-card > h3 {
  margin-top: 24px;
  margin-bottom: 10px;
}

.capability-visual {
  height: 250px;
  padding: 27px;
  color: var(--white);
  background: #070907;
  font-family: var(--ui);
}

.natural-visual {
  display: grid;
  gap: 9px;
}

.natural-visual > span {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  color: var(--muted-dark);
}

.natural-visual p {
  padding: 12px;
  margin: 0;
  border: 1px solid var(--line-dark);
  font-size: 12px;
}

.natural-visual i {
  color: var(--accent);
  font-style: normal;
  text-align: center;
}

.natural-visual .workflow-chip {
  padding: 12px;
  border: 1px solid rgba(140,255,114,.45);
  color: var(--accent);
}

.code-visual pre {
  margin: 0 0 30px;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.9;
  color: rgba(255,255,255,.76);
}

.code-visual pre span { color: #b691ff; }
.code-visual b {
  padding: 10px 14px;
  border: 1px solid rgba(140,255,114,.4);
  color: var(--accent);
  font-size: 12px;
}

.integration-visual {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-content: center;
  gap: 9px;
}

.integration-visual span {
  padding: 10px 8px;
  border: 1px solid var(--line-dark);
  text-align: center;
  font-size: 11px;
  color: var(--muted-dark);
}

.process {
  min-height: 1000px;
  padding: 38px 0 120px;
  border-top: 1px solid var(--line-light);
}

.process-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 44% 56%;
  border: 1px solid var(--line-light);
}

.step-list {
  border-right: 1px solid var(--line-light);
}

.step {
  min-height: 80px;
  position: relative;
  padding: 24px;
  border-bottom: 1px solid var(--line-light);
}

.step:last-child {
  border-bottom: 0;
}

.step.active {
  min-height: 248px;
}

.step > div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.step h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 24px;
  line-height: 1.33;
  font-weight: 500;
}

.step span {
  font-family: var(--ui);
  font-size: 13px;
  color: var(--muted-light);
}

.step p {
  width: 86%;
  margin: 45px 0 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted-light);
}

.dashboard-placeholder {
  min-height: 590px;
  padding: 30px;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, transparent 0 30%, rgba(140,255,114,.48) 31% 34%, transparent 35%),
    #050705;
  font-family: var(--ui);
}

.dashboard-topline {
  display: flex;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-dark);
  font-size: 12px;
  color: var(--muted-dark);
}

.workflow-canvas {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.workflow-canvas span {
  padding: 14px 12px;
  border: 1px solid rgba(140,255,114,.35);
  background: rgba(0,0,0,.7);
  font-size: 11px;
}

.workflow-canvas b {
  color: var(--accent);
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.dashboard-metrics div {
  min-height: 104px;
  padding: 17px;
  display: grid;
  border: 1px solid var(--line-dark);
  border-right: 0;
}

.dashboard-metrics div:last-child { border-right: 1px solid var(--line-dark); }
.dashboard-metrics small { color: var(--muted-dark); }
.dashboard-metrics strong { align-self: end; font-size: 22px; }

.activity-chart {
  height: 128px;
  margin-top: 22px;
  display: flex;
  align-items: end;
  gap: 10px;
  border-bottom: 1px solid var(--line-dark);
}

.activity-chart i {
  flex: 1;
  height: 50%;
  background: rgba(140,255,114,.62);
}
.activity-chart i:nth-child(2) { height: 72%; }
.activity-chart i:nth-child(3) { height: 43%; }
.activity-chart i:nth-child(4) { height: 90%; }
.activity-chart i:nth-child(5) { height: 62%; }
.activity-chart i:nth-child(6) { height: 81%; }
.activity-chart i:nth-child(7) { height: 52%; }
.activity-chart i:nth-child(8) { height: 100%; }

.testimonials {
  min-height: 1240px;
  padding: 28px 0 120px;
}

.case-grid {
  margin-top: 65px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

.case-feature {
  min-height: 510px;
  display: grid;
  grid-template-columns: 38% 62%;
  border: 1px solid var(--line-dark);
}

.case-portrait {
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line-dark);
  background:
    linear-gradient(140deg, rgba(255,255,255,.08), transparent 40%),
    radial-gradient(circle at 50% 30%, #4b4b4b 0 12%, transparent 12.5%),
    linear-gradient(160deg, #202020, #090909);
  color: rgba(255,255,255,.35);
  font-family: var(--mono);
  font-size: 12px;
}

.case-quote {
  position: relative;
  padding: 42px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.case-logo,
.case-side article > span {
  font-family: var(--ui);
  font-size: 12px;
  color: var(--muted-dark);
  text-transform: uppercase;
}

.case-quote > strong {
  margin: 30px 0 25px;
  font-family: var(--display);
  font-size: 44px;
  font-weight: 400;
}

.case-quote h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 24px;
  line-height: 1.33;
  font-weight: 500;
}

.case-quote a,
.case-side a,
.blog-row > a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-dark);
  font-size: 20px;
}

.case-quote a {
  position: absolute;
  right: 28px;
  bottom: 28px;
}

.case-side {
  display: grid;
  gap: 24px;
}

.case-side article {
  min-height: 243px;
  position: relative;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line-dark);
}

.case-side strong {
  margin-top: 32px;
  font-family: var(--display);
  font-size: 44px;
  line-height: 1;
  font-weight: 400;
}

.case-side p {
  color: var(--muted-dark);
}

.case-side a {
  position: absolute;
  right: 20px;
  bottom: 20px;
}

.metric-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.metric-grid article {
  min-height: 210px;
  padding: 34px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line-dark);
  border-right: 0;
}

.metric-grid article:last-child { border-right: 1px solid var(--line-dark); }

.metric-grid strong {
  font-family: var(--display);
  font-size: 60px;
  line-height: 1;
  font-weight: 400;
}

.metric-grid span {
  color: var(--muted-dark);
}

.security {
  min-height: 600px;
  padding: 60px 0 90px;
}

.security-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 24px;
}

.security-intro {
  padding-right: 35px;
}

.security-intro h2 {
  font-size: 44px;
  line-height: 1.2;
}

.security-card {
  min-height: 390px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line-light);
  background: rgba(255,255,255,.55);
}

.security-icon {
  font-size: 34px;
}

.security-card h3 {
  margin-top: auto;
  margin-bottom: 15px;
}

.blog {
  min-height: 1040px;
  padding: 40px 0 106px;
  border-top: 1px solid var(--line-light);
}

.blog-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.blog-list {
  margin-top: 58px;
  border-top: 1px solid var(--line-light);
}

.blog-row {
  min-height: 210px;
  position: relative;
  display: grid;
  grid-template-columns: 280px 230px 1fr 44px;
  align-items: center;
  gap: 48px;
  border-bottom: 1px solid var(--line-light);
}

.blog-image {
  width: 280px;
  height: 168px;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.4);
  font-family: var(--mono);
  font-size: 12px;
}

.blog-row h3 {
  margin: 0 0 10px;
}

.blog-tag {
  display: inline-block;
  padding: 5px 8px;
  border: 1px solid var(--line-light);
  font-family: var(--ui);
  font-size: 10px;
  text-transform: uppercase;
}

.blog-row > a {
  border-color: var(--line-light);
}

.faq {
  min-height: 830px;
  padding: 147px 0 80px;
  border-top: 1px solid var(--line-light);
}

.faq-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
}

.faq-intro h2 {
  margin-bottom: 52px;
  font-size: 44px;
  line-height: 1.2;
}

.support-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.avatar-stack {
  height: 46px;
  display: flex;
  margin-bottom: 17px;
}

.avatar-stack span {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--paper);
  background: linear-gradient(145deg, #777, #171717);
}

.avatar-stack span + span {
  margin-left: -12px;
  background: linear-gradient(145deg, #232323, #9b9b9b);
}

.support-block strong {
  font-size: 18px;
}

.support-block p {
  margin-bottom: 18px;
}

.faq-list {
  border-top: 1px solid var(--line-light);
}

.faq-list details {
  position: relative;
  border-bottom: 1px solid var(--line-light);
}

.faq-list details::before {
  content: "";
  position: absolute;
  left: -3px;
  top: -3px;
  width: 6px;
  height: 6px;
  background: var(--black);
}

.faq-list summary {
  min-height: 74px;
  padding: 23px 54px 22px 24px;
  position: relative;
  cursor: pointer;
  list-style: none;
  font-family: var(--body);
  font-size: 18px;
  font-weight: 500;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 14px;
  right: 22px;
  font-family: var(--display);
  font-size: 32px;
  font-weight: 400;
}

.faq-list details[open] summary::after { content: "−"; }

.faq-list details p {
  max-width: 590px;
  padding: 0 54px 24px 24px;
  margin: 0;
  color: var(--muted-light);
  font-size: 14px;
}

.cta {
  min-height: 628px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--black);
  border-top: 1px solid var(--line-dark);
}

.pixel-field {
  position: absolute;
  inset: 0;
  opacity: 0.58;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    radial-gradient(circle at 8% 8%, var(--accent) 0 3px, transparent 4px),
    radial-gradient(circle at 72% 82%, var(--accent) 0 3px, transparent 4px),
    radial-gradient(circle at 31% 92%, var(--accent) 0 3px, transparent 4px);
  background-size: 14px 14px, 14px 14px, 140px 110px, 190px 140px, 155px 130px;
  mask-image: linear-gradient(to bottom, transparent 0, black 25%, black 85%, transparent 100%);
}

.cta-inner {
  position: relative;
  z-index: 2;
  width: 720px;
  text-align: center;
  transform: translateY(12px);
}

.cta h2 {
  margin-top: 25px;
  font-size: 52px;
}

.cta p {
  width: 650px;
  margin: 0 auto 35px;
  color: var(--muted-dark);
}

.site-footer {
  min-height: 620px;
  padding: 82px 0 24px;
  color: var(--white);
  background: var(--black);
  border-top: 1px solid var(--line-dark);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 60px;
}

.footer-brand > p {
  width: 340px;
  margin-top: 32px;
  color: var(--muted-dark);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-column strong {
  margin-bottom: 7px;
  font-family: var(--ui);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

.footer-column a {
  width: fit-content;
  color: rgba(255,255,255,.65);
}

.footer-bottom {
  margin-top: 110px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line-dark);
  font-family: var(--ui);
  font-size: 12px;
  color: rgba(255,255,255,.5);
}

.footer-bottom div {
  display: flex;
  gap: 24px;
}

@media (max-width: 1199px) {
  :root {
    --content: 930px;
  }

  .header-inner {
    grid-template-columns: 170px 1fr 130px;
    padding-inline: 24px;
  }

  .desktop-nav {
    gap: 20px;
    font-size: 13px;
  }

  .header-cta {
    min-width: 125px;
  }

  .solution-shell {
    grid-template-columns: 220px 1fr;
  }

  .solution-tabs a.active {
    border-bottom-color: var(--accent);
  }

  .solution-content {
    display: grid;
    gap: 32px;
    border-top: 0;
  }

  .solution-row {
    grid-template-columns: 325px 1fr;
    border: 1px solid var(--line-dark);
  }

  .solution-copy {
    padding-inline: 28px;
  }

  .ui-frame {
    margin: 20px;
  }

  .capability-panel {
    padding-inline: 30px;
  }

  .industry-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-row {
    grid-template-columns: 220px 190px 1fr 44px;
    gap: 28px;
  }

  .blog-image {
    width: 220px;
    height: 150px;
  }
}

@media (max-width: 809px) {
  :root {
    --content: 100%;
  }

  html {
    scroll-padding-top: 64px;
  }

  .site-header,
  .header-inner {
    height: 64px;
  }

  .header-inner {
    padding-inline: 20px;
    grid-template-columns: 1fr auto;
  }

  .wordmark {
    font-size: 22px;
  }

  .brand-logo {
    width: 40px;
    height: 28px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    padding: 0;
    display: grid;
    place-content: center;
    gap: 7px;
    color: var(--white);
    background: transparent;
    border: 1px solid var(--line-dark);
  }

  .menu-toggle span:not(.sr-only) {
    width: 18px;
    height: 1px;
    display: block;
    background: currentColor;
  }

  .mobile-menu {
    position: fixed;
    z-index: 99;
    inset: 64px 0 auto;
    padding: 26px 20px 35px;
    display: none;
    flex-direction: column;
    gap: 2px;
    background: var(--black);
    border-bottom: 1px solid var(--line-dark);
  }

  .mobile-menu.open {
    display: flex;
  }

  .mobile-menu a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line-dark);
    font-size: 18px;
  }

  .section-inner,
  .footer-inner,
  .footer-bottom {
    width: calc(100% - 60px);
  }

  .section-intro-wide,
  .security-intro,
  .faq-intro {
    width: 100%;
  }

  .section-intro h2,
  .cta h2 {
    font-size: 52px;
  }

  .hero {
    min-height: 0;
    height: auto;
    padding: 72px 0 96px;
  }

  .hero-copy {
    width: calc(100% - 40px);
    padding-top: 0;
  }

  .hero-copy h1 {
    font-size: 58px;
    line-height: 1;
    min-height: 0;
    text-wrap: balance;
  }

  .hero-copy > p {
    width: 100%;
    margin-bottom: 30px;
  }

  .announcement-bar {
    width: calc(100% - 40px);
    min-height: 48px;
    justify-content: center;
    text-align: center;
  }

  .announcement-bar p {
    display: none;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .brand-strip {
    min-height: 256px;
    height: 256px;
    padding: 24px 30px;
    grid-template-columns: 1fr;
    gap: 18px;
    overflow: hidden;
  }

  .brand-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 16px;
  }

  .brand-list span:last-child {
    grid-column: 1 / -1;
  }

  .challenge,
  .capabilities,
  .process,
  .testimonials,
  .security,
  .blog,
  .faq {
    padding: 90px 0;
  }

  .challenge {
    min-height: 1866px;
  }

  .challenge .section-intro h2 {
    min-height: 229px;
  }

  .three-card-grid,
  .capability-feature-grid,
  .case-grid,
  .security-grid,
  .faq-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .challenge-grid,
  .case-grid {
    margin-top: 55px;
  }

  .placeholder-media {
    height: 245px;
  }

  .challenge .placeholder-media {
    height: 208px;
  }

  .challenge .card-copy {
    min-height: 0;
    padding: 20px;
  }

  .solutions {
    min-height: 2579px;
    padding-top: 90px;
  }

  .solution-shell {
    grid-template-columns: 1fr;
    margin-top: 55px;
  }

  .solution-content {
    gap: var(--grid-gap);
  }

  .solution-tabs {
    padding: 0;
    border-right: 0;
  }

  .solution-row {
    min-height: 0;
    height: 640px;
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .solution-copy {
    padding: 34px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .ui-frame {
    min-height: 0;
    height: 300px;
    margin: 20px 0 28px;
  }

  .agent-row {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 20px;
  }

  .thought-pill {
    position: static;
    width: fit-content;
    margin: 18px;
  }

  .chart-bars {
    gap: 8px;
    height: 170px;
  }

  .mini-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .capabilities {
    min-height: 2776px;
  }

  .capability-panel h3,
  .capability-panel p,
  .command-line {
    width: 100%;
  }

  .large-media {
    min-height: 440px;
  }

  .capability-panel {
    min-height: 0;
    height: 480px;
    overflow: hidden;
  }

  .capability-visual {
    height: 220px;
  }

  .industry-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .capability-cards {
    margin-top: 24px;
  }

  .process {
    min-height: 1241px;
    height: 1241px;
    padding: 89px 0 31px;
    overflow: hidden;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .step-list {
    border-right: 0;
  }

  .dashboard-placeholder {
    min-height: 0;
    height: 420px;
    overflow: hidden;
  }

  .workflow-canvas {
    align-items: stretch;
    flex-direction: column;
    height: auto;
    padding: 30px 0;
  }

  .workflow-canvas b {
    text-align: center;
    transform: rotate(90deg);
  }

  .dashboard-metrics {
    grid-template-columns: 1fr;
  }

  .dashboard-metrics div {
    border-right: 1px solid var(--line-dark);
    border-bottom: 0;
  }

  .dashboard-metrics div:last-child {
    border-bottom: 1px solid var(--line-dark);
  }

  .testimonials {
    min-height: 2124px;
  }

  .case-feature {
    grid-template-columns: 1fr;
  }

  .case-portrait {
    min-height: 250px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .case-quote {
    min-height: 350px;
    height: 350px;
    padding: 30px 24px;
    overflow: hidden;
  }

  .case-quote h3 {
    padding-bottom: 65px;
  }

  .case-side article {
    min-height: 220px;
  }

  .metric-grid {
    grid-template-columns: 1fr;
  }

  .metric-grid article,
  .metric-grid article:last-child {
    min-height: 170px;
    border-right: 1px solid var(--line-dark);
    border-bottom: 0;
  }

  .metric-grid article:last-child {
    border-bottom: 1px solid var(--line-dark);
  }

  .security {
    min-height: 0;
    padding: 60px 0 19px;
  }

  .security-intro {
    padding-right: 0;
    margin-bottom: 34px;
  }

  .security-intro h2,
  .faq-intro h2 {
    font-size: 44px;
  }

  .security-card {
    min-height: 220px;
  }

  .blog {
    min-height: 1998px;
  }

  .blog-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .blog-row {
    min-height: 0;
    height: 463px;
    padding: 20px 0;
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
    overflow: hidden;
  }

  .blog-image {
    width: 100%;
    height: 180px;
  }

  .faq {
    min-height: 1277px;
    height: 1277px;
    padding: 60px 0 30px;
    overflow: hidden;
  }

  .faq-grid {
    gap: 25px;
  }

  .faq-list summary {
    min-height: 58px;
    padding-left: 14px;
  }

  .faq-list details p {
    padding-left: 14px;
  }

  .cta {
    min-height: 720px;
    padding: 90px 30px;
  }

  .cta-inner,
  .cta p {
    width: 100%;
  }

  .site-footer {
    min-height: 820px;
    padding-top: 60px;
  }

  .footer-inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 16px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand > p {
    width: 100%;
  }

  .footer-bottom {
    margin-top: 60px;
    flex-direction: column;
    gap: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* Desktop alignment pass based on the supplied Framer section references. */
@media (min-width: 1200px) {
  .site-header {
    position: relative;
  }

  .section-inner {
    position: relative;
    z-index: 2;
  }

  .challenge .section-inner,
  .solutions .section-inner,
  .capabilities .section-inner,
  .process .section-inner,
  .testimonials .section-inner,
  .security .section-inner,
  .blog .section-inner,
  .faq .section-inner,
  .footer-inner,
  .footer-bottom {
    width: min(calc(100% - (var(--grid-gutter) * 2)), var(--grid-max));
  }

  .challenge::before,
  .challenge::after,
  .solutions::before,
  .solutions::after,
  .capabilities::before,
  .capabilities::after,
  .process::before,
  .process::after,
  .testimonials::before,
  .testimonials::after,
  .security::before,
  .security::after,
  .blog::before,
  .blog::after,
  .faq::before,
  .faq::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    width: 1px;
    pointer-events: none;
  }

  .challenge::before,
  .solutions::before,
  .capabilities::before,
  .process::before,
  .testimonials::before,
  .security::before,
  .blog::before,
  .faq::before {
    left: calc(50% - 660px);
  }

  .challenge::after,
  .solutions::after,
  .capabilities::after,
  .process::after,
  .testimonials::after,
  .security::after,
  .blog::after,
  .faq::after {
    right: calc(50% - 660px);
  }

  .section-light::before,
  .section-light::after {
    background: rgba(0, 0, 0, 0.075);
  }

  .section-dark::before,
  .section-dark::after {
    background: rgba(255, 255, 255, 0.12);
  }

  .eyebrow {
    min-height: 22px;
    padding: 2px 8px 2px 17px;
    font-size: 11px;
  }

  .eyebrow::before {
    width: 5px;
    height: 5px;
  }

  .challenge {
    min-height: 862px;
    padding: 13px 0 120px;
  }

  .challenge .section-intro-wide {
    width: 680px;
  }

  .challenge-grid {
    margin-top: 54px;
    gap: 24px;
  }

  .feature-card {
    min-height: 445px;
    padding: 24px 23px 0;
    border: 1px solid rgba(0, 0, 0, 0.035);
    background: rgba(255, 255, 255, 0.68);
  }

  .feature-card .placeholder-media {
    height: 251px;
    border: 0;
  }

  .feature-card .card-copy {
    min-height: 169px;
    padding: 24px 0 22px;
    border: 0;
  }

  .feature-card .card-copy h3 {
    margin-bottom: 11px;
    font-size: 25px;
    line-height: 1.2;
  }

  .feature-card .card-copy p {
    font-size: 14px;
    line-height: 1.7;
  }

  .solutions {
    min-height: 0;
    padding: 80px 0 var(--section-space);
  }

  .solutions .section-intro-wide {
    width: 590px;
  }

  .solutions .eyebrow {
    text-transform: none;
  }

  .solution-shell {
    margin-top: 64px;
    grid-template-columns: 280px minmax(0, 1fr);
    column-gap: 72px;
    border-top: 0;
  }

  .solution-tabs {
    padding-right: 0;
    border-right: 0;
  }

  .solution-tabs a {
    min-height: 56px;
    font-size: 16px;
  }

  .solution-tabs a.active {
    border-bottom-color: var(--accent);
  }

  .solution-content {
    display: grid;
    gap: var(--card-stack-gap);
    border-top: 0;
  }

  .solution-row {
    min-height: 500px;
    height: 500px;
    grid-template-columns: 390px minmax(0, 1fr);
    border: 1px solid var(--line-dark);
  }

  .solution-copy {
    padding: 42px 36px 39px;
    display: flex;
    flex-direction: column;
  }

  .solution-copy h3 {
    margin-bottom: 15px;
    font-size: 32px;
  }

  .solution-copy > p {
    margin-bottom: 24px;
  }

  .solution-copy .tag-row,
  .solution-copy .metric-callout {
    margin-top: auto;
  }

  .ui-frame {
    height: 344px;
    min-height: 0;
    margin: 77px 60px 78px;
  }

  .agent-ui .search-bar {
    height: 98px;
    padding: 15px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-between;
  }

  .agent-ui .search-bar b {
    padding: 8px 12px;
    color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.08);
    font-size: 11px;
    font-weight: 500;
  }

  .task-list {
    gap: 0;
  }

  .task-list span {
    padding: 8px 0;
    border: 0;
    background: transparent;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
  }

  .analytics-ui {
    padding: 38px 29px 22px;
  }

  .chart-bars {
    height: 195px;
  }

  .capabilities {
    min-height: 0;
    padding: var(--section-space) 0;
  }

  .capabilities .section-intro-wide {
    width: 680px;
  }

  .capabilities .section-intro h2,
  .process .section-intro h2,
  .testimonials .section-intro h2 {
    margin: 10px 0 14px;
    font-size: 44px;
    line-height: 1.04;
  }

  .capabilities .section-intro > p,
  .process .section-intro > p,
  .testimonials .section-intro > p {
    font-size: 13px;
    line-height: 1.6;
  }

  .capability-feature-grid {
    margin-top: 46px;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: var(--grid-gap);
  }

  .large-media {
    min-height: 455px;
    height: 455px;
  }

  .capability-panel {
    padding: 32px;
  }

  .capability-panel h3 {
    width: 430px;
    font-size: 28px;
  }

  .capability-panel p {
    width: 500px;
    font-size: 13px;
  }

  .command-line {
    width: 265px;
  }

  .industry-row {
    gap: 10px;
  }

  .industry-row span {
    min-height: 68px;
  }

  .capability-cards {
    margin-top: var(--grid-gap);
    gap: var(--grid-gap);
  }

  .capability-card {
    min-height: 336px;
    padding-bottom: 18px;
  }

  .capability-visual {
    height: 200px;
    padding: 24px 44px;
  }

  .capability-card > h3,
  .capability-card > p {
    margin-left: 18px;
    margin-right: 18px;
  }

  .capability-card > h3 {
    margin-top: 17px;
    margin-bottom: 8px;
    font-size: 20px;
    line-height: 1.25;
  }

  .capability-card > p {
    font-size: 13px;
    line-height: 1.6;
  }

  .process {
    min-height: 0;
    padding: var(--section-space) 0;
  }

  .process .section-intro-wide {
    width: 680px;
  }

  .process-grid {
    margin-top: 45px;
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
    gap: 10.3%;
    border: 0;
  }

  .step-list {
    border-right: 0;
    border-top: 1px solid var(--line-light);
  }

  .step {
    min-height: 63px;
    padding: 17px 18px;
  }

  .step.active {
    min-height: 329px;
  }

  .step h3 {
    font-size: 20px;
  }

  .step p {
    width: 91%;
    margin-top: 22px;
    font-size: 13px;
  }

  .dashboard-placeholder {
    min-height: 0;
    height: 453px;
    padding: 26px;
    overflow: hidden;
  }

  .testimonials {
    min-height: 0;
    padding: var(--section-space) 0;
  }

  .testimonials .section-intro-wide {
    width: 680px;
  }

  .case-grid {
    margin-top: 46px;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: var(--grid-gap);
  }

  .case-feature {
    min-height: 480px;
    height: 480px;
    position: relative;
    display: block;
    overflow: hidden;
  }

  .case-portrait {
    position: absolute;
    inset: 0;
    border: 0;
  }

  .case-portrait span {
    display: none;
  }

  .case-quote {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 32px;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72), transparent 60%);
  }

  .case-logo {
    position: absolute;
    top: 32px;
    left: 32px;
    color: var(--white);
    font-family: var(--display);
    font-size: 27px;
    font-weight: 500;
    text-transform: none;
  }

  .case-quote > strong {
    margin: 0 0 4px;
    font-size: 36px;
  }

  .case-quote h3 {
    max-width: 560px;
    padding-right: 20px;
    font-size: 20px;
    line-height: 1.3;
  }

  .case-side {
    gap: var(--grid-gap);
  }

  .case-side article {
    min-height: 0;
    height: 228px;
    padding: 30px 20px;
    color: var(--black);
    background: var(--white);
    border-color: rgba(255, 255, 255, 0.65);
  }

  .case-side article > span {
    color: var(--black);
    font-family: var(--display);
    font-size: 30px;
    font-weight: 600;
    line-height: 1;
    text-transform: none;
  }

  .case-side strong {
    margin-top: auto;
    font-size: 28px;
  }

  .case-side p {
    margin: 3px 0 0;
    color: rgba(0, 0, 0, 0.72);
    font-size: 13px;
  }

  .case-side a {
    width: 34px;
    height: 34px;
    color: var(--white);
    background: var(--black);
    border-color: var(--black);
    font-size: 16px;
  }

  .metric-grid {
    margin-top: var(--grid-gap);
  }

  .security {
    min-height: 0;
    padding: var(--section-space) 0;
  }

  .security-grid {
    grid-template-columns: minmax(0, 1.75fr) repeat(3, minmax(0, 1fr));
    gap: var(--grid-gap);
  }

  .security-intro {
    padding-right: 38px;
  }

  .security-intro h2 {
    margin: 10px 0 14px;
    font-size: 40px;
    line-height: 1.08;
  }

  .security-intro > p {
    font-size: 13px;
    line-height: 1.6;
  }

  .security-card {
    min-height: 252px;
    height: 252px;
    padding: 22px 18px;
  }

  .security-icon {
    font-size: 28px;
  }

  .security-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1.2;
  }

  .security-card p {
    font-size: 12px;
    line-height: 1.6;
  }

  .blog {
    min-height: 0;
    padding: var(--section-space) 0;
  }

  .blog .section-intro-wide {
    width: 680px;
  }

  .blog-list {
    margin-top: 48px;
  }

  .blog-row {
    grid-template-columns: 300px 250px minmax(0, 1fr) 44px;
    gap: var(--grid-gap);
  }

  .blog-image {
    width: 300px;
  }

  .faq {
    min-height: 0;
    padding: var(--section-space) 0;
  }

  .faq-grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: var(--grid-gap);
  }

  .cta {
    width: min(100%, var(--frame-max));
    min-height: 476px;
    height: 476px;
    margin-inline: auto;
    border-left: 0;
    border-right: 0;
    box-shadow: inset 1px 0 0 var(--line-dark), inset -1px 0 0 var(--line-dark);
  }

  .cta-inner {
    width: 700px;
    transform: translateY(12px);
  }

  .cta h2 {
    width: 520px;
    margin: 20px 0 20px;
    margin-inline: auto;
    font-size: 44px;
    line-height: 1.05;
  }

  .cta p {
    width: 600px;
    margin-bottom: 31px;
    font-size: 13px;
  }

  .site-footer {
    width: min(100%, var(--frame-max));
    min-height: 500px;
    margin-inline: auto;
    padding: 62px 0 24px;
    border-left: 0;
    border-right: 0;
    box-shadow: inset 1px 0 0 var(--line-dark), inset -1px 0 0 var(--line-dark);
  }

  .footer-inner {
    grid-template-columns: minmax(0, 5fr) repeat(3, minmax(0, 1fr));
    gap: var(--grid-gap);
  }

  .footer-brand > p {
    width: 310px;
    margin-top: 17px;
    font-size: 13px;
  }

  .footer-column {
    gap: 13px;
    font-size: 13px;
  }

  .footer-bottom {
    margin-top: 72px;
  }
}
