@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('../fonts/sora-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('../fonts/sora-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --blue: #00274C;
  --maize: #FFCB05;
  --deep-maize: #B58600;
  --white: #FFFFFF;
  --paper: #F4F3F0;
  --body: #45443F;

  --line: #E2E0DA;
  --line-strong: #C9C6BD;
  --line-on-blue: rgba(255, 255, 255, 0.16);
  --muted-on-blue: rgba(255, 255, 255, 0.72);

  --container: 1220px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(4.5rem, 9vw, 8rem);

  --fs-display: clamp(2.35rem, 4.5vw, 3.8rem);
  --fs-h2: clamp(1.95rem, 4.2vw, 3.05rem);
  --fs-h3: clamp(1.15rem, 1.6vw, 1.4rem);
  --fs-lead: clamp(1.05rem, 1.5vw, 1.3rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-label: 0.72rem;

  --ease: cubic-bezier(0.22, 0.68, 0.31, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--body);
  font-family: 'Sora', 'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
  font-size: var(--fs-body);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  color: var(--blue);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.06;
  margin: 0;
  text-wrap: balance;
}

h3,
h4 {
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

p {
  margin: 0;
  text-wrap: pretty;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dl,
dd,
dt {
  margin: 0;
}

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

img {
  height: auto;
}

a {
  color: var(--blue);
  text-decoration-color: var(--maize);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--blue);
  text-decoration-thickness: 3px;
}

button {
  font: inherit;
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 2px;
}

.on-blue :focus-visible {
  outline-color: var(--maize);
}

.skip-link {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 200;
  padding: 0.75rem 1.5rem;
  background: var(--maize);
  color: var(--blue);
  font-size: var(--fs-small);
  font-weight: 500;
  text-decoration: none;
  transform: translate(-50%, -110%);
  transition: transform 0.2s var(--ease);
}

.skip-link:focus {
  color: var(--blue);
  transform: translate(-50%, 0);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--section-y);
}

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

.section--blue {
  background: var(--blue);
  color: var(--muted-on-blue);
}

.section--ambient {
  position: relative;
  background-image:
    radial-gradient(900px 900px at 15% 0%, rgba(255, 203, 5, 0.05), transparent 65%),
    radial-gradient(900px 900px at 100% 30%, rgba(0, 39, 76, 0.035), transparent 65%);
  background-repeat: no-repeat;
  background-position: 0% 0%, 100% 0%;
  animation: ambient-wash 90s ease-in-out infinite;
}

@keyframes ambient-wash {

  0%,
  100% {
    background-position: 0% 0%, 100% 0%;
  }

  50% {
    background-position: 6% 4%, 94% 8%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .section--ambient {
    animation: none;
  }
}

.on-blue h1,
.on-blue h2,
.on-blue h3,
.on-blue h4 {
  color: var(--white);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.mark {
  display: inline;
  padding: 0.06em 0.16em 0.14em;
  margin-inline: -0.05em;
  line-height: 1.5;
  background-color: var(--maize);
  color: var(--blue);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.reveal .mark {
  background-color: transparent;
  background-image: linear-gradient(to right, var(--maize) 0 100%);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: background-size 0.7s var(--ease), color 0.01s linear;
  transition-delay: calc(var(--i, 0) * 80ms + 150ms), calc(var(--i, 0) * 80ms + 420ms);
}

.reveal.is-visible .mark {
  background-size: 100% 100%;
  background-color: var(--maize);
  transition: background-size 0.7s var(--ease), color 0.01s linear, background-color 0.01s linear;
  transition-delay: calc(var(--i, 0) * 80ms + 150ms), calc(var(--i, 0) * 80ms + 420ms), calc(var(--i, 0) * 80ms + 860ms);
}

.on-blue .reveal .mark {
  color: var(--white);
}

.on-blue .reveal.is-visible .mark {
  color: var(--blue);
}

h1 .mark {
  background-color: transparent;
  background-image: linear-gradient(to right, var(--maize) 0 100%);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  animation: mark-wipe 0.7s var(--ease) 0.4s forwards;
}

.on-blue h1 .mark {
  color: var(--white);
  animation: mark-wipe 0.7s var(--ease) 0.4s forwards, mark-wipe-color 0.7s var(--ease) 0.4s forwards;
}

@keyframes mark-wipe {
  to {
    background-size: 100% 100%;
  }
}

@keyframes mark-wipe-color {
  to {
    color: var(--blue);
  }
}

.lead {
  max-width: 62ch;
  font-size: var(--fs-lead);
  line-height: 1.55;
}

.section-head {
  max-width: 46rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.eyebrow {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--deep-maize);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.on-blue .eyebrow {
  color: var(--maize);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head--split {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.75rem 2.5rem;
  max-width: none;
}

.section-head--split > div {
  max-width: 46rem;
}

.section-head__cta {
  flex: none;
}

.section-head p {
  margin-top: 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  border: 2px solid transparent;
  font-size: var(--fs-small);
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn__arrow {
  flex: none;
  transition: transform 0.25s var(--ease);
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

.btn--primary {
  background: var(--maize);
  border-color: var(--maize);
  color: var(--blue);
}

.btn--primary:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--maize);
}

.btn--outline {
  border-color: var(--blue);
  color: var(--blue);
}

.btn--outline:hover {
  background: var(--blue);
  color: var(--white);
}

.on-blue .btn--outline {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.on-blue .btn--outline:hover {
  background: var(--white);
  border-color: var(--maize);
  color: var(--blue);
}

.on-blue .btn--primary:hover {
  border-color: var(--maize);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.cta-band__inner .btn-row {
  margin-top: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--deep-maize);
  font-size: var(--fs-small);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 2px solid var(--maize);
  padding-bottom: 2px;
}

.text-link svg {
  transition: transform 0.25s var(--ease);
}

.text-link:hover svg {
  transform: translateX(4px);
}

.on-blue .text-link {
  color: var(--white);
}

.on-blue .text-link:hover {
  color: var(--maize);
}

.logo {
  display: inline-flex;
  align-items: baseline;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
}

.logo:hover {
  color: inherit;
}

.logo__pb {
  color: var(--blue);
  font-weight: 600;
  padding-right: 0.22em;
}

.logo__enter {
  background: var(--maize);
  color: var(--blue);
  font-weight: 600;
  padding: 0.1em 0.16em 0.14em;
}

.logo__prises {
  color: var(--blue);
  font-weight: 300;
  padding-left: 0.06em;
}

.logo--light .logo__pb,
.logo--light .logo__prises {
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s var(--ease);
}

.site-header[data-scrolled='true'] {
  box-shadow: 0 1px 24px rgba(0, 39, 76, 0.09);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 74px;
}

.nav {
  display: none;
  align-items: center;
  gap: 0.35rem;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.75rem;
  border: 0;
  background: none;
  color: var(--blue);
  font-size: var(--fs-small);
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.3rem;
  height: 2px;
  background: var(--maize);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}

.nav__link:hover::after,
.nav__link[aria-current='page']::after,
.nav__link[aria-expanded='true']::after {
  transform: scaleX(1);
}

.nav__link:hover {
  color: var(--blue);
}

.nav__chevron {
  transition: transform 0.25s var(--ease);
}

.nav__link[aria-expanded='true'] .nav__chevron {
  transform: rotate(180deg);
}

.nav__group {
  position: relative;
}

.nav__panel {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  width: min(38rem, 80vw);
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0, 39, 76, 0.16);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -8px);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
}

.nav__panel[data-open='true'] {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav__panel a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 0.7rem;
  align-items: center;
  padding: 0.6rem 0.8rem;
  font-size: var(--fs-small);
  font-weight: 500;
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: background-color 0.18s var(--ease), border-color 0.18s var(--ease);
}

.nav__panel a .nav__panel-ico {
  grid-row: span 2;
  display: flex;
  align-self: center;
  margin: 0;
  color: var(--blue);
  font-size: 0;
  opacity: 0.8;
}

.nav__panel a:hover .nav__panel-ico {
  opacity: 1;
}

.nav__panel a span {
  display: block;
  color: var(--body);
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.4;
  margin-top: 0.15rem;
}

.nav__panel a:hover {
  background: var(--paper);
  border-left-color: var(--maize);
  color: var(--blue);
}

.header__cta {
  display: none;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.9rem;
  border: 2px solid var(--blue);
  background: none;
  color: var(--blue);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-toggle__bars {
  position: relative;
  width: 18px;
  height: 12px;
  flex: none;
}

.nav-toggle__bars span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--blue);
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}

.nav-toggle__bars span:nth-child(1) { top: 0; }
.nav-toggle__bars span:nth-child(2) { top: 5px; }
.nav-toggle__bars span:nth-child(3) { top: 10px; }

.nav-toggle[aria-expanded='true'] .nav-toggle__bars span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.nav-toggle[aria-expanded='true'] .nav-toggle__bars span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded='true'] .nav-toggle__bars span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.mobile-menu {
  display: block;
  border-top: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s var(--ease);
}

.mobile-menu[data-open='true'] {
  max-height: 78vh;
  overflow-y: auto;
}

.mobile-menu__list {
  padding: 1rem 0 2rem;
}

.mobile-menu__list > li {
  border-bottom: 1px solid var(--line);
}

.mobile-menu__list a,
.mobile-menu__list button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1rem 0;
  border: 0;
  background: none;
  color: var(--blue);
  font-size: 1.05rem;
  font-weight: 500;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.mobile-menu__sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease);
}

.mobile-menu__sub[data-open='true'] {
  max-height: 32rem;
}

.mobile-menu__sub a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.7rem;
  padding: 0.7rem 0 0.7rem 1.1rem;
  border-left: 2px solid var(--line);
  font-size: 0.95rem;
  font-weight: 300;
}

