@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@500;600;700;800;900&family=Open+Sans:wght@400;600;700&display=swap');

:root {
  --ink: #17243f;
  --ink-2: #223457;
  --ink-3: #263d5f;
  --brand-dark-gradient: linear-gradient(135deg, #17243f 0%, #223457 58%, #1f3b34 100%);
  --brand-panel-gradient: linear-gradient(145deg, rgba(140, 201, 79, 0.12), rgba(255, 255, 255, 0.035)), linear-gradient(135deg, #17243f 0%, #223457 62%, #1f3b34 100%);
  --green: #8cc94f;
  --green-dark: #5d8f2d;
  --paper: #f6f7f1;
  --white: #ffffff;
  --muted: #637083;
  --line: #e4e8dc;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: 86vh;
  padding: 20px 0 82px;
  background:
    linear-gradient(180deg, rgba(23, 36, 63, 0.12), rgba(23, 36, 63, 0.82)),
    linear-gradient(115deg, rgba(23, 36, 63, 0.86) 0%, rgba(34, 52, 87, 0.58) 54%, rgba(31, 59, 52, 0.36) 100%),
    url("../assets/live/hero.jpg") center / cover no-repeat;
  color: var(--white);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

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

.nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.5vw, 34px);
  flex: 1 1 auto;
}

.nav__links--segmented {
  justify-content: flex-end;
  gap: 4px;
  flex: 0 1 auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 5px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.nav__links a {
  font-size: 14px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.15s;
}

.nav__links a:hover {
  color: var(--green);
}

.nav__links--segmented a {
  border-radius: 999px;
  padding: 9px 13px;
  color: rgba(255, 255, 255, 0.78);
  transition: background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}

.nav__links--segmented a:hover,
.nav__links--segmented a.is-active {
  background: var(--green);
  color: var(--ink);
}

.nav__cta {
  flex: 0 0 auto;
  border-radius: 4px;
  padding: 12px 22px;
  background: var(--green);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__content {
  width: min(960px, calc(100% - 40px));
  margin: 86px auto 0;
  text-align: left;
}

h1,
h2,
h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 900;
  line-height: 1.05;
}

h1 em {
  color: var(--green);
  font-style: normal;
}

h2 {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
}

h3 {
  font-size: clamp(19px, 2.5vw, 24px);
  line-height: 1.16;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 22px;
  border: 1px solid rgba(140, 201, 79, 0.46);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(140, 201, 79, 0.13);
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--green);
}

.hero__copy {
  max-width: 620px;
  margin: 24px 0 0;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.hero__actions {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 48px;
}

.hero__metrics span {
  border-left: 3px solid var(--green);
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.86);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 2px solid var(--green);
  border-radius: 4px;
  padding: 0 26px;
  background: var(--green);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.button--quiet {
  border-color: rgba(255, 255, 255, 0.72);
  background: transparent;
}

.section {
  padding: 72px 0;
  background: var(--white);
}

.section--dark {
  background: var(--brand-dark-gradient);
  color: var(--white);
}

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

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

.section--image {
  background:
    linear-gradient(90deg, rgba(23, 36, 63, 0.96), rgba(31, 59, 52, 0.82)),
    url("../assets/live/problem.jpg") center / cover no-repeat;
}

.eyebrow {
  margin-bottom: 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
}

.eyebrow--dark {
  color: var(--ink);
}

.section-title {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-lede {
  max-width: 620px;
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.74);
}

.frontier-board span,
.sprint-days span,
.agent-grid span {
  display: inline-block;
  margin-bottom: 13px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
}

.stack {
  display: grid;
  gap: 18px;
}

.frontier-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(36px, 7vw, 84px);
  align-items: center;
}

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

.frontier-board article {
  min-height: 188px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 6px;
  padding: 24px;
  background: var(--brand-panel-gradient);
}

.frontier-board article:nth-child(4) {
  background:
    linear-gradient(145deg, rgba(140, 201, 79, 0.22), rgba(255, 255, 255, 0.05)),
    var(--brand-dark-gradient);
}

.frontier-board p {
  color: rgba(255, 255, 255, 0.74);
}

.problem-list,
.model-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.problem-list article,
.model-steps article {
  border-radius: 6px;
  padding: 24px;
}

.problem-list article {
  background: var(--white);
  border: 3px solid var(--green);
  color: var(--ink);
}

.problem-list h3,
.model-steps h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.problem-list p {
  color: var(--muted);
}

.model-steps article {
  background: var(--white);
  border: 3px solid var(--green);
  color: var(--ink);
}

.model-steps span {
  display: inline-block;
  margin-bottom: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
}

.model-steps p {
  color: var(--muted);
}

.panel,
.result,
.services article,
.commitments article,
.quotes figure,
.press article,
.locations article {
  border-radius: 6px;
}

.panel {
  padding: 28px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.panel h3,
.services h3,
.commitments h3,
.press h3,
.locations h3 {
  margin-bottom: 12px;
}

.panel p {
  color: rgba(255, 255, 255, 0.75);
}

.result {
  padding: 24px 28px;
  background: var(--green);
  color: var(--ink);
}

.result span {
  display: block;
  margin-bottom: 5px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.result strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  line-height: 1.2;
}

.copy-block {
  display: grid;
  gap: 18px;
  color: #465266;
  font-size: 17px;
  line-height: 1.7;
}

.sprint {
  background:
    linear-gradient(135deg, rgba(23, 36, 63, 0.96), rgba(31, 59, 52, 0.86)),
    url("../assets/live/problem.jpg") center / cover no-repeat;
}

.sprint-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: stretch;
  color: var(--white);
}

.sprint-card__content {
  padding: clamp(30px, 5vw, 46px);
  background: rgba(23, 36, 63, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
}

.sprint-card__content h2 {
  margin-bottom: 22px;
}

.sprint-card__content p {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.7;
}

.sprint-days {
  display: grid;
  gap: 18px;
}

.sprint-days article {
  padding: 30px;
  background: var(--white);
  border-radius: 6px;
  color: var(--ink);
}

.sprint-days h3 {
  font-size: 24px;
}

.sprint-days p {
  color: var(--muted);
}

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

.agent-grid article {
  min-height: 238px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.agent-grid article:nth-child(odd) {
  background: #fbfcf8;
}

.agent-grid h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.agent-grid p {
  color: var(--muted);
}

.agent-grid__lead {
  background: var(--ink) !important;
  color: var(--white);
}

.agent-grid__lead p {
  color: rgba(255, 255, 255, 0.74);
}

.service-explorer {
  display: flex;
  align-items: stretch;
  gap: 14px;
  min-height: 540px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8faf5;
}

.service-solution {
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--white);
  transition: flex 0.46s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.service-explorer:not([data-active-service=""]) .service-solution {
  flex: 0.22 1 0;
}

.service-solution.is-active {
  flex: 6.8 1 0;
  border-color: rgba(140, 201, 79, 0.5);
  box-shadow: 0 20px 44px rgba(28, 29, 56, 0.08);
}

.service-explorer:not([data-active-service=""]) .service-solution.is-active {
  flex: 6.8 1 0;
}

.service-option {
  display: grid;
  grid-template-columns: 1fr 34px;
  gap: 10px;
  align-content: start;
  align-items: start;
  width: 100%;
  min-height: 252px;
  border: 0;
  padding: 24px;
  background: var(--white);
  color: inherit;
  cursor: pointer;
  font: inherit;
  overflow: hidden;
  position: relative;
  text-align: left;
  transition: background 0.18s ease, color 0.18s ease, min-height 0.3s ease, padding 0.3s ease;
}

.service-option::before {
  content: none;
  position: absolute;
  inset: 0;
  background: transparent;
  opacity: 0;
  pointer-events: none;
}

.service-option:hover {
  background: #fbfcf8;
}

.service-option.is-active {
  grid-template-columns: auto minmax(0, 1fr) 30px;
  align-content: center;
  align-items: center;
  gap: 14px;
  height: 92px;
  min-height: 92px;
  padding: 18px 26px;
  background: var(--brand-panel-gradient);
  color: var(--white);
}

.service-solution:not(.is-active) .service-option {
  min-height: 100%;
}

.service-explorer:not([data-active-service=""]) .service-solution:not(.is-active) .service-option {
  grid-template-columns: 1fr;
  align-content: stretch;
  gap: 0;
  padding: 0;
}

.service-option::after {
  content: '⌄';
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  border: 1px solid rgba(28, 29, 56, 0.18);
  border-radius: 50%;
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  position: relative;
  z-index: 2;
}

.service-option.is-active::after {
  content: '⌃';
  grid-column: 3;
  grid-row: 1;
  align-self: center;
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--green);
}

.service-explorer:not([data-active-service=""]) .service-solution:not(.is-active) .service-option::after {
  display: none;
}

.service-thumb {
  grid-column: 1 / -1;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: -10px 0 6px;
  border-radius: 6px;
  object-fit: cover;
  filter: hue-rotate(28deg) saturate(0.75) contrast(0.94);
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.service-option.is-active .service-thumb {
  display: none;
}

.service-explorer:not([data-active-service=""]) .service-solution:not(.is-active) .service-thumb {
  display: block;
  height: 100%;
  min-height: 540px;
  aspect-ratio: auto;
  margin: 0;
  border-radius: 0;
  filter: hue-rotate(28deg) saturate(0.8) contrast(0.9);
  opacity: 1;
}

.service-option span,
.pronto-panel span {
  grid-column: 1;
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
  position: relative;
  z-index: 2;
}

.service-option.is-active span,
.pronto-panel span {
  color: var(--green);
}

.service-option.is-active span {
  grid-column: 1;
  grid-row: 1;
  min-width: 34px;
}

.service-option strong {
  grid-column: 1 / -1;
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(20px, 1.85vw, 26px);
  font-weight: 800;
  line-height: 1.12;
  position: relative;
  z-index: 2;
}

.service-option.is-active strong {
  grid-column: 2;
  grid-row: 1;
}

.service-option em {
  grid-column: 1 / -1;
  display: block;
  max-width: 480px;
  color: var(--muted);
  font-size: 15px;
  font-style: normal;
  line-height: 1.45;
  position: relative;
  z-index: 2;
}

.service-option.is-active em {
  display: none;
  color: rgba(255, 255, 255, 0.66);
}

.service-explorer:not([data-active-service=""]) .service-solution:not(.is-active) .service-option span,
.service-explorer:not([data-active-service=""]) .service-solution:not(.is-active) .service-option strong,
.service-explorer:not([data-active-service=""]) .service-solution:not(.is-active) .service-option em {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.service-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 24px;
  align-items: stretch;
  border: 0;
  max-height: 0;
  overflow: hidden;
  padding: 0 clamp(24px, 3vw, 38px);
  background: var(--white);
  opacity: 0;
  pointer-events: none;
  position: relative;
  transform: translateY(-8px);
  visibility: hidden;
  transition: max-height 0.42s ease, opacity 0.28s ease, padding 0.42s ease, transform 0.42s ease, visibility 0s linear 0.42s;
}

.service-explorer.is-switching .service-panel {
  transition-duration: 0.18s;
}

.service-panel.is-active {
  max-height: 610px;
  min-height: 388px;
  padding: clamp(26px, 2.6vw, 40px) clamp(22px, 2.5vw, 34px) clamp(22px, 2.5vw, 34px);
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
  transition-delay: 0s;
}

.service-panel > div:first-child {
  display: flex;
  flex-direction: column;
  padding-right: 6px;
}

.service-panel > div:first-child .button {
  align-self: flex-start;
  margin-top: auto;
}

.service-panel > div:first-child > h3 {
  max-width: 520px;
  margin-bottom: 14px;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.16;
}

.service-panel p {
  max-width: 560px;
  margin-bottom: 22px;
  color: #465266;
  font-size: 16px;
  line-height: 1.62;
}

.service-stack {
  display: grid;
  grid-template-rows: 230px minmax(112px, auto);
  gap: 14px;
  align-content: start;
}

.service-visual {
  height: 230px;
  min-height: 230px;
  overflow: hidden;
  border-radius: 6px;
  background: var(--brand-dark-gradient);
  position: relative;
}

.service-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(140, 201, 79, 0.26), rgba(23, 36, 63, 0.2)),
    linear-gradient(0deg, rgba(140, 201, 79, 0.08), rgba(140, 201, 79, 0.08));
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: hue-rotate(28deg) saturate(0.78) contrast(0.94);
}

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

.service-proof article {
  min-height: 112px;
  padding: 18px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--green);
  border-radius: 6px;
  background: #fbfcf8;
}

