:root {
  --bg: #020807;
  --bg2: #06110e;
  --panel: #071512;
  --green: #53f5a2;
  --mint: #a3ffd1;
  --text: #f1f7f4;
  --muted: #9dafaa;
  --line: rgba(83, 245, 162, 0.25);
  --glow: 0 0 30px rgba(49, 237, 144, 0.16);
  --radius: 18px;
  --max: 1280px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}
body:before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(74, 218, 151, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 218, 151, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
.container {
  width: min(calc(100% - 48px), var(--max));
  margin: auto;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: -60px;
  left: 20px;
  background: var(--green);
  color: #00150b;
  padding: 10px 16px;
}
.skip-link:focus {
  top: 10px;
}
.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 84px;
  transition: 0.3s;
}
.site-header.scrolled {
  background: rgba(2, 8, 7, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(83, 245, 162, 0.12);
}
.header-inner {
  height: 100%;
  width: min(calc(100% - 48px), 1440px);
  margin: auto;
  display: flex;
  align-items: center;
  gap: 34px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -1px;
}
.brand > span:last-child > span,
.brand-mark {
  color: var(--green);
}
.brand-mark {
  font-weight: 700;
  font-size: 31px;
  letter-spacing: -8px;
  margin-right: 5px;
  filter: drop-shadow(0 0 8px rgba(83, 245, 162, 0.45));
}
nav {
  display: flex;
  gap: 30px;
  margin-left: auto;
}
nav a {
  font-size: 13px;
  color: #c5d2ce;
  transition: 0.2s;
}
nav a:hover {
  color: var(--green);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 7px 13px;
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  white-space: nowrap;
}
.status i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}
.status b,
.eyebrow b {
  color: #73847e;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border: 1px solid var(--green);
  border-radius: 99px;
  padding: 15px 23px;
  color: var(--mint);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.3px;
  box-shadow: inset 0 0 15px rgba(83, 245, 162, 0.05);
  transition: 0.25s;
}
.button:hover {
  background: var(--green);
  color: #00150b;
  box-shadow: 0 0 28px rgba(83, 245, 162, 0.3);
}
.button-small {
  padding: 10px 16px;
  font-size: 12px;
  gap: 0;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  width: 40px;
  height: 40px;
}
.menu-toggle span {
  display: block;
  width: 23px;
  height: 1px;
  background: currentColor;
  margin: 7px;
}
.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  align-items: center;
  padding: 130px 0 80px;
  background:
    radial-gradient(
      circle at 75% 45%,
      rgba(24, 151, 89, 0.16),
      transparent 33%
    ),
    linear-gradient(110deg, #020706 30%, #03100c);
}
.hero:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(transparent, var(--bg));
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
}
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}
.eyebrow,
.kicker {
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}
.eyebrow span {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--green);
  vertical-align: middle;
  margin-right: 10px;
  box-shadow: 0 0 8px var(--green);
}
h1,
h2 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.04em;
}
h1 {
  font-size: clamp(48px, 5.7vw, 82px);
  font-weight: 500;
  margin: 25px 0 34px;
}
h1 em {
  font-style: normal;
  color: var(--green);
  text-shadow: 0 0 30px rgba(83, 245, 162, 0.15);
}
.hero-copy p {
  max-width: 630px;
  color: var(--muted);
  font-size: 15px;
}
.hero-copy .lead {
  font-size: 21px;
  color: var(--text);
  max-width: 540px;
  line-height: 1.45;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}
