@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-800.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #020817;
  --navy-soft: #061226;
  --ink: #071020;
  --muted: #586273;
  --white: #ffffff;
  --lime: #d6ff00;
  --lime-readable: #4b7f00;
  --cyan: #00d8ff;
  --line: #dfe5ec;
  --shell: min(93.055vw, 1256px);
  --stage: min(100vw, 1350px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--navy);
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", Arial, sans-serif;
  font-size: min(1.16vw, 15.7px);
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

.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;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 8px 12px;
  color: var(--navy);
  background: var(--lime);
  opacity: 0;
  pointer-events: none;
  clip-path: inset(100%);
  transform: translateY(-160%);
  transition: opacity 120ms ease, transform 120ms ease;
}

.skip-link:focus-visible {
  opacity: 1;
  pointer-events: auto;
  clip-path: inset(0);
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  height: min(8.1vw, 109px);
  color: var(--white);
  background: transparent;
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: min(19vw, 257px) 1fr 260px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  color: var(--white);
}

.brand-mark {
  display: block;
  width: min(10.8vw, 156px);
  flex: 0 0 auto;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: min(4.4vw, 59px);
}

.site-nav a {
  color: rgba(255, 255, 255, 0.94);
  font-size: min(1vw, 13.5px);
  font-weight: 600;
  white-space: nowrap;
  transition: color 160ms ease;
}

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