.service-proof span {
  display: inline-block;
  margin-bottom: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
}

.service-proof h3 {
  margin-bottom: 6px;
  font-size: 19px;
  line-height: 1.2;
}

.service-proof p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.pipeline-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-content: center;
  padding: 26px;
  border-radius: 6px;
  background: var(--brand-dark-gradient);
}

.pipeline-flow span {
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.07);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: var(--white);
}

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

.services article {
  min-height: 330px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.services p,
.services li,
.commitments p,
.press span,
.locations p {
  color: var(--muted);
}

.services ul {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding-left: 18px;
}

.toolbox {
  padding: 68px 0;
}

.toolbox__inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: center;
}

.toolbox h2 {
  max-width: 560px;
}

.tool-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tool-tags span {
  border: 1px solid rgba(28, 29, 56, 0.2);
  border-radius: 4px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.35);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
}

.pronto-feature {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(246, 247, 241, 0.94)),
    url("../assets/live/hero.jpg") center / cover no-repeat;
}

.pronto-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
}

.pronto-layout p {
  max-width: 560px;
  margin: 20px 0 28px;
  color: #465266;
  font-size: 17px;
  line-height: 1.7;
}

.pronto-panel {
  border-radius: 6px;
  padding: clamp(30px, 5vw, 46px);
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 24px 70px rgba(28, 29, 56, 0.18);
}

