:root {
  --ink: #123447;
  --ink-soft: #315669;
  --muted: #627d8a;
  --blue: #1e8bbb;
  --blue-bright: #27a5d9;
  --blue-deep: #086d9b;
  --sky: #edf9fe;
  --sky-strong: #d8f1fb;
  --line: #d7e8ef;
  --white: #ffffff;
  --red: #d94d55;
  --shadow: 0 24px 70px rgba(25, 91, 119, 0.15);
  --radius-lg: 2rem;
  --radius-md: 1.25rem;
  --container: min(1180px, calc(100vw - 48px));
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--ink);
  border-radius: 0.5rem;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(215, 232, 239, 0.9);
  box-shadow: 0 8px 32px rgba(28, 79, 99, 0.07);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 5.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  text-decoration: none;
}

.brand-logo {
  width: clamp(15rem, 22vw, 18.75rem);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.91rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav > a:not(.nav-cta):hover::after,
.site-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
}

.site-nav .nav-cta {
  padding: 0.75rem 1rem;
  color: var(--blue-deep);
  border: 1px solid rgba(30, 139, 187, 0.3);
  border-radius: 999px;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  place-content: center;
  gap: 0.38rem;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: currentColor;
  transition: transform 160ms ease;
}

.hero {
  position: relative;
  min-height: 48rem;
  padding: 10rem 0 3rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 79% 18%, rgba(39, 165, 217, 0.16), transparent 29rem),
    linear-gradient(135deg, #fbfeff 0%, #f5fbfe 58%, #eaf7fd 100%);
}

.hero::before {
  position: absolute;
  content: "";
  top: 7rem;
  right: -7rem;
  width: 22rem;
  height: 22rem;
  border: 1px solid rgba(30, 139, 187, 0.16);
  border-radius: 50%;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(30, 139, 187, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 139, 187, 0.07) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to right, black, transparent 67%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(27rem, 0.9fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6.5rem);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.35rem;
  color: var(--blue-deep);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  width: 2.5rem;
  height: 2px;
  background: var(--red);
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.74);
}

.hero h1,
.section h2,
.contact-section h2 {
  margin: 0;
  letter-spacing: -0.045em;
  line-height: 0.99;
}

.hero h1 {
  max-width: 10ch;
  font-size: clamp(3.1rem, 5.7vw, 5.75rem);
  font-weight: 720;
}

.hero h1 em {
  position: relative;
  color: var(--blue);
  font-style: normal;
  font-weight: 480;
}

.hero h1 em::after {
  position: absolute;
  content: "";
  right: 0.03em;
  bottom: 0.03em;
  left: 0.03em;
  height: 0.09em;
  background: rgba(217, 77, 85, 0.8);
  border-radius: 99px;
  transform: rotate(-1.5deg);
}

.hero-lede {
  max-width: 40rem;
  margin: 1.8rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.6vw, 1.23rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-top: 2.2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-height: 3.55rem;
  padding: 0.85rem 1.35rem;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  border-radius: 999px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button svg {
  width: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 14px 28px rgba(30, 139, 187, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--blue-deep);
  box-shadow: 0 18px 36px rgba(30, 139, 187, 0.3);
}

.text-link {
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
}

.text-link span {
  display: inline-block;
  margin-left: 0.3rem;
  color: var(--red);
  transition: transform 160ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateY(4px);
}

.hero-visual {
  position: relative;
  min-height: 35rem;
}

.hero-image-wrap {
  position: absolute;
  inset: 0 0 2.5rem 2.25rem;
  overflow: hidden;
  background: var(--sky-strong);
  border: 8px solid rgba(255, 255, 255, 0.85);
  border-radius: 2.4rem 2.4rem 2.4rem 7rem;
  box-shadow: var(--shadow);
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.image-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(19, 88, 117, 0.03), rgba(30, 139, 187, 0.16));
  mix-blend-mode: multiply;
  pointer-events: none;
}

.strategy-card {
  position: absolute;
  z-index: 3;
  right: -1.4rem;
  bottom: 0;
  width: min(18.5rem, 62%);
  padding: 1.25rem 1.35rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 1.25rem;
  box-shadow: 0 20px 50px rgba(17, 70, 93, 0.2);
  backdrop-filter: blur(15px);
}

.strategy-card > p {
  margin: 0 0 0.8rem;
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

.strategy-card ul {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  list-style: none;
}

.strategy-card li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.strategy-card li span {
  width: 0.48rem;
  height: 0.48rem;
  background: var(--blue-bright);
  border: 2px solid var(--sky-strong);
  border-radius: 50%;
}

.orbit-badge {
  position: absolute;
  z-index: 4;
  top: -1rem;
  left: -1rem;
  width: 7.25rem;
  height: 7.25rem;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--red);
  border: 7px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(121, 48, 54, 0.19);
}

