:root {
  --font-body: "Inter", sans-serif;
  --font-heading: "Playfair Display", serif;
  --ink: #102a2f;
  --ink-soft: #335157;
  --paper: #f7f4ec;
  --paper-deep: #ece8dc;
  --white: #ffffff;
  --green: #1f685b;
  --green-dark: #174f47;
  --mint: #b9e4d3;
  --line: rgba(16, 42, 47, 0.14);
  --amber: #eaa646;
  --blue: #4a78d3;
  --violet: #7667cc;
  --coral: #dc735f;
  --cyan: #2d8a9a;
  --shadow: 0 24px 70px rgba(16, 42, 47, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
.hero-proof strong,
.board-topline strong,
.board-stats article strong,
.rollout-copy h3 {
  font-family: var(--font-heading) !important;
}

#codexsystem-root {
  min-height: 100vh;
}

.codexsystem-noscript,
.codexsystem-content-shell {
  width: min(900px, calc(100% - 48px));
  margin-inline: auto;
}

.codexsystem-noscript {
  padding: 120px 0;
  text-align: center;
}

.codexsystem-content-shell {
  min-height: 70vh;
  padding: 130px 0 80px;
}

.codexsystem-entry {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(16, 42, 47, 0.08);
}

.codexsystem-entry + .codexsystem-entry {
  margin-top: 28px;
}

.codexsystem-entry-title {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
}

.codexsystem-entry-content {
  color: var(--ink-soft);
  line-height: 1.75;
}

.admin-bar .site-header {
  top: 32px;
}

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

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

button {
  color: inherit;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(16, 42, 47, 0.09);
  background: rgba(247, 244, 236, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  width: max-content;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  transform: rotate(45deg);
}

.brand-mark span {
  position: absolute;
  display: block;
  width: 19px;
  height: 19px;
  border: 2px solid var(--green);
  border-radius: 4px;
}

.brand-mark span:first-child {
  top: 1px;
  left: 1px;
}

.brand-mark span:last-child {
  right: 1px;
  bottom: 1px;
  border-color: var(--amber);
}

.brand-name {
  font-size: 20px;
}

.brand-logo-image {
  display: block;
  width: auto;
  max-height: 48px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
}

.desktop-nav a {
  position: relative;
  padding: 30px 0 27px;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 21px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--green);
  content: "";
  opacity: 0;
  transform: scaleX(0.6);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-cta {
  justify-self: end;
}

.button {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--green);
  border-radius: 99px;
  background: var(--green);
  box-shadow: 0 10px 26px rgba(31, 104, 91, 0.18);
  color: var(--white);
  font-size: 14px;
  font-weight: 750;
  transition:
    background 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  background: var(--green-dark);
  box-shadow: 0 14px 32px rgba(31, 104, 91, 0.24);
  transform: translateY(-2px);
}

.button-small {
  min-height: 43px;
  padding-inline: 18px;
  font-size: 13px;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border-bottom: 1px solid rgba(16, 42, 47, 0.35);
  font-size: 14px;
  font-weight: 720;
  line-height: 2;
  transition: border-color 180ms ease;
}

.text-link:hover {
  border-color: var(--green);
}

.menu-button,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 790px;
  padding: 148px 0 94px;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 24%, rgba(185, 228, 211, 0.5), transparent 23%),
    linear-gradient(135deg, var(--paper) 0%, #faf8f2 55%, #eef5ed 100%);
}

.hero::before {
  position: absolute;
  top: 78px;
  right: 0;
  bottom: 0;
  width: 48%;
  background-image: radial-gradient(rgba(31, 104, 91, 0.19) 0.7px, transparent 0.7px);
  background-size: 18px 18px;
  content: "";
  mask-image: linear-gradient(to left, black, transparent);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: 64px;
  align-items: center;
}

.hero-copy {
  padding-top: 20px;
}

