:root {
  --canvas: #f6f8f7;
  --surface: #ffffff;
  --surface-subtle: #eef3f1;
  --ink: #10251f;
  --ink-soft: #4b5f58;
  --border: #cbd8d2;
  --control: #657a71;
  --brand: #087f5b;
  --brand-strong: #055d43;
  --brand-deep: #073f35;
  --brand-dark: #062e27;
  --mint: #aee7d2;
  --focus: #155eef;
  --max-width: 1180px;
  --shadow: 0 24px 70px rgba(8, 48, 39, 0.12);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

a[href],
button:not(:disabled),
select,
input[type="checkbox"],
.consent-field {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.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: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--surface);
  color: var(--brand-strong);
  font-weight: 750;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

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

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  color: var(--ink);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.brand-icon {
  display: block;
  width: 37px;
  height: 37px;
  border-radius: 9px;
}

.brand-wordmark {
  color: var(--ink);
  font-size: 22px;
  font-weight: 760;
  letter-spacing: -0.04em;
  line-height: 1;
}

.site-footer .brand-wordmark { color: var(--surface); }

.primary-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 650;
}

.primary-nav a {
  position: relative;
  padding: 8px 0;
  text-decoration: none;
}

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

.primary-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  min-height: 42px;
  padding: 9px 17px !important;
  border: 1px solid var(--control);
  border-radius: 8px;
  background: var(--surface-subtle);
  color: var(--brand-strong);
}

.nav-cta:hover {
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--brand-strong);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid var(--control);
  border-radius: 8px;
  background: transparent;
  color: inherit;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: var(--brand-deep);
  color: var(--surface);
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 42%, rgba(174, 231, 210, 0.12), transparent 30%),
    linear-gradient(90deg, rgba(3, 44, 37, 0.25), transparent 52%);
  content: "";
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.23;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, transparent 0%, black 58%, black 100%);
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
  align-items: center;
  gap: 96px;
  min-height: 760px;
  padding-top: 112px;
  padding-bottom: 64px;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--brand-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

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

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.hero h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(42px, 5.2vw, 70px);
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.hero-lead {
  max-width: 560px;
  margin: 29px 0 0;
  color: #d8e9e3;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 750;
  text-decoration: none;
  transition: background 170ms ease, border-color 170ms ease, transform 170ms ease;
}

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

.button-primary {
  background: var(--mint);
  color: var(--brand-dark);
}

.button-primary:hover {
  background: #cbf2e4;
  box-shadow: inset 0 0 0 1px var(--surface);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.48);
  color: var(--surface);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.hero-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 31px 0 0;
  color: #bdd4cc;
  font-size: 13px;
}

.hero-note svg {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--mint);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero-visual {
  position: relative;
  width: min(100%, 490px);
  aspect-ratio: 1;
  margin-inline: auto;
}

.visual-orbit {
  position: absolute;
  border: 1px solid rgba(174, 231, 210, 0.34);
  border-radius: 50%;
}

.visual-orbit-outer {
  inset: 4%;
}

.visual-orbit-inner {
  inset: 23%;
  border-style: dashed;
}