.button {
  min-height: min(4.05vw, 55px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: min(0.8vw, 11px);
  padding: 0 min(2.05vw, 28px);
  border: 1px solid transparent;
  border-radius: min(0.46vw, 6px);
  font-size: min(1.05vw, 14.2px);
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button:focus-visible,
.site-nav a:focus-visible,
.text-link:focus-visible,
.social-links a:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.button svg,
.text-link svg {
  width: min(1.35vw, 18px);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-lime {
  color: #020817;
  background: var(--lime);
  box-shadow: 0 0 min(2.5vw, 34px) rgba(214, 255, 0, 0.1);
}

.button-lime:hover {
  background: #e0ff34;
}

.button-outline {
  color: var(--white);
  background: rgba(2, 8, 23, 0.3);
  border-color: rgba(255, 255, 255, 0.55);
}

.header-cta {
  min-height: min(3.85vw, 52px);
  justify-self: end;
  padding-inline: min(1.8vw, 24px);
  white-space: nowrap;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  height: min(58vw, 784px);
  min-height: 440px;
  color: var(--white);
  background: var(--navy);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2, 8, 23, 1) 0%, rgba(2, 8, 23, 0.96) 25%, rgba(2, 8, 23, 0.38) 49%, rgba(2, 8, 23, 0) 65%),
    linear-gradient(0deg, rgba(2, 8, 23, 0.45) 0%, rgba(2, 8, 23, 0) 24%);
}

.hero-glow {
  display: none;
}

.hero-grid {
  position: relative;
  z-index: 3;
  height: 100%;
  display: block;
}

.hero-copy {
  position: absolute;
  z-index: 4;
  top: min(12.4vw, 167px);
  left: 0;
  width: min(47vw, 635px);
}

.hero-local {
  margin: 0 0 min(1.15vw, 15px);
  color: var(--cyan);
  font-size: min(0.87vw, 11.7px);
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: var(--white);
  font-size: min(5.7vw, 77px);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.052em;
}

.hero h1 span {
  color: var(--lime);
}

.hero-intro {
  width: min(35vw, 472px);
  margin: min(1.55vw, 21px) 0 0;
  color: rgba(255, 255, 255, 0.81);
  font-size: min(1.32vw, 17.8px);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  gap: min(1.8vw, 24px);
  margin-top: min(2vw, 27px);
}

.hero-phone {
  width: max-content;
  display: flex;
  align-items: center;
  gap: min(1vw, 13px);
  margin-top: min(2vw, 27px);
  color: var(--white);
  font-size: min(1.62vw, 21.9px);
  font-weight: 800;
  letter-spacing: 0.015em;
}

.hero-phone svg {
  width: min(2vw, 27px);
  fill: none;
  stroke: var(--lime);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-trust {
  display: flex;
  gap: min(3.6vw, 49px);
  margin: min(2.85vw, 38px) 0 0;
  padding: 0;
  list-style: none;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: min(0.9vw, 12px);
  color: rgba(255, 255, 255, 0.9);
  font-size: min(1vw, 13.5px);
  font-weight: 600;
  white-space: nowrap;
}

.hero-trust svg {
  width: min(2vw, 27px);
  height: min(2vw, 27px);
  fill: none;
  stroke: var(--lime);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-visual {
  position: absolute;
  z-index: 0;
  top: 0;
  right: max(-9vw, -121px);
  width: min(89vw, 1202px);
  height: min(59.3vw, 801px);
}

.hero-visual picture,
.hero-visual img {
  width: 100%;
  height: 100%;
}

.hero-visual img {
  object-fit: cover;
  object-position: center;
}

.hero-signal,
.cta-wave {
  pointer-events: none;
}

.hero-signal {
  position: absolute;
  z-index: 5;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: min(8.1vw, 109px);
}

.hero-transition-fill {
  fill: var(--white);
}

.hero-transition-edge {
  fill: none;
  stroke: url("#heroTransitionGradient");
  stroke-width: 3;
  stroke-linecap: round;
}

.hero-transition-glow {
  stroke-width: 13;
  opacity: 0.28;
  filter: blur(5px);
}

.signal-halo,
.signal-core {
  fill: none;
  stroke-linecap: round;
}

.signal-halo {
  stroke: rgba(0, 216, 255, 0.26);
  stroke-width: 9;
  filter: blur(5px);
}

.signal-core {
  stroke: var(--cyan);
  stroke-width: 2;
  stroke-dasharray: 8 8;
}

.hero-signal circle {
  fill: var(--white);
  stroke: var(--cyan);
  stroke-width: 3;
}

.hero-signal .hero-transition-node-glow {
  fill: rgba(0, 216, 255, 0.16);
  stroke: rgba(0, 216, 255, 0.35);
  stroke-width: 5;
  filter: blur(3px);
}

.hero-signal .hero-transition-node {
  fill: var(--navy);
  stroke: var(--cyan);
  stroke-width: 3;
}

.section {
  position: relative;
}

.section-heading h2,
.process-heading h2 {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.section-heading h2 span,
.process-heading h2 span {
  color: var(--lime-readable);
}

.section-heading > p:last-child {
  color: var(--muted);
}

.services {
  height: min(40.75vw, 550px);
  min-height: 420px;
  background: var(--white);
  overflow: hidden;
}

.services-layout {
  height: 100%;
  display: grid;
  grid-template-columns: min(28.15vw, 380px) 1fr;
  gap: min(3vw, 41px);
  align-items: center;
}

.section-heading-side {
  align-self: center;
  padding-left: min(0.8vw, 11px);
  transform: none;
}

.section-heading-side .section-label {
  margin-bottom: min(0.9vw, 12px);
}

.section-heading-side h2 {
  max-width: min(27vw, 365px);
  font-size: clamp(45px, 4.05vw, 58px);
  line-height: 1.08;
}

.section-heading-side > p:last-child {
  max-width: min(25vw, 338px);
  margin: min(1.65vw, 22px) 0 0;
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.62;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: min(1.3vw, 18px) min(1.6vw, 22px);
}

.service-card {
  --pointer-x: 50%;
  --pointer-y: 50%;
  --card-accent: #b5da00;
  --card-glow: rgba(181, 218, 0, 0.55);
  position: relative;
  isolation: isolate;
  height: min(17.7vw, 239px);
  padding: min(1.5vw, 20px) min(1.6vw, 22px);
  background: var(--white);
  border: 1px solid #dfe4ea;
  border-radius: min(0.9vw, 12px);
  box-shadow: 0 min(0.9vw, 12px) min(2.7vw, 36px) rgba(12, 25, 42, 0.035);
  overflow: hidden;
  transition:
    transform 220ms cubic-bezier(0.2, 0.75, 0.25, 1),
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.service-card::before,
.service-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0;
  transition: opacity 220ms ease;
}

.service-card::before {
  z-index: 3;
  inset: -1px;
  padding: 1.5px;
  border-radius: inherit;
  background: radial-gradient(170px circle at var(--pointer-x) var(--pointer-y), var(--card-glow), transparent 66%);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.service-card::after {
  z-index: 0;
  inset: 0;
  background: radial-gradient(240px circle at var(--pointer-x) var(--pointer-y), color-mix(in srgb, var(--card-accent) 10%, transparent), transparent 70%);
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card:nth-child(2),
.service-card:nth-child(4),
.service-card:nth-child(6) {
  --card-accent: var(--cyan);
  --card-glow: rgba(0, 216, 255, 0.58);
  border-bottom-color: var(--cyan);
}

.service-card:nth-child(1),
.service-card:nth-child(3),
.service-card:nth-child(5) {
  border-bottom-color: #b5da00;
}

.service-icon {
  width: min(4.2vw, 57px);
  height: min(4.2vw, 57px);
  margin-bottom: min(0.75vw, 10px);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 220ms cubic-bezier(0.2, 0.75, 0.25, 1), filter 220ms ease;
}

.service-lime .service-icon {
  color: #a3c800;
}

.service-cyan .service-icon {
  color: #079ed6;
}

.service-card h3 {
  max-width: min(11vw, 149px);
  margin: 0;
  font-size: min(1.4vw, 18.9px);
  line-height: 1.24;
  letter-spacing: -0.025em;
}

.service-card p {
  margin: min(0.85vw, 11px) 0 0;
  color: #354052;
  font-size: min(1vw, 13.5px);
  line-height: 1.55;
}

.service-card > a {
  position: absolute;
  z-index: 4;
  left: min(1.6vw, 22px);
  bottom: min(1.35vw, 18px);
  color: #172133;
}

.service-card > a svg {
  width: min(1.5vw, 20px);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 220ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.service-card:focus-within {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--card-accent) 58%, #dfe4ea);
  box-shadow:
    0 18px 42px rgba(7, 16, 32, 0.11),
    0 0 28px color-mix(in srgb, var(--card-accent) 13%, transparent);
}

.service-card:focus-within::before,
.service-card:focus-within::after {
  opacity: 1;
}

.service-card:focus-within .service-icon {
  transform: translateY(-3px) scale(1.055);
  filter: drop-shadow(0 0 8px color-mix(in srgb, var(--card-accent) 72%, transparent));
}

.service-card:focus-within > a svg {
  transform: translateX(5px);
}

@media (hover: hover) and (pointer: fine) {
  .service-card:hover {
    transform: translateY(-6px);
    border-color: color-mix(in srgb, var(--card-accent) 58%, #dfe4ea);
    box-shadow:
      0 20px 46px rgba(7, 16, 32, 0.12),
      0 0 32px color-mix(in srgb, var(--card-accent) 14%, transparent);
  }

  .service-card:hover::before,
  .service-card:hover::after {
    opacity: 1;
  }

  .service-card:hover .service-icon {
    transform: translateY(-3px) scale(1.055);
    filter: drop-shadow(0 0 8px color-mix(in srgb, var(--card-accent) 72%, transparent));
  }

  .service-card:hover > a svg {
    transform: translateX(5px);
  }
}

.services-signal {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.services-signal path {
  fill: none;
  stroke-width: 1.7;
}

.services-signal-lime {
  stroke: #a9cf00;
}

.services-signal-cyan {
  stroke: var(--cyan);
}

.services-signal circle {
  fill: var(--white);
  stroke: #4cb5a3;
  stroke-width: 2;
}

.services-layout {
  position: relative;
  z-index: 2;
}

.local {
  height: min(40vw, 540px);
  min-height: 410px;
  color: var(--white);
  background:
    radial-gradient(circle at 52% 43%, rgba(0, 118, 196, 0.18), transparent 34%),
    linear-gradient(180deg, #020817 0%, #030a19 100%),
    var(--navy);
  overflow: hidden;
}

.local > .shell,
.process > .shell {
  width: min(88.9vw, 1536px);
}

.local::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(32, 103, 164, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 103, 164, 0.18) 1px, transparent 1px);
  background-size: min(2.65vw, 36px) min(2.65vw, 36px);
  mask-image: radial-gradient(circle at 52% 50%, black, transparent 56%);
}

.local-grid {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  grid-template-columns: 34% 38% 28%;
  align-items: center;
  padding: min(4.1vw, 55px) 0 min(1vw, 14px);
  transform: none;
}

.local .section-heading {
  align-self: center;
  padding-left: min(0.65vw, 9px);
  transform: translateY(max(-0.7vw, -10px));
}

.local .section-heading h2 {
  font-size: min(4vw, 54px);
  line-height: 1.03;
}

.local .section-heading > p:last-child {
  width: min(25vw, 338px);
  margin: min(1.65vw, 22px) 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: min(1.22vw, 16.5px);
  line-height: 1.62;
}

.lincolnshire-map {
  position: relative;
  align-self: center;
  justify-self: center;
  width: min(39vw, 527px);
  height: min(32vw, 432px);
  margin-top: 0;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 58%, transparent 84%);
  mask-image: radial-gradient(ellipse at center, #000 58%, transparent 84%);
  transform: translate(max(-1.15vw, -16px), 0);
}

.lincolnshire-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: screen;
}

.lincolnshire-map span {
  position: absolute;
  left: 50%;
  top: 59%;
  color: var(--white);
  font-size: min(0.66vw, 8.9px);
  font-weight: 800;
  letter-spacing: 0.03em;
  transform: translate(-50%, -50%);
}

.commitment-list {
  display: grid;
  gap: min(2.05vw, 28px);
  padding-left: min(0.35vw, 5px);
  transform: translateY(max(-0.45vw, -6px));
}

.commitment-list article {
  display: grid;
  grid-template-columns: min(4.35vw, 59px) 1fr;
  gap: min(1.2vw, 16px);
  align-items: start;
}

.commitment-list article > svg {
  width: min(3.85vw, 52px);
  height: min(3.85vw, 52px);
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.commitment-list article:nth-child(2) > svg {
  stroke: var(--cyan);
}

.commitment-list article:nth-child(3) > svg {
  stroke: var(--lime);
}

.commitment-list h3 {
  margin: 0 0 min(0.36vw, 5px);
  color: var(--lime);
  font-size: clamp(16px, 1.35vw, 18.2px);
  line-height: 1.2;
}

.commitment-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(12.5px, 0.98vw, 13.4px);
  line-height: 1.56;
}

.local-circuit {
  position: absolute;
  z-index: 1;
  height: min(7.7vw, 104px);
  pointer-events: none;
}

.local-circuit-bottom {
  right: 0;
  bottom: min(0.65vw, 9px);
  width: min(44vw, 594px);
}

.local-circuit path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.local-circuit-halo {
  stroke: rgba(0, 216, 255, 0.36);
  stroke-width: 9;
  filter: blur(5px);
}

.local-circuit-core {
  stroke: #73e8ff;
  stroke-width: 1.7;
  filter: drop-shadow(0 0 4px rgba(0, 216, 255, 0.9));
}

.local-circuit circle {
  fill: #f7ffff;
  stroke: var(--cyan);
  stroke-width: 2;
  filter: drop-shadow(0 0 6px rgba(0, 216, 255, 0.95));
}

.about-editorial {
  position: relative;
  min-height: min(64.5vw, 870px);
  padding: min(5.2vw, 70px) 0 min(6.25vw, 84px);
  background: var(--white);
  overflow: hidden;
}

.about-editorial > .shell {
  width: min(93vw, 1500px);
}

.about-editorial-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 42%) minmax(0, 58%);
  align-items: center;
  gap: min(3.2vw, 43px);
}

.about-editorial-copy {
  max-width: 625px;
}

.about-editorial-copy .about-kicker {
  margin: 0 0 min(1.05vw, 14px);
  color: #079ed6;
  font-size: min(0.76vw, 10.3px);
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.about-editorial-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(46px, 4.2vw, 63px);
  font-weight: 800;
  letter-spacing: -0.052em;
  line-height: 1.04;
}

.about-editorial-copy h2 span {
  color: var(--lime-readable);
}

.about-editorial-intro {
  max-width: 675px;
  margin: min(1.65vw, 22px) 0 0;
  color: #263448;
  font-size: clamp(16px, 1.33vw, 18px);
  font-weight: 500;
  line-height: 1.58;
}

.about-editorial-columns {
  max-width: 665px;
  display: grid;
  grid-template-columns: 1fr;
  gap: min(1.65vw, 22px);
  margin-top: min(1.8vw, 24px);
}

.about-editorial-columns h3 {
  margin: 0 0 min(0.75vw, 10px);
  color: #079ed6;
  font-size: clamp(11.5px, 0.93vw, 12.6px);
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.about-editorial-columns p,
.about-editorial-close {
  margin: 0;
  color: #4f5b6b;
  font-size: clamp(14px, 1.08vw, 15.5px);
  line-height: 1.66;
}

.about-editorial-close {
  max-width: 685px;
  margin-top: min(1.65vw, 22px);
}

.about-editorial-cta {
  width: min(19.3vw, 260px);
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: min(1.7vw, 23px);
  padding: 13px 19px;
  color: var(--ink);
  border: 1.5px solid #a5c700;
  border-radius: 4px;
  font-size: min(1.02vw, 13.8px);
  font-weight: 800;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.about-editorial-cta svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: #a5c700;
}

.service-grid-about {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: min(1.2vw, 16px);
  margin: 0;
}

.service-grid-about .service-card {
  height: clamp(198px, 15.25vw, 218px);
  padding: min(1.45vw, 20px) min(1.6vw, 22px);
}

.service-grid-about .service-icon {
  width: min(3.55vw, 48px);
  height: min(3.55vw, 48px);
  margin-bottom: min(0.65vw, 9px);
}

.service-grid-about .service-card h3 {
  max-width: 210px;
  font-size: clamp(16.5px, 1.3vw, 18px);
}

.service-grid-about .service-card p {
  margin-top: min(0.62vw, 8px);
  font-size: clamp(12.5px, 0.98vw, 13.4px);
  line-height: 1.52;
}

.service-grid-about .service-card > a {
  left: min(1.6vw, 22px);
  bottom: min(1.15vw, 16px);
}

.services-ln-visual {
  position: relative;
  width: min(57vw, 770px);
  justify-self: end;
  margin-right: max(-4.1vw, -55px);
}

.services-ln-visual img {
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
  filter: saturate(1.06) contrast(1.025);
}

@media (hover: hover) and (pointer: fine) {
  .about-editorial-cta:hover {
    color: var(--navy);
    background: var(--lime);
    transform: translateY(-2px);
  }
}

.process {
  height: min(27vw, 365px);
  min-height: 270px;
  color: var(--white);
  background:
    radial-gradient(circle at 57% 0%, rgba(0, 130, 220, 0.09), transparent 36%),
    linear-gradient(180deg, #030a19 0%, #020817 100%);
  overflow: hidden;
}

.process::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(31vw, 420px);
  height: min(7.2vw, 97px);
  opacity: 0.55;
  background-image:
    linear-gradient(90deg, rgba(0, 216, 255, 0.4) 1px, transparent 1px),
    linear-gradient(rgba(0, 216, 255, 0.26) 1px, transparent 1px);
  background-size: 21px 21px;
  mask-image: linear-gradient(120deg, black, transparent 75%);
}

.process-layout {
  position: relative;
  z-index: 3;
  height: 100%;
  display: grid;
  grid-template-columns: 30% 70%;
  align-items: center;
}

.process-heading {
  padding-left: min(0.7vw, 9px);
  transform: translateY(max(-0.35vw, -5px));
}

.section-label {
  margin: 0;
  color: #4164c7;
  font-size: min(0.85vw, 11.5px);
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-label-cyan {
  color: var(--cyan);
}

.process-heading h2 {
  margin-top: min(0.8vw, 11px);
  font-size: min(3.85vw, 52px);
  line-height: 1.03;
}

.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  transform: translateY(max(-0.15vw, -2px));
}

.process-list::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  right: -13vw;
  top: min(2.28vw, 36px);
  height: 2px;
  background: #86ecff;
  box-shadow:
    0 0 4px rgba(255, 255, 255, 0.85),
    0 0 12px rgba(0, 216, 255, 0.82);
}

.process-list li {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 0 min(1.1vw, 15px) 0 0;
}

.process-list li::before {
  content: none;
}

.process-number {
  position: relative;
  z-index: 2;
  width: min(4.55vw, 72px);
  height: min(4.55vw, 72px);
  display: grid;
  place-items: center;
  margin: 0 0 min(1.35vw, 18px) min(1.8vw, 24px);
  padding: 0;
  color: var(--navy);
  background: var(--cyan);
  border: 4px solid #061226;
  border-radius: 50%;
  box-shadow:
    0 0 0 2px var(--cyan),
    0 0 18px rgba(0, 216, 255, 0.55);
  font-size: clamp(15px, 1.25vw, 20px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  -webkit-text-stroke: 0;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.32);
}

.process-list li:nth-child(2) .process-number,
.process-list li:nth-child(3) .process-number {
  background: var(--lime);
  box-shadow:
    0 0 0 2px var(--lime),
    0 0 18px rgba(214, 255, 0, 0.46);
}

.process-list h3 {
  margin: 0;
  padding-left: min(1.8vw, 24px);
  font-size: clamp(17px, 1.52vw, 20.5px);
  line-height: 1.2;
}

.process-list p {
  max-width: min(16vw, 216px);
  margin: min(0.62vw, 8px) 0 0;
  padding-left: min(1.8vw, 24px);
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(12px, 0.98vw, 13.2px);
  line-height: 1.62;
}

.benefits {
  height: min(16.3vw, 220px);
  min-height: 140px;
  background: var(--white);
  overflow: hidden;
}

.benefits::before,
.benefits::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 52%;
  width: min(2.2vw, 30px);
  height: min(1.2vw, 16px);
  background:
    radial-gradient(circle at 70% 50%, var(--white) 0 2px, var(--cyan) 2.5px 4px, transparent 4.5px),
    linear-gradient(var(--lime), var(--lime)) left center / 70% 2px no-repeat;
}

.benefits::before {
  left: 0;
}

.benefits::after {
  right: 0;
  transform: scaleX(-1);
}

.benefits .shell {
  height: 100%;
  display: grid;
  grid-template-rows: min(4.1vw, 55px) 1fr;
}

.benefits-title {
  align-self: end;
  padding-left: min(0.8vw, 11px);
  padding-bottom: min(1.4vw, 19px);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 100%;
}

.benefit-grid article {
  display: grid;
  grid-template-columns: min(5.2vw, 70px) 1fr;
  grid-template-rows: auto 1fr;
  align-content: start;
  padding: min(1.05vw, 14px) min(1.3vw, 18px);
  border-left: 1px solid #d8dde4;
}

.benefit-grid article:first-child {
  border-left: 0;
}

.benefit-grid svg {
  grid-row: 1 / span 2;
  width: min(4.1vw, 55px);
  height: min(4.1vw, 55px);
  fill: none;
  stroke: var(--lime);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-grid article:nth-child(even) svg {
  stroke: #079ed6;
}

.benefit-grid h3 {
  margin: 0;
  font-size: clamp(14px, 1.08vw, 14.6px);
  line-height: 1.3;
}

.benefit-grid p {
  margin: min(0.35vw, 5px) 0 0;
  color: #4c5666;
  font-size: clamp(11.5px, 0.9vw, 12.2px);
  line-height: 1.52;
}

.platforms {
  min-height: 190px;
  padding: 34px 0;
  background:
    linear-gradient(90deg, rgba(200, 244, 0, 0.045), transparent 27%),
    linear-gradient(180deg, #f8fbff 0%, #fff 100%);
  border-top: 1px solid #e3eaf1;
  border-bottom: 1px solid #e3eaf1;
  overflow: hidden;
}

.platforms-layout {
  display: grid;
  grid-template-columns: minmax(260px, 25%) minmax(0, 75%);
  gap: min(3vw, 42px);
  align-items: center;
}

.platforms-heading h2 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: clamp(27px, 2.25vw, 32px);
  line-height: 1.07;
  letter-spacing: -0.04em;
}

.platforms-heading h2 span {
  color: var(--lime-readable);
}

.platforms-rail {
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.platforms-track {
  width: max-content;
  display: flex;
  animation: platforms-scroll 45s linear infinite;
  will-change: transform;
}

.platforms-rail:hover .platforms-track,
.platforms-rail:focus .platforms-track {
  animation-play-state: paused;
}

.platforms-rail:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 5px;
}

.platforms-set {
  display: flex;
  align-items: center;
  gap: clamp(45px, 4.5vw, 68px);
  margin: 0;
  padding: 0 clamp(45px, 4.5vw, 68px) 0 0;
  list-style: none;
}

.platform-mark {
  flex: 0 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #26384f;
  filter: saturate(0.72);
  opacity: 0.78;
  transition: filter 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.platform-mark:hover {
  filter: saturate(1);
  opacity: 1;
  transform: translateY(-2px);
}

.platform-microsoft {
  gap: 12px;
}

.platform-microsoft > span:last-child {
  display: grid;
  line-height: 1;
}

.platform-microsoft strong {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.platform-microsoft small {
  margin-top: 4px;
  color: #5c6c80;
  font-size: 12px;
}

.microsoft-symbol {
  width: 34px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
}

.microsoft-symbol i {
  aspect-ratio: 1;
  background: #f25022;
}

.microsoft-symbol i:nth-child(2) {
  background: #7fba00;
}

.microsoft-symbol i:nth-child(3) {
  background: #00a4ef;
}

.microsoft-symbol i:nth-child(4) {
  background: #ffb900;
}

.platform-google {
  gap: 10px;
}

.google-symbol {
  color: transparent;
  background: conic-gradient(from -35deg, #4285f4 0 25%, #34a853 25% 43%, #fbbc05 43% 66%, #ea4335 66% 82%, #4285f4 82%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 45px;
  font-weight: 800;
  line-height: 1;
}

.platform-google > span:last-child {
  display: grid;
  line-height: 1;
}

.platform-google strong {
  color: #3c4043;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.platform-google small {
  margin-top: 5px;
  color: #5f6368;
  font-size: 10px;
}

.platform-aws {
  width: 122px;
  display: grid;
  justify-items: center;
  color: #232f3e;
}

.aws-word {
  position: relative;
  padding-bottom: 7px;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.07em;
  text-transform: lowercase;
}

.aws-word::after {
  content: "";
  position: absolute;
  left: 5px;
  right: -4px;
  bottom: 0;
  height: 7px;
  border-bottom: 3px solid #ff9900;
  border-radius: 0 0 55% 55%;
  transform: rotate(2deg);
}

.platform-aws small {
  margin-top: 6px;
  color: #536477;
  font-size: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.platform-cisco {
  width: 100px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 5px;
  color: #157ca8;
}

.platform-cisco strong {
  font-size: 18px;
  letter-spacing: 0.12em;
}

.cisco-symbol {
  height: 25px;
  display: flex;
  align-items: end;
  gap: 3px;
}

.cisco-symbol i {
  width: 3px;
  height: 11px;
  border-radius: 2px;
  background: currentColor;
}

.cisco-symbol i:nth-child(2),
.cisco-symbol i:nth-child(6) {
  height: 18px;
}

.cisco-symbol i:nth-child(3),
.cisco-symbol i:nth-child(5) {
  height: 23px;
}

.cisco-symbol i:nth-child(4) {
  height: 25px;
}

.platform-dell {
  gap: 9px;
  color: #0877bc;
}

.dell-symbol {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 3px solid currentColor;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.platform-dell small {
  width: 72px;
  color: #40536a;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
}

.hp-symbol {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: #0877bc;
  border: 3px solid currentColor;
  border-radius: 50%;
  font-size: 30px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.13em;
  text-transform: lowercase;
}

.platform-lenovo strong {
  display: block;
  padding: 13px 15px 12px;
  color: #fff;
  background: #e2231a;
  font-size: 23px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.platform-ubiquiti {
  display: grid;
  grid-template-columns: 35px auto;
  grid-template-rows: 1fr 1fr;
  column-gap: 9px;
  color: #008ed6;
}

.ubiquiti-symbol {
  grid-row: 1 / 3;
  width: 31px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-content: center;
  gap: 2px;
}

.ubiquiti-symbol i {
  aspect-ratio: 1;
  background: currentColor;
}

.ubiquiti-symbol i:nth-child(2),
.ubiquiti-symbol i:nth-child(6) {
  opacity: 0.35;
}

.platform-ubiquiti strong {
  align-self: end;
  font-size: 23px;
  line-height: 0.9;
}

.platform-ubiquiti small {
  align-self: start;
  color: #40536a;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes platforms-scroll {
  to {
    transform: translateX(-50%);
  }
}

.local-proof {
  position: relative;
  height: min(32.6vw, 440px);
  min-height: 322px;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 37%, rgba(0, 106, 164, 0.12), transparent 31%),
    linear-gradient(105deg, #020817 0%, #031022 54%, #020817 100%);
  overflow: hidden;
}

.proof-network {
  position: absolute;
  z-index: 0;
  top: -23%;
  right: 4%;
  width: min(43vw, 580px);
  aspect-ratio: 1;
  background:
    radial-gradient(circle, rgba(167, 232, 255, 0.6) 0 1px, transparent 1.7px) 0 0 / 64px 58px,
    linear-gradient(34deg, transparent 46%, rgba(0, 149, 225, 0.09) 47% 47.4%, transparent 48%),
    linear-gradient(-28deg, transparent 48%, rgba(0, 149, 225, 0.08) 49% 49.4%, transparent 50%);
  opacity: 0.28;
  filter: blur(0.2px);
  -webkit-mask-image: radial-gradient(circle, #000 12%, rgba(0, 0, 0, 0.72) 43%, transparent 72%);
  mask-image: radial-gradient(circle, #000 12%, rgba(0, 0, 0, 0.72) 43%, transparent 72%);
}

.proof-circuit {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.proof-line-halo,
.proof-line-core {
  fill: none;
  stroke-linecap: round;
}

.proof-line-halo {
  stroke: rgba(0, 216, 255, 0.26);
  stroke-width: 12;
  filter: blur(6px);
}

.proof-line-core {
  stroke: #83ecff;
  stroke-width: 1.7;
  filter: drop-shadow(0 0 4px rgba(0, 216, 255, 0.9));
}

.proof-circuit circle {
  fill: var(--navy);
  stroke: #8cecff;
  stroke-width: 3;
  filter: drop-shadow(0 0 6px rgba(0, 216, 255, 0.95));
}

.proof-layout {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  grid-template-columns: 38% 62%;
}

.proof-copy {
  align-self: center;
  padding-left: min(0.8vw, 11px);
  transform: translateY(max(-0.8vw, -11px));
}

.proof-copy h2 {
  margin: min(0.65vw, 9px) 0 0;
  font-size: min(3.7vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.proof-copy h2 span {
  color: var(--lime);
}

.proof-copy > p:not(.section-label) {
  width: min(26vw, 351px);
  margin: min(1.2vw, 16px) 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: min(1.05vw, 14.2px);
  line-height: 1.62;
}

.proof-actions {
  display: flex;
  align-items: center;
  gap: min(1.45vw, 20px);
  margin-top: min(1.65vw, 22px);
}

.proof-actions .button {
  min-height: min(3.65vw, 49px);
  padding-inline: min(1.55vw, 21px);
}

.proof-phone {
  display: inline-flex;
  align-items: center;
  gap: min(0.65vw, 9px);
  font-size: min(1.05vw, 14.2px);
  font-weight: 800;
  white-space: nowrap;
}

.proof-phone svg {
  width: min(1.8vw, 24px);
  fill: none;
  stroke: var(--lime);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proof-evidence {
  align-self: start;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: min(14.8vw, 200px);
}

.proof-evidence article {
  min-height: min(13vw, 176px);
  padding: min(1.15vw, 16px) min(1.6vw, 22px) 0;
  text-align: center;
  border-right: 1px solid rgba(140, 236, 255, 0.18);
}

.proof-evidence article:last-child {
  border-right: 0;
}

.proof-evidence svg {
  width: min(3.8vw, 51px);
  height: min(3.8vw, 51px);
  margin: 0 auto min(0.65vw, 9px);
  fill: none;
  stroke: var(--lime);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proof-evidence p {
  margin: 0;
  color: var(--cyan);
  font-size: min(0.75vw, 10.1px);
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.proof-evidence h3 {
  margin: min(0.45vw, 6px) 0 0;
  color: var(--white);
  font-size: min(1.55vw, 20.9px);
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.final-cta {
  position: relative;
  height: min(10.53vw, 142px);
  min-height: 72px;
  background:
    radial-gradient(circle at 16% 30%, rgba(255, 255, 255, 0.35), transparent 15%),
    linear-gradient(90deg, #c9f400 0%, #ddff16 54%, #d5ff00 100%);
  overflow: hidden;
}

.cta-wave {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.cta-wave path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.5);
  stroke-width: 1.5;
}

.cta-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  grid-template-columns: min(8.8vw, 119px) 1fr auto;
  align-items: center;
}

.cta-mark {
  width: min(5.7vw, 77px);
  height: min(5.7vw, 77px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--navy);
  border: min(0.35vw, 5px) solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 min(1.6vw, 22px) rgba(255, 255, 255, 0.55);
  font-size: min(2.55vw, 34px);
  font-weight: 800;
  font-style: italic;
  letter-spacing: -0.22em;
}

.cta-inner h2 {
  margin: 0;
  color: #030814;
  font-size: min(3.3vw, 44.5px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.cta-inner p {
  margin: min(0.3vw, 4px) 0 0;
  color: #293200;
  font-size: min(0.95vw, 12.8px);
}

.cta-actions {
  display: flex;
  gap: min(1.8vw, 24px);
}

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

.button-lime-outline {
  color: #020817;
  background: transparent;
  border-color: rgba(2, 8, 23, 0.35);
}

.button-lime-outline svg {
  width: min(1.55vw, 21px);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer {
  height: min(25.6vw, 346px);
  min-height: 210px;
  color: var(--white);
  background: var(--navy);
  overflow: hidden;
}

.footer-grid {
  height: 80%;
  display: grid;
  grid-template-columns: 27% 18.5% 15.5% 19% 20%;
  padding-top: min(3vw, 41px);
}

.footer-brand .brand-mark {
  height: min(4.1vw, 55px);
  font-size: min(3.65vw, 49px);
}

.footer-brand > p {
  width: min(18.5vw, 250px);
  margin: min(1vw, 14px) 0 0;
  color: rgba(255, 255, 255, 0.73);
  font-size: clamp(12.5px, 0.96vw, 13px);
  line-height: 1.58;
}

.social-links {
  display: flex;
  gap: min(0.75vw, 10px);
  margin-top: min(1.2vw, 16px);
}

.social-links a,
.social-links .social-icon {
  width: min(2.45vw, 33px);
  height: min(2.45vw, 33px);
  display: grid;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 3px;
}

.social-links svg {
  width: min(1.25vw, 17px);
  height: min(1.25vw, 17px);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-links,
.footer-contact {
  padding-top: min(0.3vw, 4px);
}

.footer-links h2,
.footer-contact h2 {
  margin: 0 0 min(1.1vw, 15px);
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(11.5px, 0.9vw, 12.2px);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  width: max-content;
  margin-top: min(0.3vw, 4px);
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(12px, 0.93vw, 12.6px);
  line-height: 1.52;
}

.footer-contact address {
  font-style: normal;
}

.footer-contact address > p,
.footer-contact address > a {
  display: flex;
  align-items: flex-start;
  gap: min(0.8vw, 11px);
  margin: 0 0 min(0.9vw, 12px);
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(12px, 0.96vw, 13px);
  line-height: 1.5;
}

.footer-contact svg {
  flex: 0 0 auto;
  width: min(1.35vw, 18px);
  height: min(1.35vw, 18px);
  fill: none;
  stroke: var(--white);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-map {
  height: min(15vw, 203px);
  align-self: center;
}

.footer-map svg {
  width: 100%;
  height: 100%;
}

.footer-map path:first-child {
  fill: rgba(0, 216, 255, 0.04);
  stroke: rgba(183, 225, 255, 0.44);
  stroke-width: 1.6;
  stroke-dasharray: 2 4;
}

.footer-route {
  fill: none;
  stroke: var(--cyan);
  stroke-width: 2;
  filter: drop-shadow(0 0 4px rgba(0, 216, 255, 0.8));
}

.footer-map circle {
  fill: var(--lime);
  stroke: var(--cyan);
  stroke-width: 3;
}

.footer-bottom {
  height: 20%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.46);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: clamp(10.5px, 0.83vw, 11.2px);
}

.site-footer .shell {
  width: min(91.4vw, 1234px);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom > div {
  display: flex;
  gap: min(2.1vw, 28px);
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 680ms ease,
    transform 680ms cubic-bezier(0.2, 0.75, 0.25, 1);
  will-change: opacity, transform;
}

.motion-ready [data-reveal="left"] {
  transform: translate3d(-28px, 0, 0);
}

.motion-ready [data-reveal="right"] {
  transform: translate3d(28px, 0, 0);
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.motion-ready .service-card.is-visible:focus-within {
  transform: translateY(-5px);
}

@media (hover: hover) and (pointer: fine) {
  .motion-ready .service-card.is-visible:hover {
    transform: translateY(-6px);
  }
}

.motion-ready .line-draw .signal-core,
.motion-ready .line-draw .proof-line-core {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 1.35s cubic-bezier(0.22, 0.78, 0.24, 1);
}

.motion-ready .line-draw.is-drawn .signal-core,
.motion-ready .line-draw.is-drawn .proof-line-core {
  stroke-dashoffset: 0;
}

.motion-ready .hero-visual img {
  transform: translate3d(0, var(--hero-parallax, 0px), 0) scale(1.025);
  transform-origin: center;
  will-change: transform;
}

.motion-ready .hero-signal .signal-core {
  animation: signal-flow 10s linear infinite;
}

.motion-ready .proof-circuit circle {
  animation: node-pulse 3.2s ease-in-out infinite;
}

.motion-ready .proof-circuit circle:nth-of-type(2) {
  animation-delay: 480ms;
}

.motion-ready .proof-circuit circle:nth-of-type(3) {
  animation-delay: 960ms;
}

.motion-ready .lincolnshire-map img {
  animation: map-breathe 5.6s ease-in-out infinite;
}

.motion-ready .cta-wave {
  animation: cta-drift 9s ease-in-out infinite alternate;
  transform-origin: center;
}

@keyframes signal-flow {
  to {
    stroke-dashoffset: -80;
  }
}

@keyframes node-pulse {
  0%,
  100% {
    filter: drop-shadow(0 0 3px rgba(0, 216, 255, 0.66));
  }
  50% {
    filter: drop-shadow(0 0 9px rgba(0, 216, 255, 1));
  }
}

@keyframes map-breathe {
  0%,
  100% {
    filter: drop-shadow(0 0 9px rgba(0, 216, 255, 0.4));
  }
  50% {
    filter: drop-shadow(0 0 19px rgba(0, 216, 255, 0.68));
  }
}

@keyframes cta-drift {
  from {
    transform: translate3d(-1.4%, 0, 0) scaleX(1.02);
  }
  to {
    transform: translate3d(1.4%, 0, 0) scaleX(1.02);
  }
}

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

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

  .motion-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .motion-ready .line-draw .signal-core,
  .motion-ready .line-draw .proof-line-core {
    stroke-dashoffset: 0;
  }

  .platforms-track {
    animation: none;
    transform: none;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100vw - 32px);
  }

  body {
    font-size: 15px;
  }

  .site-header {
    height: 72px;
  }

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

  .brand-mark {
    width: 118px;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    position: relative;
    z-index: 30;
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 7px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
  }

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

  .nav-toggle[aria-expanded="true"] span:nth-last-child(2) {
    transform: translateY(4.5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 25;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    color: var(--white);
    background: rgba(2, 8, 23, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 160ms ease, visibility 160ms ease, transform 160ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-nav a {
    font-size: 22px;
  }

  .hero {
    min-height: 844px;
    height: auto;
    padding-top: 104px;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(2, 8, 23, 0.98) 0%, rgba(2, 8, 23, 0.8) 55%, rgba(2, 8, 23, 0.04) 75%),
      linear-gradient(90deg, rgba(2, 8, 23, 0.45), transparent);
  }

  .hero-grid {
    min-height: 844px;
  }

  .hero-copy {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
  }

  .hero-local {
    margin-bottom: 18px;
    font-size: 11px;
  }

  .hero h1 {
    max-width: 350px;
    font-size: clamp(46px, 13.2vw, 56px);
    line-height: 1.01;
  }

  .hero-intro {
    width: 100%;
    margin-top: 26px;
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    gap: 14px;
    margin-top: 26px;
  }

  .button {
    min-height: 50px;
    padding-inline: 20px;
    border-radius: 7px;
    font-size: 13px;
  }

  .button svg,
  .text-link svg {
    width: 18px;
  }

  .hero-phone {
    margin-top: 26px;
    font-size: 16px;
  }

  .hero-phone svg {
    width: 23px;
  }

  .hero-trust {
    width: 100%;
    justify-content: space-between;
    gap: 6px;
    margin-top: 26px;
  }

  .hero-trust li {
    display: grid;
    gap: 5px;
    justify-items: start;
    font-size: 9px;
    white-space: normal;
  }

  .hero-trust svg {
    width: 23px;
    height: 23px;
  }

  .hero-visual {
    top: auto;
    right: -96px;
    bottom: -4px;
    width: 570px;
    height: 380px;
  }

  .hero-visual img {
    object-position: center;
  }

  .hero-signal {
    height: 62px;
  }

  .services,
  .local,
  .about-editorial,
  .process,
  .benefits,
  .local-proof,
  .final-cta,
  .site-footer {
    height: auto;
    min-height: 0;
  }

  .services {
    padding: 72px 0;
  }

  .services-layout {
    display: block;
  }

  .section-heading-side {
    padding-left: 0;
    transform: none;
  }

  .section-heading-side h2 {
    max-width: 330px;
    font-size: 40px;
  }

  .section-heading-side > p:last-child {
    max-width: 340px;
    margin-top: 20px;
    font-size: 15px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 40px;
  }

  .services-signal {
    display: none;
  }

  .service-card {
    height: 230px;
    padding: 24px;
    border-radius: 10px;
  }

  .service-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 12px;
  }

  .service-card h3 {
    max-width: 220px;
    font-size: 18px;
  }

  .service-card p {
    font-size: 13px;
  }

  .service-card > a {
    left: 24px;
    bottom: 22px;
  }

  .service-card > a svg {
    width: 20px;
  }

  .local {
    padding: 96px 0 72px;
  }

  .local > .shell,
  .process > .shell {
    width: var(--shell);
  }

  .local-grid {
    display: block;
    padding: 0;
    transform: none;
  }

  .local .section-heading {
    padding-left: 0;
    transform: none;
  }

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

  .local .section-heading > p:last-child {
    width: 100%;
    max-width: 350px;
    margin-top: 20px;
    font-size: 15px;
  }

  .lincolnshire-map {
    width: min(100%, 340px);
    height: 340px;
    margin: 30px auto 24px;
    transform: none;
  }

  .commitment-list {
    gap: 26px;
    padding-left: 0;
    transform: none;
  }

  .commitment-list article {
    grid-template-columns: 52px 1fr;
    gap: 16px;
  }

  .commitment-list article > svg {
    width: 46px;
    height: 46px;
  }

  .commitment-list h3 {
    font-size: 16px;
  }

  .commitment-list p {
    font-size: 13px;
  }

  .local-circuit {
    height: 64px;
    opacity: 0.66;
  }

  .local-circuit-bottom {
    width: 300px;
  }

  .about-editorial {
    padding: 66px 0 86px;
  }

  .about-editorial > .shell {
    width: var(--shell);
  }

  .about-editorial-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-editorial-copy {
    max-width: none;
  }

  .about-editorial-copy .about-kicker {
    margin-bottom: 12px;
    font-size: 10px;
  }

  .about-editorial-copy h2 {
    max-width: 560px;
    font-size: clamp(38px, 10.5vw, 48px);
    line-height: 1.04;
  }

  .about-editorial-intro {
    max-width: 580px;
    margin-top: 22px;
    font-size: 16px;
  }

  .about-editorial-columns {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
  }

  .about-editorial-columns h3 {
    margin-bottom: 9px;
    font-size: 11px;
  }

  .about-editorial-columns p,
  .about-editorial-close {
    font-size: 14px;
  }

  .about-editorial-close {
    margin-top: 25px;
  }

  .about-editorial-cta {
    width: min(100%, 260px);
    min-height: 50px;
    margin-top: 24px;
    padding: 12px 17px;
    font-size: 13px;
  }

  .service-grid-about .service-card {
    height: 230px;
    padding: 24px;
  }

  .service-grid-about .service-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 12px;
  }

  .service-grid-about .service-card h3 {
    max-width: 220px;
    font-size: 18px;
  }

  .service-grid-about .service-card p {
    margin-top: 11px;
    font-size: 13px;
    line-height: 1.55;
  }

  .service-grid-about .service-card > a {
    left: 24px;
    bottom: 22px;
  }

  .services-ln-visual {
    width: min(118%, 560px);
    justify-self: center;
    margin: 34px -9% -18px;
  }

  .process {
    padding: 72px 0 78px;
  }

  .process-layout {
    display: block;
  }

  .process-heading {
    padding-left: 0;
    transform: none;
  }

  .section-label {
    font-size: 10px;
  }

  .process-heading h2 {
    margin-top: 10px;
    font-size: 42px;
  }

  .process-list {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 46px;
    transform: none;
  }

  .process-list::before {
    left: 28px;
    right: auto;
    top: 30px;
    bottom: 30px;
    width: 2px;
    height: auto;
  }

  .process-list li {
    padding: 0;
  }

  .process-list li::before {
    content: none;
  }

  .process-number {
    width: 58px;
    height: 58px;
    margin: 0 0 10px 0;
    font-size: 16px;
  }

  .process-list h3 {
    padding-left: 0;
    font-size: 17px;
  }

  .process-list p {
    max-width: 310px;
    margin-top: 6px;
    padding-left: 0;
    font-size: 12px;
  }

  .benefits {
    padding: 46px 0 56px;
  }

  .benefits .shell {
    display: block;
  }

  .benefits-title {
    padding: 0 0 22px;
  }

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

  .benefit-grid article {
    grid-template-columns: 64px 1fr;
    min-height: 126px;
    padding: 23px 0;
    border-left: 0;
    border-top: 1px solid #d8dde4;
  }

  .benefit-grid svg {
    width: 50px;
    height: 50px;
  }

  .benefit-grid h3 {
    font-size: 15px;
  }

  .benefit-grid p {
    font-size: 12px;
  }

  .platforms {
    min-height: 0;
    padding: 54px 0;
  }

  .platforms-layout {
    display: block;
  }

  .platforms-heading h2 {
    max-width: 330px;
    margin-top: 9px;
    font-size: 31px;
  }

  .platforms-rail {
    width: calc(100% + 32px);
    margin: 32px -16px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
  }

  .platforms-set {
    gap: 42px;
    padding-right: 42px;
  }

  .platform-mark {
    height: 68px;
  }

  .local-proof {
    padding: 68px 0 72px;
  }

  .proof-network {
    top: 4%;
    right: -58%;
    width: 520px;
    opacity: 0.18;
  }

  .proof-circuit {
    display: none;
  }

  .proof-layout {
    display: block;
  }

  .proof-copy {
    padding-left: 0;
    transform: none;
  }

  .proof-copy h2 {
    margin-top: 10px;
    font-size: 40px;
  }

  .proof-copy > p:not(.section-label) {
    width: 100%;
    max-width: 360px;
    margin-top: 18px;
    font-size: 14px;
  }

  .proof-actions {
    display: grid;
    justify-items: start;
    gap: 17px;
    margin-top: 27px;
  }

  .proof-actions .button {
    min-height: 50px;
    padding-inline: 22px;
  }

  .proof-phone {
    gap: 10px;
    font-size: 16px;
  }

  .proof-phone svg {
    width: 23px;
  }

  .proof-evidence {
    grid-template-columns: 1fr;
    margin-top: 46px;
  }

  .proof-evidence article {
    min-height: 0;
    display: grid;
    grid-template-columns: 56px 1fr;
    align-items: center;
    padding: 23px 0;
    text-align: left;
    border-top: 1px solid rgba(140, 236, 255, 0.18);
    border-right: 0;
  }

  .proof-evidence svg {
    grid-row: 1 / 3;
    width: 44px;
    height: 44px;
    margin: 0;
  }

  .proof-evidence p {
    font-size: 10px;
  }

  .proof-evidence h3 {
    margin-top: 4px;
    font-size: 17px;
  }

  .final-cta {
    padding: 42px 0;
  }

  .cta-inner {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 18px;
  }

  .cta-mark {
    width: 64px;
    height: 64px;
    font-size: 27px;
  }

  .cta-inner h2 {
    font-size: 31px;
  }

  .cta-inner p {
    margin-top: 6px;
    font-size: 12px;
  }

  .cta-actions {
    grid-column: 1 / -1;
    display: grid;
    gap: 12px;
    margin-top: 12px;
  }

  .site-footer {
    padding: 52px 0 0;
  }

  .footer-grid {
    height: auto;
    grid-template-columns: 1fr 1fr;
    gap: 42px 28px;
    padding-top: 0;
  }

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

  .footer-brand .brand-mark {
    height: 34px;
    font-size: 31px;
  }

  .footer-brand > p {
    width: 100%;
    max-width: 330px;
    margin-top: 14px;
    font-size: 12px;
  }

  .social-links {
    gap: 9px;
    margin-top: 18px;
  }

  .social-links a,
  .social-links .social-icon {
    width: 34px;
    height: 34px;
  }

  .social-links svg {
    width: 17px;
    height: 17px;
  }

  .footer-links h2,
  .footer-contact h2 {
    margin-bottom: 14px;
    font-size: 10px;
  }

  .footer-links a {
    margin-top: 6px;
    font-size: 11px;
  }

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

  .footer-contact address > p,
  .footer-contact address > a {
    gap: 10px;
    margin-bottom: 13px;
    font-size: 12px;
  }

  .footer-contact svg {
    width: 18px;
    height: 18px;
  }

  .footer-map {
    display: none;
  }

  .footer-bottom {
    height: auto;
    display: block;
    margin-top: 44px;
    padding: 22px 0 30px;
    font-size: 10px;
  }

  .footer-bottom > div {
    gap: 20px;
    margin-top: 10px;
  }
}

/* Homepage composition based on the approved July 2026 concept. */
.home-page {
  font-size: 15px;
}

.home-page .header-inner {
  grid-template-columns: minmax(200px, 240px) 1fr minmax(220px, 260px);
}

.home-page .header-cta {
  min-height: 48px;
  padding-inline: 20px;
  font-size: 12px;
  white-space: nowrap;
}

.home-page .hero {
  height: min(52.5vw, 805px);
  min-height: 640px;
}

.home-page .hero-copy {
  top: clamp(142px, 12.2vw, 165px);
  width: min(46vw, 620px);
}

.home-page .hero h1 {
  font-size: clamp(58px, 5.25vw, 71px);
}

.home-page .hero-intro {
  width: min(35vw, 460px);
  font-size: clamp(15px, 1.24vw, 16.8px);
}

.home-page .hero-actions .button {
  white-space: nowrap;
}

.home-page .hero-trust {
  gap: clamp(20px, 2.65vw, 36px);
  margin-top: clamp(26px, 2.5vw, 34px);
}

.home-page .hero-trust li {
  gap: 9px;
  font-size: clamp(11px, 0.9vw, 12.2px);
}

.home-page .hero-trust svg {
  width: 25px;
  height: 25px;
}

.home-page .hero-signal {
  display: none;
}

.service-launcher {
  position: relative;
  z-index: 9;
  height: 136px;
  background: var(--white);
}

.service-launcher-shell {
  width: min(87.2vw, 1180px);
  min-height: 190px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  overflow: hidden;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.985);
  border: 1px solid #e4e9ef;
  border-radius: 18px;
  box-shadow:
    0 22px 45px rgba(3, 12, 27, 0.12),
    0 4px 12px rgba(3, 12, 27, 0.06);
  transform: translateY(-68px);
}

.service-launcher-card {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-rows: 48px auto 22px;
  justify-items: start;
  align-content: center;
  gap: 10px;
  padding: 23px 25px 20px;
  transition: color 180ms ease, background-color 180ms ease;
}

.service-launcher-card + .service-launcher-card {
  border-left: 1px solid #e3e7ec;
}

.service-launcher-card:focus-visible {
  z-index: 2;
  outline: 2px solid var(--cyan);
  outline-offset: -4px;
}

.service-launcher-icon,
.service-launcher-arrow {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-launcher-icon {
  width: 44px;
  height: 44px;
  stroke-width: 1.85;
}

.service-launcher-lime .service-launcher-icon {
  color: #9dc200;
}

.service-launcher-cyan .service-launcher-icon {
  color: #069fd7;
}

.service-launcher-card > span {
  min-height: 37px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}

.service-launcher-arrow {
  width: 20px;
  height: 20px;
  color: #263346;
  stroke-width: 1.5;
  transition: transform 180ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .service-launcher-card:hover {
    background: #f8fbfd;
  }

  .service-launcher-card:hover .service-launcher-arrow {
    transform: translateX(5px);
  }
}

.home-page .about-editorial {
  min-height: 0;
  padding: 52px 0 76px;
}

.home-page .about-editorial > .shell {
  width: min(87.2vw, 1180px);
}

.about-intro-grid,
.health-check-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: clamp(62px, 7vw, 96px);
}

.about-intro-grid {
  align-items: start;
}

.home-page .about-editorial-copy {
  max-width: 540px;
}

.home-page .about-editorial-copy h2 {
  font-size: clamp(48px, 4.25vw, 58px);
}

.home-page .about-editorial-cta {
  width: min(240px, 100%);
  margin-top: 38px;
}

.about-story {
  max-width: 540px;
  padding-top: 48px;
}

.about-story > p {
  margin: 0;
  color: #566172;
  font-size: 15px;
  line-height: 1.72;
}

.about-story > p + p {
  margin-top: 24px;
}

.about-story .about-story-lead {
  color: #344052;
  font-weight: 500;
}

.about-community {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: start;
  margin-top: 28px;
}

.about-community svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: #a3c800;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-community p {
  margin: 0;
  color: #586273;
  font-size: 14px;
  line-height: 1.65;
}

.health-check-grid {
  align-items: center;
  margin-top: 86px;
}

.health-check-copy {
  padding-left: 8px;
}

.health-check-copy .about-kicker {
  margin: 0 0 12px;
  color: #079ed6;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.health-check-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(39px, 3.5vw, 47px);
  font-weight: 800;
  letter-spacing: -0.048em;
  line-height: 1.06;
}

.health-check-copy h2 span {
  color: var(--lime-readable);
}

.health-check-intro {
  max-width: 455px;
  margin: 14px 0 0;
  color: #596576;
  font-size: 14px;
  line-height: 1.65;
}

.health-check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.health-check-list li {
  position: relative;
  padding-left: 34px;
  color: #566172;
  font-size: 13px;
  line-height: 1.45;
}

.health-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  color: #90b400;
  border: 1.5px solid #b8dc00;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.health-check-copy .button {
  min-height: 48px;
  margin-top: 25px;
  padding-inline: 21px;
  font-size: 12px;
  white-space: nowrap;
}

.health-options {
  display: grid;
  gap: 12px;
}

.health-option {
  min-height: 122px;
  display: grid;
  grid-template-columns: 78px 1fr 24px;
  gap: 20px;
  align-items: center;
  padding: 18px 24px 18px 20px;
  background: #fff;
  border: 1px solid #e1e6eb;
  border-radius: 9px;
  box-shadow: 0 12px 30px rgba(7, 16, 32, 0.035);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.health-option:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.health-option-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  background: #f6f8fb;
  border-radius: 50%;
}

.health-option-icon svg {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 4px 5px rgba(20, 47, 176, 0.14));
}

.health-option-blue {
  color: #2152db;
}

.health-option-lime {
  color: #a8d000;
  border-radius: 14px;
}

.health-option-copy {
  display: grid;
  gap: 6px;
}

.health-option-copy strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
}

.health-option-copy small {
  max-width: 300px;
  color: #657082;
  font-size: 12px;
  line-height: 1.45;
}

.health-option-arrow {
  width: 20px;
  fill: none;
  stroke: #243247;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .health-option:hover {
    transform: translateY(-3px);
    border-color: #cbd7e1;
    box-shadow: 0 16px 36px rgba(7, 16, 32, 0.08);
  }

  .health-option:hover .health-option-arrow {
    transform: translateX(4px);
  }
}

.home-page .local {
  height: 350px;
  min-height: 350px;
}

.home-page .local-grid {
  padding: 42px 0 6px;
}

.home-page .local .section-heading h2 {
  font-size: clamp(43px, 3.75vw, 51px);
}

.home-page .lincolnshire-map {
  width: min(32vw, 432px);
  height: min(25vw, 338px);
}

.home-page .commitment-list {
  gap: 21px;
}

.home-page .process {
  height: 205px;
  min-height: 205px;
}

.home-page .process-heading h2 {
  font-size: clamp(38px, 3.45vw, 47px);
}

.home-page .process-number {
  width: clamp(58px, 4.55vw, 72px);
  height: clamp(58px, 4.55vw, 72px);
  font-size: clamp(16px, 1.25vw, 20px);
}

.home-page .process-list::before {
  top: clamp(29px, 2.28vw, 36px);
}

.home-page .process-list li::before {
  content: none;
}

.home-page .services {
  height: 450px;
  min-height: 450px;
}

.home-page .services-layout {
  grid-template-columns: min(30vw, 405px) 1fr;
}

.home-page .section-heading-side h2 {
  font-size: clamp(43px, 3.75vw, 51px);
}

.home-page .services-ln-visual {
  width: min(43vw, 580px);
  margin-right: 0;
}

.home-page .benefits {
  height: 120px;
  min-height: 120px;
}

.home-page .benefits .shell {
  display: block;
  height: 100%;
}

.home-page .benefit-grid {
  height: 100%;
}

.home-page .benefit-grid article {
  align-content: center;
}

.home-page .platforms {
  min-height: 145px;
  padding: 20px 0;
}

.home-page .platforms-layout {
  grid-template-columns: minmax(235px, 27%) minmax(0, 73%);
}

.home-page .platforms-heading h2 {
  font-size: clamp(25px, 2.15vw, 29px);
}

.home-page .platforms-rail {
  overflow: visible;
  -webkit-mask-image: none;
  mask-image: none;
}

.home-page .platforms-track {
  width: 100%;
  animation: none;
}

.home-page .platforms-set {
  width: 100%;
  justify-content: space-between;
  gap: 20px;
  padding: 0;
}

.home-page .platform-mark {
  height: 60px;
  opacity: 0.9;
  transform: scale(0.88);
}

.home-page .local-proof {
  height: 280px;
  min-height: 280px;
}

.home-page .proof-copy {
  transform: none;
}

.home-page .proof-copy h2 {
  font-size: clamp(40px, 3.4vw, 46px);
}

.home-page .proof-evidence {
  margin-top: 106px;
}

.home-page .proof-evidence article {
  min-height: 142px;
}

.home-page .final-cta {
  height: 104px;
  min-height: 104px;
}

.home-page .site-footer {
  height: 280px;
  min-height: 280px;
}

.home-page .cta-inner h2 {
  font-size: clamp(34px, 3vw, 41px);
}

.home-page .cta-actions .button {
  white-space: nowrap;
}

@media (min-width: 1101px) {
  .home-page .platforms-set {
    transform: scale(0.94);
    transform-origin: left center;
  }
}

@media (min-width: 761px) and (max-width: 1100px) {
  .home-page .header-inner {
    grid-template-columns: 170px 1fr 205px;
  }

  .home-page .brand-mark {
    width: 132px;
  }

  .home-page .site-nav {
    gap: clamp(16px, 2.6vw, 28px);
  }

  .home-page .site-nav a {
    font-size: 11px;
  }

  .home-page .header-cta {
    min-height: 44px;
    padding-inline: 14px;
    font-size: 10px;
  }

  .home-page .hero {
    height: 690px;
    min-height: 690px;
  }

  .home-page .hero-copy {
    top: 132px;
    width: 48%;
  }

  .home-page .hero h1 {
    font-size: clamp(49px, 6.3vw, 59px);
  }

  .home-page .hero-intro {
    width: 100%;
    max-width: 420px;
    font-size: 14px;
  }

  .home-page .hero-actions {
    gap: 13px;
  }

  .home-page .hero-actions .button {
    min-height: 48px;
    padding-inline: 16px;
    font-size: 11px;
  }

  .home-page .hero-phone {
    font-size: 18px;
  }

  .home-page .hero-trust {
    width: 430px;
    display: grid;
    grid-template-columns: repeat(2, max-content);
    gap: 12px 28px;
  }

  .service-launcher {
    height: 196px;
  }

  .service-launcher-shell {
    min-height: 238px;
    grid-template-columns: repeat(3, 1fr);
    transform: translateY(-52px);
  }

  .service-launcher-card {
    grid-template-columns: 42px 1fr 20px;
    grid-template-rows: 1fr;
    align-items: center;
    gap: 12px;
    min-height: 118px;
    padding: 18px 20px;
  }

  .service-launcher-card + .service-launcher-card {
    border-left: 0;
  }

  .service-launcher-card:not(:nth-child(3n + 1)) {
    border-left: 1px solid #e3e7ec;
  }

  .service-launcher-card:nth-child(n + 4) {
    border-top: 1px solid #e3e7ec;
  }

  .service-launcher-card > span {
    min-height: 0;
    font-size: 13px;
  }

  .about-intro-grid,
  .health-check-grid {
    column-gap: 46px;
  }

  .home-page .about-editorial-copy h2 {
    font-size: clamp(42px, 5vw, 51px);
  }

  .about-story {
    padding-top: 34px;
  }

  .health-check-grid {
    margin-top: 72px;
  }

  .health-option {
    grid-template-columns: 64px 1fr 20px;
    gap: 14px;
    min-height: 112px;
    padding: 15px 18px;
  }

  .health-option-icon {
    width: 58px;
    height: 58px;
  }

  .health-option-icon svg {
    width: 46px;
    height: 46px;
  }

  .health-option-copy strong {
    font-size: 16px;
  }

  .home-page .local {
    height: auto;
    min-height: 520px;
    padding: 58px 0 42px;
  }

  .home-page .local-grid {
    height: auto;
    grid-template-columns: 44% 56%;
    padding: 0;
  }

  .home-page .local .section-heading {
    align-self: center;
  }

  .home-page .lincolnshire-map {
    width: min(48vw, 420px);
    height: min(43vw, 390px);
  }

  .home-page .commitment-list {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 14px;
  }

  .home-page .commitment-list article {
    grid-template-columns: 44px 1fr;
    gap: 12px;
  }

  .home-page .process {
    height: auto;
    min-height: 300px;
    padding: 48px 0 52px;
  }

  .home-page .process-layout {
    height: auto;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .home-page .process-list::before {
    top: 44px;
    right: 0;
  }

  .home-page .process-list li::before {
    top: 38px;
  }

  .home-page .services {
    height: 350px;
    min-height: 350px;
  }

  .home-page .services-layout {
    grid-template-columns: 37% 63%;
  }

  .home-page .services-ln-visual {
    width: 100%;
    margin: 0;
  }

  .home-page .benefits {
    height: auto;
    min-height: 260px;
  }

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

  .home-page .benefit-grid article:nth-child(3) {
    border-left: 0;
  }

  .home-page .benefit-grid article:nth-child(n + 3) {
    border-top: 1px solid #d8dde4;
  }

  .home-page .platforms-layout {
    grid-template-columns: 220px 1fr;
    gap: 24px;
  }

  .home-page .platforms-rail {
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .home-page .platforms-rail::-webkit-scrollbar {
    display: none;
  }

  .home-page .platforms-track {
    width: max-content;
  }

  .home-page .platforms-set {
    width: max-content;
    justify-content: flex-start;
    gap: 30px;
    padding-right: 24px;
  }

  .home-page .platform-mark {
    transform: scale(0.85);
  }

  .home-page .proof-layout {
    grid-template-columns: 40% 60%;
  }

  .home-page .proof-evidence {
    margin-top: 128px;
  }

  .home-page .cta-inner {
    grid-template-columns: 80px 1fr auto;
  }

  .home-page .cta-actions {
    gap: 10px;
  }

  .home-page .cta-actions .button {
    min-height: 45px;
    padding-inline: 14px;
    font-size: 10px;
  }

  .home-page .footer-grid {
    grid-template-columns: 32% 22% 20% 26%;
  }

  .home-page .footer-map {
    display: none;
  }
}

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

  .home-page .hero {
    min-height: 850px;
    height: auto;
  }

  .home-page .hero-grid {
    min-height: 850px;
  }

  .home-page .hero-copy {
    top: auto;
    width: 100%;
  }

  .home-page .hero h1 {
    font-size: clamp(46px, 13vw, 55px);
  }

  .home-page .hero-intro {
    width: 100%;
    max-width: 350px;
  }

  .home-page .hero-trust {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px 18px;
  }

  .home-page .hero-trust li {
    grid-template-columns: 24px 1fr;
    align-items: center;
    justify-items: start;
    font-size: 10px;
  }

  .service-launcher {
    height: 348px;
  }

  .service-launcher-shell {
    width: calc(100vw - 32px);
    min-height: 396px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    transform: translateY(-48px);
    border-radius: 14px;
  }

  .service-launcher-card {
    grid-template-rows: 42px auto 20px;
    min-height: 132px;
    padding: 17px 18px;
  }

  .service-launcher-card + .service-launcher-card {
    border-left: 0;
  }

  .service-launcher-card:nth-child(even) {
    border-left: 1px solid #e3e7ec;
  }

  .service-launcher-card:nth-child(n + 3) {
    border-top: 1px solid #e3e7ec;
  }

  .service-launcher-icon {
    width: 39px;
    height: 39px;
  }

  .service-launcher-card > span {
    min-height: 0;
    font-size: 12px;
  }

  .home-page .about-editorial {
    padding: 52px 0 72px;
  }

  .home-page .about-editorial > .shell {
    width: var(--shell);
  }

  .about-intro-grid,
  .health-check-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .home-page .about-editorial-copy h2 {
    font-size: clamp(39px, 10.6vw, 47px);
  }

  .home-page .about-editorial-cta {
    margin-top: 28px;
  }

  .about-story {
    padding-top: 48px;
  }

  .about-story > p {
    font-size: 14px;
  }

  .health-check-grid {
    margin-top: 78px;
  }

  .health-check-copy {
    padding-left: 0;
  }

  .health-check-copy h2 {
    max-width: 350px;
    font-size: clamp(37px, 10vw, 44px);
  }

  .health-check-copy .button {
    width: 100%;
  }

  .health-options {
    margin-top: 46px;
  }

  .health-option {
    grid-template-columns: 62px 1fr 18px;
    gap: 13px;
    min-height: 112px;
    padding: 15px 14px;
  }

  .health-option-icon {
    width: 56px;
    height: 56px;
  }

  .health-option-icon svg {
    width: 44px;
    height: 44px;
  }

  .health-option-copy strong {
    font-size: 15px;
  }

  .health-option-copy small {
    font-size: 11px;
  }

  .home-page .local {
    height: auto;
    min-height: 0;
    padding: 96px 0 72px;
  }

  .home-page .local-grid {
    padding: 0;
  }

  .home-page .lincolnshire-map {
    width: min(100%, 340px);
    height: auto;
    aspect-ratio: 1;
  }

  .home-page .process {
    height: auto;
    min-height: 0;
    padding: 72px 0 78px;
  }

  .home-page .services {
    height: auto;
    min-height: 0;
    padding: 65px 0 42px;
  }

  .home-page .services-layout {
    display: block;
  }

  .home-page .services-ln-visual {
    width: min(118%, 560px);
    margin: 30px -9% -20px;
  }

  .home-page .benefits {
    height: auto;
    min-height: 0;
    padding: 10px 0 44px;
  }

  .home-page .platforms {
    padding: 42px 0;
  }

  .home-page .platforms-layout {
    display: block;
  }

  .home-page .platforms-rail {
    width: calc(100% + 32px);
    margin: 28px -16px 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .home-page .platforms-rail::-webkit-scrollbar {
    display: none;
  }

  .home-page .platforms-track {
    width: max-content;
  }

  .home-page .platforms-set {
    width: max-content;
    justify-content: flex-start;
    gap: 38px;
    padding: 0 28px;
  }

  .home-page .local-proof {
    height: auto;
    min-height: 0;
    padding: 68px 0 72px;
  }

  .home-page .proof-evidence {
    margin-top: 46px;
  }

  .home-page .final-cta {
    height: auto;
    min-height: 0;
    padding: 42px 0;
  }

  .home-page .cta-actions .button {
    width: 100%;
  }
}

/* Approved staggered About and IT Health Check composition */
.home-page .about-editorial {
  position: relative;
  isolation: isolate;
  min-height: 0;
  padding: 70px 0 82px;
  background: #fff;
  overflow: hidden;
}

.home-page .about-editorial::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: -12%;
  bottom: 8%;
  width: min(68vw, 920px);
  height: min(54vw, 730px);
  background: radial-gradient(circle, rgba(0, 216, 255, 0.065), rgba(0, 216, 255, 0) 68%);
  pointer-events: none;
}

.home-page .about-editorial > .shell {
  position: relative;
  z-index: 1;
  width: min(92vw, 1340px);
}

.home-page .about-intro-grid {
  min-height: 320px;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  column-gap: clamp(78px, 8.3vw, 112px);
  align-items: start;
}

.home-page .about-editorial-copy {
  position: relative;
  max-width: 560px;
}

.home-page .about-editorial-copy h2 {
  position: relative;
  z-index: 1;
  font-size: clamp(48px, 4.3vw, 59px);
  line-height: 1.03;
}

.home-page .about-editorial-copy h2::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 43%;
  right: -5px;
  width: 12px;
  height: 12px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(0, 216, 255, 0.85);
}

.home-page .about-editorial-copy h2::after {
  content: "";
  position: absolute;
  z-index: -2;
  top: calc(43% + 5px);
  left: calc(100% - 4px);
  width: clamp(180px, 15vw, 205px);
  height: 138px;
  border-top: 2px solid rgba(0, 178, 229, 0.72);
  border-right: 2px solid rgba(0, 178, 229, 0.72);
  border-radius: 0 12px 12px 0;
  pointer-events: none;
}

.home-page .about-editorial-cta {
  width: min(250px, 100%);
  min-height: 58px;
  margin-top: 34px;
  background: rgba(255, 255, 255, 0.94);
}

.home-page .about-story {
  max-width: 555px;
  justify-self: end;
  padding-top: 48px;
}

.home-page .about-story > p {
  font-size: 15px;
  line-height: 1.72;
}

.home-page .about-community {
  position: relative;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  margin-top: 31px;
  padding: 6px 0 6px 14px;
}

.home-page .about-community::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 65px;
  width: 10px;
  border-top: 1.5px solid rgba(0, 178, 229, 0.72);
  border-bottom: 1.5px solid rgba(0, 178, 229, 0.72);
  border-left: 1.5px solid rgba(0, 178, 229, 0.72);
  border-radius: 8px 0 0 8px;
  transform: translateX(14px);
}

.home-page .about-community::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -18px;
  width: 12px;
  height: 12px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(0, 216, 255, 0.8);
  transform: translateY(-50%);
}

.home-page .about-community svg {
  width: 46px;
  height: 46px;
}

.home-page .about-community p {
  position: relative;
  z-index: 1;
  padding-left: 21px;
  font-size: 14px;
  line-height: 1.62;
}

.home-page .health-check-grid {
  position: relative;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  column-gap: clamp(72px, 7.1vw, 96px);
  align-items: start;
  margin-top: 32px;
}

.home-page .health-check-copy {
  position: relative;
  width: 100%;
  max-width: 610px;
  min-height: 500px;
  padding: 34px 38px 34px;
  background: linear-gradient(145deg, #f8fbff 0%, #f2f7fc 100%);
  border: 1px solid #d9e5ef;
  clip-path: polygon(0 0, calc(100% - 76px) 0, 100% 76px, 100% 100%, 0 100%);
  filter: drop-shadow(0 18px 34px rgba(7, 16, 32, 0.055));
}

.home-page .health-check-copy .about-kicker {
  margin-bottom: 14px;
}

.home-page .health-check-copy h2 {
  font-size: clamp(40px, 3.6vw, 49px);
  line-height: 1.04;
}

.home-page .health-check-intro {
  max-width: 430px;
  margin-top: 17px;
  font-size: 14px;
}

.home-page .health-check-list {
  gap: 11px;
  margin-top: 25px;
}

.home-page .health-check-list li {
  font-size: 13px;
}

.home-page .health-check-copy .button {
  min-height: 54px;
  margin-top: 27px;
  padding-inline: 27px;
  font-size: 12px;
}

.home-page .health-options {
  position: relative;
  width: calc(100% + 75px);
  min-height: 500px;
  display: grid;
  grid-template-rows: repeat(3, 132px);
  align-content: start;
  gap: 18px;
  margin: 0 0 0 -130px;
  padding: 2px 0 0;
  overflow: visible;
}

.home-page .health-options-circuit {
  position: absolute;
  z-index: 0;
  top: -2px;
  left: 0;
  width: 100%;
  height: 500px;
  overflow: visible;
  pointer-events: none;
}

.health-options-circuit-halo,
.health-options-circuit-core {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.health-options-circuit-halo {
  stroke: rgba(0, 216, 255, 0.18);
  stroke-width: 9;
  filter: blur(5px);
}

.health-options-circuit-core {
  stroke: #00c9ef;
  stroke: url("#health-route-gradient");
  stroke-width: 2;
}

.health-options-circuit circle {
  fill: #fff;
  stroke: var(--cyan);
  stroke-width: 2;
  filter: drop-shadow(0 0 7px rgba(0, 216, 255, 0.95));
}

.home-page .health-option {
  position: relative;
  z-index: 2;
  width: calc(100% - 212px);
  min-height: 132px;
  grid-template-columns: 76px minmax(0, 1fr) 24px;
  gap: 18px;
  padding: 20px 24px 20px 20px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 50%, rgba(0, 216, 255, 0.08), transparent 32%),
    linear-gradient(145deg, #06172f 0%, #020817 72%);
  border: 1px solid rgba(0, 216, 255, 0.42);
  border-radius: 8px;
  box-shadow: 0 17px 32px rgba(2, 8, 23, 0.18), 0 0 13px rgba(0, 216, 255, 0.08);
}

.home-page .health-option:nth-of-type(1) {
  justify-self: end;
}

.home-page .health-option:nth-of-type(2) {
  justify-self: center;
}

.home-page .health-option:nth-of-type(3) {
  justify-self: start;
}

.home-page .health-option-icon {
  width: 68px;
  height: 68px;
  color: #00bfe9;
  background: rgba(0, 216, 255, 0.035);
  border: 0;
  border-radius: 12px;
}

.home-page .health-option-icon svg {
  width: 62px;
  height: 62px;
  stroke-width: 1.75;
  filter: drop-shadow(0 0 5px rgba(0, 216, 255, 0.28));
}

.home-page .health-option-copy {
  gap: 7px;
}

.home-page .health-option-copy strong {
  color: #fff;
  font-size: 18px;
}

.home-page .health-option-copy small {
  color: #c9d5e4;
  font-size: 12px;
  line-height: 1.45;
}

.home-page .health-option-arrow {
  color: var(--cyan);
  stroke: currentColor;
  stroke-width: 1.8;
}

@media (min-width: 761px) and (max-width: 1100px) {
  .home-page .about-editorial {
    padding: 62px 0 74px;
  }

  .home-page .about-editorial > .shell {
    width: min(91vw, 1000px);
  }

  .home-page .about-intro-grid {
    min-height: 302px;
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    column-gap: 52px;
  }

  .home-page .about-editorial-copy h2 {
    font-size: clamp(42px, 5vw, 50px);
  }

  .home-page .about-editorial-copy h2::after {
    display: none;
  }

  .home-page .about-editorial-copy h2::before,
  .home-page .about-community::after {
    display: none;
  }

  .home-page .about-story {
    padding-top: 32px;
  }

  .home-page .about-community::after {
    left: -10px;
  }

  .home-page .health-check-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 42px;
    margin-top: 42px;
  }

  .home-page .health-check-copy {
    min-height: 510px;
    padding: 30px 28px;
    clip-path: polygon(0 0, calc(100% - 58px) 0, 100% 58px, 100% 100%, 0 100%);
  }

  .home-page .health-check-copy h2 {
    font-size: clamp(37px, 4.3vw, 45px);
  }

  .home-page .health-options {
    width: 100%;
    min-height: 510px;
    grid-template-rows: repeat(3, minmax(142px, auto));
    gap: 18px;
    margin-left: 0;
  }

  .home-page .health-options-circuit {
    left: -68px;
    width: calc(100% + 68px);
    height: 510px;
  }

  .home-page .health-option {
    width: calc(100% - 36px);
    min-height: 142px;
    grid-template-columns: 58px minmax(0, 1fr) 18px;
    gap: 13px;
    padding: 17px 16px;
  }

  .home-page .health-option-icon {
    width: 54px;
    height: 54px;
  }

  .home-page .health-option-icon svg {
    width: 50px;
    height: 50px;
  }

  .home-page .health-option-copy strong {
    font-size: 16px;
  }

  .home-page .health-option-copy small {
    font-size: 11px;
  }
}

/* Keep the orbit composition in control of the legacy editorial mobile shell. */
@media (max-width: 760px) {
  .home-page .about-editorial.diagnostic-orbit-section {
    padding: 62px 0 0;
  }

  .home-page .about-editorial.diagnostic-orbit-section > .shell.diagnostic-orbit-stage {
    width: calc(100vw - 36px);
  }
}

@media (max-width: 600px) {
  .home-page .about-editorial.diagnostic-orbit-section {
    padding-top: 52px;
  }

  .home-page .about-editorial.diagnostic-orbit-section > .shell.diagnostic-orbit-stage {
    width: calc(100vw - 32px);
  }
}

/* Approved Diagnostic Orbit About and IT Health Check composition */
.home-page .diagnostic-orbit-section {
  position: relative;
  isolation: isolate;
  min-height: 1016px;
  padding: 76px 0 0;
  background: #fff;
  overflow: hidden;
}

.home-page .diagnostic-orbit-section::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: radial-gradient(circle at 71% 41%, rgba(0, 216, 255, 0.055), transparent 35%);
  pointer-events: none;
}

.home-page .diagnostic-orbit-section::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: auto 0 0;
  height: 230px;
  background: #001126;
  clip-path: polygon(0 48%, 21% 31%, 46% 44%, 72% 15%, 100% 3%, 100% 100%, 0 100%);
  pointer-events: none;
}

.home-page .diagnostic-orbit-stage {
  position: relative;
  z-index: 1;
  width: min(92vw, 1460px);
  max-width: 1460px;
  min-height: 940px;
}

.home-page .diagnostic-orbit-section > .diagnostic-orbit-stage {
  width: min(92vw, 1460px);
  max-width: 1460px;
}

.home-page .diagnostic-about {
  position: relative;
  z-index: 3;
  width: 44%;
  max-width: 650px;
}

.home-page .diagnostic-about .about-kicker {
  margin: 0 0 24px;
}

.home-page .diagnostic-about h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(52px, 4vw, 62px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.99;
}

.home-page .diagnostic-about h2 span {
  color: var(--lime-readable);
}

.home-page .diagnostic-about > p:not(.about-kicker) {
  max-width: 57ch;
  margin: 23px 0 0;
  color: #526078;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.58;
}

.home-page .diagnostic-about .diagnostic-about-lead {
  margin-top: 28px;
  color: #46546b;
  font-size: clamp(17px, 1.4vw, 20px);
}

.home-page .diagnostic-community {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  max-width: 575px;
  margin-top: 28px;
}

.home-page .diagnostic-community::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -172px;
  width: 160px;
  border-top: 2px solid rgba(0, 200, 255, 0.8);
}

.home-page .diagnostic-community::before {
  content: "";
  position: absolute;
  top: calc(50% - 6px);
  right: -184px;
  width: 12px;
  height: 12px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(0, 216, 255, 0.85);
}

.home-page .diagnostic-community svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: #b9df00;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-page .diagnostic-community p {
  margin: 0;
  color: #526078;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.5;
}

.home-page .diagnostic-about .about-editorial-cta {
  width: min(292px, 100%);
  min-height: 62px;
  margin-top: 34px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(0, 200, 255, 0.8);
}

.home-page .diagnostic-about .about-editorial-cta svg {
  color: #00bde8;
}

.home-page .diagnostic-orbit {
  position: absolute;
  z-index: 2;
  top: -60px;
  right: -5px;
  width: 880px;
  aspect-ratio: 1;
}

.home-page .diagnostic-orbit::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 96px;
  right: -190px;
  width: 430px;
  height: 620px;
  background: #001126;
  clip-path: polygon(24% 0, 100% 6%, 100% 94%, 0 100%, 18% 76%, 18% 24%);
  pointer-events: none;
}

.home-page .diagnostic-orbit-graphic {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  overflow: visible;
}

.home-page .diagnostic-orbit-disc {
  stroke: rgba(0, 200, 255, 0.45);
  stroke-width: 3;
}

.home-page .diagnostic-orbit-grid circle,
.home-page .diagnostic-orbit-grid path,
.home-page .diagnostic-orbit-ticks circle {
  fill: none;
  stroke: rgba(0, 200, 255, 0.24);
  stroke-width: 1.2;
}

.home-page .diagnostic-orbit-grid path {
  stroke: rgba(0, 200, 255, 0.16);
}

.home-page .diagnostic-orbit-ticks circle {
  stroke-dasharray: 2 12;
  stroke-width: 1.6;
}

.home-page .diagnostic-orbit-sweep {
  opacity: 0.95;
  transform-origin: 410px 410px;
  animation: diagnostic-orbit-scan 7s ease-in-out infinite alternate;
}

.home-page .diagnostic-orbit-needle {
  stroke: var(--lime);
  stroke-width: 4;
  stroke-linecap: round;
  transform-origin: 410px 410px;
  animation: diagnostic-orbit-scan 7s ease-in-out infinite alternate;
}

.home-page .diagnostic-orbit-signals circle {
  fill: var(--cyan);
}

.home-page .diagnostic-orbit-centre-halo {
  fill: rgba(214, 255, 0, 0.08);
  stroke: var(--lime);
  stroke-width: 3;
}

.home-page .diagnostic-orbit-centre {
  fill: #07172c;
  stroke: var(--lime);
  stroke-width: 3;
}

.home-page .diagnostic-orbit-place,
.home-page .diagnostic-orbit-county {
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.home-page .diagnostic-orbit-place {
  fill: #fff;
  font-size: 17px;
}

.home-page .diagnostic-orbit-county {
  fill: var(--cyan);
  font-size: 15px;
}

.home-page .diagnostic-routes {
  position: absolute;
  z-index: 4;
  inset: 0;
}

.home-page .diagnostic-route {
  position: absolute;
  right: -40px;
  width: 326px;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  color: #fff;
}

.home-page .diagnostic-route::before {
  content: "";
  position: absolute;
  top: 32px;
  left: -56px;
  width: 46px;
  border-top: 2px solid rgba(0, 216, 255, 0.82);
}

.home-page .diagnostic-route::after {
  content: "";
  position: absolute;
  top: 26px;
  left: -64px;
  width: 12px;
  height: 12px;
  border: 2px solid #001126;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 9px rgba(0, 216, 255, 0.9);
}

.home-page .diagnostic-route-oneoff {
  top: 142px;
}

.home-page .diagnostic-route-health {
  top: 338px;
}

.home-page .diagnostic-route-support {
  top: 532px;
}

.home-page .diagnostic-route-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: var(--cyan);
  border: 2px solid currentColor;
  border-radius: 50%;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.home-page .diagnostic-route-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-page .diagnostic-route > span:last-child {
  display: grid;
  gap: 6px;
}

.home-page .diagnostic-route strong {
  font-size: clamp(20px, 1.7vw, 25px);
  font-weight: 800;
  line-height: 1.15;
}

.home-page .diagnostic-route small {
  color: #d8e2ed;
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.42;
}

.home-page .diagnostic-route-health::before {
  border-color: rgba(214, 255, 0, 0.88);
}

.home-page .diagnostic-route-health::after {
  background: var(--lime);
  box-shadow: 0 0 10px rgba(214, 255, 0, 0.82);
}

.home-page .diagnostic-route-health .diagnostic-route-icon,
.home-page .diagnostic-route-health strong {
  color: var(--lime);
}

.home-page .orbit-health-deck {
  position: absolute;
  z-index: 5;
  right: 8%;
  bottom: 50px;
  left: 8%;
  min-height: 270px;
  display: grid;
  grid-template-columns: minmax(0, 0.46fr) 1px minmax(0, 0.54fr);
  align-items: center;
  gap: clamp(26px, 2.4vw, 36px);
  padding: 28px 48px;
  color: var(--ink);
  background: linear-gradient(100deg, #d6ff00 0%, #e5ff00 100%);
  clip-path: polygon(40px 0, calc(100% - 40px) 0, 100% 40px, 100% calc(100% - 40px), calc(100% - 40px) 100%, 40px 100%, 0 calc(100% - 40px), 0 40px);
  box-shadow: 0 24px 55px rgba(0, 8, 25, 0.18);
}

.home-page .orbit-health-kicker {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.home-page .orbit-health-copy h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(43px, 3.1vw, 48px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}

.home-page .orbit-health-copy > p:not(.orbit-health-kicker) {
  max-width: 43ch;
  margin: 10px 0 0;
  color: #162036;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.45;
}

.home-page .orbit-health-cta {
  min-width: min(334px, 100%);
  min-height: 58px;
  justify-content: space-between;
  gap: 28px;
  margin-top: 16px;
  padding-inline: 24px;
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
  font-size: 14px;
}

.home-page .orbit-health-cta svg {
  width: 21px;
  fill: none;
  stroke: var(--lime);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-page .orbit-health-divider {
  width: 1px;
  height: 100%;
  background: rgba(7, 16, 32, 0.2);
}

.home-page .orbit-health-list {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(3, auto);
  gap: 18px 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-page .orbit-health-list li {
  position: relative;
  min-height: 28px;
  padding-left: 36px;
  color: #0c1528;
  font-size: clamp(14px, 1.12vw, 17px);
  font-weight: 700;
  line-height: 1.36;
}

.home-page .orbit-health-list li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  color: var(--lime);
  background: var(--navy);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 800;
}

@keyframes diagnostic-orbit-scan {
  from { transform: rotate(-8deg); }
  to { transform: rotate(18deg); }
}

@media (hover: hover) and (pointer: fine) {
  .home-page .diagnostic-route:hover .diagnostic-route-icon {
    transform: translateX(4px);
    box-shadow: 0 0 18px rgba(0, 216, 255, 0.32);
  }

  .home-page .diagnostic-route-health:hover .diagnostic-route-icon {
    box-shadow: 0 0 18px rgba(214, 255, 0, 0.32);
  }
}

@media (min-width: 1101px) {
  .home-page .diagnostic-about h2 {
    width: min(700px, 48vw);
    max-width: none;
  }

  .home-page .diagnostic-orbit-section + .local {
    height: 390px;
    min-height: 390px;
    background: #001126;
  }

  .home-page .diagnostic-orbit-section + .local .local-grid {
    padding-top: 70px;
  }
}

@media (min-width: 1101px) and (max-width: 1549px) {
  .home-page .diagnostic-orbit-section {
    min-height: 1000px;
    padding-top: 62px;
  }

  .home-page .diagnostic-orbit-section > .diagnostic-orbit-stage {
    width: min(94vw, 1280px);
    max-width: 1280px;
    min-height: 938px;
  }

  .home-page .diagnostic-about {
    width: 43%;
    max-width: 550px;
  }

  .home-page .diagnostic-about h2 {
    width: auto;
    max-width: none;
    font-size: clamp(50px, 3.9vw, 56px);
  }

  .home-page .diagnostic-about > p:not(.about-kicker) {
    font-size: 16px;
  }

  .home-page .diagnostic-community::before,
  .home-page .diagnostic-community::after {
    display: none;
  }

  .home-page .diagnostic-orbit {
    top: -18px;
    right: -110px;
    width: 760px;
  }

  .home-page .diagnostic-route {
    right: 104px;
    width: 260px;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 13px;
  }

  .home-page .diagnostic-route-oneoff { top: 120px; }
  .home-page .diagnostic-route-health { top: 292px; }
  .home-page .diagnostic-route-support { top: 464px; }

  .home-page .diagnostic-route-icon {
    width: 52px;
    height: 52px;
  }

  .home-page .diagnostic-route-icon svg {
    width: 32px;
    height: 32px;
  }

  .home-page .diagnostic-route strong {
    font-size: 18px;
  }

  .home-page .diagnostic-route small {
    font-size: 12px;
  }

  .home-page .orbit-health-deck {
    right: 3%;
    bottom: 40px;
    left: 3%;
    min-height: 260px;
    gap: 24px;
    padding: 28px 32px;
  }

  .home-page .orbit-health-copy h3 {
    font-size: clamp(38px, 3.1vw, 44px);
  }

  .home-page .orbit-health-copy > p:not(.orbit-health-kicker),
  .home-page .orbit-health-list li {
    font-size: 13px;
  }

  .home-page .orbit-health-cta {
    min-width: 0;
    width: 100%;
    padding-inline: 18px;
    font-size: 12px;
  }

  .home-page .diagnostic-orbit-section + .local {
    height: 390px;
    min-height: 390px;
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .home-page .diagnostic-orbit-section {
    min-height: 890px;
    padding-top: 62px;
  }

  .home-page .diagnostic-orbit-stage {
    width: min(94vw, 1040px);
    min-height: 828px;
  }

  .home-page .diagnostic-about {
    width: 43%;
    max-width: 450px;
  }

  .home-page .diagnostic-about h2 {
    font-size: clamp(43px, 5.4vw, 56px);
  }

  .home-page .diagnostic-about > p:not(.about-kicker) {
    font-size: 15px;
  }

  .home-page .diagnostic-community::before,
  .home-page .diagnostic-community::after {
    display: none;
  }

  .home-page .diagnostic-orbit {
    top: -18px;
    right: -196px;
    width: 760px;
  }

  .home-page .diagnostic-route {
    right: 104px;
    width: 260px;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 13px;
  }

  .home-page .diagnostic-route-oneoff { top: 120px; }
  .home-page .diagnostic-route-health { top: 292px; }
  .home-page .diagnostic-route-support { top: 464px; }

  .home-page .diagnostic-route-icon {
    width: 52px;
    height: 52px;
  }

  .home-page .diagnostic-route-icon svg {
    width: 32px;
    height: 32px;
  }

  .home-page .diagnostic-route strong {
    font-size: 18px;
  }

  .home-page .diagnostic-route small {
    font-size: 12px;
  }

  .home-page .orbit-health-deck {
    right: 3%;
    bottom: 38px;
    left: 3%;
    min-height: 250px;
    gap: 24px;
    padding: 30px 32px;
  }

  .home-page .orbit-health-copy h3 {
    font-size: clamp(36px, 4.3vw, 44px);
  }

  .home-page .orbit-health-copy > p:not(.orbit-health-kicker),
  .home-page .orbit-health-list li {
    font-size: 13px;
  }

  .home-page .orbit-health-cta {
    min-width: 0;
    width: 100%;
    padding-inline: 18px;
    font-size: 12px;
  }

  .home-page .diagnostic-orbit-section + .local {
    height: 370px;
    min-height: 370px;
    background: #001126;
  }

  .home-page .diagnostic-orbit-section + .local .local-grid {
    padding-top: 58px;
  }
}

@media (max-width: 1100px) {
  .home-page .diagnostic-orbit-section {
    min-height: 0;
    padding: 62px 0 0;
  }

  .home-page .diagnostic-orbit-section::after {
    height: 64%;
    clip-path: polygon(0 9%, 100% 0, 100% 100%, 0 100%);
  }

  .home-page .diagnostic-orbit-stage {
    width: calc(100vw - 36px);
    min-height: 0;
    padding-bottom: 62px;
  }

  .home-page .diagnostic-about {
    width: 100%;
    max-width: 680px;
  }

  .home-page .diagnostic-about h2 {
    font-size: clamp(44px, 7.7vw, 62px);
  }

  .home-page .diagnostic-community::before,
  .home-page .diagnostic-community::after {
    display: none;
  }

  .home-page .diagnostic-orbit {
    position: relative;
    top: auto;
    right: auto;
    width: min(100%, 680px);
    margin: 48px auto 0;
    aspect-ratio: auto;
  }

  .home-page .diagnostic-orbit::before {
    display: none;
  }

  .home-page .diagnostic-orbit-graphic {
    aspect-ratio: 1;
  }

  .home-page .diagnostic-routes {
    position: relative;
    inset: auto;
    display: grid;
    margin-top: -72px;
    padding: 88px 28px 26px;
    background: #001126;
  }

  .home-page .diagnostic-route {
    position: relative;
    inset: auto;
    width: 100%;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 16px;
    padding: 19px 0;
    border-bottom: 1px solid rgba(0, 216, 255, 0.2);
  }

  .home-page .diagnostic-route:last-child {
    border-bottom: 0;
  }

  .home-page .diagnostic-route::before,
  .home-page .diagnostic-route::after {
    display: none;
  }

  .home-page .diagnostic-route-icon {
    width: 56px;
    height: 56px;
  }

  .home-page .diagnostic-route-icon svg {
    width: 34px;
    height: 34px;
  }

  .home-page .diagnostic-route strong {
    font-size: 18px;
  }

  .home-page .diagnostic-route small {
    font-size: 14px;
  }

  .home-page .orbit-health-deck {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 24px;
    padding: 34px 38px;
    clip-path: polygon(28px 0, calc(100% - 28px) 0, 100% 28px, 100% calc(100% - 28px), calc(100% - 28px) 100%, 28px 100%, 0 calc(100% - 28px), 0 28px);
  }

  .home-page .orbit-health-divider {
    width: 100%;
    height: 1px;
  }

  .home-page .orbit-health-list {
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 15px;
  }

  .home-page .diagnostic-orbit-section + .local {
    background: #001126;
  }

  .home-page .diagnostic-orbit-section + .local .local-grid {
    padding-top: 58px;
  }
}

@media (max-width: 600px) {
  .home-page .diagnostic-orbit-section {
    padding-top: 52px;
  }

  .home-page .diagnostic-orbit-stage {
    width: calc(100vw - 32px);
    padding-bottom: 52px;
  }

  .home-page .diagnostic-about .about-kicker {
    margin-bottom: 18px;
  }

  .home-page .diagnostic-about h2 {
    font-size: clamp(38px, 10.4vw, 46px);
  }

  .home-page .diagnostic-about > p:not(.about-kicker) {
    font-size: 16px;
  }

  .home-page .diagnostic-about .diagnostic-about-lead {
    margin-top: 24px;
    font-size: 17px;
  }

  .home-page .diagnostic-community {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 13px;
    margin-top: 24px;
  }

  .home-page .diagnostic-community svg {
    width: 41px;
    height: 41px;
  }

  .home-page .diagnostic-community p {
    font-size: 14px;
  }

  .home-page .diagnostic-about .about-editorial-cta {
    width: 100%;
    min-height: 56px;
    margin-top: 28px;
  }

  .home-page .diagnostic-orbit {
    width: calc(100% + 16px);
    margin-right: -8px;
    margin-left: -8px;
  }

  .home-page .diagnostic-orbit-place {
    font-size: 19px;
  }

  .home-page .diagnostic-orbit-county {
    font-size: 16px;
  }

  .home-page .diagnostic-routes {
    padding: 78px 20px 20px;
  }

  .home-page .diagnostic-route {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 13px;
    padding: 17px 0;
  }

  .home-page .diagnostic-route-icon {
    width: 50px;
    height: 50px;
  }

  .home-page .diagnostic-route-icon svg {
    width: 30px;
    height: 30px;
  }

  .home-page .diagnostic-route strong {
    font-size: 17px;
  }

  .home-page .diagnostic-route small {
    font-size: 13px;
    line-height: 1.4;
  }

  .home-page .orbit-health-deck {
    gap: 24px;
    padding: 30px 22px;
    clip-path: polygon(22px 0, calc(100% - 22px) 0, 100% 22px, 100% calc(100% - 22px), calc(100% - 22px) 100%, 22px 100%, 0 calc(100% - 22px), 0 22px);
  }

  .home-page .orbit-health-copy h3 {
    font-size: clamp(34px, 9vw, 39px);
  }

  .home-page .orbit-health-copy > p:not(.orbit-health-kicker) {
    font-size: 15px;
  }

  .home-page .orbit-health-cta {
    width: 100%;
    min-width: 0;
    white-space: normal;
    text-align: left;
  }

  .home-page .orbit-health-list li {
    padding-left: 34px;
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .diagnostic-orbit-sweep,
  .home-page .diagnostic-orbit-needle {
    animation: none;
  }
}

@media (max-width: 760px) {
  .home-page .about-editorial {
    padding: 54px 0 70px;
  }

  .home-page .about-editorial > .shell {
    width: calc(100vw - 32px);
  }

  .home-page .about-intro-grid,
  .home-page .health-check-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .home-page .about-intro-grid {
    min-height: 0;
  }

  .home-page .about-editorial-copy h2 {
    font-size: clamp(39px, 10.7vw, 47px);
  }

  .home-page .about-editorial-copy h2::before,
  .home-page .about-editorial-copy h2::after,
  .home-page .about-community::after {
    display: none;
  }

  .home-page .about-editorial-cta {
    min-height: 54px;
    margin-top: 28px;
  }

  .home-page .about-story {
    padding-top: 42px;
  }

  .home-page .about-community {
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding-left: 0;
  }

  .home-page .about-community::before {
    left: 55px;
    transform: none;
  }

  .home-page .about-community svg {
    width: 40px;
    height: 40px;
  }

  .home-page .about-community p {
    padding-left: 18px;
  }

  .home-page .health-check-grid {
    margin-top: 62px;
  }

  .home-page .health-check-copy {
    min-height: 0;
    padding: 29px 24px 30px;
    clip-path: polygon(0 0, calc(100% - 48px) 0, 100% 48px, 100% 100%, 0 100%);
  }

  .home-page .health-check-copy h2 {
    font-size: clamp(36px, 10vw, 43px);
  }

  .home-page .health-check-copy .button {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .home-page .health-options {
    width: 100%;
    min-height: 0;
    grid-template-rows: none;
    gap: 14px;
    margin-top: 42px;
    margin-left: 0;
  }

  .home-page .health-options-circuit {
    display: none;
  }

  .home-page .health-option {
    width: calc(100% - 16px);
    min-height: 116px;
    grid-template-columns: 58px minmax(0, 1fr) 18px;
    gap: 12px;
    padding: 16px 14px;
  }

  .home-page .health-option:nth-of-type(1),
  .home-page .health-option:nth-of-type(3) {
    justify-self: end;
  }

  .home-page .health-option:nth-of-type(2) {
    justify-self: start;
  }

  .home-page .health-option-icon {
    width: 54px;
    height: 54px;
  }

  .home-page .health-option-icon svg {
    width: 50px;
    height: 50px;
  }

  .home-page .health-option-copy strong {
    font-size: 15px;
  }

  .home-page .health-option-copy small {
    font-size: 11px;
  }
}