.eyebrow,
.section-kicker {
  display: flex;
  gap: 9px;
  align-items: center;
  margin: 0 0 22px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border: 2px solid var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(31, 104, 91, 0.1);
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 5.7vw, 82px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.hero h1 span {
  color: var(--green);
  font-style: italic;
}

.hero-lede {
  max-width: 610px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 34px;
}

.hero-proof {
  display: flex;
  gap: 0;
  margin-top: 45px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hero-proof > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding-right: 20px;
}

.hero-proof > div + div {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.hero-proof strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
}

.hero-proof span {
  margin-top: 3px;
  color: #698086;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.visual-glow {
  position: absolute;
  top: 4%;
  left: 12%;
  width: 80%;
  height: 84%;
  border-radius: 50%;
  background: rgba(185, 228, 211, 0.55);
  filter: blur(45px);
}

.lifecycle-board {
  position: absolute;
  z-index: 2;
  top: 20px;
  right: 12px;
  width: 510px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  transform: rotate(1.4deg);
  backdrop-filter: blur(16px);
}

.board-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.board-topline > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.board-kicker {
  color: #779097;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.board-topline strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 500;
}

.live-badge {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid rgba(31, 104, 91, 0.15);
  border-radius: 99px;
  background: #edf8f2;
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.live-badge span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4fa37e;
  box-shadow: 0 0 0 4px rgba(79, 163, 126, 0.12);
}

.flow-line {
  display: flex;
  align-items: center;
  margin: 24px 8px 20px;
}

.flow-node {
  display: grid;
  flex: 0 0 43px;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 13px;
  color: white;
  font-size: 11px;
  font-weight: 850;
}

.node-reach {
  background: var(--amber);
}

.node-review {
  background: var(--blue);
}

.node-production {
  background: var(--green);
}

.flow-track {
  position: relative;
  flex: 1;
  height: 2px;
  margin-inline: 8px;
  background: #dce5df;
}

.flow-track span {
  position: absolute;
  top: -2px;
  left: 0;
  width: 64%;
  height: 6px;
  border-radius: 99px;
  background: var(--mint);
}

.board-stats {
  display: grid;
  gap: 9px;
}

.board-stats article {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 11px 12px;
  border: 1px solid rgba(16, 42, 47, 0.08);
  border-radius: 13px;
  background: #fbfcfa;
}

.stat-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 10px;
  color: white;
  font-size: 14px;
  font-weight: 800;
}

.stat-icon.amber {
  background: var(--amber);
}

.stat-icon.blue {
  background: var(--blue);
}

.stat-icon.green {
  background: var(--green);
}

.board-stats article > div:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.board-stats article span {
  color: #71868b;
  font-size: 9px;
}

.board-stats article strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 500;
}

.board-stats small {
  color: var(--green);
  font-size: 9px;
  font-weight: 750;
}

.board-bottom {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 11px;
  align-items: center;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.collaborator-stack {
  display: flex;
}

.collaborator-stack span {
  display: grid;
  width: 27px;
  height: 27px;
  margin-left: -7px;
  place-items: center;
  border: 2px solid white;
  border-radius: 50%;
  background: #d7e6df;
  color: var(--green-dark);
  font-size: 7px;
  font-weight: 800;
}

.collaborator-stack span:first-child {
  margin-left: 0;
  background: #f2d5a6;
}

.collaborator-stack span:nth-child(3) {
  background: #d9d3f2;
}

.board-bottom p {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin: 0;
  font-size: 10px;
}

.board-bottom p span {
  color: #74878b;
  font-size: 8px;
}

.mini-status {
  color: var(--green);
  font-size: 8px;
  font-weight: 750;
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(16, 42, 47, 0.15);
  backdrop-filter: blur(14px);
  animation: float 6s ease-in-out infinite;
}

.conference-card {
  right: -14px;
  bottom: 16px;
  padding: 14px 17px;
  border-radius: 18px;
}

.floating-icon {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 12px;
  background: var(--coral);
  color: white;
  font-size: 10px;
  font-weight: 850;
}

.floating-card > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.floating-card small {
  color: #839397;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
}

.floating-card strong {
  font-size: 11px;
}

.floating-card div span {
  color: var(--green);
  font-size: 8px;
  font-weight: 700;
}

.decision-card {
  bottom: 70px;
  left: -28px;
  padding: 12px 15px;
  border-radius: 15px;
  animation-delay: -2.4s;
}

.decision-check {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: #e7f5ed;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(31, 104, 91, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  top: 110px;
  right: -250px;
  width: 730px;
  height: 730px;
}

.orbit-two {
  top: 265px;
  right: -95px;
  width: 430px;
  height: 430px;
}

.audience-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f0ede4;
}

.audience-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 45px;
  align-items: center;
  min-height: 104px;
}