.pronto-panel h3 {
  margin-bottom: 16px;
  font-size: 30px;
}

.pronto-panel p,
.pronto-panel li {
  color: rgba(255, 255, 255, 0.74);
}

.commitments,
.quotes,
.press,
.locations {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.commitments article {
  background: var(--white);
  border: 3px solid var(--green);
  border-radius: 6px;
  padding: 28px;
}

.commitments img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.commitments h3,
.commitments p {
  padding-right: 0;
  padding-left: 0;
}

.commitments h3 {
  padding-top: 0;
  margin-bottom: 12px;
}

.commitments p {
  padding-bottom: 0;
}

.commitments p + p {
  margin-top: 12px;
}

.client-logos {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.client-logos__intro {
  display: block;
  margin-bottom: 24px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
}

.client-logos__rail {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(18px, 2.5vw, 30px);
  flex-wrap: nowrap;
}

.client-logo {
  display: inline-grid;
  place-items: center;
  width: 150px;
  min-height: 58px;
  color: var(--ink);
  text-align: center;
}

.client-logo--image {
  gap: 6px;
}

.client-logo img {
  width: auto;
  max-width: 100%;
  max-height: 48px;
  object-fit: contain;
  filter: none;
}

.client-logo--vanarama img {
  max-height: 58px;
}

.client-logo--the img {
  max-height: 50px;
}

.client-logo--gti img,
.client-logo--milkvideo img,
.client-logo--ebrd img {
  max-width: 145px;
}

.client-logo--ebrd {
  width: 190px;
}

.client-logo--ebrd img {
  max-width: 185px;
}

.client-logo span {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--muted);
}

.quotes figure {
  display: grid;
  align-content: start;
  gap: 22px;
  min-height: 340px;
  padding: 30px;
  background: var(--ink-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.section--light .quotes figure {
  background: var(--white);
  border: 1px solid var(--line);
}

.section--light blockquote {
  color: #354158;
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: start;
}

.proof-points {
  display: grid;
  gap: 18px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.76);
}

.quotes img {
  width: auto;
  max-height: 50px;
  object-fit: contain;
}

blockquote {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

figcaption {
  align-self: end;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: var(--green);
}

.press article {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
}

.press article a {
  display: block;
  height: 100%;
  transition: background 0.18s ease, transform 0.18s ease;
}

.press article a:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.press img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.press p,
.press h3,
.press span {
  display: block;
  padding-right: 24px;
  padding-left: 24px;
}

.press p {
  padding-top: 22px;
  padding-bottom: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-dark);
}

.press h3 {
  line-height: 1.2;
}

.press span {
  padding-top: 12px;
  padding-bottom: 26px;
}

.article-hero {
  padding: 20px 0 72px;
  background: var(--brand-dark-gradient);
  color: var(--white);
}

.nav--article {
  margin-bottom: clamp(56px, 8vw, 92px);
}

.article-hero__content h1 {
  max-width: 880px;
}

.article-hero__content p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.7;
}

.article-page {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
}

.article-page > img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
}