.email-link {
  font-size: 13px;
  color: #c7d6d0;
  border-bottom: 1px solid #52655e;
}
.organ-visual {
  position: relative;
}
.hero-organ {
  height: min(680px, 72vw);
}
.intestine {
  position: absolute;
  width: 86%;
  height: 88%;
  inset: 6% 7%;
  overflow: visible;
  filter: drop-shadow(0 0 12px rgba(72, 247, 168, 0.24));
}
.intestine path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.outer,
.inner {
  stroke: #67ffc0;
  stroke-width: 25;
  filter: url(#glow);
  opacity: 0.8;
}
.mesh {
  stroke: #c5ffe3;
  stroke-width: 2;
  stroke-dasharray: 2 10;
  opacity: 0.6;
}
.core-glow {
  position: absolute;
  width: 35%;
  aspect-ratio: 1;
  border-radius: 50%;
  left: 40%;
  top: 42%;
  background: radial-gradient(
    circle,
    #d6ffe8 0,
    #35f494 4%,
    rgba(34, 239, 132, 0.26) 28%,
    transparent 70%
  );
  animation: pulse 4s ease-in-out infinite;
}
.orbit {
  position: absolute;
  border: 1px solid rgba(76, 238, 162, 0.14);
  border-radius: 50%;
  inset: 15%;
  animation: spin 28s linear infinite;
}
.orbit:before,
.orbit:after {
  content: "";
  position: absolute;
  width: 5px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
}
.orbit-a {
  transform: rotate(25deg) scaleX(0.8);
}
.orbit-b {
  inset: 6%;
  animation-direction: reverse;
  animation-duration: 38s;
  transform: rotate(-15deg) scaleY(0.75);
}
.particles {
  position: absolute;
  inset: 8%;
  background-image: radial-gradient(circle, var(--green) 1px, transparent 2px);
  background-size: 43px 39px;
  mask-image: radial-gradient(circle, #000, transparent 72%);
  opacity: 0.35;
  animation: drift 12s ease-in-out infinite;
}
.scroll-mark {
  position: absolute;
  left: 50%;
  bottom: 25px;
  width: 1px;
  height: 60px;
  background: linear-gradient(var(--green), transparent);
}
.scroll-mark span {
  position: absolute;
  top: 0;
  left: -2px;
  width: 5px;
  height: 5px;
  background: var(--green);
  border-radius: 50%;
}
.section {
  padding: 130px 0;
  position: relative;
}
.section-intro {
  display: grid;
  grid-template-columns: 80px 1fr;
  max-width: 920px;
}
.section-index {
  color: #52625c;
  font-size: 12px;
  padding-top: 16px;
}
.section h2 {
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 500;
}
.section h2 span {
  color: var(--green);
}
.section-intro p:last-child,
.center-heading p:last-child {
  color: var(--muted);
  max-width: 760px;
}
.network-map {
  height: 580px;
  max-width: 1100px;
  margin: 60px auto 0;
  position: relative;
}
.connections {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.connections path,
.connections circle {
  fill: none;
  stroke: rgba(83, 245, 162, 0.22);
  stroke-width: 1;
  stroke-dasharray: 5 9;
}
.concept {
  position: absolute;
  z-index: 3;
  width: 190px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(4, 15, 12, 0.85);
  text-align: center;
  color: #dff9ec;
  font-size: 12px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  box-shadow: var(--glow);
}
.concept:before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  margin: -22px auto 14px;
  box-shadow: 0 0 12px var(--green);
}
.c1 {
  left: 4%;
  top: 15%;
}
.c2 {
  right: 4%;
  top: 15%;
}
.c3 {
  left: 4%;
  bottom: 12%;
}
.c4 {
  right: 4%;
  bottom: 12%;
}
.mini-organ {
  position: absolute;
  width: 340px;
  height: 360px;
  left: calc(50% - 170px);
  top: 100px;
}
.mini-organ .outer,
.mini-organ .inner {
  stroke-width: 18;
}
.title-row {
  display: flex;
  align-items: end;
  gap: 40px;
}
.title-line {
  height: 1px;
  background: linear-gradient(var(--line), transparent);
  flex: 1;
  margin-bottom: 10px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 55px;
}
.focus-card {
  min-height: 340px;
  padding: 28px 22px;
  border: 1px solid rgba(83, 245, 162, 0.18);
  background: linear-gradient(
    145deg,
    rgba(10, 29, 23, 0.8),
    rgba(3, 11, 9, 0.92)
  );
  border-radius: var(--radius);
  transition: 0.3s;
}
.focus-card:hover {
  border-color: rgba(83, 245, 162, 0.7);
  transform: translateY(-5px);
  box-shadow: var(--glow);
}
.icon-wrap {
  width: 58px;
  height: 58px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--green);
  font-size: 22px;
  margin-bottom: 28px;
}
.focus-card .num {
  font-size: 12px;
  color: #71817b;
  letter-spacing: 2px;
}
.focus-card h3 {
  font-size: 13px;
  line-height: 1.45;
  letter-spacing: 0.7px;
  min-height: 58px;
  margin: 14px 0;
  color: #e9f7f1;
}
.focus-card h3:after {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: var(--green);
  margin-top: 17px;
}
.focus-card p {
  font-size: 12px;
  color: var(--muted);
}
.center-heading {
  text-align: center;
}
.center-heading .kicker {
  margin-bottom: 15px;
}
.center-heading p {
  margin: 22px auto;
}
.partner-panel {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 58px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 18, 14, 0.75);
  overflow: hidden;
}
.partner-item {
  text-align: center;
  padding: 38px 18px;
  border-right: 1px solid var(--line);
  font-size: 12px;
  letter-spacing: 1px;
}
.partner-item:last-child {
  border: 0;
}
.partner-item .icon-wrap {
  margin: 0 auto 18px;
}
.cta-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(83, 245, 162, 0.42);
  border-radius: 26px;
  background: linear-gradient(120deg, #0b211a, #040c0a);
  padding: 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--glow);
}
.cta-panel > div {
  position: relative;
}
.cta-panel h2 {
  font-size: clamp(35px, 4.5vw, 60px);
  margin: 30px 0 12px;
}
.cta-panel p {
  color: var(--muted);
}
.cta-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 245px;
}
.cta-side .button {
  margin-bottom: 10px;
}
.cta-side > a:not(.button) {
  color: #b9c9c3;
  font-size: 13px;
}
.cta-network {
  position: absolute !important;
  inset: 0;
  background:
    radial-gradient(
      circle at 85% 30%,
      rgba(77, 245, 166, 0.15),
      transparent 25%
    ),
    radial-gradient(circle, var(--green) 1px, transparent 1px);
  background-size:
    auto,
    46px 46px;
  opacity: 0.3;
}
footer {
  border-top: 1px solid rgba(83, 245, 162, 0.12);
  padding: 45px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-inner > div {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  color: var(--muted);
}
.footer-inner p {
  font-size: 12px;
  letter-spacing: 3px;
  color: #9baba5;
}
.footer-inner i {
  color: var(--green);
  font-style: normal;
  margin: 0 12px;
}
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition:
    opacity 0.8s,
    transform 0.8s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}