.visual-core {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  width: 160px;
  height: 160px;
  padding: 20px;
  border: 1px solid rgba(164, 235, 212, 0.58);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 22%, rgba(164, 235, 212, 0.2), transparent 38%),
    linear-gradient(145deg, #0f5a4c 0%, #073a32 72%);
  box-shadow:
    0 0 0 10px rgba(164, 235, 212, 0.08),
    0 24px 52px rgba(1, 25, 22, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  text-align: center;
  transform: translate(-50%, -50%);
  animation: core-throb 5.5s ease-in-out infinite;
  will-change: box-shadow;
}

.visual-core::before {
  position: absolute;
  z-index: -1;
  inset: -28px;
  border: 1px solid rgba(174, 231, 210, 0.18);
  border-radius: inherit;
  background: radial-gradient(circle, rgba(174, 231, 210, 0.1), transparent 68%);
  content: "";
  animation: core-halo 5.5s ease-in-out infinite;
  pointer-events: none;
}

.visual-core-logo {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 24px rgba(1, 25, 22, 0.28);
}

.visual-core img {
  width: 48px;
  height: 48px;
  border-radius: 13px;
}

.visual-core .visual-core-name {
  color: var(--surface);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.015em;
  line-height: 1;
}

@keyframes core-throb {
  0%, 100% {
    box-shadow:
      0 0 0 8px rgba(164, 235, 212, 0.06),
      0 24px 52px rgba(1, 25, 22, 0.35),
      inset 0 1px 0 rgba(255, 255, 255, 0.16);
  }

  50% {
    box-shadow:
      0 0 0 16px rgba(164, 235, 212, 0.15),
      0 28px 60px rgba(1, 25, 22, 0.42),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
}

@keyframes core-halo {
  0%, 100% { opacity: 0.45; transform: scale(0.94); }
  50% { opacity: 1; transform: scale(1.06); }
}

.orbiting-services {
  position: absolute;
  z-index: 3;
  inset: 0;
  transform-origin: 50% 50%;
  animation: orbit-spin 60s linear infinite;
  will-change: transform;
}

.orbit-slot {
  --orbit-angle: 0deg;
  --counter-angle: 0deg;
  position: absolute;
  inset: 4%;
  transform: rotate(var(--orbit-angle));
  transform-origin: 50% 50%;
}

.visual-node {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 94px;
  height: 48px;
  border: 1px solid rgba(174, 231, 210, 0.54);
  border-radius: 8px;
  background: rgba(6, 46, 39, 0.92);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  color: #e8f7f1;
  font-size: 13px;
  font-weight: 720;
  text-align: center;
  transform-origin: 50% 50%;
  transform: translate(-50%, -50%) rotate(var(--counter-angle));
  animation: orbit-spin-reverse 60s linear infinite;
  will-change: transform;
}

.node-ndis { --orbit-angle: 0deg; --counter-angle: 0deg; }
.node-cyf { --orbit-angle: 72deg; --counter-angle: -72deg; }
.node-frail { --orbit-angle: 144deg; --counter-angle: -144deg; }
.node-aged { --orbit-angle: 216deg; --counter-angle: -216deg; }
.node-home { --orbit-angle: 288deg; --counter-angle: -288deg; }

.hero-visual:hover .orbiting-services,
.hero-visual:hover .visual-node {
  animation-play-state: paused;
}

@keyframes orbit-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes orbit-spin-reverse {
  from { transform: translate(-50%, -50%) rotate(var(--counter-angle)); }
  to { transform: translate(-50%, -50%) rotate(calc(var(--counter-angle) - 360deg)); }
}

.trust-strip {
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.trust-items { display: grid; grid-template-columns: repeat(4, 1fr); }

.trust-items > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 84px;
  border-right: 1px solid var(--border);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.trust-items > div:first-child { border-left: 1px solid var(--border); }

.trust-icon {
  color: var(--brand);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.section { padding: 112px 0; }

.section-heading h2,
.platform-copy h2,
.demo-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 760;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.section-heading p,
.platform-copy > p,
.demo-copy > p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 50px;
}

.split-heading h2 { max-width: 650px; }
.split-heading > p { max-width: 500px; margin: 0 0 4px; }
.services-section { background: var(--canvas); }

.section-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.section-kicker .eyebrow { margin-bottom: 0; }

.section-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--brand-strong);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-status::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  content: "";
}

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

.service-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 350px;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  flex-direction: column;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
  grid-column: span 2;
}

.service-card:nth-child(4) { grid-column: 2 / span 2; }
.service-card:nth-child(5) { grid-column: 4 / span 2; }

@media (hover: hover) and (pointer: fine) {
  .service-card:hover {
    border-color: #9abeb1;
    background: #f1f7f4;
    box-shadow: 0 18px 44px rgba(8, 48, 39, 0.1);
    transform: translateY(-3px);
  }

  .service-card:hover .service-icon {
    border-color: #9abeb1;
    background: var(--surface);
  }
}

.card-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid #b6dcca;
  border-radius: 10px;
  background: #edf5f2;
  color: var(--brand-strong);
  transition: border-color 180ms ease, background-color 180ms ease;
}

.service-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.service-card h3 {
  margin: 32px 0 11px;
  font-size: 25px;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.service-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}