.article-page__body {
  display: grid;
  gap: 20px;
  color: #465266;
  font-size: 18px;
  line-height: 1.7;
}

.article-page__body a {
  color: var(--green-dark);
  font-weight: 700;
}

.article-page__body .button {
  justify-self: start;
  margin-top: 8px;
}

.service-page-hero {
  min-height: 560px;
}

.service-page-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

.service-page-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.service-page-cards article {
  min-height: 220px;
  border: 3px solid var(--green);
  border-radius: 6px;
  padding: 24px;
  background: var(--white);
}

.service-page-cards span {
  display: inline-block;
  margin-bottom: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
}

.service-page-cards h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.service-page-cards p {
  color: var(--muted);
}

.split-intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 48px;
  align-items: end;
}

.split-intro p:last-child {
  max-width: 680px;
  font-size: 18px;
  line-height: 1.7;
  color: #465266;
}

.contact {
  background: var(--paper);
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 44px;
  align-items: start;
  border: 3px solid var(--green);
  border-radius: 6px;
  padding: clamp(30px, 5vw, 46px);
  background: var(--brand-dark-gradient);
  color: var(--white);
  box-shadow: 0 24px 70px rgba(23, 36, 63, 0.16);
}

.contact-card {
  padding: 0;
}

.contact-card .eyebrow {
  color: var(--green);
}