@keyframes pulse {
  50% {
    transform: scale(1.13);
    opacity: 0.7;
  }
}
@keyframes spin {
  to {
    rotate: 360deg;
  }
}
@keyframes drift {
  50% {
    transform: translate(9px, -12px);
  }
}
@media (max-width: 1100px) {
  nav {
    display: none;
  }
  .header-actions .status {
    display: none;
  }
  .menu-toggle {
    display: block;
    margin-left: auto;
    order: 2;
  }
  .header-actions {
    order: 1;
    margin-left: auto;
  }
  .menu-toggle {
    margin-left: 0;
  }
  .site-header.open {
    height: auto;
    background: rgba(2, 8, 7, 0.97);
  }
  .site-header.open nav {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    top: 84px;
    flex-direction: column;
    padding: 30px 24px;
    background: #04100d;
    border-bottom: 1px solid var(--line);
  }
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
  .partner-panel {
    grid-template-columns: repeat(3, 1fr);
  }
  .partner-item {
    border-bottom: 1px solid var(--line);
  }
}
@media (max-width: 760px) {
  .container,
  .header-inner {
    width: min(calc(100% - 32px), var(--max));
  }
  .header-actions .button {
    display: none;
  }
  .site-header {
    height: 70px;
  }
  .site-header.open nav {
    top: 70px;
  }
  .hero {
    padding-top: 100px;
    min-height: auto;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    text-align: left;
  }
  .hero-copy p {
    font-size: 14px;
  }
  .hero-copy .lead {
    font-size: 18px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .hero-organ {
    height: 470px;
    margin-top: 30px;
  }
  .section {
    padding: 90px 0;
  }
  .section-intro {
    grid-template-columns: 1fr;
  }
  .section-index {
    display: none;
  }
  .network-map {
    height: 630px;
  }
  .mini-organ {
    width: 240px;
    height: 270px;
    left: calc(50% - 120px);
    top: 180px;
  }
  .concept {
    width: 145px;
    font-size: 12px;
    padding: 14px 8px;
  }
  .c1,
  .c3 {
    left: 0;
  }
  .c2,
  .c4 {
    right: 0;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .focus-card {
    min-height: 0;
  }
  .partner-panel {
    grid-template-columns: 1fr;
  }
  .partner-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 25px;
  }
  .cta-panel {
    padding: 35px 25px;
    display: block;
  }
  .cta-side {
    margin-top: 35px;
  }
  .footer-inner {
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }
  .footer-inner > div {
    align-items: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
.reveal {
  opacity: 1;
  transform: none;
}
.reveal.visible {
  animation: reveal-up 0.8s both;
}
@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.hero-detail {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
}
.hero-detail p {
  margin: 0;
}
.hero-detail-icon {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: var(--glow);
}
.hero-detail-icon svg,
.line-icon {
  fill: none;
  stroke: var(--green);
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 4px rgba(83, 245, 162, 0.55));
}
.hero-detail-icon svg {
  width: 37px;
}
.hero-organ {
  height: min(680px, 72vw);
  overflow: hidden;
  border-radius: 50%;
  mask-image: radial-gradient(
    ellipse 72% 66% at 55% 50%,
    #000 52%,
    transparent 100%
  );
}
.hero-organ img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  animation: hero-breathe 8s ease-in-out infinite;
}
.hero-image-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 57% 52%,
    transparent 35%,
    rgba(2, 8, 7, 0.14) 61%,
    var(--bg) 88%
  );
  pointer-events: none;
}
.icon-wrap .line-icon {
  width: 31px;
  height: 31px;
}
.partner-item .line-icon {
  width: 34px;
  height: 34px;
}
@keyframes hero-breathe {
  50% {
    transform: scale(1.025);
    filter: saturate(1.08) contrast(1.05);
  }
}
.hero-network {
  position: absolute;
  inset: 7%;
  width: 86%;
  height: 86%;
  z-index: 2;
  opacity: 0.72;
  mix-blend-mode: screen;
  pointer-events: none;
}
.hero-core {
  position: absolute;
  z-index: 2;
  left: 54%;
  top: 51%;
  width: 18%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(220, 255, 236, 0.9) 0,
    rgba(74, 255, 162, 0.5) 5%,
    rgba(46, 244, 143, 0.14) 36%,
    transparent 72%
  );
  transform: translate(-50%, -50%);
  animation: core-pulse 3.2s ease-in-out infinite;
  pointer-events: none;
}
.hero-scan {
  position: absolute;
  z-index: 3;
  left: 16%;
  right: 10%;
  height: 2px;
  top: 20%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(120, 255, 190, 0.12),
    rgba(186, 255, 220, 0.78),
    rgba(120, 255, 190, 0.12),
    transparent
  );
  box-shadow: 0 0 14px rgba(78, 255, 163, 0.55);
  opacity: 0;
  animation: scan-line 7s ease-in-out infinite;
  pointer-events: none;
}
.hero-ring {
  position: absolute;
  z-index: 2;
  left: 54%;
  top: 50%;
  width: 55%;
  aspect-ratio: 1;
  border: 1px solid rgba(83, 245, 162, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-ring:after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  top: 8%;
  left: 27%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}
.ring-one {
  animation: ring-turn 24s linear infinite;
}
.ring-two {
  width: 72%;
  border-style: dashed;
  border-color: rgba(83, 245, 162, 0.09);
  animation: ring-turn-reverse 34s linear infinite;
}
.hero-copy > * {
  animation: hero-copy-in 0.8s both;
}
.hero-copy > *:nth-child(2) {
  animation-delay: 0.1s;
}
.hero-copy > *:nth-child(3) {
  animation-delay: 0.2s;
}
.hero-copy > *:nth-child(4) {
  animation-delay: 0.3s;
}
.hero-copy > *:nth-child(5) {
  animation-delay: 0.4s;
}
@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes core-pulse {
  50% {
    transform: translate(-50%, -50%) scale(1.28);
    opacity: 0.68;
  }
}
@keyframes scan-line {
  0%,
  12% {
    top: 20%;
    opacity: 0;
  }
  20% {
    opacity: 0.7;
  }
  72% {
    opacity: 0.5;
  }
  84%,
  100% {
    top: 78%;
    opacity: 0;
  }
}
@keyframes ring-turn {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes ring-turn-reverse {
  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}
.hero-bg-network {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.58;
  mask-image: linear-gradient(
    to bottom,
    transparent 4%,
    #000 22%,
    #000 78%,
    transparent 98%
  );
}
.hero-ambient {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(25px);
  mix-blend-mode: screen;
}
.ambient-one {
  width: 44vw;
  height: 44vw;
  right: 4%;
  top: 16%;
  background: radial-gradient(
    circle,
    rgba(38, 219, 128, 0.12),
    rgba(8, 87, 53, 0.05) 42%,
    transparent 70%
  );
  animation: ambient-drift 14s ease-in-out infinite;
}
.ambient-two {
  width: 34vw;
  height: 34vw;
  left: 18%;
  top: 36%;
  background: radial-gradient(
    circle,
    rgba(32, 178, 116, 0.055),
    transparent 68%
  );
  animation: ambient-drift-two 18s ease-in-out infinite;
}
.hero-grid {
  position: relative;
  z-index: 2;
}
.hero-organ {
  overflow: visible !important;
  border-radius: 0 !important;
  mask-image: none !important;
}
.hero-organ img {
  mix-blend-mode: screen;
  opacity: 0.92;
  mask-image: radial-gradient(
    ellipse 79% 74% at 57% 51%,
    #000 45%,
    rgba(0, 0, 0, 0.92) 62%,
    transparent 94%
  );
}
.hero-image-vignette {
  background: radial-gradient(
    ellipse 80% 76% at 57% 51%,
    transparent 48%,
    rgba(2, 8, 7, 0.08) 70%,
    transparent 94%
  ) !important;
}
.hero-organ:before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: -8%;
  background: radial-gradient(
    ellipse at 55% 52%,
    rgba(47, 238, 143, 0.08),
    transparent 65%
  );
  filter: blur(18px);
  animation: ambient-drift 10s ease-in-out infinite;
  pointer-events: none;
}
@keyframes ambient-drift {
  50% {
    transform: translate(-2.5%, 2%) scale(1.08);
    opacity: 0.72;
  }
}
@keyframes ambient-drift-two {
  50% {
    transform: translate(4%, -3%) scale(0.94);
    opacity: 0.55;
  }
}
@media (max-width: 760px) {
  .hero-bg-network {
    opacity: 0.42;
  }
  .ambient-one {
    width: 110vw;
    height: 110vw;
    right: -35%;
    top: 45%;
  }
  .ambient-two {
    display: none;
  }
  .hero-organ img {
    mask-image: radial-gradient(
      ellipse 84% 78% at 57% 52%,
      #000 48%,
      transparent 95%
    );
  }
}
.hero-organ img {
  -webkit-mask-image: radial-gradient(
    ellipse 73% 70% at 57% 51%,
    #000 38%,
    rgba(0, 0, 0, 0.96) 56%,
    rgba(0, 0, 0, 0.52) 72%,
    transparent 96%
  );
  mask-image: radial-gradient(
    ellipse 73% 70% at 57% 51%,
    #000 38%,
    rgba(0, 0, 0, 0.96) 56%,
    rgba(0, 0, 0, 0.52) 72%,
    transparent 96%
  );
}
@media (max-width: 760px) {
  .hero-organ img {
    -webkit-mask-image: radial-gradient(
      ellipse 78% 74% at 57% 52%,
      #000 42%,
      rgba(0, 0, 0, 0.7) 69%,
      transparent 96%
    );
    mask-image: radial-gradient(
      ellipse 78% 74% at 57% 52%,
      #000 42%,
      rgba(0, 0, 0, 0.7) 69%,
      transparent 96%
    );
  }
}
.hero-organ img {
  -webkit-mask-image: radial-gradient(
    ellipse 55% 53% at 57% 51%,
    #000 54%,
    rgba(0, 0, 0, 0.9) 68%,
    rgba(0, 0, 0, 0.38) 86%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 55% 53% at 57% 51%,
    #000 54%,
    rgba(0, 0, 0, 0.9) 68%,
    rgba(0, 0, 0, 0.38) 86%,
    transparent 100%
  );
}
@media (max-width: 760px) {
  .hero-organ img {
    -webkit-mask-image: radial-gradient(
      ellipse 58% 52% at 57% 52%,
      #000 52%,
      rgba(0, 0, 0, 0.75) 75%,
      transparent 100%
    );
    mask-image: radial-gradient(
      ellipse 58% 52% at 57% 52%,
      #000 52%,
      rgba(0, 0, 0, 0.75) 75%,
      transparent 100%
    );
  }
}

/* Display the supplied logo artwork directly instead of reconstructing it with crops. */
.brand-image {
  width: 66px !important;
  height: 80px !important;
  flex: 0 0 66px !important;
  display: block !important;
  overflow: hidden !important;
}
.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 7px rgba(83, 245, 162, 0.18));
}
footer .brand-image {
  width: 76px !important;
  height: 96px !important;
  flex-basis: 76px !important;
}
@media (max-width: 760px) {
  .brand-image {
    width: 56px !important;
    height: 68px !important;
    flex-basis: 56px !important;
  }
  footer .brand-image {
    width: 68px !important;
    height: 86px !important;
    flex-basis: 68px !important;
  }
}