.mobile-menu__sub a .nav__panel-ico {
  flex: none;
  display: flex;
  color: var(--blue);
  opacity: 0.85;
}

.mobile-menu__sub a:hover {
  border-left-color: var(--maize);
}

.mobile-menu .btn {
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
  width: 100%;
}

.hero {
  position: relative;
  background: var(--blue);
  color: var(--muted-on-blue);
  overflow: hidden;
  padding-block: clamp(3.5rem, 7vw, 6rem) clamp(4rem, 8vw, 7rem);
}

.hero__wedge {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(30vw, 300px);
  height: clamp(3rem, 7vw, 6.25rem);
  background: var(--maize);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero__grid {
  position: relative;
  display: grid;
  gap: clamp(3rem, 6vw, 4.5rem);
  align-items: center;
}

.hero h1 {
  color: var(--white);
  font-size: var(--fs-display);
  margin-bottom: 1.5rem;
}

.hero__lead {
  color: var(--muted-on-blue);
  margin-bottom: 2.25rem;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.25rem;
  color: var(--muted-on-blue);
  font-size: var(--fs-small);
}

.hero__trust::before {
  content: '';
  width: 2rem;
  height: 2px;
  background: var(--maize);
  flex: none;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: clamp(3rem, 6vw, 4.5rem);
  background: var(--line-on-blue);
  border-block: 1px solid var(--line-on-blue);
}

.stat {
  background: var(--blue);
  padding: 1.6rem 1.25rem;
}

.stat__num {
  display: block;
  color: var(--maize);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat__label {
  display: block;
  margin-top: 0.5rem;
  color: var(--muted-on-blue);
  font-size: var(--fs-small);
}

.clients {
  padding-block: clamp(2.25rem, 4.5vw, 3.25rem);
  border-bottom: 1px solid var(--line);
}

.clients__title {
  margin-bottom: 1.5rem;
  color: var(--deep-maize);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-align: center;
  text-transform: uppercase;
}

.clients__viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
}

.clients__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 36s linear infinite;
}

.clients__item {
  flex: none;
  margin-right: clamp(0.75rem, 2vw, 1.5rem);
}

.clients__item img {
  height: 46px;
  width: auto;
  transition: opacity 0.3s var(--ease);
}

.clients__item:hover img {
  opacity: 0.7;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

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

.service {
  display: grid;
  gap: 1.25rem 2rem;
  padding-block: clamp(2rem, 4vw, 2.75rem);
  border-bottom: 1px solid var(--line);
  position: relative;
}

.service::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 3px;
  background: var(--maize);
  transition: width 0.45s var(--ease);
}

.service:hover::before {
  width: 100%;
}

.service__num {
  color: var(--blue);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  opacity: 0.22;
}

.service__icon {
  flex: none;
  color: var(--blue);
}

.service__head {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.service h3 {
  font-size: var(--fs-h3);
}

.service h3 a {
  color: inherit;
  text-decoration: none;
}

.service h3 a::after {
  content: '';
  position: absolute;
  inset: 0;
}

.service h3 a:hover {
  color: var(--deep-maize);
  text-decoration: underline;
}

.service__sub {
  display: block;
  color: var(--body);
  font-size: var(--fs-small);
  font-weight: 500;
  margin-top: 0.3rem;
}

.service__desc {
  margin-top: 0.9rem;
  max-width: 46ch;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.1rem;
}

.tag {
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--line-strong);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.includes {
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

.includes li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: var(--fs-small);
}

.includes li::before {
  content: '';
  flex: none;
  width: 8px;
  height: 8px;
  margin-top: 0.5rem;
  background: var(--maize);
}

.services__foot {
  margin-top: 2.5rem;
}

.split {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.split__media {
  position: relative;
}

.split__media img {
  width: 100%;
  border: 1px solid var(--line);
}

.split__media--square img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.split__badge {
  position: absolute;
  right: -2.75rem;
  bottom: -1.5rem;
  max-width: 12.5rem;
  padding: 1.1rem 1.25rem;
  background: var(--maize);
  color: var(--blue);
}

.split__badge strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.split__badge span {
  display: block;
  margin-top: 0.35rem;
  font-size: var(--fs-small);
  font-weight: 300;
  line-height: 1.45;
}

.split__body p + p {
  margin-top: 1.15rem;
}

.pillars {
  display: grid;
  gap: 1px;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  background: var(--line);
  border: 1px solid var(--line);
}

.pillar {
  --pillar-pad: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--white);
  padding: var(--pillar-pad);
}

.pillar__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: calc(-1 * var(--pillar-pad)) calc(-1 * var(--pillar-pad)) 1.75rem;
  padding: 1.75rem;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.pillar__visual svg {
  width: 100%;
  max-width: 280px;
  height: auto;
}

.pillar__visual--photo {
  padding: 0;
  background: none;
}

.pillar__visual--photo img {
  display: block;
  width: 100%;
  height: clamp(11rem, 20vw, 14rem);
  object-fit: cover;
}

.pillar__visual--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(11rem, 20vw, 14rem);
  padding: 1.25rem;
  background: repeating-linear-gradient(45deg, var(--line) 0 10px, var(--paper) 10px 20px);
  border: 1px dashed var(--line-strong);
}

.pillar__visual--placeholder span {
  color: var(--body);
  font-size: 0.72rem;
  line-height: 1.45;
  text-align: center;
}

.pillar h3 {
  font-size: 1.15rem;
}