.contact h2 {
  margin-bottom: 20px;
}

.contact p {
  max-width: 480px;
  margin-bottom: 26px;
  color: #465266;
  font-size: 17px;
  line-height: 1.7;
}

.contact-card p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.contact-card .button {
  background: var(--green);
  color: var(--ink);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: var(--green);
}

.contact-details a {
  width: fit-content;
}

.sprint-form {
  width: 100%;
  max-width: 560px;
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  padding: clamp(20px, 3vw, 28px);
  background: rgba(255, 255, 255, 0.08);
}

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

.form__field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}

.form__label {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.86);
}

.form__input,
.form__textarea {
  width: 100%;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font: inherit;
}

.form__input:focus,
.form__textarea:focus {
  border-color: var(--green);
  outline: none;
}

.form__textarea {
  min-height: 128px;
  resize: vertical;
}

.form__message {
  min-height: 22px;
  margin-top: 14px;
  color: var(--green);
  font-size: 14px;
}

.locations {
  grid-template-columns: minmax(0, 1fr);
  max-width: 460px;
  justify-self: end;
}

.locations article {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
}

.locations img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.locations h3,
.locations p,
.locations a {
  display: block;
  padding-right: 24px;
  padding-left: 24px;
}

.locations h3 {
  padding-top: 24px;
}

.locations p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
}

.locations a {
  padding-top: 14px;
  padding-bottom: 26px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: var(--green);
}

.footer {
  padding: 24px 0;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  font-size: 14px;
}

.footer a {
  color: var(--green);
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
}

.footer__brand img {
  display: block;
  width: 64px;
  height: auto;
}

.footer__copy {
  justify-self: center;
  text-align: center;
}

.footer__actions {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.footer__social {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}

.footer__social-icon {
  display: block;
  width: 18px;
  height: 18px;
}

.footer__privacy {
  color: rgba(255, 255, 255, 0.72);
}

.footer__privacy:hover {
  color: var(--green);
}

.cookie-notice {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1000;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(560px, calc(100% - 36px));
  border: 1px solid rgba(140, 201, 79, 0.45);
  border-radius: 8px;
  padding: 18px;
  background: rgba(23, 36, 63, 0.98);
  box-shadow: 0 20px 60px rgba(23, 36, 63, 0.24);
  color: var(--white);
}

.cookie-notice strong {
  display: block;
  margin-bottom: 4px;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
}

.cookie-notice p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.55;
}