.card-label {
  position: static;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 7px;
  margin-top: auto;
  padding-top: 28px;
  color: var(--brand-strong);
  font-size: 12px;
  font-weight: 780;
  text-decoration: none;
}

.card-label::after {
  position: absolute;
  inset: 0;
  content: "";
}

.card-label span {
  transition: transform 180ms ease;
}

.card-label:hover span {
  transform: translateX(3px);
}

.service-card:focus-within {
  border-color: var(--focus);
  box-shadow: 0 0 0 3px rgba(21, 94, 239, 0.14);
}

.service-card:focus-within .card-label { outline: none; }

.provider-banner {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr) auto;
  align-items: center;
  gap: 42px;
  margin-top: 18px;
  padding: 32px 34px;
  border: 1px solid #1b5a4c;
  border-radius: 12px;
  background:
    radial-gradient(circle at 92% 20%, rgba(174, 231, 210, 0.12), transparent 24%),
    var(--brand-deep);
  color: var(--surface);
}

.provider-banner-kicker {
  display: block;
  color: var(--mint);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.provider-banner h3 {
  margin: 8px 0 0;
  font-size: 24px;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.provider-banner p {
  margin: 0;
  color: #c9ddd6;
  font-size: 14px;
  line-height: 1.65;
}

.provider-banner a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(174, 231, 210, 0.55);
  border-radius: 8px;
  color: var(--surface);
  font-size: 13px;
  font-weight: 760;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.provider-banner a:hover {
  border-color: var(--mint);
  background: rgba(174, 231, 210, 0.1);
}

.workflow-strip {
  border-top: 1px solid #214e44;
  border-bottom: 1px solid #214e44;
  background:
    radial-gradient(circle at 14% 45%, rgba(174, 231, 210, 0.1), transparent 28%),
    var(--brand-dark);
  color: var(--surface);
}

.workflow-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 76px;
  padding-top: 68px;
  padding-bottom: 68px;
}

.workflow-intro .eyebrow { margin-bottom: 14px; color: var(--mint); }

.workflow-intro h2 {
  max-width: 390px;
  margin: 0;
  font-size: clamp(28px, 3.1vw, 40px);
  font-weight: 750;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-steps li {
  position: relative;
  min-width: 0;
  min-height: 170px;
  padding: 4px 26px;
  border-left: 1px solid rgba(174, 231, 210, 0.24);
}

.workflow-steps li::before {
  position: absolute;
  top: 9px;
  left: -4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(174, 231, 210, 0.09);
  content: "";
}

.workflow-steps li > span {
  color: var(--mint);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.workflow-steps strong {
  display: block;
  margin-top: 25px;
  font-size: 15px;
  line-height: 1.35;
}

.workflow-steps p {
  margin: 9px 0 0;
  color: #bad2c9;
  font-size: 13px;
  line-height: 1.65;
}

.platform-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.platform-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 96px;
}

.platform-map {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.platform-map-header,
.platform-map-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.platform-map-header {
  min-height: 54px;
  padding: 0 22px;
  border-bottom: 1px solid var(--border);
  color: var(--ink);
  font-size: 11px;
  font-weight: 760;
}

.platform-map-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--brand-strong);
  font-size: 9px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.platform-map-status::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  content: "";
}

.platform-map-body {
  padding: 46px 30px 38px;
  background:
    linear-gradient(rgba(7, 63, 53, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 63, 53, 0.035) 1px, transparent 1px),
    #f9fbfa;
  background-size: 28px 28px;
}

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

.platform-sources div {
  min-width: 0;
  min-height: 88px;
  padding: 15px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: var(--surface);
}

.platform-sources span,
.platform-sources strong {
  display: block;
}

.platform-sources span {
  color: var(--brand);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.platform-sources strong {
  margin-top: 9px;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.35;
}

.platform-connectors {
  position: relative;
  height: 72px;
}

.platform-connectors::after {
  position: absolute;
  top: 36px;
  right: calc(16.666% - 4px);
  left: calc(16.666% - 4px);
  height: 1px;
  background: #9abeb1;
  content: "";
}

.platform-connectors span {
  position: absolute;
  z-index: 1;
  top: 0;
  width: 1px;
  height: 54px;
  background: #9abeb1;
}

.platform-connectors span::after {
  position: absolute;
  bottom: -3px;
  left: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  content: "";
}

.platform-connectors span:nth-child(1) { left: 16.666%; }
.platform-connectors span:nth-child(2) { left: 50%; }
.platform-connectors span:nth-child(3) { left: 83.333%; }

.platform-hub {
  display: flex;
  align-items: center;
  gap: 16px;
  width: min(100%, 390px);
  min-height: 108px;
  margin-inline: auto;
  padding: 20px 22px;
  border: 1px solid #1b5a4c;
  border-radius: 12px;
  background: var(--brand-deep);
  color: var(--surface);
  box-shadow: 0 18px 38px rgba(8, 48, 39, 0.16);
}

.platform-hub img {
  width: 48px;
  height: 48px;
  border: 5px solid var(--surface);
  border-radius: 13px;
}

.platform-hub span,
.platform-hub strong { display: block; }

.platform-hub span {
  color: var(--mint);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.platform-hub strong {
  margin-top: 7px;
  font-size: 16px;
  letter-spacing: -0.015em;
  line-height: 1.35;
}

.platform-map-footer {
  min-height: 51px;
  padding: 0 22px;
  border-top: 1px solid var(--border);
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 700;
}

.platform-copy > p { margin: 24px 0 0; }

.feature-list {
  display: grid;
  gap: 0;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
}

.feature-list li:last-child { border-bottom: 1px solid var(--border); }

.feature-list > li > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--brand-strong);
  font-size: 10px;
  font-weight: 850;
}

.feature-list strong { display: block; margin-bottom: 3px; font-size: 16px; }
.feature-list p { margin: 0; color: var(--ink-soft); font-size: 14px; }
.principles-section { background: var(--canvas); }

.centred-heading {
  max-width: 740px;
  margin: 0 auto 52px;
  text-align: center;
}

.centred-heading .eyebrow { justify-content: center; }
.centred-heading p { max-width: 650px; margin: 22px auto 0; }

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

.principles-grid article {
  min-width: 0;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
}

.principle-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--control);
  border-radius: 50%;
  color: var(--brand-strong);
}