.pillar p {
  margin-top: 0.7rem;
  font-size: var(--fs-small);
}

.review-stack {
  position: relative;
  min-height: clamp(19rem, 30vw, 23rem);
}

.review-stack__card {
  position: absolute;
  top: 0;
  left: 0;
  width: 82%;
  max-width: 320px;
  padding: 1.4rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 16px 34px rgba(0, 39, 76, 0.12);
}

.review-stack__card--back2 {
  transform: rotate(-7deg) translate(8%, 4%);
  opacity: 0.55;
  z-index: 1;
}

.review-stack__card--back1 {
  transform: rotate(5deg) translate(16%, 15%);
  opacity: 0.8;
  z-index: 2;
}

.review-stack__card--front {
  transform: rotate(-2deg) translate(10%, 28%);
  z-index: 3;
}

.review-stack__stars {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--maize);
  font-size: 0.95rem;
  letter-spacing: 0.14em;
}

.review-stack__card p {
  color: var(--blue);
  font-size: var(--fs-small);
  font-weight: 500;
  line-height: 1.45;
}

.review-stack__card span {
  display: block;
  margin-top: 0.7rem;
  color: var(--body);
  font-size: 0.78rem;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  min-height: clamp(19rem, 30vw, 23rem);
  background: var(--line);
  border: 1px solid var(--line);
}

.platform-grid__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.9rem;
  padding: 1.5rem;
  background: var(--white);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.platform-grid__item:hover {
  background: var(--blue);
  color: var(--white);
}

.platform-grid__item:hover .icon-tile {
  background: var(--maize);
  color: var(--blue);
}

.platform-grid__label {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--blue);
  transition: color 0.3s var(--ease);
}

.platform-grid__item:hover .platform-grid__label {
  color: var(--white);
}

.compare {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-height: clamp(19rem, 30vw, 23rem);
  background: var(--line);
  border: 1px solid var(--line);
}

.compare__panel {
  flex: 1;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--paper);
}

.compare__panel--after {
  background: var(--blue);
  color: var(--muted-on-blue);
}

.compare__tag {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.3rem 0.7rem;
  color: var(--body);
  background: var(--white);
  border: 1px solid var(--line-strong);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.compare__panel--after .compare__tag {
  color: var(--blue);
  background: var(--maize);
  border-color: var(--maize);
}

.compare__list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.compare__list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: var(--fs-small);
  line-height: 1.45;
}

.compare__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line-strong);
}

.compare__panel--after .compare__list li::before {
  background: var(--maize);
}

.channel-flow {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  padding: clamp(1.75rem, 3vw, 2.25rem);
  min-height: clamp(19rem, 30vw, 23rem);
  background: var(--paper);
  border: 1px solid var(--line);
}

.channel-flow__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}

.channel-flow__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.channel-flow__item .icon-tile {
  width: 40px;
  height: 40px;
  margin-bottom: 0;
}

.channel-flow__label {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--body);
}

.channel-flow__connector {
  flex: 1 1 100%;
  display: flex;
  justify-content: center;
}

.channel-flow__connector svg {
  color: var(--line-strong);
}

.channel-flow__result {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  padding: 0.9rem 1.4rem;
  background: var(--blue);
  color: var(--white);
}

.channel-flow__result .icon-tile {
  width: 40px;
  height: 40px;
  margin-bottom: 0;
  background: var(--maize);
  color: var(--blue);
}

.channel-flow__result-label {
  font-size: 0.92rem;
  font-weight: 500;
}

.tl {
  display: grid;
  gap: 2.5rem;
}

.tl__step {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.tl__connector {
  position: absolute;
  top: 56px;
  left: 27px;
  width: 2px;
  bottom: -2.5rem;
  background: var(--line-on-blue);
}

.tl__connector-fill {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--maize);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.75s var(--ease);
  transition-delay: calc(var(--i, 0) * 150ms + 260ms);
}

.tl__step.is-visible .tl__connector-fill {
  transform: scaleY(1);
}

.tl__step:last-child .tl__connector {
  display: none;
}

.tl__node {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--blue);
  border: 2px solid var(--maize);
  color: var(--maize);
  transition: background-color 0.35s var(--ease), color 0.35s var(--ease);
}

.tl__step.is-visible .tl__node {
  animation: node-pop 0.65s var(--ease) both;
  animation-delay: calc(var(--i, 0) * 150ms);
}

@keyframes node-pop {
  0% { transform: scale(0.55); opacity: 0; }
  62% { transform: scale(1.14); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

.tl__body {
  display: block;
  padding-top: 0.15rem;
}

.tl__num {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--maize);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.tl__body h3 {
  font-size: 1.2rem;
}

.tl__body p {
  margin-top: 0.6rem;
  font-size: var(--fs-small);
}

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

.programme__grid {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}

.price-card {
  border: 1px solid var(--line);
  background: var(--white);
}

.price-card__top {
  padding: clamp(1.75rem, 3vw, 2.25rem);
  background: var(--blue);
  color: var(--muted-on-blue);
}

.price-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  color: var(--white);
}

.price-card__price b {
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}

.price-card__price span {
  font-size: var(--fs-small);
  font-weight: 300;
}

.price-card__note {
  margin-top: 0.85rem;
  font-size: var(--fs-small);
  color: var(--muted-on-blue);
}

.price-card__list {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: grid;
  gap: 1rem;
}

.price-card__list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  font-size: var(--fs-small);
}

.price-card__list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.price-card__list b {
  color: var(--blue);
  font-weight: 500;
}

.price-card__list i {
  color: var(--deep-maize);
  font-style: normal;
  font-weight: 600;
  white-space: nowrap;
}

.price-card__foot {
  padding: 0 clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2rem);
}

.price-card__foot .btn {
  width: 100%;
}

.price-card__compare {
  margin-top: 1rem;
  font-size: 0.8rem;
  text-align: center;
}

.places {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 2rem;
}

.testimonial {
  max-width: 640px;
  margin: 2.5rem auto 0;
}

.testimonial__track {
  display: grid;
}

.testimonial__slide {
  grid-area: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  box-shadow: 0 24px 48px rgba(0, 39, 76, 0.08);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease);
}

.testimonial__slide[data-active='true'] {
  opacity: 1;
  visibility: visible;
}

.testimonial__slide blockquote {
  margin: 0;
  color: var(--blue);
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.65;
}

.testimonial__slide figcaption {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.testimonial__slide img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex: none;
}

.testimonial__slide figcaption span {
  font-size: var(--fs-small);
  line-height: 1.4;
}

.testimonial__slide figcaption b {
  display: block;
  color: var(--blue);
  font-weight: 600;
}

.testimonial__slide figcaption i {
  display: block;
  margin-top: 0.2rem;
  color: var(--deep-maize);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.testimonial__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.testimonial__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  flex: none;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--white);
  color: var(--blue);
  cursor: pointer;
  transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.testimonial__arrow:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.testimonial__dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.testimonial__dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--line-strong);
  cursor: pointer;
  transition: width 0.3s var(--ease), background-color 0.3s var(--ease);
}

.testimonial__dot[aria-current='true'] {
  width: 1.5rem;
  background: var(--maize);
}

@media (prefers-reduced-motion: reduce) {
  .testimonial__slide {
    transition: none;
  }
}

.cta-band {
  background: var(--paper);
}

.cta-band__box {
  position: relative;
  overflow: hidden;
  background: var(--blue);
  color: var(--muted-on-blue);
  padding: clamp(2.25rem, 4.5vw, 3.5rem) clamp(1.5rem, 4vw, 3.5rem) clamp(4.5rem, 8vw, 6.5rem);
}