.audience-inner p {
  margin: 0;
  color: #73868a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.audience-inner > div {
  display: flex;
  justify-content: space-between;
}

.audience-inner > div span {
  color: #466167;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 600;
}

.section {
  padding: 120px 0;
  scroll-margin-top: 76px;
}

.solutions-section {
  background: #f9f7f1;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.65fr);
  gap: 100px;
  align-items: end;
}

.section-heading h2 {
  max-width: 700px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 4.4vw, 62px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.section-heading > p {
  margin: 0 0 6px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-top: 62px;
}

.solution-card {
  position: relative;
  grid-column: span 2;
  min-height: 420px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  transition:
    border-color 200ms ease,
    box-shadow 200ms ease,
    transform 200ms ease;
}

.solution-card:hover {
  border-color: rgba(31, 104, 91, 0.32);
  box-shadow: 0 22px 50px rgba(16, 42, 47, 0.1);
  transform: translateY(-5px);
}

.solution-card::after {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  content: "";
  opacity: 0.12;
}

.solution-amber::after,
.solution-amber .solution-glyph {
  background: var(--amber);
}

.solution-blue::after,
.solution-blue .solution-glyph {
  background: var(--blue);
}

.solution-green::after,
.solution-green .solution-glyph {
  background: var(--green);
}

.solution-violet::after,
.solution-violet .solution-glyph {
  background: var(--violet);
}

.solution-coral::after,
.solution-coral .solution-glyph {
  background: var(--coral);
}

.solution-cyan::after,
.solution-cyan .solution-glyph {
  background: var(--cyan);
}

.solution-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.solution-number {
  color: #9aa7a9;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.solution-glyph {
  display: grid;
  width: 47px;
  height: 47px;
  place-items: center;
  border-radius: 14px;
  color: white;
  font-size: 12px;
  font-weight: 850;
}

.solution-label {
  margin: 30px 0 8px !important;
  color: #789094 !important;
  font-size: 10px !important;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.solution-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.solution-card > p {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.7;
}

.solution-card ul {
  display: grid;
  gap: 8px;
  margin: 20px 0 26px;
  padding: 0;
  list-style: none;
}

.solution-card li {
  display: flex;
  gap: 8px;
  color: #61777c;
  font-size: 11px;
}

.solution-card li span {
  color: var(--green);
  font-weight: 850;
}

.solution-card > a {
  position: absolute;
  bottom: 26px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.brand-light .brand-mark span:first-child {
  border-color: var(--mint);
}

.platform-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 5%, rgba(75, 150, 125, 0.24), transparent 24%),
    var(--ink);
  color: white;
}

.platform-section::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(185, 228, 211, 0.12) 0.7px, transparent 0.7px);
  background-size: 20px 20px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 45%);
  pointer-events: none;
}

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

.platform-heading {
  display: grid;
  grid-template-columns: 1fr 0.48fr;
  gap: 48px;
  align-items: end;
}

.platform-heading .section-kicker,
.platform-heading h2 {
  grid-column: 1;
}

.platform-heading h2 {
  max-width: 780px;
  color: white;
}

.platform-heading > p:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  max-width: 440px;
  margin: 0 0 5px;
  color: #b8cacc;
  font-size: 15px;
  line-height: 1.7;
}

.section-kicker-light {
  color: var(--mint);
}

.platform-workspace {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 22px;
  margin-top: 60px;
}

.platform-tabs {
  display: grid;
  gap: 8px;
}

.product-tab {
  display: grid;
  grid-template-columns: 43px 1fr auto;
  gap: 13px;
  align-items: center;
  width: 100%;
  min-height: 70px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.04);
  color: #eaf3f1;
  text-align: left;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.product-tab:hover {
  border-color: rgba(185, 228, 211, 0.35);
  background: rgba(255, 255, 255, 0.07);
}

.product-tab.active {
  border-color: rgba(185, 228, 211, 0.5);
  background: white;
  color: var(--ink);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.16);
  transform: translateX(5px);
}

.tab-code {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 12px;
  color: white;
  font-size: 10px;
  font-weight: 850;
}

.tab-amber,
.workflow-amber {
  background: var(--amber);
}

.tab-blue,
.workflow-blue {
  background: var(--blue);
}

.tab-green,
.workflow-green {
  background: var(--green);
}