.orbit-badge svg {
  position: absolute;
  inset: 0.6rem;
  width: calc(100% - 1.2rem);
  height: calc(100% - 1.2rem);
  animation: orbit 20s linear infinite;
}

.orbit-badge svg circle:first-child {
  fill: none;
  stroke: rgba(255, 255, 255, 0.45);
  stroke-width: 1.2;
  stroke-dasharray: 3 5;
}

.orbit-badge svg circle:not(:first-child) {
  fill: var(--white);
}

.orbit-badge strong {
  font-size: 0.81rem;
  letter-spacing: 0.13em;
}

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

.ecosystem-bar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.8rem, 2.6vw, 2rem);
  margin-top: 4.25rem;
  padding-top: 1.5rem;
  color: var(--muted);
  border-top: 1px solid rgba(30, 139, 187, 0.2);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ecosystem-bar i {
  width: 0.25rem;
  height: 0.25rem;
  background: var(--red);
  border-radius: 50%;
}

.section {
  padding: clamp(5.5rem, 9vw, 9rem) 0;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.72fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: end;
}

.section h2 {
  max-width: 14ch;
  font-size: clamp(2.6rem, 4.4vw, 4.5rem);
  font-weight: 690;
}

.intro-copy {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.intro-copy p {
  margin: 0;
}

.intro-copy p + p {
  margin-top: 1rem;
}

.connection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(3rem, 6vw, 5.5rem);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.connection-card {
  position: relative;
  min-height: 20rem;
  padding: 2rem;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: z-index 0s, transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.connection-card:hover {
  z-index: 2;
  background: #fbfeff;
  box-shadow: 0 22px 55px rgba(25, 91, 119, 0.12);
  transform: translateY(-6px);
}

.connection-card > svg {
  width: 2.3rem;
  margin-top: 1.6rem;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-number {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.connection-card h3 {
  max-width: 16rem;
  margin: 2.5rem 0 0.75rem;
  font-size: 1.24rem;
  line-height: 1.2;
}

.connection-card p {
  max-width: 19rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.connection-card.accent-card {
  background: var(--sky);
}

.process-section {
  color: var(--white);
  background:
    radial-gradient(circle at 85% 0%, rgba(91, 202, 240, 0.32), transparent 30rem),
    linear-gradient(120deg, #147fac, #2197c6);
}

.process-header {
  display: grid;
  grid-template-columns: 0.7fr 1.45fr 0.8fr;
  align-items: end;
  gap: 3rem;
}

.process-header .eyebrow {
  align-self: start;
}

.process-header h2 {
  max-width: 17ch;
  font-size: clamp(2.4rem, 4vw, 4.25rem);
}

.process-header > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.04rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 4.5rem;
}

.process-steps article {
  padding-right: 2.5rem;
}

.step-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.step-top i {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.process-steps h3 {
  margin: 2rem 0 0.8rem;
  font-size: 1.65rem;
}

.process-steps p {
  max-width: 21rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.77);
}

.public-sector-section {
  position: relative;
  overflow: hidden;
  background: var(--sky);
}

.public-sector-section::after {
  position: absolute;
  content: "";
  right: -8rem;
  bottom: -15rem;
  width: 36rem;
  height: 36rem;
  border: 1px solid rgba(30, 139, 187, 0.17);
  border-radius: 50%;
}

.public-sector-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(25rem, 0.72fr);
  gap: clamp(4rem, 9vw, 9rem);
  align-items: center;
}

.program-label {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 2.2rem;
  padding: 0.6rem 0.85rem;
  color: var(--blue-deep);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(30, 139, 187, 0.18);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.program-label svg {
  width: 1.2rem;
  fill: none;
  stroke: var(--red);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.public-copy .eyebrow {
  margin-bottom: 1rem;
}

.public-copy h2 {
  max-width: 12ch;
}

.public-copy > p:not(.eyebrow) {
  max-width: 42rem;
  color: var(--ink-soft);
}

.public-copy .public-lede {
  margin: 2rem 0 1rem;
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 650;
  line-height: 1.55;
}

.public-copy .button {
  margin-top: 1.3rem;
}

.public-audiences {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.public-audiences li {
  padding: 0.48rem 0.75rem;
  color: var(--blue-deep);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(30, 139, 187, 0.18);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.outcomes-panel {
  padding: clamp(2rem, 4vw, 3.25rem);
  background: var(--white);
  border: 1px solid rgba(30, 139, 187, 0.15);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.panel-kicker {
  margin: 0 0 1.3rem;
  color: var(--blue-deep);
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.outcome {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: 1rem;
  padding: 1.45rem 0;
  border-top: 1px solid var(--line);
}

.outcome > span {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 850;
}

.outcome h3 {
  margin: -0.15rem 0 0.35rem;
  font-size: 1.05rem;
}

.outcome p {
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.confidential-note {
  margin: 1.1rem 0 0;
  padding-top: 1rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.76rem;
  font-style: italic;
}

.technology-section {
  overflow: hidden;
}

.technology-layout {
  display: grid;
  grid-template-columns: minmax(24rem, 0.8fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(4rem, 10vw, 10rem);
}

.technology-graphic {
  position: relative;
  aspect-ratio: 1 / 0.88;
  min-height: 24rem;
  display: grid;
  place-items: center;
}

.tech-ring {
  position: absolute;
  border: 1px solid rgba(30, 139, 187, 0.24);
  border-radius: 50%;
}

.ring-one {
  width: 63%;
  aspect-ratio: 1;
}

.ring-two {
  width: 92%;
  aspect-ratio: 1;
  border-style: dashed;
  animation: orbit 34s linear infinite reverse;
}

.tech-core {
  position: relative;
  z-index: 2;
  width: 11rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--white);
  text-align: center;
  background: linear-gradient(145deg, var(--blue-bright), var(--blue-deep));
  border: 12px solid var(--sky);
  border-radius: 50%;
  box-shadow: 0 20px 50px rgba(30, 139, 187, 0.24);
}

.tech-core strong {
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  line-height: 1.3;
  text-transform: uppercase;
}

.tech-node {
  position: absolute;
  z-index: 3;
  padding: 0.6rem 0.85rem;
  color: var(--ink-soft);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(25, 91, 119, 0.1);
  font-size: 0.76rem;
  font-weight: 800;
}

.tech-node::before {
  display: inline-block;
  content: "";
  width: 0.48rem;
  height: 0.48rem;
  margin-right: 0.5rem;
  background: var(--red);
  border-radius: 50%;
}

.node-one { top: 10%; left: 11%; }
.node-two { right: 3%; top: 35%; }
.node-three { bottom: 5%; left: 22%; }

.technology-copy h2 {
  max-width: 12ch;
  font-size: clamp(2.5rem, 4.2vw, 4.2rem);
}

.technology-copy > p:not(.eyebrow) {
  max-width: 40rem;
  margin: 1.7rem 0 0;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.about-section {
  background: linear-gradient(180deg, #fbfeff, var(--sky));
  border-top: 1px solid var(--line);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(22rem, 0.75fr);
  gap: clamp(4rem, 12vw, 12rem);
}

.about-statement h2 {
  max-width: 12ch;
}

.about-copy {
  color: var(--ink-soft);
}

.about-copy p {
  margin: 0;
}

.about-copy p + p {
  margin-top: 1.1rem;
}

.about-copy .about-lede {
  color: var(--ink);
  font-size: 1.22rem;
  font-weight: 650;
  line-height: 1.55;
}

.about-copy blockquote {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2.4rem 0 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(30, 139, 187, 0.2);
}

.about-copy blockquote svg {
  width: 2.6rem;
  flex: none;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-copy blockquote div {
  display: grid;
}

.about-copy blockquote strong {
  color: var(--ink);
}

.about-copy blockquote span {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-section {
  position: relative;
  padding: clamp(5rem, 8vw, 8rem) 0;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(125deg, #1785b3, #26a5d4);
}

.contact-lines {
  position: absolute;
  inset: -7rem -4rem auto auto;
  width: 32rem;
  height: 32rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.contact-lines::before,
.contact-lines::after {
  position: absolute;
  content: "";
  inset: 4rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.contact-lines::after {
  inset: 8rem;
}

.contact-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(24rem, 0.75fr);
  align-items: end;
  gap: clamp(3rem, 9vw, 9rem);
}

.contact-section h2 {
  max-width: 13ch;
  font-size: clamp(2.7rem, 4.8vw, 4.8rem);
}

.contact-copy p {
  margin: 0 0 1.8rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.contact-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.button-white {
  color: var(--blue-deep);
  background: var(--white);
  box-shadow: 0 14px 28px rgba(11, 88, 119, 0.2);
}

.button-white:hover,
.button-white:focus-visible {
  box-shadow: 0 18px 34px rgba(11, 88, 119, 0.28);
}

.booking-note {
  max-width: 24rem;
  margin: 0;
  color: var(--white);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.5;
}

.site-footer {
  padding: 2.6rem 0;
  background: #f8fcfe;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

.footer-inner > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.footer-inner > p:not(.copyright) {
  font-weight: 800;
  letter-spacing: 0.06em;
}

.copyright {
  justify-self: end;
}

.footer-brand .brand-logo {
  width: 16rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-delay {
  transition-delay: 120ms;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  :root {
    --container: min(100% - 36px, 1180px);
  }

  .site-nav {
    gap: 1.25rem;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(24rem, 0.82fr);
    gap: 2.5rem;
  }

  .hero-visual {
    min-height: 30rem;
  }

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

  .process-header > p:last-child {
    grid-column: 2;
  }

  .technology-layout {
    gap: 4rem;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 5.2rem;
  }

  .header-inner {
    min-height: 4.9rem;
  }

  .menu-toggle {
    display: grid;
    position: relative;
    z-index: 3;
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.6rem;
    padding: 6rem 10vw;
    background: rgba(248, 253, 255, 0.98);
    transform: translateX(100%);
    transition: transform 220ms ease;
  }

  .site-nav.open {
    transform: translateX(0);
  }

  .site-nav a {
    font-size: 1.5rem;
  }

  .site-nav .nav-cta {
    margin-top: 0.5rem;
    font-size: 1rem;
  }

  .hero {
    padding-top: 8.5rem;
  }

  .hero-layout,
  .split-heading,
  .public-sector-layout,
  .technology-layout,
  .about-layout,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 9ch;
  }

  .hero-visual {
    min-height: 31rem;
    margin-top: 1rem;
  }

  .hero-image-wrap {
    inset: 0 0 2rem 1.5rem;
  }

  .strategy-card {
    right: 0;
  }

  .ecosystem-bar {
    flex-wrap: wrap;
  }

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

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

  .process-header > p:last-child {
    grid-column: auto;
    max-width: 35rem;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .process-steps article {
    padding-right: 0;
  }

  .step-top i {
    max-width: 12rem;
  }

  .public-sector-layout {
    gap: 3.5rem;
  }

  .outcomes-panel {
    max-width: 38rem;
  }

  .technology-layout {
    gap: 3rem;
  }

  .technology-graphic {
    width: min(100%, 33rem);
    margin-inline: auto;
    order: 2;
  }

  .about-layout {
    gap: 2.5rem;
  }

  .contact-inner {
    align-items: start;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
  }

  .footer-inner > p:not(.copyright) {
    display: none;
  }
}

@media (max-width: 560px) {
  :root {
    --container: calc(100% - 30px);
  }

  .brand-logo {
    width: min(14.75rem, 72vw);
  }

  .brand-copy strong {
    font-size: 1.16rem;
  }

  .hero {
    min-height: auto;
    padding-top: 7.8rem;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.1rem);
  }

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

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 25rem;
    margin-top: 0.6rem;
  }

  .hero-image-wrap {
    inset: 0 0 2.6rem;
    border-width: 5px;
    border-radius: 1.5rem 1.5rem 1.5rem 4rem;
  }

  .orbit-badge {
    top: -0.7rem;
    left: -0.5rem;
    width: 5.75rem;
    height: 5.75rem;
    border-width: 5px;
  }

  .strategy-card {
    width: 74%;
    padding: 1rem;
  }

  .strategy-card li {
    font-size: 0.8rem;
  }

  .ecosystem-bar {
    justify-content: flex-start;
    gap: 0.75rem;
    margin-top: 2.5rem;
  }

  .ecosystem-bar i:nth-of-type(even) {
    display: none;
  }

  .section {
    padding: 5rem 0;
  }

  .section h2 {
    font-size: clamp(2.4rem, 12vw, 3.5rem);
  }

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

  .connection-card {
    min-height: 0;
  }

  .connection-card h3 {
    margin-top: 1.6rem;
  }

  .process-header h2 {
    font-size: 2.5rem;
  }

  .outcomes-panel {
    padding: 1.5rem;
  }

  .technology-graphic {
    min-height: 20rem;
  }

  .tech-core {
    width: 8.75rem;
  }

  .tech-node {
    font-size: 0.7rem;
  }

  .node-one { left: 0; }
  .node-two { right: 0; }

  .contact-section h2 {
    font-size: 2.65rem;
  }

  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .booking-note {
    align-self: center;
  }

  .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .copyright {
    align-self: flex-start;
  }
}

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

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

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