/* Slightly larger Focus Areas icons for improved visual prominence. */
.focus-card .icon-wrap {
  width: 76px;
  height: 76px;
}
.focus-card .icon-wrap .line-icon {
  width: 42px;
  height: 42px;
}

/* Larger partner icons while retaining the compact horizontal panel. */
.partner-item .icon-wrap {
  width: 68px;
  height: 68px;
}
.partner-item .icon-wrap .line-icon {
  width: 40px;
  height: 40px;
}
.enquiry-modal {
  position: fixed;
  z-index: 500;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}
.enquiry-modal[hidden] {
  display: none;
}
.enquiry-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 8, 6, 0.82);
  backdrop-filter: blur(10px);
}
.enquiry-panel {
  position: relative;
  width: min(680px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 44px;
  border: 1px solid rgba(83, 245, 162, 0.42);
  border-radius: 22px;
  background: linear-gradient(145deg, #0a1d17, #030b09);
  box-shadow: 0 0 60px rgba(49, 237, 144, 0.16);
}
.enquiry-panel h2 {
  font-size: clamp(32px, 4vw, 50px);
  margin: 10px 0 14px;
}
.enquiry-panel h2 span {
  color: var(--green);
}
.enquiry-intro {
  color: var(--muted);
  margin: 0 0 28px;
}
.enquiry-close {
  position: absolute;
  right: 18px;
  top: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--text);
  font-size: 25px;
  cursor: pointer;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.enquiry-panel label {
  display: grid;
  gap: 7px;
  margin-bottom: 17px;
  color: #cbd8d3;
  font-size: 12px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}
.enquiry-panel input,
.enquiry-panel select,
.enquiry-panel textarea {
  width: 100%;
  border: 1px solid rgba(83, 245, 162, 0.22);
  border-radius: 8px;
  background: #04100d;
  color: var(--text);
  padding: 12px 13px;
  font: inherit;
  outline: none;
}
.enquiry-panel textarea {
  resize: vertical;
}
.enquiry-panel input:focus,
.enquiry-panel select:focus,
.enquiry-panel textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(83, 245, 162, 0.08);
}
body.modal-open {
  overflow: hidden;
}
@media (max-width: 600px) {
  .enquiry-panel {
    padding: 34px 22px;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.enquiry-panel button[type="submit"] {
  min-width: 180px;
  background: var(--green);
  border-color: var(--green);
  color: #00150b;
  box-shadow: 0 0 22px rgba(83, 245, 162, 0.2);
  cursor: pointer;
}
.form-status {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.5;
}
.form-status.is-success {
  color: var(--green);
}
.form-status.is-error {
  color: #ff8f8f;
}
.form-privacy-notice {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}
.enquiry-panel button[type="submit"]:hover,
.enquiry-panel button[type="submit"]:focus-visible {
  background: var(--mint);
  border-color: var(--mint);
  color: #00150b;
  box-shadow: 0 0 30px rgba(83, 245, 162, 0.38);
}
.enquiry-panel .enquiry-close {
  top: 24px;
  right: 24px;
  display: grid;
  place-items: center;
  padding: 0;
  line-height: 1;
}
@media (max-width: 600px) {
  .enquiry-panel .enquiry-close {
    top: 14px;
    right: 14px;
  }
}
.menu-toggle {
  position: relative;
  cursor: pointer;
}
.menu-toggle span {
  position: absolute;
  left: 8px;
  top: 50%;
  margin: 0;
  transition:
    transform 0.28s ease,
    opacity 0.2s ease;
}
.menu-toggle span:first-child {
  transform: translateY(-5px);
}
.menu-toggle span:last-child {
  transform: translateY(5px);
}
.site-header.open .menu-toggle span:first-child {
  transform: translateY(0) rotate(45deg);
}
.site-header.open .menu-toggle span:last-child {
  transform: translateY(0) rotate(-45deg);
}
@media (max-width: 760px) {
  .hero-organ {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-organ img {
    object-position: center center;
  }
  .hero-organ:before,
  .hero-image-vignette {
    background-position: center;
  }
  .hero-core,
  .hero-ring {
    left: 50%;
  }
}
@media (max-width: 760px) {
  .intelligence .network-map {
    height: auto;
    min-height: 0;
    width: min(100%, 430px);
    margin: 42px auto 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 0 4px;
  }
  .intelligence .connections {
    display: none;
  }
  .intelligence .mini-organ {
    position: relative;
    grid-column: 1/-1;
    grid-row: 1;
    width: 230px;
    height: 255px;
    left: auto;
    top: auto;
    margin: 0 auto 16px;
  }
  .intelligence .concept {
    position: relative;
    inset: auto;
    width: auto;
    min-height: 68px;
    display: grid;
    place-items: center;
    padding: 14px 10px;
    font-size: 12px;
    line-height: 1.4;
  }
  .intelligence .concept:before {
    margin: -18px auto 10px;
  }
  .intelligence .c1 {
    grid-column: 1;
    grid-row: 2;
  }
  .intelligence .c2 {
    grid-column: 2;
    grid-row: 2;
  }
  .intelligence .c3 {
    grid-column: 1;
    grid-row: 3;
  }
  .intelligence .c4 {
    grid-column: 2;
    grid-row: 3;
  }
}
@media (min-width: 761px) and (max-width: 1100px) {
  .hero {
    min-height: auto;
    align-items: start;
    padding: 150px 0 90px;
  }
  .hero-organ {
    height: min(620px, 62vw);
  }
}
@media (min-width: 761px) and (max-width: 1100px) {
  .partner-panel {
    grid-template-columns: repeat(6, 1fr);
  }
  .partner-item:nth-child(1),
  .partner-item:nth-child(2),
  .partner-item:nth-child(3) {
    grid-column: span 2;
  }
  .partner-item:nth-child(4) {
    grid-column: 2 / span 2;
    border-left: 1px solid var(--line);
  }
  .partner-item:nth-child(5) {
    grid-column: 4 / span 2;
    border-right: 1px solid var(--line);
  }
}
@media (max-width: 260px) {
  .container,
  .header-inner {
    width: calc(100% - 28px);
  }
  .site-header {
    height: 58px;
  }
  .site-header.open nav {
    top: 58px;
    padding: 14px;
  }
  .site-header.open nav a {
    font-size: 10px;
  }
  .brand-image {
    width: 42px !important;
    height: 52px !important;
    flex-basis: 42px !important;
  }
  .menu-toggle {
    width: 32px;
    height: 32px;
  }
  .menu-toggle span {
    left: 6px;
    width: 20px;
  }
  .hero {
    padding: 72px 0 35px;
  }
  .hero-grid {
    display: block;
  }
  .eyebrow {
    font-size: 7px;
    line-height: 1.7;
    letter-spacing: 1.2px;
  }
  .eyebrow span {
    width: 20px;
    margin-right: 6px;
  }
  h1 {
    font-size: 30px;
    line-height: 1.02;
    margin: 18px 0 22px;
    overflow-wrap: anywhere;
  }
  .hero-copy .lead {
    font-size: 13px;
    line-height: 1.35;
  }
  .hero-detail {
    display: block;
  }
  .hero-detail-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 12px;
  }
  .hero-detail p {
    font-size: 10px;
    line-height: 1.45;
  }
  .hero-actions {
    gap: 14px;
    margin-top: 22px;
  }
  .hero-actions .button {
    width: 100%;
    padding: 11px 10px;
    font-size: 8px;
    gap: 8px;
  }
  .hero-actions .email-link {
    font-size: 10px;
  }
  .hero-organ {
    height: 210px;
    margin-top: 12px;
  }
  .scroll-mark {
    display: none;
  }
  .section {
    padding: 48px 0;
  }
  .section h2 {
    font-size: 27px;
    overflow-wrap: anywhere;
  }
  .section-intro p:last-child,
  .center-heading p:last-child {
    font-size: 10px;
    line-height: 1.45;
  }
  .intelligence .network-map {
    grid-template-columns: 1fr;
  }
  .intelligence .mini-organ {
    width: 150px;
    height: 170px;
    margin-bottom: 8px;
  }
  .intelligence .concept {
    grid-column: 1 !important;
    grid-row: auto !important;
    min-height: 48px;
    font-size: 12px;
  }
  .cards {
    gap: 8px;
    margin-top: 25px;
  }
  .focus-card {
    padding: 18px 14px;
  }
  .focus-card .icon-wrap {
    width: 54px;
    height: 54px;
  }
  .focus-card .icon-wrap .line-icon {
    width: 30px;
    height: 30px;
  }
  .title-row {
    display: block;
  }
  .title-line {
    display: none;
  }
  .partner-panel {
    display: block;
    margin-top: 28px;
  }
  .partner-item {
    padding: 18px 10px;
  }
  .partner-item .icon-wrap {
    width: 52px;
    height: 52px;
  }
  .partner-item .icon-wrap .line-icon {
    width: 30px;
    height: 30px;
  }
  .cta-panel {
    padding: 24px 14px;
    border-radius: 16px;
  }
  .cta-panel h2 {
    font-size: 26px;
    margin-top: 18px;
  }
  .cta-side {
    min-width: 0;
  }
  .cta-side .button {
    width: 100%;
    padding: 11px 8px;
    font-size: 7px;
    gap: 6px;
  }
  .enquiry-modal {
    padding: 8px;
  }
  .enquiry-panel {
    padding: 30px 14px 18px;
    border-radius: 14px;
  }
  .enquiry-panel h2 {
    font-size: 24px;
  }
  .enquiry-intro {
    font-size: 9px;
  }
  .enquiry-panel label {
    font-size: 8px;
  }
  .enquiry-panel input,
  .enquiry-panel select,
  .enquiry-panel textarea {
    padding: 8px;
    font-size: 10px;
  }
  .enquiry-panel button[type="submit"] {
    min-width: 0;
    width: 100%;
    padding: 10px 8px;
    font-size: 8px;
  }
  footer {
    padding: 25px 0;
  }
  .footer-inner {
    gap: 14px;
  }
  .footer-inner p {
    font-size: 7px;
    letter-spacing: 1px;
  }
  footer .brand-image {
    width: 48px !important;
    height: 61px !important;
    flex-basis: 48px !important;
  }
}

/* Coordinated motion for the intelligence map. */
.network-map .connections path,
.network-map .connections circle {
  animation: connection-flow 7s linear infinite;
}
.network-map .connections circle {
  animation-duration: 12s;
}
.mini-organ .intestine {
  animation: organ-float 5s ease-in-out infinite;
  transform-origin: center;
}
.network-map .concept {
  animation: node-breathe 4.8s ease-in-out infinite;
}
.network-map .concept:nth-of-type(2) {
  animation-delay: -1.2s;
}
.network-map .concept:nth-of-type(3) {
  animation-delay: -2.4s;
}
.network-map .concept:nth-of-type(4) {
  animation-delay: -3.6s;
}
.network-map .concept:before {
  animation: node-pulse 2.4s ease-in-out infinite;
}
@keyframes connection-flow {
  to {
    stroke-dashoffset: -70;
  }
}
@keyframes organ-float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-9px) scale(1.018);
  }
}
@keyframes node-breathe {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(83, 245, 162, 0);
    border-color: rgba(83, 245, 162, 0.25);
  }
  50% {
    box-shadow: 0 0 24px rgba(83, 245, 162, 0.1);
    border-color: rgba(83, 245, 162, 0.48);
  }
}
@keyframes node-pulse {
  0%,
  100% {
    transform: scale(0.8);
    opacity: 0.65;
  }
  50% {
    transform: scale(1.35);
    opacity: 1;
    box-shadow: 0 0 18px var(--green);
  }
}
@media (prefers-reduced-motion: reduce) {
  .network-map .connections path,
  .network-map .connections circle,
  .mini-organ .intestine,
  .network-map .concept,
  .network-map .concept:before {
    animation: none !important;
  }
}