.tab-violet,
.workflow-violet {
  background: var(--violet);
}

.tab-coral,
.workflow-coral {
  background: var(--coral);
}

.tab-cyan,
.workflow-cyan {
  background: var(--cyan);
}

.product-tab > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 3px;
}

.product-tab strong {
  overflow: hidden;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-tab small {
  overflow: hidden;
  color: #91a9ad;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-tab.active small {
  color: #71868a;
}

.tab-arrow {
  color: #8ea9a7;
  font-size: 15px;
}

.workflow-panel {
  min-height: 380px;
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 0%, rgba(185, 228, 211, 0.35), transparent 27%),
    #f8f6ef;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.23);
  color: var(--ink);
}

.workflow-panel-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.workflow-panel-top > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.workflow-label {
  color: #6f888d;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.workflow-panel h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.workflow-code {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 15px;
  color: white;
  font-size: 12px;
  font-weight: 850;
}

.workflow-outcome {
  max-width: 630px;
  margin: 22px 0 34px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.workflow-journey {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.journey-step {
  position: relative;
  display: flex;
  min-height: 104px;
  flex-direction: column;
  gap: 8px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
}

.journey-step > span {
  color: var(--green);
  font-size: 9px;
  font-weight: 850;
}

.journey-step strong {
  font-size: 11px;
  line-height: 1.35;
}

.journey-step i {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: -12px;
  width: 16px;
  height: 16px;
  border: 1px solid #d6e0da;
  border-radius: 50%;
  background: white;
  transform: translateY(-50%);
}

.journey-step i::after {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 5px;
  height: 5px;
  border-top: 1px solid var(--green);
  border-right: 1px solid var(--green);
  content: "";
  transform: rotate(45deg);
}

.workflow-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 21px;
  border-top: 1px solid var(--line);
}

.workflow-footer > div {
  display: flex;
  gap: 12px;
  align-items: center;
}

.workflow-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(31, 104, 91, 0.1);
}

.workflow-footer p {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0;
}

.workflow-footer p strong {
  font-size: 10px;
}

.workflow-footer p span {
  color: #73878b;
  font-size: 8px;
}

.workflow-footer a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
}

.platform-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 36px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.11);
}

.platform-principles > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  align-items: center;
  min-height: 94px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.035);
}

.platform-principles > div > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(185, 228, 211, 0.2);
  border-radius: 50%;
  background: rgba(185, 228, 211, 0.08);
  color: var(--mint);
}

.platform-principles p {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
}

.platform-principles strong {
  font-size: 12px;
}

.platform-principles small {
  color: #9db2b5;
  font-size: 9px;
}

.capabilities-section {
  background: var(--paper);
}

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

.capability-heading > * {
  margin-bottom: 0;
}

.capability-heading .section-kicker {
  flex: 0 0 220px;
  align-self: flex-start;
  margin-top: 10px;
}

.capability-heading h2 {
  max-width: 790px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 70px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.capability-grid article {
  position: relative;
  min-height: 280px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease;
}

.capability-grid article:hover {
  background: rgba(255, 255, 255, 0.55);
}

.capability-grid article > span {
  color: #9ca9a9;
  font-size: 10px;
  font-weight: 800;
}

.capability-symbol {
  display: grid;
  width: 48px;
  height: 48px;
  margin-top: 35px;
  place-items: center;
  border: 1px solid rgba(31, 104, 91, 0.22);
  border-radius: 50%;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
}

.capability-grid h3 {
  margin: 24px 0 11px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.capability-grid p {
  max-width: 300px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.75;
}

.clients-section {
  background: #fcfbf7;
}

.clients-heading {
  align-items: center;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 64px;
}

.client-grid article {
  display: flex;
  min-height: 272px;
  flex-direction: column;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.client-grid article:hover {
  border-color: rgba(31, 104, 91, 0.34);
  transform: translateY(-4px);
}

.client-grid article > span {
  color: var(--amber);
  font-size: 10px;
  font-weight: 850;
}

.client-grid h3 {
  margin: 36px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.client-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.7;
}

.client-grid a {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  width: max-content;
  margin-top: auto;
  padding-top: 22px;
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
}

.rollout-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  margin-top: 74px;
  padding: 58px;
  border: 1px solid rgba(31, 104, 91, 0.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at 2% 100%, rgba(234, 166, 70, 0.17), transparent 23%),
    #e9f2eb;
}

.rollout-copy h3 {
  max-width: 410px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 43px;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.rollout-copy > p:not(.section-kicker) {
  max-width: 440px;
  margin: 20px 0 24px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.75;
}

.rollout-steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rollout-steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: center;
  padding: 21px 0;
  border-bottom: 1px solid rgba(31, 104, 91, 0.15);
}

.rollout-steps li:first-child {
  padding-top: 0;
}

.rollout-steps li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.rollout-steps li > span {
  display: grid;
  width: 47px;
  height: 47px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-size: 10px;
  font-weight: 850;
}

.rollout-steps div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rollout-steps strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 500;
}

.rollout-steps p {
  margin: 0;
  color: #637a7f;
  font-size: 10px;
}

.team-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(118, 103, 204, 0.18), transparent 25%),
    #0d262c;
  color: white;
}