.cta-band__wedge {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(26vw, 260px);
  height: clamp(2.5rem, 5vw, 4rem);
  background: var(--maize);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.cta-band__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  align-items: center;
}

.cta-band h2 {
  font-size: var(--fs-h2);
}

.cta-band p {
  margin-top: 1.1rem;
  max-width: 46ch;
}

.cta-band__rings {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.cta-band__rings span {
  position: absolute;
  right: -280px;
  bottom: -280px;
  width: 560px;
  height: 560px;
  border: 1.5px solid rgba(255, 203, 5, 0.55);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.12);
  animation: cta-ripple 10s ease-out infinite;
}

.cta-band__rings span:nth-child(2) { animation-delay: 2.5s; }
.cta-band__rings span:nth-child(3) { animation-delay: 5s; }
.cta-band__rings span:nth-child(4) { animation-delay: 7.5s; }

@keyframes cta-ripple {
  0% { opacity: 0; transform: scale(0.12); }
  14% { opacity: 0.65; }
  100% { opacity: 0; transform: scale(1.3); }
}

@media (prefers-reduced-motion: reduce) {
  .cta-band__rings {
    display: none;
  }
}

.site-footer {
  border-top: 3px solid var(--maize);
  background: var(--blue);
  color: var(--muted-on-blue);
  padding-block: clamp(3.5rem, 6vw, 5rem) 2rem;
}

.footer__grid {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line-on-blue);
}

.footer__blurb {
  margin-top: 1.5rem;
  max-width: 34ch;
  font-size: var(--fs-small);
}

.footer__contact {
  display: grid;
  gap: 0.2rem;
  margin-top: 1.75rem;
}

.footer__contact a,
.footer__contact span {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding-block: 0.35rem;
  color: var(--muted-on-blue);
  font-size: var(--fs-small);
  text-decoration: none;
}

.footer__contact svg {
  color: var(--maize);
  flex: none;
}

.footer__contact a:hover {
  color: var(--maize);
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 1.75rem;
  padding: 1.5rem 1.75rem;
  background: var(--paper);
  border: 1px solid var(--line);
}

.contact-card__row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.contact-card__row .icon-tile {
  width: 40px;
  height: 40px;
  margin-bottom: 0;
}

.contact-card__row a {
  color: var(--deep-maize);
  font-size: var(--fs-small);
  font-weight: 500;
  text-decoration: none;
}

.contact-card__row a:hover {
  text-decoration: underline;
}

.contact-card__row span {
  color: var(--body);
  font-size: var(--fs-small);
}

.footer h3 {
  color: var(--white);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer__links {
  display: grid;
  gap: 0.1rem;
}

.footer__links a {
  display: block;
  padding-block: 0.4rem;
  color: var(--muted-on-blue);
  font-size: var(--fs-small);
  text-decoration: none;
}

.footer__links a:hover {
  color: var(--maize);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  font-size: 0.8rem;
}

.footer__bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer__bottom a {
  display: inline-block;
  padding-block: 0.35rem;
  color: var(--muted-on-blue);
  text-decoration: none;
}

.footer__bottom a:hover {
  color: var(--maize);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.section--services {
  padding-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.place {
  position: relative;
  background: var(--white);
  padding: 1.5rem 1.4rem;
  overflow: hidden;
  transition: background-color 0.3s var(--ease);
}

.place::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--maize);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.place:hover::before {
  transform: scaleX(1);
}

.place:hover,
.pillar:hover {
  z-index: 1;
  transform: translateY(-4px);
  box-shadow: 0 0 28px rgba(0, 39, 76, 0.22), 0 16px 34px rgba(0, 39, 76, 0.13);
}

.pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--maize);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.pillar:hover::before {
  transform: scaleX(1);
}

.place__icon,
.icon-tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1.1rem;
  background: var(--blue);
  color: var(--maize);
  transition: transform 0.4s var(--ease), background-color 0.3s var(--ease), color 0.3s var(--ease);
}

.place:hover .place__icon,
.pillar:hover .icon-tile {
  background: var(--maize);
  color: var(--blue);
  transform: translateY(-3px) rotate(-6deg);
}

.place h4 {
  font-size: 1.05rem;
}

.place p {
  margin-top: 0.55rem;
  font-size: var(--fs-small);
}

.pi-orbit {
  transform-box: fill-box;
  transform-origin: center;
  animation: pulse-soft 3.6s var(--ease) infinite;
}

.pi-pin {
  transform-box: fill-box;
  transform-origin: bottom center;
  animation: bob 3.2s var(--ease) infinite;
}

.pi-dot {
  transform-box: fill-box;
  transform-origin: center;
  animation: pulse-soft 3.2s var(--ease) infinite;
}

.pi-star-a {
  transform-box: fill-box;
  transform-origin: center;
  animation: twinkle 3s var(--ease) infinite;
}

.pi-star-b {
  transform-box: fill-box;
  transform-origin: center;
  animation: twinkle 3s var(--ease) infinite 1.1s;
}

.pi-scan {
  animation: scan 3.4s var(--ease) infinite;
}

@keyframes pulse-soft {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}

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

@keyframes twinkle {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.72); opacity: 0.55; }
}

@keyframes scan {
  0%, 100% { transform: translateY(0); opacity: 0.35; }
  50% { transform: translateY(5px); opacity: 1; }
}

.service__icon > *,
.icon-tile svg > * {
  transform-box: view-box;
  transform-origin: 12px 12px;
}

.service__icon > * {
  animation: icon-float 3.2s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 0.28s);
}

.icon-tile svg > * {
  animation: icon-breathe 3.8s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 0.4s);
}

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

@keyframes icon-breathe {
  0%, 100% { transform: scale(0.94); }
  50% { transform: scale(1.16); }
}

.d-dot {
  fill: currentColor;
  stroke: none;
}

/* a marker runs the line: step 1 to 2 to 3 to 4, then repeats */
.tl__travel {
  position: absolute;
  inset: 0;
  pointer-events: none;
  animation: tl-travel-v 6s linear infinite;
}

.tl__travel::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 11px;
  height: 11px;
  margin: -5.5px 0 0 -5.5px;
  background: var(--maize);
  transform: rotate(45deg);
}

.tl__step--1 .tl__travel { animation-delay: 0s; }
.tl__step--2 .tl__travel { animation-delay: 2s; }
.tl__step--3 .tl__travel { animation-delay: 4s; }

.tl__node::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--maize);
  opacity: 0;
  animation: node-hit 6s ease-out infinite;
}

.tl__node svg {
  position: relative;
  animation: glyph-hit 6s ease-out infinite;
}

.tl__step--1 .tl__node::before,
.tl__step--1 .tl__node svg { animation-delay: 0s; }

.tl__step--2 .tl__node::before,
.tl__step--2 .tl__node svg { animation-delay: 1.8s; }

.tl__step--3 .tl__node::before,
.tl__step--3 .tl__node svg { animation-delay: 3.8s; }

.tl__step--4 .tl__node::before,
.tl__step--4 .tl__node svg { animation-delay: 5.8s; }

@keyframes node-hit {
  0% { opacity: 0; }
  6%, 22% { opacity: 1; }
  38%, 100% { opacity: 0; }
}

@keyframes glyph-hit {
  0% { color: var(--maize); transform: scale(1); }
  6% { color: var(--blue); transform: scale(1.2); }
  22% { color: var(--blue); transform: scale(1); }
  38%, 100% { color: var(--maize); transform: scale(1); }
}

@keyframes tl-travel-v {
  0% { opacity: 0; transform: translateY(0); }
  4% { opacity: 1; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(100%); }
  34%, 100% { opacity: 0; transform: translateY(100%); }
}