.partner-item {
  position: relative;
  transition:
    transform 0.32s ease,
    background-color 0.32s ease,
    box-shadow 0.32s ease,
    color 0.32s ease;
  isolation: isolate;
}
.partner-item:before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: radial-gradient(
    circle at 50% 35%,
    rgba(83, 245, 162, 0.14),
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.32s ease;
}
.partner-item .icon-wrap {
  transition:
    transform 0.38s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}
.partner-item .line-icon {
  transition:
    transform 0.38s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.3s ease;
}
.partner-item:hover,
.partner-item:focus-within {
  z-index: 2;
  transform: translateY(-7px);
  color: var(--mint);
  background-color: rgba(10, 35, 27, 0.72);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.3),
    0 0 25px rgba(83, 245, 162, 0.1);
}
.partner-item:hover:before,
.partner-item:focus-within:before {
  opacity: 1;
}
.partner-item:hover .icon-wrap,
.partner-item:focus-within .icon-wrap {
  transform: scale(1.12);
  border-color: rgba(83, 245, 162, 0.75);
  background-color: rgba(83, 245, 162, 0.06);
  box-shadow: 0 0 24px rgba(83, 245, 162, 0.2);
}
.partner-item:hover .line-icon,
.partner-item:focus-within .line-icon {
  transform: scale(1.08) rotate(-4deg);
  filter: drop-shadow(0 0 7px rgba(83, 245, 162, 0.8));
}
@media (prefers-reduced-motion: reduce) {
  .partner-item,
  .partner-item .icon-wrap,
  .partner-item .line-icon {
    transition: none;
  }
  .partner-item:hover,
  .partner-item:focus-within,
  .partner-item:hover .icon-wrap,
  .partner-item:focus-within .icon-wrap,
  .partner-item:hover .line-icon,
  .partner-item:focus-within .line-icon {
    transform: none;
  }
}