.team-section::after {
  position: absolute;
  right: -120px;
  bottom: -220px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(185, 228, 211, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(185, 228, 211, 0.025),
    0 0 0 160px rgba(185, 228, 211, 0.018);
  content: "";
}

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

.team-intro {
  display: grid;
  grid-template-columns: 1.05fr 0.65fr;
  gap: 100px;
  align-items: end;
}

.team-intro h2 {
  max-width: 750px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(43px, 4.5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.03;
}

.team-intro blockquote {
  position: relative;
  margin: 0 0 8px;
  padding: 0 0 0 27px;
  border-left: 2px solid var(--amber);
  color: #b9cbcd;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-style: italic;
  line-height: 1.65;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 65px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
}

.team-grid article {
  min-height: 300px;
  padding: 27px;
  background: rgba(255, 255, 255, 0.035);
  transition: background 180ms ease;
}

.team-grid article:hover {
  background: rgba(255, 255, 255, 0.065);
}

.team-grid article > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(185, 228, 211, 0.25);
  border-radius: 14px;
  background: rgba(185, 228, 211, 0.09);
  color: var(--mint);
  font-size: 10px;
  font-weight: 850;
}

.team-grid h3 {
  margin: 54px 0 13px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 500;
}

.team-grid p {
  margin: 0;
  color: #9eb3b6;
  font-size: 11px;
  line-height: 1.75;
}

.team-values {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 38px;
}

.team-values p {
  margin: 0;
  color: #729094;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.team-values > div {
  display: flex;
  justify-content: space-between;
}

.team-values span {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: #dbe7e7;
  font-size: 11px;
  font-weight: 700;
}

.team-values span::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--amber);
  content: "";
}

.resources-section {
  background: var(--paper);
}

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

.resources-heading .section-kicker {
  flex: 0 0 210px;
}

.resources-heading h2 {
  max-width: 780px;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
  margin-top: 64px;
}

.resource-grid article {
  display: flex;
  min-height: 350px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fffdf8;
  box-shadow: 0 14px 34px rgba(16, 42, 47, 0.035);
}

.resource-grid article:nth-child(2) {
  background: #edf5ef;
}

.resource-grid article:nth-child(3) {
  background: #f2eddf;
}

.resource-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.resource-top span {
  color: var(--green);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.resource-top small {
  color: #9ba8aa;
  font-size: 9px;
  font-weight: 850;
}

.resource-grid h3 {
  max-width: 310px;
  margin: 74px 0 15px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.resource-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.7;
}

.resource-grid a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  width: max-content;
  margin-top: auto;
  color: var(--green);
  font-size: 10px;
  font-weight: 850;
}

.faq-section {
  border-top: 1px solid var(--line);
  background: #fcfbf7;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.05fr;
  gap: 110px;
  align-items: start;
}

.faq-layout .section-heading {
  position: sticky;
  top: 120px;
}

.faq-layout .section-heading h2 {
  font-size: 47px;
}

.faq-layout .section-heading > p:last-child {
  max-width: 430px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.75;
}

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

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

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr 32px;
  gap: 20px;
  align-items: center;
  padding: 27px 0;
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 500;
  list-style: none;
}

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

.faq-list summary i {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid rgba(31, 104, 91, 0.2);
  border-radius: 50%;
  color: var(--green);
  font-family: var(--font-geist-sans), ui-sans-serif, sans-serif;
  font-size: 16px;
  font-style: normal;
  transition: transform 180ms ease;
}