@keyframes tl-travel-h {
  0% { opacity: 0; transform: translateX(0); }
  4% { opacity: 1; transform: translateX(0); }
  30% { opacity: 1; transform: translateX(100%); }
  34%, 100% { opacity: 0; transform: translateX(100%); }
}

.service__icon {
  transition: transform 0.4s var(--ease), color 0.3s var(--ease);
}

.service:hover .service__icon {
  transform: translateY(-3px) scale(1.12);
}

.service:hover .service__num {
  opacity: 0.55;
  transition: opacity 0.35s var(--ease);
}

.service__num {
  transition: opacity 0.35s var(--ease);
}

.tag {
  transition: background-color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.service:hover .tag {
  border-color: var(--blue);
}

.pillar {
  position: relative;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.price-card {
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 46px rgba(0, 39, 76, 0.14);
}

.price-card__list li {
  transition: color 0.25s var(--ease);
}

.price-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--maize);
  transition: height 0.3s var(--ease);
}

.price-card__list li {
  position: relative;
  padding-left: 0;
  transition: padding-left 0.3s var(--ease);
}

.price-card__list li:hover {
  padding-left: 0.7rem;
}

.price-card__list li:hover::before {
  height: 1.1rem;
}

.stat__num {
  font-variant-numeric: tabular-nums;
  transition: transform 0.35s var(--ease);
  transform-origin: left center;
}

.stat:hover .stat__num {
  transform: scale(1.06);
}

.engine {
  width: 100%;
  height: auto;
}

.engine__ring {
  transform-origin: 210px 210px;
  animation: spin 34s linear infinite;
}

.engine__ring--rev {
  animation: spin 26s linear infinite reverse;
}

.engine__pulse {
  stroke-dasharray: 28 320;
  opacity: 0;
  animation-name: pulse-travel;
  animation-timing-function: cubic-bezier(0.45, 0, 0.4, 1);
  animation-iteration-count: infinite;
}

.engine__box {
  fill: #00274C;
  stroke: #FFFFFF;
  stroke-width: 2;
  animation-name: node-charge;
  animation-timing-function: var(--ease);
  animation-iteration-count: infinite;
}

.engine__glyph {
  fill: none;
  stroke: #FFFFFF;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation-name: glyph-charge;
  animation-timing-function: var(--ease);
  animation-iteration-count: infinite;
}

.engine__node {
  transform-box: fill-box;
  transform-origin: center;
  animation-name: node-arrive;
  animation-timing-function: var(--ease);
  animation-iteration-count: infinite;
}

.engine__pulse--1,
.engine__node--1,
.engine__node--1 .engine__box,
.engine__node--1 .engine__glyph { animation-duration: 3.1s; animation-delay: 0s; }

.engine__pulse--2,
.engine__node--2,
.engine__node--2 .engine__box,
.engine__node--2 .engine__glyph { animation-duration: 4.3s; animation-delay: 1.45s; }

.engine__pulse--3,
.engine__node--3,
.engine__node--3 .engine__box,
.engine__node--3 .engine__glyph { animation-duration: 3.7s; animation-delay: 0.7s; }

.engine__pulse--4,
.engine__node--4,
.engine__node--4 .engine__box,
.engine__node--4 .engine__glyph { animation-duration: 5.3s; animation-delay: 2.3s; }

.engine__pulse--5,
.engine__node--5,
.engine__node--5 .engine__box,
.engine__node--5 .engine__glyph { animation-duration: 4.1s; animation-delay: 3.15s; }

@keyframes pulse-travel {
  0%, 6% { stroke-dashoffset: 28; opacity: 0; }
  12% { opacity: 1; }
  42% { stroke-dashoffset: -152; opacity: 1; }
  50%, 100% { stroke-dashoffset: -152; opacity: 0; }
}