.cookie-notice a {
  color: var(--green);
  font-weight: 700;
}

.cookie-notice__button {
  min-height: 42px;
  border: 0;
  border-radius: 4px;
  padding: 0 20px;
  background: var(--green);
  color: var(--ink);
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .nav {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav__links {
    order: 3;
    justify-content: flex-start;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .nav__links--segmented {
    width: 100%;
    padding: 5px;
    gap: 4px;
  }

  .nav__links--segmented a {
    flex: 0 0 auto;
  }

  .hero__content {
    margin-top: 86px;
    text-align: left;
  }

  h1 {
    margin: 0;
  }

  .hero__actions {
    justify-content: flex-start;
  }

  .two-col,
  .article-page,
  .service-page-grid,
  .frontier-layout,
  .sprint-card,
  .service-panel,
  .toolbox__inner,
  .pronto-layout,
  .proof-layout,
  .split-intro,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .agent-grid,
  .problem-list,
  .model-steps,
  .service-page-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services,
  .commitments,
  .quotes,
  .press {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .client-logos__rail {
    justify-content: flex-start;
  }

  .service-explorer {
    flex-direction: column;
    min-height: auto;
  }

  .service-solution,
  .service-solution.is-active {
    flex: 1 1 auto;
  }

  .service-explorer:not([data-active-service=""]) .service-solution {
    flex: 1 1 auto;
  }

  .service-option {
    grid-template-columns: 120px minmax(180px, 1fr) 34px;
    height: auto;
    min-height: 148px;
  }

  .service-option.is-active {
    grid-template-columns: 120px minmax(180px, 1fr) 34px;
    align-content: start;
    align-items: start;
    gap: 14px;
    height: auto;
    min-height: 148px;
    padding: 28px;
  }

  .service-solution:not(.is-active) .service-option {
    min-height: 148px;
  }

  .service-explorer:not([data-active-service=""]) .service-solution:not(.is-active) .service-option {
    grid-template-columns: 120px minmax(180px, 1fr) 34px;
    align-content: start;
    gap: 14px;
    padding: 28px;
  }

  .service-option strong {
    grid-column: 2;
  }

  .service-option.is-active strong {
    grid-column: 2;
  }

  .service-option em {
    grid-column: 2 / 3;
  }

  .service-option.is-active em {
    display: block;
  }

  .service-option::after {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

  .service-explorer:not([data-active-service=""]) .service-solution:not(.is-active) .service-option::after {
    display: inline-flex;
  }

  .service-thumb,
  .service-option.is-active .service-thumb,
  .service-explorer:not([data-active-service=""]) .service-solution:not(.is-active) .service-thumb {
    grid-column: 1;
    grid-row: 1 / span 3;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 92px;
    aspect-ratio: auto;
    margin: 0;
    border-radius: 6px;
  }

  .service-explorer:not([data-active-service=""]) .service-solution:not(.is-active) .service-option span,
  .service-explorer:not([data-active-service=""]) .service-solution:not(.is-active) .service-option strong,
  .service-explorer:not([data-active-service=""]) .service-solution:not(.is-active) .service-option em {
    position: relative;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
  }

  .service-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .container,
  .nav,
  .hero__content {
    width: min(100% - 28px, var(--max));
  }

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

  .brand img {
    width: 100px;
  }

  .nav {
    align-items: center;
    gap: 16px;
    min-height: auto;
  }

  .nav__links {
    gap: 0;
  }

  .nav__links--segmented {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 5px;
    border-radius: 18px;
    padding: 5px;
    overflow: visible;
  }

  .nav__links--segmented a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 7px 8px;
    border-radius: 13px;
    font-size: 10px;
    line-height: 1.15;
    text-align: center;
    white-space: normal;
  }

  .hero__content {
    margin-top: 52px;
  }

  .hero__eyebrow {
    display: block;
    min-height: 0;
    max-width: 280px;
    margin-bottom: 18px;
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
    line-height: 1.45;
  }

  h1 {
    font-size: clamp(36px, 13vw, 54px);
  }

  .hero__copy {
    font-size: 17px;
    line-height: 1.62;
  }

  .section {
    padding: 66px 0;
  }

  .frontier-board,
  .agent-grid,
  .problem-list,
  .model-steps,
  .form__row,
  .service-page-cards {
    grid-template-columns: 1fr;
  }

  .services,
  .commitments,
  .quotes,
  .press,
  .locations {
    grid-template-columns: 1fr;
  }

  .client-logo {
    width: auto;
    min-height: 42px;
  }

  .client-logo--ebrd {
    width: auto;
  }

  .client-logos__rail {
    gap: 10px;
    justify-content: flex-start;
  }

  .client-logo img {
    max-height: 32px;
  }

  .client-logo--vanarama img {
    max-height: 38px;
  }

  .client-logo--the img {
    max-height: 34px;
  }

  .client-logo--gti img,
  .client-logo--milkvideo img {
    max-width: 96px;
  }

  .client-logo--ebrd img {
    max-width: 120px;
  }

  .services article,
  .quotes figure,
  .service-option {
    min-height: auto;
  }

  .service-explorer {
    gap: 14px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .service-solution,
  .service-solution.is-active,
  .service-explorer:not([data-active-service=""]) .service-solution,
  .service-explorer:not([data-active-service=""]) .service-solution.is-active {
    flex: 0 0 auto;
    border-color: var(--line);
    box-shadow: 0 12px 28px rgba(28, 29, 56, 0.06);
  }

  .service-option {
    grid-template-columns: minmax(0, 1fr) 40px;
    gap: 12px 16px;
    height: auto;
    padding: 18px;
    background: var(--white);
    color: var(--ink);
  }

  .service-option.is-active {
    grid-template-columns: minmax(0, 1fr) 40px;
    gap: 12px 16px;
    height: auto;
    min-height: auto;
    padding: 18px;
    background: var(--white);
    color: var(--ink);
  }

  .service-explorer:not([data-active-service=""]) .service-solution:not(.is-active) .service-option {
    grid-template-columns: minmax(0, 1fr) 40px;
    gap: 12px 16px;
    padding: 18px;
  }

  .service-solution:not(.is-active) .service-option {
    min-height: auto;
  }

  .service-thumb,
  .service-option.is-active .service-thumb,
  .service-explorer:not([data-active-service=""]) .service-solution:not(.is-active) .service-thumb {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: 0;
    margin: 0 0 4px;
    border-radius: 8px;
  }

  .service-option span {
    grid-column: 1;
    grid-row: 2;
    align-self: center;
    color: var(--green-dark);
  }

  .service-option.is-active span {
    grid-column: 1;
    color: var(--green-dark);
  }

  .service-option::after {
    grid-column: 2;
    grid-row: 2 / span 2;
    width: 38px;
    height: 38px;
    align-self: center;
    justify-self: end;
    background: #fbfcf8;
    color: var(--ink);
  }

  .service-option.is-active::after {
    content: '⌃';
    grid-column: 2;
    grid-row: 2 / span 2;
    border-color: rgba(28, 29, 56, 0.18);
    color: var(--green-dark);
  }

  .service-option strong {
    grid-column: 1;
    grid-row: 3;
    max-width: none;
    font-size: 24px;
    line-height: 1.12;
  }

  .service-option.is-active strong {
    grid-column: 1;
    grid-row: 3;
    color: var(--ink);
  }

  .service-option em,
  .service-option.is-active em {
    grid-column: 1 / -1;
    grid-row: 4;
    display: block;
    max-width: none;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.5;
  }

  .service-panel.is-active {
    max-height: 1180px;
    min-height: 0;
    padding: 0 18px 20px;
    transform: none;
  }

  .service-panel > div:first-child > h3 {
    font-size: 24px;
  }

  .service-panel p {
    font-size: 15px;
  }

  .service-stack {
    grid-template-rows: auto;
  }

  .service-visual {
    display: none;
  }

  .service-proof {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero__metrics span {
    width: 100%;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .footer__brand,
  .footer__copy,
  .footer__actions {
    justify-self: center;
  }

  .cookie-notice {
    left: 14px;
    right: 14px;
    bottom: 14px;
    grid-template-columns: 1fr;
    width: auto;
  }

  .cookie-notice__button {
    width: 100%;
  }
}