.faq-list details[open] summary i {
  transform: rotate(45deg);
}

.faq-list details > p {
  max-width: 650px;
  margin: -5px 55px 28px 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.8;
}

.contact-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 0%, rgba(185, 228, 211, 0.17), transparent 24%),
    var(--green);
  color: white;
}

.contact-section::before {
  position: absolute;
  top: -230px;
  left: -230px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 100px rgba(255, 255, 255, 0.025);
  content: "";
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 110px;
  align-items: center;
}

.contact-copy h2 {
  max-width: 600px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(45px, 4.5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.contact-copy > p:not(.section-kicker) {
  max-width: 540px;
  margin: 25px 0 28px;
  color: #c8dcd9;
  font-size: 14px;
  line-height: 1.75;
}

.contact-copy ul {
  display: grid;
  gap: 11px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.contact-copy li {
  display: flex;
  gap: 10px;
  color: #dfebe9;
  font-size: 11px;
}

.contact-copy li span {
  color: var(--mint);
  font-weight: 850;
}

.contact-copy > a {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  color: white;
  font-size: 13px;
  font-weight: 750;
  line-height: 2;
}

.contact-form {
  display: grid;
  gap: 17px;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 25px;
  background: #fbfaf6;
  box-shadow: 0 28px 70px rgba(8, 41, 35, 0.24);
  color: var(--ink);
}

.form-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 7px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.form-heading span {
  color: var(--green);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-heading strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 500;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #51696e;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(16, 42, 47, 0.14);
  border-radius: 10px;
  outline: none;
  background: white;
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: normal;
  text-transform: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.contact-form input,
.contact-form select {
  height: 45px;
  padding: 0 13px;
}

.contact-form textarea {
  min-height: 95px;
  padding: 12px 13px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(31, 104, 91, 0.1);
}

.contact-form ::placeholder {
  color: #9ba8aa;
}

.button-contact {
  width: 100%;
  margin-top: 3px;
  border-radius: 11px;
}

.form-note {
  margin: -3px 0 0;
  color: #7b8d90;
  font-size: 9px;
  line-height: 1.5;
  text-align: center;
}

.site-footer {
  padding: 76px 0 30px;
  background: #091f24;
  color: white;
}

.footer-top {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 110px;
  padding-bottom: 58px;
}

.footer-brand > p {
  max-width: 380px;
  margin: 27px 0 0;
  color: #90a7aa;
  font-size: 13px;
  line-height: 1.7;
}

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

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links strong {
  margin-bottom: 6px;
  color: #e7eeee;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a {
  width: max-content;
  color: #91a8ab;
  font-size: 11px;
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: #6f898d;
  font-size: 9px;
}

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

.footer-bottom a {
  color: #98adb0;
  font-size: 9px;
  font-weight: 700;
}

:focus-visible {
  outline: 3px solid rgba(234, 166, 70, 0.8);
  outline-offset: 4px;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 19px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
    gap: 35px;
  }

  .lifecycle-board {
    width: 470px;
  }

  .audience-inner > div span {
    font-size: 13px;
  }

  .platform-workspace {
    grid-template-columns: 300px 1fr;
  }

  .workflow-panel {
    padding: 32px;
  }

  .contact-grid {
    gap: 65px;
  }

  .footer-top {
    gap: 70px;
  }
}

@media (max-width: 900px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

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

  .menu-button {
    display: grid;
    width: 44px;
    height: 44px;
    padding: 13px 10px;
    border: 0;
    border-radius: 50%;
    background: rgba(31, 104, 91, 0.08);
  }

  .menu-button span {
    display: block;
    width: 21px;
    height: 2px;
    margin: auto;
    border-radius: 99px;
    background: var(--ink);
  }

  .mobile-nav {
    display: grid;
    gap: 0;
    padding: 10px 24px 24px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }

  .mobile-nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
    font-weight: 700;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

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

  .hero-visual {
    width: min(620px, 100%);
    min-height: 500px;
    margin-inline: auto;
  }

  .lifecycle-board {
    right: 50%;
    width: min(510px, calc(100% - 34px));
    transform: translateX(50%) rotate(1.2deg);
  }

  .decision-card {
    left: 0;
  }

  .conference-card {
    right: 0;
  }

  .audience-inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 28px 0;
  }

  .audience-inner > div {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px 20px;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading > p {
    max-width: 620px;
  }

  .solution-card {
    grid-column: span 3;
  }

  .platform-heading {
    grid-template-columns: 1fr;
  }

  .platform-heading .section-kicker,
  .platform-heading h2,
  .platform-heading > p:last-child {
    grid-column: 1;
    grid-row: auto;
  }

  .platform-workspace {
    grid-template-columns: 1fr;
  }

  .platform-tabs {
    grid-template-columns: 1fr 1fr;
  }

  .product-tab.active {
    transform: translateY(-3px);
  }

  .workflow-journey {
    grid-template-columns: 1fr 1fr;
  }

  .journey-step i {
    display: none;
  }

  .capability-heading,
  .resources-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .capability-heading .section-kicker,
  .resources-heading .section-kicker {
    flex-basis: auto;
  }

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

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

  .rollout-panel {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .team-intro {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .team-intro blockquote {
    max-width: 580px;
  }

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

  .team-grid article {
    min-height: 260px;
  }

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

  .resource-grid article:last-child {
    grid-column: 1 / -1;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .faq-layout .section-heading {
    position: static;
  }

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

  .contact-copy {
    max-width: 680px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .footer-brand > p {
    max-width: 560px;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(100% - 32px, 1180px);
  }

  .header-inner {
    min-height: 70px;
  }

  .brand-name {
    font-size: 18px;
  }

  .brand-mark {
    width: 27px;
    height: 27px;
  }

  .brand-mark span {
    width: 17px;
    height: 17px;
  }

  .hero {
    min-height: auto;
    padding: 112px 0 64px;
  }

  .hero h1 {
    font-size: clamp(44px, 13vw, 60px);
  }

  .hero-lede {
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero-proof > div,
  .hero-proof > div + div {
    padding: 0 10px;
  }

  .hero-proof > div:first-child {
    padding-left: 0;
  }

  .hero-proof strong {
    font-size: 20px;
  }

  .hero-proof span {
    font-size: 9px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .lifecycle-board {
    top: 12px;
    padding: 18px;
    border-radius: 21px;
  }

  .board-topline {
    padding-bottom: 16px;
  }

  .flow-line {
    margin: 17px 4px;
  }

  .board-stats article {
    grid-template-columns: 34px 1fr;
  }

  .board-stats small {
    display: none;
  }

  .board-bottom {
    grid-template-columns: auto 1fr;
  }

  .mini-status {
    display: none;
  }

  .conference-card {
    bottom: -3px;
  }

  .decision-card {
    display: none;
  }

  .audience-inner > div {
    grid-template-columns: 1fr 1fr;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading h2 {
    font-size: 42px;
  }

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

  .solution-card {
    grid-column: auto;
  }

  .platform-heading h2 {
    font-size: 42px;
  }

  .platform-tabs {
    grid-template-columns: 1fr;
  }

  .product-tab {
    min-height: 65px;
  }

  .workflow-panel {
    min-height: auto;
    padding: 24px;
  }

  .workflow-panel h3 {
    font-size: 31px;
  }

  .workflow-code {
    width: 45px;
    height: 45px;
  }

  .workflow-journey {
    grid-template-columns: 1fr;
  }

  .journey-step {
    min-height: 80px;
  }

  .workflow-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .platform-principles {
    grid-template-columns: 1fr;
  }

  .capability-heading h2,
  .resources-heading h2 {
    font-size: 42px;
  }

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

  .capability-grid article {
    min-height: 240px;
  }

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

  .client-grid article {
    min-height: 250px;
  }

  .rollout-panel {
    padding: 30px;
  }

  .rollout-copy h3 {
    font-size: 37px;
  }

  .team-intro h2 {
    font-size: 43px;
  }

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

  .team-grid article {
    min-height: 245px;
  }

  .team-values {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .team-values > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

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

  .resource-grid article,
  .resource-grid article:last-child {
    grid-column: auto;
    min-height: 320px;
  }

  .faq-layout .section-heading h2 {
    font-size: 42px;
  }

  .faq-list summary {
    font-size: 17px;
  }

  .contact-copy h2 {
    font-size: 43px;
  }

  .contact-form {
    padding: 25px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media screen and (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}