.principle-mark svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.principles-grid h3 {
  margin: 54px 0 10px;
  font-size: 21px;
  letter-spacing: -0.02em;
}

.principles-grid p { margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.7; }
.demo-section {
  background: var(--brand-deep);
  color: var(--surface);
}

.demo-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  align-items: start;
  gap: 88px;
}

.demo-copy {
  position: sticky;
  top: 40px;
  padding-top: 20px;
}

.demo-copy h2 { max-width: 620px; }

.demo-copy > p {
  max-width: 610px;
  margin: 24px 0 0;
  color: #c9ddd6;
}

.demo-copy .demo-phone { margin-top: 18px; }

.demo-phone a {
  color: var(--surface);
  font-weight: 760;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.demo-highlight {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  max-width: 440px;
  margin-top: 36px;
  padding: 20px;
  border: 1px solid rgba(164, 235, 212, 0.42);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(164, 235, 212, 0.12), rgba(255, 255, 255, 0.035));
}

.demo-highlight-icon {
  display: grid;
  place-items: center;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(164, 235, 212, 0.46);
  border-radius: 50%;
  background: rgba(164, 235, 212, 0.1);
}

.demo-highlight-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--mint);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.demo-highlight strong, .demo-highlight div > span { display: block; }
.demo-highlight strong { font-size: 14px; }
.demo-highlight div > span { margin-top: 4px; color: #c9ddd6; font-size: 12px; line-height: 1.5; }

.demo-copy .demo-safety-note {
  max-width: 440px;
  margin-top: 22px;
  padding-left: 14px;
  border-left: 2px solid var(--mint);
  color: #d8e9e3;
  font-size: 13px;
}

.demo-form-panel {
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
  color: var(--ink);
}

.form-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.form-heading span:first-child {
  font-size: 21px;
  font-weight: 760;
  letter-spacing: -0.02em;
}

.form-heading span:last-child {
  color: var(--ink-soft);
  font-size: 11px;
}

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

.form-field {
  display: grid;
  gap: 7px;
}

.form-field-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-field-wide { grid-column: 1 / -1; }

.form-field label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 720;
}