.network-map .concept {
  cursor: default;
  transition:
    transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
    background-color 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}
.network-map .concept:hover {
  animation: none;
  z-index: 5;
  transform: translateY(-7px) scale(1.045);
  color: var(--mint);
  border-color: rgba(83, 245, 162, 0.85);
  background-color: rgba(13, 48, 36, 0.92);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.28),
    0 0 30px rgba(83, 245, 162, 0.18);
}
.network-map .concept:hover:before {
  transform: scale(1.5);
  background: #baffdc;
  box-shadow: 0 0 22px var(--green);
}
@media (prefers-reduced-motion: reduce) {
  .network-map .concept {
    transition: none;
  }
  .network-map .concept:hover {
    transform: none;
  }
}

.typing-text {
  display: block;
  min-height: 2.16em;
}
.typing-text:after {
  content: "";
  display: inline-block;
  width: 3px;
  height: 0.82em;
  margin-left: 7px;
  background: currentColor;
  vertical-align: -0.05em;
  animation: typing-caret 0.75s steps(1) infinite;
}
@keyframes typing-caret {
  50% {
    opacity: 0;
  }
}
@media (max-width: 760px) {
  .typing-text {
    min-height: 2.2em;
  }
}
@media (max-width: 260px) {
  .typing-text {
    min-height: 3.1em;
  }
  .typing-text:after {
    width: 2px;
    margin-left: 3px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .typing-text:after {
    display: none;
  }
}
.brand-image {
  width: 142px;
  height: 44px;
  display: block;
  overflow: hidden;
  position: relative;
  flex: 0 0 142px;
}
.brand-logo-crop {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.brand-logo-crop img {
  position: absolute;
  width: 142px;
  height: auto;
  max-width: none;
  left: 0;
  top: -124px;
  filter: drop-shadow(0 0 7px rgba(83, 245, 162, 0.18));
}
footer .brand-image {
  width: 128px;
  flex-basis: 128px;
}
footer .brand-logo-crop img {
  width: 128px;
  top: -112px;
}
@media (max-width: 760px) {
  .brand-image {
    width: 122px;
    flex-basis: 122px;
  }
  .brand-logo-crop img {
    width: 122px;
    top: -107px;
  }
}
.brand-image {
  height: 28px;
}
.brand-logo-crop {
  bottom: auto;
  height: 28px;
}
footer .brand-image,
footer .brand-logo-crop {
  height: 26px;
}
@media (max-width: 760px) {
  .brand-image,
  .brand-logo-crop {
    height: 25px;
  }
}
.brand-image {
  width: 176px !important;
  height: 46px !important;
  display: flex !important;
  align-items: center;
  gap: 8px;
  overflow: visible !important;
  flex-basis: 176px !important;
}
.brand-symbol-crop,
.brand-word-crop {
  display: block;
  position: relative;
  overflow: hidden;
  background: #000;
}
.brand-symbol-crop {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 5px;
}
.brand-symbol-crop img {
  position: absolute;
  width: 58px;
  height: auto;
  max-width: none;
  left: -9px;
  top: -1px;
}
.brand-word-crop {
  width: 128px;
  height: 28px;
  flex: 0 0 128px;
}
.brand-word-crop img {
  position: absolute;
  width: 142px;
  height: auto;
  max-width: none;
  left: -7px;
  top: -124px;
}
footer .brand-image {
  width: 158px !important;
  flex-basis: 158px !important;
}
footer .brand-symbol-crop {
  width: 35px;
  height: 35px;
  flex-basis: 35px;
}
footer .brand-symbol-crop img {
  width: 51px;
  left: -8px;
}
footer .brand-word-crop {
  width: 115px;
  flex-basis: 115px;
  height: 25px;
}
footer .brand-word-crop img {
  width: 128px;
  left: -6px;
  top: -112px;
}
@media (max-width: 760px) {
  .brand-image {
    width: 151px !important;
    flex-basis: 151px !important;
  }
  .brand-symbol-crop {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }
  .brand-symbol-crop img {
    width: 49px;
    left: -7px;
  }
  .brand-word-crop {
    width: 109px;
    height: 24px;
    flex-basis: 109px;
  }
  .brand-word-crop img {
    width: 122px;
    left: -6px;
    top: -107px;
  }
}

.brand-image {
  width: 58px !important;
  height: 74px !important;
  flex: 0 0 58px !important;
  display: block !important;
  overflow: hidden !important;
}
.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 7px rgba(83, 245, 162, 0.18));
}
footer .brand-image {
  width: 76px !important;
  height: 96px !important;
  flex-basis: 76px !important;
}
@media (max-width: 760px) {
  .brand-image {
    width: 50px !important;
    height: 63px !important;
    flex-basis: 50px !important;
  }
  footer .brand-image {
    width: 68px !important;
    height: 86px !important;
    flex-basis: 68px !important;
  }
}