@keyframes node-charge {
  0%, 36% { fill: #00274C; stroke: #FFFFFF; }
  46%, 58% { fill: #FFCB05; stroke: #FFCB05; }
  74%, 100% { fill: #00274C; stroke: #FFFFFF; }
}

@keyframes glyph-charge {
  0%, 36% { stroke: #FFFFFF; }
  46%, 58% { stroke: #00274C; }
  74%, 100% { stroke: #FFFFFF; }
}

@keyframes node-arrive {
  0%, 38% { transform: scale(1); }
  48% { transform: scale(1.13); }
  64%, 100% { transform: scale(1); }
}

.engine__bar {
  transform-box: fill-box;
  transform-origin: bottom;
  animation: grow 4s var(--ease) infinite;
}

.engine__bar--b { animation-delay: 0.35s; }
.engine__bar--c { animation-delay: 0.7s; }
.engine__bar--d { animation-delay: 1.05s; }

.engine__spark {
  transform-box: fill-box;
  transform-origin: center;
  animation: spark 5s var(--ease) infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes grow {
  0%, 100% { transform: scaleY(0.55); }
  50% { transform: scaleY(1); }
}

@keyframes spark {
  0%, 72%, 100% { opacity: 0; transform: scale(0.6) rotate(0deg); }
  80% { opacity: 1; transform: scale(1) rotate(12deg); }
}

.flow__line {
  stroke-dasharray: 6 8;
  animation: flow 2.6s linear infinite;
}

.flow__dot {
  offset-path: path('M 24 60 L 296 60');
  animation: travel 6s var(--ease) infinite;
}

.flow__step {
  transform-box: fill-box;
  transform-origin: center;
  animation: node 6s var(--ease) infinite;
}

.flow__step--b { animation-delay: 1.5s; }
.flow__step--c { animation-delay: 3s; }
.flow__step--d { animation-delay: 4.5s; }

@keyframes flow {
  to { stroke-dashoffset: -28; }
}

@keyframes travel {
  0% { offset-distance: 0%; }
  100% { offset-distance: 100%; }
}

@media (max-width: 519px) {
  .btn-row {
    flex-direction: column;
    align-items: stretch;
  }

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

@media (max-width: 859px) {
  .split__media {
    display: flex;
    flex-direction: column;
  }

  .split__badge {
    position: static;
    max-width: none;
  }
}

@media (min-width: 640px) {
  .stats {
    grid-template-columns: repeat(4, 1fr);
  }

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

@media (min-width: 860px) {
  .service {
    grid-template-columns: 3.5rem minmax(0, 1.6fr) minmax(0, 1fr);
    align-items: start;
  }

  .service__num {
    padding-top: 0.2rem;
  }

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

  .tl {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
  }

  .tl__step {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.4rem;
  }

  .tl__connector {
    top: 27px;
    left: 56px;
    right: -1.75rem;
    bottom: auto;
    width: auto;
    height: 2px;
  }

  .tl__connector-fill {
    transform: scaleX(0);
    transform-origin: left;
  }

  .tl__travel {
    animation-name: tl-travel-h;
  }

  .tl__travel::before {
    left: 0;
    top: 50%;
  }

  .tl__step.is-visible .tl__connector-fill {
    transform: scaleX(1);
  }

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

  .split--flip .split__media {
    order: 2;
  }

  .programme__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  }

  .cta-band__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 3rem;
  }

  .footer__grid {
    grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .nav,
  .header__cta {
    display: flex;
  }

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

  .hero__grid {
    grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    transition-delay: 0ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .clients__track {
    animation: none !important;
  }

  .clients__viewport {
    overflow-x: auto;
  }

  .service::before {
    width: 100%;
  }

  .tl__connector-fill {
    transform: none !important;
  }

  .reveal .mark {
    background-size: 100% 100%;
  }

  .btn:hover {
    transform: none;
  }
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--blue);
  color: var(--muted-on-blue);
  padding-block: clamp(2.25rem, 4vw, 3rem) clamp(4rem, 7vw, 6rem);
}

.page-hero__wedge {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(30vw, 300px);
  height: clamp(2.5rem, 5vw, 4.5rem);
  background: var(--maize);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.page-hero > .container {
  position: relative;
  z-index: 1;
}

.page-hero__grid {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  margin-bottom: 1.35rem;
}

.page-hero__lead {
  color: var(--muted-on-blue);
  margin-bottom: 2.25rem;
}

.page-hero__facts {
  margin: -1rem 0 2rem;
  color: var(--maize);
  font-size: var(--fs-small);
  font-weight: 500;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  font-size: var(--fs-small);
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-on-blue);
}

.breadcrumb a {
  color: var(--muted-on-blue);
  text-decoration: none;
  padding-block: 0.3rem;
}

.breadcrumb a:hover {
  color: var(--maize);
}

.breadcrumb li + li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--maize);
  transform: rotate(45deg);
  flex: none;
}

.breadcrumb [aria-current='page'] {
  color: var(--white);
}

.roof {
  width: 100%;
  height: auto;
}

.roof__beam {
  stroke-dasharray: 460;
  stroke-dashoffset: 460;
  animation: roof-draw 2.4s var(--ease) forwards;
}

.roof__tile rect {
  fill: var(--blue);
  stroke: #FFFFFF;
  stroke-opacity: 0.5;
}

.roof__pulse {
  stroke-dasharray: 24 460;
  opacity: 0;
  animation: roof-pulse 5.5s ease-in-out infinite 2.2s;
}

.roof__link {
  stroke-dasharray: 4 7;
  animation: roof-flow 3.2s linear infinite;
}

@keyframes roof-draw {
  to { stroke-dashoffset: 0; }
}

@keyframes roof-pulse {
  0%, 6% { stroke-dashoffset: 24; opacity: 0; }
  14% { opacity: 1; }
  60% { stroke-dashoffset: -400; opacity: 1; }
  68%, 100% { stroke-dashoffset: -400; opacity: 0; }
}

@keyframes roof-flow {
  to { stroke-dashoffset: -22; }
}

.principles {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.principle {
  position: relative;
  background: var(--white);
  padding: clamp(1.5rem, 3vw, 2rem);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
}

.principle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--maize);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.principle:hover::before {
  transform: scaleX(1);
}

.principle:hover {
  z-index: 1;
  transform: translateY(-4px);
  box-shadow: 0 0 28px rgba(0, 39, 76, 0.22), 0 16px 34px rgba(0, 39, 76, 0.13);
  background: var(--blue);
  color: var(--muted-on-blue);
}

.principle:hover h3 {
  color: var(--white);
}

.principle:hover .icon-tile {
  background: var(--maize);
  color: var(--blue);
  transform: translateY(-3px) rotate(-6deg);
}

.principle__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0.9rem;
}

.principle__head .icon-tile {
  margin-bottom: 0;
}

.principle__num {
  display: block;
  color: var(--blue);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  opacity: 0.25;
  transition: color 0.35s var(--ease);
}

.principle:hover .principle__num {
  color: var(--white);
}

.principle h3 {
  font-size: 1.08rem;
}

.principle p {
  margin-top: 0.6rem;
  font-size: var(--fs-small);
}

.leader {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.leader__card {
  position: relative;
  border: 1px solid var(--line);
  background: var(--white);
}

.leader__card img {
  width: 100%;
}

.leader__tag {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0.9rem 1.2rem;
  background: var(--maize);
  color: var(--blue);
}

.leader__tag strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.leader__tag span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.leader blockquote {
  margin: 0;
  padding-left: 1.5rem;
  border-left: 4px solid var(--maize);
  color: var(--blue);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 300;
  line-height: 1.45;
}

.leader__by {
  margin-top: 1.25rem;
  padding-left: 1.5rem;
  font-size: var(--fs-small);
}

.team {
  display: grid;
  gap: 1.25rem;
}

.team__member {
  text-align: center;
  transition: transform 0.35s var(--ease);
}

.team__member:hover {
  transform: translateY(-5px);
}

.team__member img {
  width: 100%;
  border: 1px solid var(--line-on-blue);
}

.team__member b {
  display: block;
  margin-top: 0.9rem;
  color: var(--white);
  font-size: var(--fs-small);
  font-weight: 500;
}

.team__member span {
  display: block;
  margin-top: 0.15rem;
  color: var(--muted-on-blue);
  font-size: 0.78rem;
}

.linkcards {
  display: grid;
  gap: 1.25rem;
}

.linkcard {
  display: block;
  position: relative;
  padding: 1.5rem 1.6rem;
  border: 1px solid var(--line);
  background: var(--white);
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.linkcard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--maize);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.linkcard:hover::before {
  transform: scaleX(1);
}

.linkcard:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 28px rgba(0, 39, 76, 0.22), 0 16px 34px rgba(0, 39, 76, 0.13);
}

.linkcard b {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--blue);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.linkcard b svg {
  flex: none;
  transition: transform 0.3s var(--ease);
}

.linkcard:hover b svg {
  transform: translateX(5px);
}

.linkcard span {
  display: block;
  margin-top: 0.45rem;
  color: var(--body);
  font-size: var(--fs-small);
}

@media (min-width: 640px) {
  .principles {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (min-width: 860px) {
  .page-hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }

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

  .leader {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  }

  .team {
    grid-template-columns: repeat(6, 1fr);
  }

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

.svc-grid {
  display: grid;
  gap: 1.25rem;
}

.svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.6rem 1.5rem 1.5rem;
  border: 1px solid var(--line);
  background: var(--white);
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--maize);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.svc-card:hover::before {
  transform: scaleX(1);
}

.svc-card:hover {
  z-index: 1;
  transform: translateY(-5px);
  box-shadow: 0 0 28px rgba(0, 39, 76, 0.22), 0 16px 34px rgba(0, 39, 76, 0.13);
}

.svc-card:hover .icon-tile {
  background: var(--maize);
  color: var(--blue);
  transform: translateY(-3px) rotate(-6deg);
}

.svc-card h3 {
  font-size: 1.08rem;
}

.svc-card p {
  flex: 1;
  margin-top: 0.6rem;
  color: var(--body);
  font-size: var(--fs-small);
}

.svc-card p.svc-card__price {
  flex: none;
  margin-top: 0.35rem;
  color: var(--deep-maize);
  font-size: var(--fs-small);
  font-weight: 600;
}

.on-blue .svc-card:not(.svc-card--cta) h3 {
  color: var(--blue);
}

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

.faq__item {
  border-bottom: 1px solid var(--line);
}

.faq__q {
  margin: 0;
  font-size: 1rem;
}

.faq__q button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  padding: 1.4rem 0.25rem;
  border: 0;
  background: none;
  color: var(--blue);
  font: inherit;
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
}

.faq__q button:hover {
  color: var(--blue);
}

.faq__chevron {
  flex: none;
  color: var(--blue);
  transition: transform 0.3s var(--ease);
}

.faq__q button[aria-expanded='true'] .faq__chevron {
  transform: rotate(180deg);
}

.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease);
}

.faq__a[data-open='true'] {
  grid-template-rows: 1fr;
}

.faq__a-body {
  overflow: hidden;
  min-height: 0;
}

.faq__a p {
  padding: 0 0.25rem 1.5rem;
  max-width: 62ch;
  font-size: var(--fs-small);
}

.form {
  display: grid;
  gap: 1.25rem;
}

.form__row {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 560px) {
  .form__row {
    grid-template-columns: 1fr 1fr;
  }
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field > span {
  color: var(--blue);
  font-size: var(--fs-small);
  font-weight: 500;
}

.field > span i {
  color: var(--deep-maize);
  font-style: normal;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  background: var(--white);
  color: var(--body);
  font: inherit;
  font-size: var(--fs-small);
  transition: border-color 0.18s var(--ease);
}

.field textarea {
  min-height: 8rem;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
}

.form__note {
  margin: 0;
  font-size: 0.8rem;
}

.form__note i {
  color: var(--deep-maize);
  font-style: normal;
  font-weight: 500;
}

.form__hp {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  border: 0;
}

.form .btn {
  justify-self: start;
}

/* deep maize: links and small accent text on light backgrounds (per brand guide) */
.prose a:not(.btn),
.statement__body a:not(.btn),
.split__body a:not(.btn):not(.text-link),
.faq__a a {
  color: var(--deep-maize);
}

.service__desc b {
  color: var(--deep-maize);
  font-weight: 600;
}

.svc-card__go {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.35rem;
  color: var(--deep-maize);
  font-size: var(--fs-small);
  font-weight: 600;
}

.svc-card__go svg {
  flex: none;
  transition: transform 0.3s var(--ease);
}

.svc-card:hover .svc-card__go svg {
  transform: translateX(5px);
}

.svc-card--cta {
  background: var(--blue);
  border-color: var(--blue);
}

.svc-card--cta h3 {
  color: var(--white);
}

.svc-card--cta p,
.svc-card--cta .svc-card__go {
  color: var(--muted-on-blue);
}

.svc-card--cta .svc-card__go {
  color: var(--maize);
}

.svc-card--cta .icon-tile {
  background: var(--maize);
  color: var(--blue);
}

.svc-card--cta:hover .icon-tile {
  background: var(--white);
  color: var(--blue);
}

.fan {
  width: 100%;
  height: auto;
}

.fan__tile rect {
  fill: var(--blue);
  stroke: #FFFFFF;
  stroke-opacity: 0.5;
  stroke-width: 2;
}

.fan__glyph {
  fill: none;
  stroke: #FFFFFF;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fan__feed {
  stroke-dasharray: 22 300;
  opacity: 0;
  animation: fan-feed 6s ease-in-out infinite;
}

.fan__hub {
  transform-box: fill-box;
  transform-origin: center;
  animation: fan-hub 6s ease-out infinite;
}

@keyframes fan-feed {
  0%, 10% { stroke-dashoffset: 22; opacity: 0; }
  16% { opacity: 1; }
  52% { stroke-dashoffset: -240; opacity: 1; }
  58%, 100% { stroke-dashoffset: -240; opacity: 0; }
}

@keyframes fan-hub {
  0%, 44% { transform: scale(1); }
  56% { transform: scale(1.05); }
  72%, 100% { transform: scale(1); }
}

@media (min-width: 640px) {
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .svc-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.page-hero__art {
  width: 100%;
  height: auto;
}

.prose {
  max-width: 62rem;
}

.legal__updated {
  color: var(--body);
  font-size: var(--fs-small);
}

.legal__section {
  margin-top: 2.75rem;
}

.legal__section h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.legal__section h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
}

.legal__section .includes {
  margin-top: 1rem;
}

.prose p + p {
  margin-top: 1.15rem;
}

.pull-quote {
  margin: 2rem 0 0;
  padding-left: 1.5rem;
  border-left: 4px solid var(--maize);
  color: var(--blue);
  font-size: clamp(1.1rem, 1.9vw, 1.4rem);
  font-weight: 300;
  line-height: 1.5;
}

.tags--wide {
  gap: 0.55rem;
}

.hero-stack {
  position: relative;
  overflow: hidden;
  background: var(--blue);
  color: var(--muted-on-blue);
  padding-block: clamp(3.25rem, 7vw, 5rem) 0;
  border-bottom: 5px solid var(--maize);
}

.hero-stack > .container {
  position: relative;
  z-index: 1;
}

.hero-stack__top {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}

.hero-stack h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 4rem);
  max-width: 15ch;
}

.hero-stack__aside p {
  color: var(--muted-on-blue);
  font-size: var(--fs-lead);
  line-height: 1.55;
  margin-bottom: 1.75rem;
}

.hero-stack__media {
  position: relative;
  z-index: 2;
  margin-top: clamp(2.25rem, 4vw, 3.5rem);
  margin-bottom: calc(-1 * clamp(2.5rem, 6vw, 5.5rem));
  border: 1px solid var(--line-on-blue);
}

.hero-stack__media img {
  width: 100%;
}

.hero-stack .breadcrumb,
.hero-stack h1,
.hero-stack__aside,
.hero-stack__media {
  opacity: 0;
  transform: translateY(22px);
  animation: hero-stack-in 0.7s var(--ease) forwards;
}

.hero-stack .breadcrumb {
  animation-delay: 0.05s;
}

.hero-stack h1 {
  animation-delay: 0.15s;
}

.hero-stack__aside {
  animation-delay: 0.3s;
}

.hero-stack__media {
  animation-delay: 0.45s;
}

@keyframes hero-stack-in {
  to {
    opacity: 1;
    transform: none;
  }
}

.hero h1,
.hero__lead,
.hero .btn-row,
.hero__trust,
.hero__grid > div:last-child {
  opacity: 0;
  transform: translateY(22px);
  animation: hero-stack-in 0.7s var(--ease) forwards;
}

.hero h1 {
  animation-delay: 0.1s;
}

.hero__lead {
  animation-delay: 0.25s;
}

.hero .btn-row {
  animation-delay: 0.4s;
}

.hero__trust {
  animation-delay: 0.55s;
}

.hero__grid > div:last-child {
  animation-delay: 0.3s;
}

.page-hero .breadcrumb,
.page-hero h1,
.page-hero__lead,
.page-hero__facts,
.page-hero .btn-row,
.page-hero__art {
  opacity: 0;
  transform: translateY(22px);
  animation: hero-stack-in 0.7s var(--ease) forwards;
}

.page-hero .breadcrumb {
  animation-delay: 0.05s;
}

.page-hero h1 {
  animation-delay: 0.15s;
}

.page-hero__lead {
  animation-delay: 0.3s;
}

.page-hero__facts {
  animation-delay: 0.4s;
}

.page-hero .btn-row {
  animation-delay: 0.45s;
}

.page-hero__art {
  animation-delay: 0.3s;
}

.section--after-overlap {
  padding-top: calc(var(--section-y) - clamp(1rem, 3vw, 2.5rem));
}

.statement {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
}

.statement__lead {
  color: var(--blue);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.28;
  text-wrap: balance;
}

.statement__body p + p {
  margin-top: 1.15rem;
}

.zig {
  position: relative;
  display: grid;
  gap: 2.25rem;
}

.zig__item {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.zig__node {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--blue);
  border: 2px solid var(--maize);
  color: var(--maize);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.zig__item::before {
  content: '';
  position: absolute;
  top: 64px;
  left: 31px;
  width: 2px;
  bottom: -2.25rem;
  background: var(--line-on-blue);
}

.zig__item:last-child::before {
  display: none;
}

.zig__body h3 {
  font-size: clamp(1.15rem, 1.9vw, 1.45rem);
}

.zig__body p {
  margin-top: 0.6rem;
  max-width: 44ch;
}

.bento {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.bento__row {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.bento__cell {
  position: relative;
  flex: 1 1 0%;
  background: var(--white);
  padding: clamp(1.5rem, 3vw, 2.1rem);
  --art-ln: var(--blue);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
}

.bento__cell::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--maize);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.bento__cell:hover::before {
  transform: scaleX(1);
}

.bento__cell:hover {
  z-index: 1;
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0, 39, 76, 0.16), 0 22px 48px rgba(0, 39, 76, 0.24);
}

.bento__cell:hover {
  background: var(--blue);
  color: var(--muted-on-blue);
  --art-ln: rgba(255, 255, 255, 0.55);
}

.bento__cell:hover h3 {
  color: var(--white);
}

.bento__cell:hover .icon-tile {
  background: var(--maize);
  color: var(--blue);
  transform: translateY(-3px) rotate(-6deg);
}

.bento__cell h3 {
  margin-top: 1rem;
  font-size: 1.08rem;
}

.bento__cell p {
  margin-top: 0.6rem;
  font-size: var(--fs-small);
}

.bento__cell-art {
  display: none;
  width: 100%;
  max-width: 220px;
  height: auto;
  margin-top: 1.5rem;
  margin-inline: auto;
  opacity: 0.95;
  pointer-events: none;
}

@media (min-width: 480px) {
  .bento__cell-art {
    display: block;
  }
}

@media (min-width: 640px) {
  .bento__row {
    flex-direction: row;
  }
}

@media (min-width: 860px) {
  .hero-stack__top {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: clamp(2rem, 5vw, 4rem);
  }

  .statement {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }

  .zig {
    gap: 0;
  }

  .zig__item {
    grid-template-columns: minmax(0, 1fr) 88px minmax(0, 1fr);
    gap: 0;
    align-items: center;
    padding-block: 1.5rem;
  }

  .zig__node {
    grid-column: 2;
    justify-self: center;
    width: 72px;
    height: 72px;
  }

  .zig__body {
    grid-column: 1;
    text-align: right;
    padding-right: 2.5rem;
  }

  .zig__body p {
    margin-left: auto;
  }

  .zig__item:nth-child(even) .zig__body {
    grid-column: 3;
    text-align: left;
    padding-right: 0;
    padding-left: 2.5rem;
  }

  .zig__item:nth-child(even) .zig__body p {
    margin-left: 0;
    margin-right: auto;
  }

  .zig__item::before {
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .zig__item:first-child::before {
    top: 50%;
  }

  .zig__item:last-child::before {
    display: block;
    bottom: 50%;
  }
}

.build {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.build__screen {
  width: 100%;
  height: auto;
  border: 1px solid var(--line-on-blue);
}

.build__steps {
  display: grid;
  gap: 0.5rem;
}

.build__step {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 1.1rem;
  padding: 1.1rem 1.1rem 1.25rem;
  border: 1px solid transparent;
  transition: border-color 0.4s var(--ease), background-color 0.4s var(--ease);
}

.build__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 2px solid var(--line-on-blue);
  color: var(--muted-on-blue);
  font-size: 1rem;
  font-weight: 600;
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
}

.build__step h3 {
  color: var(--white);
  font-size: 1.12rem;
  opacity: 0.7;
  transition: opacity 0.4s var(--ease);
}

.build__step p {
  margin-top: 0.4rem;
  font-size: var(--fs-small);
  opacity: 0.6;
  transition: opacity 0.4s var(--ease);
}

.build__bar {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--line-on-blue);
  overflow: hidden;
}

.build__bar i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--maize);
  transform: scaleX(0);
  transform-origin: left;
}

.build__step--1 { animation: step-on 16s linear infinite 0s; }
.build__step--2 { animation: step-on 16s linear infinite 4s; }
.build__step--3 { animation: step-on 16s linear infinite 8s; }
.build__step--4 { animation: step-on 16s linear infinite 12s; }

.build__step--1 .build__num { animation: num-on 16s linear infinite 0s; }
.build__step--2 .build__num { animation: num-on 16s linear infinite 4s; }
.build__step--3 .build__num { animation: num-on 16s linear infinite 8s; }
.build__step--4 .build__num { animation: num-on 16s linear infinite 12s; }

.build__step--1 h3, .build__step--1 p { animation: text-on 16s linear infinite 0s; }
.build__step--2 h3, .build__step--2 p { animation: text-on 16s linear infinite 4s; }
.build__step--3 h3, .build__step--3 p { animation: text-on 16s linear infinite 8s; }
.build__step--4 h3, .build__step--4 p { animation: text-on 16s linear infinite 12s; }

.build__step--1 .build__bar i { animation: bar-fill 16s linear infinite 0s; }
.build__step--2 .build__bar i { animation: bar-fill 16s linear infinite 4s; }
.build__step--3 .build__bar i { animation: bar-fill 16s linear infinite 8s; }
.build__step--4 .build__bar i { animation: bar-fill 16s linear infinite 12s; }

@keyframes step-on {
  0%, 25%, 100% { background-color: transparent; border-color: transparent; }
  1%, 24% { background-color: rgba(255, 255, 255, 0.05); border-color: var(--line-on-blue); }
}

@keyframes num-on {
  0%, 25%, 100% { background: transparent; color: var(--muted-on-blue); border-color: var(--line-on-blue); }
  2%, 24% { background: var(--maize); color: var(--blue); border-color: var(--maize); }
}

@keyframes text-on {
  0%, 25%, 100% { opacity: 0.6; }
  2%, 24% { opacity: 1; }
}

@keyframes bar-fill {
  0% { transform: scaleX(0); }
  25% { transform: scaleX(1); }
  25.01%, 100% { transform: scaleX(0); }
}

.bs-stage {
  opacity: 0;
  animation: bs-stage 16s linear infinite;
}

.bs-stage--1 { animation-delay: 0s; }
.bs-stage--2 { animation-delay: 4s; }
.bs-stage--3 { animation-delay: 8s; }
.bs-stage--4 { animation-delay: 12s; }

@keyframes bs-stage {
  0% { opacity: 0; }
  2%, 23% { opacity: 1; }
  25%, 100% { opacity: 0; }
}

.bs-grow {
  transform-box: fill-box;
  transform-origin: bottom;
  animation: bs-grow 16s ease-out infinite 12s;
}

@keyframes bs-grow {
  0%, 2% { transform: scaleY(0.15); }
  16%, 25% { transform: scaleY(1); }
  25.01%, 100% { transform: scaleY(0.15); }
}

.showcase {
  margin-top: 2.5rem;
}

.showcase__track {
  display: grid;
}

.showcase__slide {
  grid-area: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  background: var(--white);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease);
}

.showcase__slide[data-active='true'] {
  opacity: 1;
  visibility: visible;
}

.showcase__frame {
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(320px, 52vw, 560px);
  background: var(--paper);
  overflow: hidden;
}

.showcase__frame img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.showcase__cap {
  display: block;
  padding: 1.1rem 1.25rem 1.3rem;
  border-top: 1px solid var(--line);
}

.showcase__cap b {
  display: block;
  color: var(--blue);
  font-size: 1.02rem;
  font-weight: 500;
}

.showcase__cap span {
  display: block;
  margin-top: 0.3rem;
  font-size: var(--fs-small);
}

.showcase__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.showcase__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  flex: none;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--white);
  color: var(--blue);
  cursor: pointer;
  transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.showcase__arrow:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.showcase__dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.showcase__dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--line-strong);
  cursor: pointer;
  transition: width 0.3s var(--ease), background-color 0.3s var(--ease);
}

.showcase__dot[aria-current='true'] {
  width: 1.5rem;
  background: var(--maize);
}

@media (prefers-reduced-motion: reduce) {
  .showcase__slide {
    transition: none;
  }
}

@media (min-width: 860px) {
  .build {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }
}