.form-field input,
.form-field select {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--control);
  border-radius: 7px;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  font-size: 15px;
}

.form-field input:hover,
.form-field select:hover {
  border-color: var(--brand-strong);
  box-shadow: inset 0 0 0 1px var(--brand-strong);
}

.form-field input:focus-visible,
.form-field select:focus-visible {
  border-color: var(--brand-strong);
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.consent-field {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 11px;
  margin-top: 26px;
  color: var(--ink-soft);
  font-size: 13px;
  cursor: pointer;
}

.consent-field input {
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  accent-color: var(--brand);
}

.form-submit {
  width: 100%;
  margin-top: 24px;
  background: var(--brand);
  color: var(--surface);
  cursor: pointer;
}

.form-submit:hover {
  background: var(--brand-strong);
  box-shadow: inset 0 0 0 1px var(--brand-dark);
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.form-privacy {
  margin: 13px 0 0;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.55;
  text-align: center;
}

.form-message {
  margin-top: 22px;
  padding: 17px 18px;
  border-left: 4px solid var(--brand);
  border-radius: 7px;
  background: var(--surface-subtle);
  color: var(--ink);
}

.form-message strong,
.form-message span { display: block; }

.form-message strong { font-size: 14px; }
.form-message span { margin-top: 3px; color: var(--ink-soft); font-size: 12px; }

.form-message.is-error {
  border-color: #d9a19a;
  background: #fff6f4;
}

.form-message[hidden],
.form-success[hidden] { display: none; }

.form-success {
  display: flex;
  min-height: 460px;
  padding: 18px 10px;
  flex-direction: column;
  justify-content: center;
}

.form-success-mark {
  display: grid;
  width: 66px;
  height: 66px;
  margin-bottom: 30px;
  border: 1px solid #a8d5c4;
  border-radius: 50%;
  background: #e8f6f0;
  color: var(--brand-strong);
  box-shadow: 0 0 0 9px rgba(8, 127, 91, 0.06);
  place-items: center;
}

.form-success-mark svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.form-success .eyebrow { margin-bottom: 10px; }

.form-success h3 {
  max-width: 450px;
  margin: 0;
  font-size: clamp(30px, 4vw, 42px);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.form-success > p {
  max-width: 480px;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.form-success-next {
  display: flex;
  gap: 10px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  color: var(--ink-soft);
  font-size: 13px;
}

.form-success-next a {
  color: var(--brand-strong);
  font-weight: 760;
  text-underline-offset: 4px;
}

.form-reset {
  width: fit-content;
  margin-top: 28px;
  padding: 0 0 3px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--brand-strong);
  font: inherit;
  font-size: 13px;
  font-weight: 760;
  cursor: pointer;
}

.site-footer {
  border-top: 1px solid #244b43;
  background: var(--brand-dark);
  color: var(--surface);
}

.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-top: 55px;
  padding-bottom: 42px;
}

.footer-brand { margin-bottom: 14px; }
.footer-main p { max-width: 380px; margin: 0; color: #b9d0c8; font-size: 14px; }

.footer-main .footer-contact {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.footer-contact span { color: #9fbbb1; }

.footer-contact a {
  color: var(--surface);
  font-weight: 720;
  text-underline-offset: 4px;
}

.footer-links {
  display: flex;
  gap: 30px;
  font-size: 13px;
  font-weight: 650;
}

.footer-links a { text-underline-offset: 4px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 22px;
  padding-bottom: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #9fbbb1;
  font-size: 11px;
}

.not-found {
  display: grid;
  min-height: 100vh;
  padding: 40px 24px;
  background: var(--brand-deep);
  color: var(--surface);
  place-items: center;
}

.not-found > div { max-width: 620px; }
.not-found .brand {
  width: fit-content;
  margin-bottom: 80px;
  padding: 7px 12px;
  border-radius: 8px;
  background: var(--surface);
}

.not-found h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 72px);
  letter-spacing: -0.05em;
  line-height: 1.03;
}

.not-found > div > p:not(.eyebrow) {
  max-width: 540px;
  margin: 24px 0 32px;
  color: #c9ddd6;
  font-size: 18px;
}

@media (max-width: 960px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 150px;
    text-align: center;
  }

  .hero-copy { margin-inline: auto; }
  .hero-copy .eyebrow, .hero-actions, .hero-note { justify-content: center; }
  .hero-visual { width: min(80vw, 440px); margin-top: 10px; }
  .split-heading, .platform-layout, .demo-layout, .workflow-layout { grid-template-columns: 1fr; }
  .split-heading { gap: 24px; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-grid .service-card { grid-column: auto; }
  .provider-banner {
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  }
  .provider-banner a { width: fit-content; grid-column: 1 / -1; }
  .platform-layout { gap: 70px; }
  .workflow-layout { gap: 38px; }
  .workflow-intro h2 { max-width: 620px; }

  .platform-map {
    max-width: 680px;
    margin-inline: auto;
  }

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

  .principles-grid article {
    display: grid;
    grid-template-columns: 56px 1fr;
    column-gap: 18px;
  }

  .principles-grid h3 { margin: 5px 0 6px; }
  .principles-grid p { grid-column: 2; }
  .demo-layout { gap: 54px; }
  .demo-copy { position: static; padding-top: 0; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 32px), var(--max-width)); }
  .header-inner { min-height: 72px; }
  .menu-toggle { display: block; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-6px) rotate(-45deg); }

  .primary-nav {
    position: fixed;
    inset: 72px 0 auto;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 14px 16px 22px;
    border-top: 1px solid var(--border);
    background: var(--surface);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    flex-direction: column;
  }

  .primary-nav.is-open { display: flex; }
  .primary-nav a { min-height: 48px; padding: 13px 12px; }
  .nav-cta { margin-top: 8px; text-align: center; }
  .hero, .hero-layout { min-height: auto; }
  .hero-layout { padding-top: 132px; padding-bottom: 62px; }
  .hero h1 { font-size: clamp(40px, 12vw, 58px); }
  .hero-lead { font-size: 18px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-note { text-align: left; }
  .hero-visual { width: min(98%, 390px); margin-top: 26px; }
  .visual-core { width: 132px; height: 132px; padding: 16px; gap: 8px; }
  .visual-core-logo { width: 50px; height: 50px; border-radius: 15px; }
  .visual-core img { width: 42px; height: 42px; }
  .visual-core .visual-core-name { font-size: 13px; }
  .visual-node { width: 82px; height: 43px; font-size: 11px; }
  .trust-items { grid-template-columns: repeat(2, 1fr); }
  .trust-items > div:nth-child(3) { border-left: 1px solid var(--border); }
  .trust-items > div:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .section { padding: 82px 0; }
  .section-heading h2, .platform-copy h2, .demo-copy h2 { font-size: 35px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-grid .service-card { grid-column: auto; }
  .service-card { min-height: 335px; }
  .provider-banner {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px;
  }
  .provider-banner a { width: 100%; }
  .workflow-layout { padding-top: 58px; padding-bottom: 58px; }
  .workflow-steps { grid-template-columns: 1fr; }
  .workflow-steps li {
    min-height: 0;
    padding: 25px 0 25px 28px;
  }
  .workflow-steps strong { margin-top: 10px; }
  .workflow-steps li::before { top: 31px; }
  .platform-map-header,
  .platform-map-footer { align-items: flex-start; flex-direction: column; gap: 4px; padding-block: 14px; }
  .platform-map-body { padding: 34px 18px 28px; }
  .platform-sources div { min-height: 84px; padding: 12px 10px; }
  .platform-sources strong { font-size: 10px; }
  .platform-hub { padding: 18px; }
  .platform-hub img { width: 44px; height: 44px; }
  .demo-form-panel { padding: 28px 22px; }
  .form-heading { align-items: flex-start; flex-direction: column; gap: 4px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field-wide { grid-column: auto; }
  .form-success { min-height: 420px; padding-inline: 0; }
  .form-success-next { flex-direction: column; }
  .footer-main, .footer-bottom { flex-direction: column; }
  .footer-links { flex-wrap: wrap; gap: 18px 26px; }
}

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

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

  .orbiting-services,
  .visual-node,
  .visual-core {
    animation: none !important;
  }

  .visual-core::before { animation: none !important; }
}