/* Final header-logo sizing: enlarge the artwork, not only its outer frame. */
.site-header {
  height: 104px;
}
.site-header .brand-image {
  width: 92px !important;
  height: 100px !important;
  flex-basis: 92px !important;
}
.site-header .brand-logo {
  transform: scale(1.14);
  transform-origin: center;
}
@media (max-width: 1100px) {
  .site-header.open nav {
    top: 104px;
  }
}
@media (max-width: 760px) {
  .site-header {
    height: 86px;
  }
  .site-header.open nav {
    top: 86px;
  }
  .site-header .brand-image {
    width: 74px !important;
    height: 82px !important;
    flex-basis: 74px !important;
  }
}
@media (max-width: 260px) {
  .site-header {
    height: 68px;
  }
  .site-header.open nav {
    top: 68px;
  }
  .site-header .brand-image {
    width: 54px !important;
    height: 64px !important;
    flex-basis: 54px !important;
  }
  .site-header .brand-logo {
    transform: scale(1.1);
  }
}

/* Horizontal header lockup built from the supplied logo artwork. */
.site-header .header-brand {
  width: 202px !important;
  height: 92px !important;
  flex: 0 0 202px !important;
  display: flex !important;
  align-items: center;
  gap: 9px;
  overflow: visible !important;
}
.header-logo-symbol,
.header-logo-word {
  position: relative;
  display: block;
  overflow: hidden;
  background: transparent;
}
.header-logo-symbol {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  border-radius: 6px;
}
.header-logo-symbol img {
  position: absolute;
  width: 91px;
  height: auto;
  max-width: none;
  left: -9px;
  top: -4px;
}
.header-logo-word {
  width: 121px;
  height: auto;
  flex: 0 0 121px;
  overflow: visible;
  color: #fff;
  line-height: 1;
}
.header-logo-word > span {
  display: block;
  white-space: nowrap;
  font-size: 27px;
  font-weight: 400;
  letter-spacing: -1px;
}
.header-logo-word b {
  font-weight: 600;
  background: linear-gradient(135deg, #0fe4dc, #206cff 48%, #cc27ec);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.header-logo-word small {
  display: block;
  margin-top: 7px;
  color: #d8dedc;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0;
  white-space: nowrap;
}
@media (max-width: 760px) {
  .site-header .header-brand {
    width: 190px !important;
    height: 78px !important;
    flex-basis: 190px !important;
    gap: 7px;
  }
  .header-logo-symbol {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
  }
  .header-logo-symbol img {
    width: 73px;
    left: -7px;
    top: -3px;
  }
  .header-logo-word {
    width: 125px;
    flex-basis: 125px;
  }
  .header-logo-word > span {
    font-size: 22px;
  }
  .header-logo-word small {
    font-size: 12px;
    letter-spacing: 0;
    margin-top: 5px;
  }
}
@media (max-width: 260px) {
  .site-header .header-brand {
    width: 105px !important;
    height: 62px !important;
    flex-basis: 105px !important;
    gap: 4px;
  }
  .header-logo-symbol {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }
  .header-logo-symbol img {
    width: 53px;
    left: -5px;
    top: -2px;
  }
  .header-logo-word {
    width: 59px;
    flex-basis: 59px;
  }
  .header-logo-word > span {
    font-size: 15px;
    letter-spacing: -0.5px;
  }
  .header-logo-word small {
    font-size: 12px;
    letter-spacing: 0;
    margin-top: 3px;
  }
}

footer .footer-brand {
  width: 202px !important;
  height: 92px !important;
  flex: 0 0 202px !important;
  display: flex !important;
  align-items: center;
  gap: 9px;
  overflow: visible !important;
}
@media (max-width: 760px) {
  footer .footer-brand {
    width: 190px !important;
    height: 78px !important;
    flex-basis: 190px !important;
    gap: 7px;
  }
}
@media (max-width: 260px) {
  footer .footer-brand {
    width: 105px !important;
    height: 62px !important;
    flex-basis: 105px !important;
    gap: 4px;
  }
}

/* WCAG AA contrast for the numbered section label. */
.section-index {
  color: #899b94;
}

/* Accessibility preflight: visible form boundaries and an unobscured skip target. */
#main-content {
  scroll-margin-top: 104px;
}
.enquiry-panel input,
.enquiry-panel select,
.enquiry-panel textarea {
  border-color: rgba(83, 245, 162, 0.55);
}

.footer-ip-notice {
  width: min(calc(100% - 48px), 900px);
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
  text-align: center;
}
@media (max-width: 760px) {
  .footer-ip-notice {
    width: min(calc(100% - 32px), 900px);
    font-size: 12px;
  }
}
html {
  overflow-x: hidden;
}
