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

:root {
  --ink: #202124;
  --muted: #666d75;
  --line: #cfd5da;
  --panel: #f4f6f7;
  --soft: #fafafa;
  --accent: #345f78;
  --accent-light: #dfeaf0;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header,
.site-footer {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.site-footer {
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.bar,
.section-inner {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.bar {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: auto;
  height: 34px;
  max-width: 260px;
  object-fit: contain;
}

.custom-logo-link {
  display: flex;
  align-items: center;
}

.custom-logo {
  width: auto;
  height: 34px;
  max-width: 260px;
  object-fit: contain;
}

.logo-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 4px;
  font-size: 13px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 15px;
}

.nav ul,
.footer-links ul {
  display: contents;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav li,
.footer-links li {
  display: contents;
}

.nav a {
  text-decoration: none;
}

.nav .mobile-nav-brand {
  display: none;
}

.nav a[aria-current="page"] {
  font-weight: 700;
  color: var(--accent);
}

.section {
  border-bottom: 1px solid var(--line);
  padding: 64px 0;
}

.section.is-soft {
  background: var(--soft);
}

.section.is-panel {
  background: var(--panel);
}

.hero {
  padding: 80px 0 64px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 44px;
  align-items: center;
}

.stack {
  display: grid;
  gap: 20px;
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-family: "Orbitron", Arial, Helvetica, sans-serif;
  font-weight: 400;
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.25;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 22px;
}

.copy {
  max-width: 760px;
  color: var(--muted);
}

.button {
  position: relative;
  display: inline-flex;
  overflow: hidden;
  width: fit-content;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 2px solid var(--ink);
  border-radius: 4px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  isolation: isolate;
  transform: translateY(0);
  transition:
    transform .32s ease,
    border-color .32s ease,
    box-shadow .32s ease,
    filter .32s ease;
}

.button::before {
  position: absolute;
  inset: -1px;
  z-index: 0;
  border-radius: inherit;
  background:
    linear-gradient(120deg, transparent 0 28%, rgba(255, 255, 255, .42) 42%, transparent 58% 100%);
  content: "";
  opacity: 0;
  transform: translateX(-62%) skewX(-16deg);
  transition: opacity .14s ease;
}

.button:hover,
.button:focus-visible {
  animation: button-hover-breathe 2.2s ease-in-out infinite alternate;
  border-color: rgba(255, 255, 255, .34);
  box-shadow:
    0 22px 54px rgba(75, 53, 255, .42),
    0 0 0 1px rgba(255, 255, 255, .08) inset,
    0 0 34px rgba(0, 255, 224, .12);
  filter: saturate(1.08) brightness(1.04);
  transform: translateY(-2px);
}

.button:hover::before,
.button:focus-visible::before {
  animation: button-sheen-drift 1.2s linear infinite alternate;
  opacity: .42;
}

.button:focus-visible {
  outline: 2px solid rgba(0, 255, 224, .72);
  outline-offset: 4px;
}

.button:active {
  animation: none;
  transform: translateY(0);
}

@keyframes button-hover-breathe {
  0% {
    box-shadow:
      0 20px 48px rgba(75, 53, 255, .36),
      0 0 0 1px rgba(255, 255, 255, .07) inset,
      0 0 24px rgba(0, 255, 224, .09);
  }

  100% {
    box-shadow:
      0 26px 62px rgba(75, 53, 255, .5),
      0 0 0 1px rgba(255, 255, 255, .1) inset,
      0 0 42px rgba(0, 255, 224, .16);
  }
}

@keyframes button-sheen-drift {
  0% {
    opacity: .18;
    transform: translateX(-64%) skewX(-16deg);
  }

  12%,
  88% {
    opacity: .46;
  }

  100% {
    opacity: .2;
    transform: translateX(124%) skewX(-16deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .button,
  .button::before {
    animation: none;
    transition: none;
  }

  .button:hover,
  .button:focus-visible,
  .button:active {
    transform: none;
  }

  .button:hover::before,
  .button:focus-visible::before {
    opacity: 0;
  }
}

.button.secondary {
  background: transparent;
  color: var(--ink);
}

.placeholder {
  display: grid;
  min-height: 280px;
  place-items: center;
  border: 2px dashed #9aa4aa;
  border-radius: 6px;
  background:
    linear-gradient(135deg, transparent 49%, #d7dde1 50%, transparent 51%),
    linear-gradient(45deg, transparent 49%, #d7dde1 50%, transparent 51%),
    #f9fafb;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.stat,
.field {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.card {
  padding: 24px;
}

.stat {
  padding: 22px;
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 36px;
}

.stat span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.feature-list,
.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.feature-list li,
.check-list li {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--accent);
  border-radius: 4px;
  background: #fff;
  font-weight: 700;
}

.cta {
  display: grid;
  gap: 18px;
  align-items: center;
  justify-items: start;
}

.form-grid,
.form-placeholder {
  display: grid;
  gap: 16px;
  max-width: 760px;
}

.form-placeholder {
  min-height: 420px;
  align-content: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.form-token {
  display: grid;
  min-height: 260px;
  place-items: center;
  border: 2px dashed #9aa4aa;
  border-radius: 6px;
  background: var(--soft);
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
}

.field {
  display: grid;
  gap: 8px;
  padding: 14px 16px;
}

.field label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.field .input {
  min-height: 32px;
  border-bottom: 1px solid var(--line);
}

.field.message .input {
  min-height: 120px;
}

.legal {
  max-width: 860px;
}

.legal h2 {
  margin-top: 36px;
  font-size: 24px;
}

.site-footer .bar {
  align-items: flex-start;
  padding: 28px 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.note {
  margin-top: 18px;
  padding: 14px 16px;
  border-left: 4px solid var(--accent);
  background: var(--accent-light);
  color: #233642;
  font-size: 14px;
}

@media (max-width: 820px) {
  .bar,
  .split,
  .site-footer .bar {
    display: grid;
  }

  .grid.two,
  .grid.three,
  .grid.four {
    grid-template-columns: 1fr;
  }

  .section,
  .hero {
    padding: 44px 0;
  }
}

/* Concept A home page: current-site mood, rebuilt with cleaner structure. */
.home-page {
  --home-bg: #030407;
  --home-panel: #090b11;
  --home-panel-soft: #10131b;
  --home-text: #f6f7fb;
  --home-muted: #b5bbc8;
  --home-faint: rgba(255, 255, 255, .12);
  --home-magenta: #ff2f7d;
  --home-violet: #4b35ff;
  --home-blue: #2c6cff;
  --home-cyan: #00FFE0;
  color: var(--home-text);
  background:
    radial-gradient(circle at 72% 20%, rgba(44, 108, 255, .18), transparent 34rem),
    radial-gradient(circle at 34% 76%, rgba(255, 47, 125, .12), transparent 30rem),
    var(--home-bg);
  font-family: Inter, Arial, Helvetica, sans-serif;
}

.home-page .site-header,
.home-page .site-footer {
  position: relative;
  z-index: 5;
  border-color: transparent;
  background: transparent;
}

.home-page .site-header {
  position: absolute;
  inset: 0 0 auto;
}

.home-page .bar {
  width: min(100% - 64px, 1280px);
  min-height: 100px;
}

.home-page .brand {
  color: #fff;
  width: fit-content;
}

.home-page .brand-logo {
  height: 31px;
  max-width: 295px;
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, .1));
}

.home-page .custom-logo {
  height: 31px;
  max-width: 295px;
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, .1));
}

.home-page .nav {
  align-items: center;
  gap: 0;
  min-height: 50px;
  padding: 3px;
  border: 1px solid rgba(255, 47, 125, .82);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .015)),
    rgba(3, 4, 7, .38);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .035) inset,
    0 12px 34px rgba(0, 0, 0, .22),
    0 0 22px rgba(255, 47, 125, .08);
  backdrop-filter: blur(18px);
}

.home-page .nav a {
  position: relative;
  min-width: 104px;
  padding: 12px 18px;
  border-radius: 14px;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.home-page .nav a[aria-current="page"] {
  color: var(--home-magenta);
  font-weight: 600;
}

.home-page .nav a[aria-current="page"]::after {
  position: absolute;
  right: 36px;
  bottom: 7px;
  left: 36px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--home-magenta), transparent);
  box-shadow: 0 0 8px rgba(255, 47, 125, .38);
  content: "";
}

.home-page .hero {
  position: relative;
  overflow: hidden;
  min-height: max(760px, 100svh);
  padding: clamp(118px, 16svh, 146px) 0 clamp(54px, 8svh, 88px);
  border-bottom: 1px solid rgba(255, 47, 125, .25);
  background: #030407;
}

.home-page .hero::before {
  content: none;
}

.home-page .hero::after {
  content: none;
}

.home-page .home-hero-video,
.home-page .home-hero-video-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home-page .home-hero-video {
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-page .home-hero-video-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 4, 7, .92), rgba(3, 4, 7, .76) 42%, rgba(3, 4, 7, .56)),
    linear-gradient(180deg, rgba(3, 4, 7, .12), rgba(3, 4, 7, .46)),
    rgba(0, 0, 0, .42);
}

.home-page .hero-grid,
.home-page .section-inner {
  position: relative;
  z-index: 2;
}

.home-page .hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, .78fr);
  gap: 70px;
  align-items: center;
  min-height: calc(100svh - clamp(172px, 24svh, 234px));
  width: min(100% - 64px, 1280px);
}

.home-page .stack {
  gap: 20px;
}

.home-page .eyebrow {
  color: var(--home-magenta);
  font-size: 13px;
  letter-spacing: .12em;
}

.home-page h1 {
  max-width: 760px;
  margin-bottom: 0;
  color: #fff;
  font-size: 68px;
  font-weight: 400;
  line-height: .98;
}

.home-page h1 span,
.home-page h2 span {
  color: var(--home-magenta);
}

.home-page h2 {
  max-width: 820px;
  color: #fff;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.06;
}

.home-page h3 {
  color: #fff;
  font-size: 23px;
  font-weight: 500;
}

.home-page .lead,
.home-page .copy {
  color: var(--home-muted);
}

.home-page .lead {
  max-width: 620px;
  font-size: 21px;
}

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

.home-page .hero-copy::after,
.home-page .section-heading::after {
  display: block;
  width: 82px;
  height: 4px;
  margin-top: 4px;
  border-radius: 999px;
  background: var(--home-magenta);
  content: "";
}

.home-page .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.home-page .button {
  min-height: 56px;
  padding: 0 26px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 10px;
  background: linear-gradient(135deg, var(--home-violet), #5838ff 48%, #3526c8);
  box-shadow: 0 18px 42px rgba(75, 53, 255, .32);
  color: #fff;
  font-weight: 600;
}

.home-page .button.secondary {
  background: rgba(255, 255, 255, .04);
  box-shadow: none;
  color: #fff;
}

.home-page .platform-preview {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .02)),
    #0a0d14;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .55);
}

.home-page .platform-preview::before {
  position: absolute;
  inset: 1px;
  border-radius: 17px;
  background:
    radial-gradient(circle at 75% 18%, rgba(255, 47, 125, .14), transparent 14rem),
    radial-gradient(circle at 30% 80%, rgba(75, 53, 255, .18), transparent 16rem);
  background-position: 0 0, 0 0;
  animation: ir-home-dashboard-glow 16s ease-in-out infinite alternate;
  content: "";
}

.home-page .preview-toolbar,
.home-page .preview-body {
  position: relative;
  z-index: 1;
}

.home-page .preview-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.home-page .preview-toolbar:not(:has(span))::before {
  flex: 0 0 auto;
  width: 46px;
  height: 10px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 5px 50%, var(--home-magenta) 0 5px, transparent 5.5px),
    radial-gradient(circle at 23px 50%, rgba(255, 255, 255, .34) 0 5px, transparent 5.5px),
    radial-gradient(circle at 41px 50%, rgba(255, 255, 255, .34) 0 5px, transparent 5.5px);
  content: "";
}

.home-page .preview-toolbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .34);
}

.home-page .preview-toolbar span:first-child {
  background: var(--home-magenta);
}

.home-page .preview-toolbar strong {
  margin-left: 10px;
  color: rgba(255, 255, 255, .76);
  font-size: 13px;
}

.home-page .preview-body {
  display: grid;
  grid-template-columns: 94px 1fr;
  min-height: 360px;
}

.home-page .preview-body aside {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 28px 18px;
  border-right: 1px solid rgba(255, 255, 255, .08);
  background: rgba(0, 0, 0, .18);
}

.home-page .preview-body aside:not(:has(span))::before {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--home-magenta), var(--home-violet));
  box-shadow:
    0 26px 0 rgba(255, 255, 255, .15),
    0 52px 0 rgba(255, 255, 255, .15),
    0 78px 0 rgba(255, 255, 255, .15),
    0 104px 0 rgba(255, 255, 255, .15);
  content: "";
}

.home-page .preview-body aside span {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .15);
}

.home-page .preview-body aside .is-active {
  background: linear-gradient(90deg, var(--home-magenta), var(--home-violet));
}

.home-page .preview-main {
  display: grid;
  gap: 22px;
  padding: 28px;
}

.home-page .preview-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.home-page .preview-metrics div {
  min-height: 88px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 10px;
  background: rgba(255, 255, 255, .045);
}

.home-page .preview-metrics b,
.home-page .preview-metrics small {
  display: block;
}

.home-page .preview-metrics b {
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 500;
}

.home-page .preview-metrics small {
  color: var(--home-muted);
}

.home-page .implant-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: center;
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 12px;
  background: rgba(0, 0, 0, .2);
}

.home-page .tooth-arch {
  position: relative;
  width: 142px;
  height: 142px;
  margin: 0 auto;
}

.home-page .tooth-arch::before,
.home-page .tooth-arch::after {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  content: "";
}

.home-page .tooth-arch::before {
  top: 97px;
  left: 9px;
  background: rgba(255, 255, 255, .78);
  box-shadow:
    -8px -21px 0 rgba(255, 255, 255, .78),
    -8px -44px 0 rgba(255, 255, 255, .78),
    0 -65px 0 rgba(255, 255, 255, .78),
    14px -82px 0 rgba(255, 255, 255, .78),
    33px -93px 0 rgba(255, 255, 255, .78),
    55px -97px 0 rgba(255, 255, 255, .78),
    78px -93px 0 rgba(255, 255, 255, .78),
    97px -82px 0 rgba(255, 255, 255, .78);
}

.home-page .tooth-arch::after {
  top: 32px;
  left: 120px;
  background: #00FFE0;
  box-shadow:
    8px 21px 0 #00FFE0,
    8px 44px 0 #00FFE0,
    0 65px 0 #00FFE0,
    -14px 82px 0 #00FFE0;
}

.home-page .status-ring {
  width: 142px;
  height: 142px;
  margin: 0 auto;
  border: 20px solid rgba(255, 255, 255, .08);
  border-top-color: var(--home-violet);
  border-right-color: var(--home-blue);
  border-radius: 50%;
}

.home-page .stat {
  overflow: hidden;
  min-height: 172px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 12px;
  background: rgba(7, 9, 14, .82);
  text-align: left;
}

.home-page .stat strong {
  padding: 26px 28px 20px;
  background: linear-gradient(135deg, #6138ff, #351fff);
  color: #fff;
  font-size: 54px;
  font-weight: 300;
  line-height: 1;
}

.home-page .stat span {
  display: block;
  padding: 20px 28px 24px;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  letter-spacing: .04em;
}

.home-page .section {
  border-color: rgba(255, 255, 255, .08);
  padding: 104px 0;
  background: #05060a;
}

.home-page .intro-section {
  background:
    radial-gradient(circle at 82% 28%, rgba(75, 53, 255, .13), transparent 28rem),
    #05060a;
}

.home-page .split {
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1fr);
  gap: 70px;
}

.home-page .section-art {
  position: relative;
  display: grid;
  align-items: center;
  justify-items: center;
  min-height: 420px;
  margin: 0;
}

.home-page .section-art::before {
  position: absolute;
  inset: 10% 4%;
  z-index: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(31, 219, 255, .14), transparent 62%),
    radial-gradient(circle at 72% 42%, rgba(255, 47, 125, .11), transparent 48%);
  filter: blur(28px);
  content: "";
}

.home-page .section-art img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 680px);
  height: auto;
  filter:
    drop-shadow(0 34px 72px rgba(0, 0, 0, .42))
    drop-shadow(0 0 26px rgba(31, 219, 255, .2));
}

.home-page .section-art-clinical img {
  width: min(100%, 640px);
}

.home-page .image-panel {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  background:
    linear-gradient(140deg, rgba(255, 47, 125, .15), transparent 36%),
    repeating-linear-gradient(135deg, transparent 0 44px, rgba(255, 255, 255, .06) 45px, transparent 46px),
    linear-gradient(135deg, #0f141c, #020306);
  box-shadow: inset 0 0 80px rgba(0, 0, 0, .55);
}

.home-page .image-panel::before,
.home-page .image-panel::after {
  position: absolute;
  content: "";
}

.home-page .image-panel::before {
  inset: 20%;
  border: 1px solid rgba(110, 160, 255, .25);
  border-radius: 50%;
  filter: blur(1px);
}

.home-page .image-panel::after {
  right: 12%;
  bottom: -18%;
  width: 260px;
  height: 360px;
  border-radius: 45% 45% 0 0;
  background: radial-gradient(ellipse, rgba(255, 255, 255, .24), transparent 62%);
  opacity: .42;
}

.home-page .image-panel span {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  color: rgba(255, 255, 255, .82);
  font-size: 15px;
  font-weight: 600;
}

.home-page .services-section {
  background:
    linear-gradient(180deg, #05060a, #090b11);
}

.home-page .section-heading {
  display: grid;
  gap: 18px;
  max-width: 840px;
  margin-bottom: 38px;
}

.home-page .feature-list {
  gap: 18px;
}

.home-page .feature-list li,
.home-page .check-list li {
  position: relative;
  display: grid;
  align-content: space-between;
  gap: 24px;
  min-height: 150px;
  padding: 24px 24px 26px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-left: 0;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02)),
    #090b11;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}

.home-page .service-icon {
  width: 58px;
  height: 58px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  background:
    radial-gradient(circle at 78% 24%, rgba(0, 255, 224, .12), transparent 2.4rem),
    rgba(255, 255, 255, .055);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .08),
    0 0 24px rgba(0, 255, 224, .08);
  box-sizing: border-box;
  margin-bottom: 4px;
  opacity: .96;
}

.home-page .feature-list li span {
  display: none;
}

.home-page .proof-section {
  background:
    radial-gradient(circle at 18% 50%, rgba(255, 47, 125, .09), transparent 24rem),
    #030407;
}

.home-page .proof-grid .card {
  display: grid;
  gap: 18px;
  align-content: start;
  min-height: 116px;
  border-color: rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .045);
  color: #fff;
}

.home-page .proof-icon {
  width: 50px;
  height: 50px;
  opacity: .96;
}

.home-page .final-cta {
  padding: 118px 0;
  background:
    linear-gradient(90deg, rgba(3, 4, 7, .95), rgba(3, 4, 7, .5)),
    radial-gradient(circle at 82% 42%, rgba(75, 53, 255, .22), transparent 22rem),
    #05060a;
}

.home-page .final-cta .cta {
  max-width: 900px;
}

.home-page .site-footer {
  background: #030407;
}

@keyframes ir-home-hero-light {
  0% {
    background-position: 0 0, center, center, center, center, 0 0;
  }

  100% {
    background-position: 0 0, 52% 48%, 47% 53%, center, 52% 50%, 0 0;
  }
}

@keyframes ir-home-particle-drift {
  0% {
    background-position: 0 0, 0 0, 0 0, -20% 0, 0 0;
    opacity: .42;
  }

  50% {
    opacity: .58;
  }

  100% {
    background-position: -2vw 1vh, 3vw -1vh, 1vw 2vh, 118% 0, 0 0;
    opacity: .48;
  }
}

@keyframes ir-home-orb-breathe {
  0% {
    opacity: .52;
    transform: translate3d(0, 0, 0) scale(1);
  }

  100% {
    opacity: .72;
    transform: translate3d(-2.4vw, -1.6rem, 0) scale(1.04);
  }
}

@keyframes ir-home-dashboard-glow {
  0% {
    background-position: 0 0, 0 0;
    opacity: .84;
  }

  100% {
    background-position: -24px 16px, 32px -18px;
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .hero,
  .home-page .hero::before,
  .home-page .hero::after,
  .home-page .platform-preview,
  .home-page .platform-preview::before {
    animation: none;
  }

  .home-page .home-hero-video,
  .ir-hero-video {
    display: none;
  }
}

.home-page .site-footer .bar {
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.home-page .footer-links {
  color: var(--home-muted);
}

@media (max-width: 980px) {
  .home-page .bar,
  .home-page .hero-grid,
  .home-page .section-inner {
    width: min(100% - 36px, 1280px);
  }

  .home-page .bar,
  .home-page .hero-grid,
  .home-page .split,
  .home-page .site-footer .bar {
    display: grid;
  }

  .home-page .site-header {
    position: relative;
    background: #030407;
  }

  .home-page .bar {
    padding: 18px 0;
  }

  .home-page .nav {
    justify-content: space-between;
    overflow-x: auto;
    width: 100%;
  }

  .home-page .nav a {
    min-width: auto;
    padding: 12px 15px;
  }

  .home-page .hero {
    min-height: 100svh;
    padding: clamp(48px, 8svh, 72px) 0 clamp(46px, 7svh, 64px);
  }

  .home-page h1 {
    font-size: 52px;
  }

  .home-page h2 {
    font-size: 38px;
  }

  .home-page .hero-grid,
  .home-page .split {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .home-page .section-art {
    min-height: auto;
  }

  .home-page .section-art img {
    width: min(100%, 560px);
  }

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

  .home-page .platform-preview {
    animation: none;
    transform: none;
  }

  .home-page .grid.three {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .home-page .brand {
    max-width: 220px;
  }

  .home-page .brand-logo {
    height: 26px;
    max-width: 220px;
  }

  .home-page .nav {
    border-radius: 24px;
  }

  .home-page h1 {
    font-size: 42px;
  }

  .home-page h2 {
    font-size: 32px;
  }

  .home-page .lead {
    font-size: 19px;
  }

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

  .home-page .preview-body {
    grid-template-columns: 1fr;
  }

  .home-page .preview-body aside {
    display: none;
  }

  .home-page .section-art img {
    width: min(100%, 420px);
  }

  .home-page .preview-metrics,
  .home-page .implant-visual,
  .home-page .grid.two,
  .home-page .grid.three {
    grid-template-columns: 1fr;
  }

  .home-page .stat strong {
    font-size: 44px;
  }
}

/* About page: same Concept A visual system, tuned for credibility and mission. */
.about-page {
  --home-bg: #030407;
  --home-panel: #090b11;
  --home-panel-soft: #10131b;
  --home-text: #f6f7fb;
  --home-muted: #b5bbc8;
  --home-faint: rgba(255, 255, 255, .12);
  --home-magenta: #ff2f7d;
  --home-violet: #4b35ff;
  --home-blue: #2c6cff;
  --home-cyan: #00FFE0;
  color: var(--home-text);
  background:
    radial-gradient(circle at 74% 18%, rgba(44, 108, 255, .16), transparent 34rem),
    radial-gradient(circle at 24% 72%, rgba(255, 47, 125, .11), transparent 28rem),
    var(--home-bg);
  font-family: Inter, Arial, Helvetica, sans-serif;
}

.about-page .site-header,
.about-page .site-footer {
  position: relative;
  z-index: 5;
  border-color: transparent;
  background: transparent;
}

.about-page .site-header {
  position: absolute;
  inset: 0 0 auto;
}

.about-page .bar {
  width: min(100% - 64px, 1280px);
  min-height: 100px;
}

.about-page .brand {
  color: #fff;
  width: fit-content;
}

.about-page .brand-logo {
  height: 31px;
  max-width: 295px;
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, .1));
}

.about-page .nav {
  align-items: center;
  gap: 0;
  min-height: 50px;
  padding: 3px;
  border: 1px solid rgba(255, 47, 125, .82);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .015)),
    rgba(3, 4, 7, .38);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .035) inset,
    0 12px 34px rgba(0, 0, 0, .22),
    0 0 22px rgba(255, 47, 125, .08);
  backdrop-filter: blur(18px);
}

.about-page .nav a {
  position: relative;
  min-width: 104px;
  padding: 12px 18px;
  border-radius: 14px;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.about-page .nav a[aria-current="page"] {
  color: var(--home-magenta);
  font-weight: 600;
}

.about-page .nav a[aria-current="page"]::after {
  position: absolute;
  right: 36px;
  bottom: 7px;
  left: 36px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--home-magenta), transparent);
  box-shadow: 0 0 8px rgba(255, 47, 125, .38);
  content: "";
}

.about-page .hero {
  position: relative;
  overflow: hidden;
  min-height: max(720px, 100svh);
  padding: clamp(118px, 16svh, 146px) 0 clamp(54px, 8svh, 88px);
  border-bottom: 1px solid rgba(255, 47, 125, .22);
  background:
    linear-gradient(90deg, rgba(3, 4, 7, .98), rgba(3, 4, 7, .76) 48%, rgba(3, 4, 7, .62)),
    radial-gradient(circle at 76% 42%, rgba(118, 169, 255, .22), transparent 24rem),
    radial-gradient(circle at 66% 78%, rgba(255, 47, 125, .16), transparent 19rem),
    repeating-linear-gradient(130deg, transparent 0 80px, rgba(255, 255, 255, .045) 81px, transparent 82px),
    repeating-linear-gradient(30deg, transparent 0 92px, rgba(84, 129, 255, .04) 93px, transparent 94px),
    #030407;
}

.about-page .hero::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 38%, rgba(255, 255, 255, .75) 0 1px, transparent 2px),
    radial-gradient(circle at 70% 50%, rgba(255, 47, 125, .88) 0 1px, transparent 2px),
    radial-gradient(circle at 84% 30%, rgba(74, 102, 255, .9) 0 1px, transparent 2px),
    radial-gradient(circle at 64% 74%, rgba(255, 255, 255, .62) 0 1px, transparent 2px);
  background-size: 130px 100px, 170px 130px, 150px 110px, 190px 140px;
  opacity: .42;
  content: "";
  mask-image: linear-gradient(90deg, transparent, #000 32%, #000 92%);
}

.about-page .hero::after {
  position: absolute;
  right: -10vw;
  bottom: -12rem;
  width: 62vw;
  min-width: 620px;
  height: 54rem;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 48% 52% 0 0;
  background:
    radial-gradient(ellipse at 48% 30%, rgba(255, 255, 255, .16), transparent 22rem),
    radial-gradient(ellipse at 55% 62%, rgba(44, 108, 255, .16), transparent 26rem);
  opacity: .72;
  content: "";
}

.about-page .section-inner,
.about-page .about-hero-grid {
  position: relative;
  z-index: 2;
}

.about-page .about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, .78fr);
  gap: 74px;
  align-items: center;
  min-height: calc(100svh - clamp(172px, 24svh, 234px));
  width: min(100% - 64px, 1280px);
}

.about-page .stack {
  gap: 20px;
}

.about-page .eyebrow {
  color: var(--home-magenta);
  font-size: 13px;
  letter-spacing: .12em;
}

.about-page h1 {
  max-width: 820px;
  margin-bottom: 0;
  color: #fff;
  font-size: 66px;
  font-weight: 400;
  line-height: .98;
}

.about-page h1 span,
.about-page h2 span {
  color: var(--home-magenta);
}

.about-page h2 {
  max-width: 820px;
  color: #fff;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.06;
}

.about-page h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

.about-page .lead,
.about-page .copy {
  color: var(--home-muted);
}

.about-page .lead {
  max-width: 660px;
  font-size: 21px;
}

.about-page .copy {
  font-size: 18px;
}

.about-page .hero-copy::after,
.about-page .section-heading::after {
  display: block;
  width: 82px;
  height: 4px;
  margin-top: 4px;
  border-radius: 999px;
  background: var(--home-magenta);
  content: "";
}

.about-page .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.about-page .button {
  min-height: 56px;
  padding: 0 26px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 10px;
  background: linear-gradient(135deg, var(--home-violet), #5838ff 48%, #3526c8);
  box-shadow: 0 18px 42px rgba(75, 53, 255, .32);
  color: #fff;
  font-weight: 600;
}

.about-page .about-orbit {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: 78px 24px 24px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 16px;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 47, 125, .13), transparent 13rem),
    radial-gradient(circle at 28% 86%, rgba(75, 53, 255, .2), transparent 18rem),
    radial-gradient(circle at 92% 78%, rgba(0, 255, 224, .09), transparent 13rem),
    linear-gradient(145deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .02)),
    #0a0d14;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .55);
}

.about-page .about-orbit::before,
.about-page .about-orbit::after {
  position: absolute;
  content: "";
}

.about-page .about-orbit::before {
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: 54px;
  padding-left: 78px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background:
    radial-gradient(circle at 30px 50%, var(--home-magenta) 0 5px, transparent 6px),
    radial-gradient(circle at 48px 50%, rgba(255, 255, 255, .3) 0 5px, transparent 6px),
    radial-gradient(circle at 66px 50%, rgba(255, 255, 255, .2) 0 5px, transparent 6px),
    rgba(255, 255, 255, .035);
  color: rgba(255, 255, 255, .82);
  content: "Registry Dashboard";
  font-size: 13px;
  font-weight: 800;
  line-height: 54px;
}

.about-page .about-orbit::after {
  inset: 54px 0 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, .028) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(135deg, transparent, #000 18%, #000 72%, transparent);
  opacity: .42;
}

.about-page .orbit-core {
  position: absolute;
  z-index: 2;
  top: 84px;
  bottom: 24px;
  left: 24px;
  display: grid;
  width: calc(48% - 28px);
  min-height: 282px;
  place-items: end center;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  background:
    radial-gradient(circle at 52% 40%, rgba(0, 255, 224, .13), transparent 9rem),
    rgba(255, 255, 255, .04);
  color: rgba(255, 255, 255, .86);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.about-page .orbit-core::before {
  position: absolute;
  top: 44px;
  left: 50%;
  width: 150px;
  height: 150px;
  border: 18px solid rgba(255, 255, 255, .08);
  border-top-color: var(--home-violet);
  border-right-color: var(--home-blue);
  border-radius: 50%;
  box-shadow: 0 0 58px rgba(75, 53, 255, .22);
  content: "";
  transform: translateX(-50%);
}

.about-page .orbit-core::after {
  position: absolute;
  right: 26px;
  bottom: 54px;
  left: 26px;
  height: 58px;
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(0, 255, 224, .9) 0 18%, transparent 18% 23%, rgba(75, 53, 255, .95) 23% 54%, transparent 54% 60%, rgba(44, 108, 255, .95) 60% 100%);
  opacity: .52;
  mask-image: linear-gradient(180deg, transparent 0 9px, #000 9px 17px, transparent 17px 27px, #000 27px 36px, transparent 36px 46px, #000 46px 56px, transparent 56px);
  content: "";
}

.about-page .orbit-card {
  position: absolute;
  z-index: 3;
  right: 24px;
  width: calc(52% - 32px);
  min-height: 92px;
  padding: 18px 58px 18px 42px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 12px;
  background:
    radial-gradient(circle at 20% 28%, var(--about-card-glow), transparent 5rem),
    linear-gradient(90deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .025)),
    rgba(9, 11, 17, .72);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .28);
  backdrop-filter: blur(12px);
}

.about-page .orbit-card::before,
.about-page .orbit-card::after {
  position: absolute;
  content: "";
  transform: translateY(-50%);
}

.about-page .orbit-card::before {
  top: 30px;
  left: 18px;
  width: 11px;
  height: 11px;
  border: 2px solid var(--about-card-accent);
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  box-shadow: 0 0 18px var(--about-card-accent-glow);
}

.about-page .orbit-card::after {
  top: 50%;
  right: 16px;
  width: 34px;
  height: 32px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, var(--about-card-accent) 0 34%, transparent 34% 46%, rgba(255, 255, 255, .22) 46% 100%),
    linear-gradient(90deg, rgba(255, 255, 255, .16) 0 52%, transparent 52%),
    linear-gradient(90deg, rgba(255, 255, 255, .12) 0 72%, transparent 72%);
  background-position: 0 4px, 0 14px, 0 24px;
  background-repeat: no-repeat;
  background-size: 34px 5px, 34px 5px, 34px 5px;
  opacity: .78;
}

.about-page .orbit-card b,
.about-page .orbit-card span {
  display: block;
}

.about-page .orbit-card b {
  color: #fff;
  font-size: 17px;
}

.about-page .orbit-card span {
  margin-top: 4px;
  color: var(--home-muted);
  font-size: 13px;
}

.about-page .orbit-card-one {
  top: 84px;
  --about-card-accent: var(--home-cyan);
  --about-card-accent-glow: rgba(0, 255, 224, .32);
  --about-card-glow: rgba(0, 255, 224, .1);
}

.about-page .orbit-card-two {
  top: 192px;
  --about-card-accent: var(--home-violet);
  --about-card-accent-glow: rgba(75, 53, 255, .36);
  --about-card-glow: rgba(75, 53, 255, .12);
}

.about-page .orbit-card-three {
  top: 300px;
  --about-card-accent: var(--home-magenta);
  --about-card-accent-glow: rgba(255, 47, 125, .32);
  --about-card-glow: rgba(255, 47, 125, .1);
}

.about-page .section {
  border-color: rgba(255, 255, 255, .08);
  padding: 104px 0;
  background: #05060a;
}

.about-page .split {
  grid-template-columns: minmax(360px, 1fr) minmax(0, .95fr);
  gap: 70px;
}

.about-page .team-section {
  background:
    radial-gradient(circle at 82% 28%, rgba(75, 53, 255, .13), transparent 28rem),
    #05060a;
}

.about-page .section-art {
  position: relative;
  display: grid;
  align-items: center;
  justify-items: center;
  min-height: 420px;
  margin: 0;
}

.about-page .section-art::before {
  position: absolute;
  inset: 10% 4%;
  z-index: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(31, 219, 255, .14), transparent 62%),
    radial-gradient(circle at 72% 42%, rgba(255, 47, 125, .11), transparent 48%);
  filter: blur(28px);
  content: "";
}

.about-page .section-art img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 660px);
  height: auto;
  filter:
    drop-shadow(0 34px 72px rgba(0, 0, 0, .42))
    drop-shadow(0 0 26px rgba(31, 219, 255, .2));
}

.about-page .image-panel {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  background:
    linear-gradient(140deg, rgba(255, 47, 125, .15), transparent 36%),
    repeating-linear-gradient(135deg, transparent 0 44px, rgba(255, 255, 255, .06) 45px, transparent 46px),
    linear-gradient(135deg, #0f141c, #020306);
  box-shadow: inset 0 0 80px rgba(0, 0, 0, .55);
}

.about-page .image-panel::before,
.about-page .image-panel::after {
  position: absolute;
  content: "";
}

.about-page .image-panel::before {
  inset: 18%;
  border: 1px solid rgba(110, 160, 255, .25);
  border-radius: 50%;
  filter: blur(1px);
}

.about-page .image-panel::after {
  right: 10%;
  bottom: -18%;
  width: 280px;
  height: 380px;
  border-radius: 45% 45% 0 0;
  background: radial-gradient(ellipse, rgba(255, 255, 255, .24), transparent 62%);
  opacity: .42;
}

.about-page .image-panel span {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  color: rgba(255, 255, 255, .82);
  font-size: 15px;
  font-weight: 600;
}

.about-page .method-list {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.about-page .method-list div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 64px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  background: rgba(255, 255, 255, .045);
}

.about-page .method-list span {
  color: var(--home-magenta);
  font-size: 13px;
  font-weight: 700;
}

.about-page .method-list b {
  color: #fff;
  font-size: 17px;
  font-weight: 500;
}

.about-page .values-section {
  background:
    linear-gradient(180deg, #05060a, #090b11);
}

.about-page .section-heading {
  display: grid;
  gap: 18px;
  max-width: 840px;
  margin-bottom: 38px;
}

.about-page .value-grid {
  gap: 18px;
}

.about-page .value-grid .card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 260px;
  padding: 24px;
  border-color: rgba(255, 255, 255, .14);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02)),
    #090b11;
  color: #fff;
}

.about-page .value-grid .card::before {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  background-color: rgba(255, 255, 255, .055);
  background-image: var(--about-value-icon);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 34px 34px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .08),
    0 0 24px rgba(0, 255, 224, .08);
  content: "";
}

.about-page .value-grid .card:nth-child(1) {
  --about-value-icon: url("icons/icon-compliance.svg");
}

.about-page .value-grid .card:nth-child(2) {
  --about-value-icon: url("icons/icon-reporting.svg");
}

.about-page .value-grid .card:nth-child(3) {
  --about-value-icon: url("icons/icon-customisable.svg");
}

.about-page .value-grid .card:nth-child(4) {
  --about-value-icon: url("icons/icon-clinicians.svg");
}

.about-page .value-grid .card p {
  color: var(--home-muted);
  font-size: 15px;
}

.about-page .final-cta {
  padding: 118px 0;
  background:
    linear-gradient(90deg, rgba(3, 4, 7, .95), rgba(3, 4, 7, .5)),
    radial-gradient(circle at 82% 42%, rgba(75, 53, 255, .22), transparent 22rem),
    #05060a;
}

.about-page .final-cta .cta {
  max-width: 900px;
}

.about-page .site-footer {
  background: #030407;
}

.about-page .site-footer .bar {
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.about-page .footer-links {
  color: var(--home-muted);
}

@media (max-width: 980px) {
  .about-page .bar,
  .about-page .about-hero-grid,
  .about-page .section-inner {
    width: min(100% - 36px, 1280px);
  }

  .about-page .bar,
  .about-page .about-hero-grid,
  .about-page .split,
  .about-page .site-footer .bar {
    display: grid;
  }

  .about-page .site-header {
    position: relative;
    background: #030407;
  }

  .about-page .bar {
    padding: 18px 0;
  }

  .about-page .nav {
    justify-content: space-between;
    overflow-x: auto;
    width: 100%;
  }

  .about-page .nav a {
    min-width: auto;
    padding: 12px 15px;
  }

  .about-page .hero {
    min-height: 100svh;
    padding: clamp(48px, 8svh, 72px) 0 clamp(46px, 7svh, 64px);
  }

  .about-page h1 {
    font-size: 52px;
  }

  .about-page h2 {
    font-size: 38px;
  }

  .about-page .about-hero-grid,
  .about-page .split {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .about-page .section-art {
    min-height: auto;
  }

  .about-page .section-art img {
    width: min(100%, 560px);
  }

  .about-page .about-hero-grid {
    min-height: auto;
  }

  .about-page .grid.four {
    grid-template-columns: 1fr 1fr;
  }

  .about-page .about-orbit {
    min-height: 400px;
  }
}

@media (max-width: 620px) {
  .about-page .brand {
    max-width: 220px;
  }

  .about-page .brand-logo {
    height: 26px;
    max-width: 220px;
  }

  .about-page .nav {
    border-radius: 24px;
  }

  .about-page h1 {
    font-size: 42px;
  }

  .about-page h2 {
    font-size: 32px;
  }

  .about-page .lead {
    font-size: 19px;
  }

  .about-page .hero-actions,
  .about-page .button {
    width: 100%;
  }

  .about-page .grid.four {
    grid-template-columns: 1fr;
  }

  .about-page .section-art img {
    width: min(100%, 420px);
  }

  .about-page .about-orbit {
    display: grid;
    gap: 14px;
    min-height: auto;
    padding: 72px 18px 18px;
  }

  .about-page .orbit-core,
  .about-page .orbit-card {
    position: relative;
    inset: auto;
    width: auto;
  }

  .about-page .orbit-core {
    min-height: 240px;
    padding: 18px;
  }

  .about-page .orbit-core::before {
    width: 126px;
    height: 126px;
    border-width: 16px;
  }

  .about-page .orbit-core::after {
    right: 22px;
    bottom: 66px;
    left: 22px;
  }

  .about-page .orbit-card {
    min-height: 88px;
    padding: 16px 54px 16px 40px;
  }

  .about-page .orbit-card::before {
    left: 16px;
  }

  .about-page .orbit-card::after {
    right: 13px;
    width: 32px;
    background-size: 32px 5px, 32px 5px, 32px 5px;
  }
}

/* Projects page: DIR case study in the shared Concept A system. */
.project-page {
  --home-bg: #030407;
  --home-panel: #090b11;
  --home-panel-soft: #10131b;
  --home-text: #f6f7fb;
  --home-muted: #b5bbc8;
  --home-faint: rgba(255, 255, 255, .12);
  --home-magenta: #ff2f7d;
  --home-violet: #4b35ff;
  --home-blue: #2c6cff;
  --home-cyan: #00FFE0;
  color: var(--home-text);
  background:
    radial-gradient(circle at 72% 20%, rgba(44, 108, 255, .18), transparent 34rem),
    radial-gradient(circle at 34% 76%, rgba(255, 47, 125, .12), transparent 30rem),
    var(--home-bg);
  font-family: Inter, Arial, Helvetica, sans-serif;
}

.project-page .site-header,
.project-page .site-footer {
  position: relative;
  z-index: 5;
  border-color: transparent;
  background: transparent;
}

.project-page .site-header {
  position: absolute;
  inset: 0 0 auto;
}

.project-page .bar {
  width: min(100% - 64px, 1280px);
  min-height: 100px;
}

.project-page .brand {
  color: #fff;
  width: fit-content;
}

.project-page .brand-logo {
  height: 31px;
  max-width: 295px;
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, .1));
}

.project-page .nav {
  align-items: center;
  gap: 0;
  min-height: 50px;
  padding: 3px;
  border: 1px solid rgba(255, 47, 125, .82);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .015)),
    rgba(3, 4, 7, .38);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .035) inset,
    0 12px 34px rgba(0, 0, 0, .22),
    0 0 22px rgba(255, 47, 125, .08);
  backdrop-filter: blur(18px);
}

.project-page .nav a {
  position: relative;
  min-width: 104px;
  padding: 12px 18px;
  border-radius: 14px;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.project-page .nav a[aria-current="page"] {
  color: var(--home-magenta);
  font-weight: 600;
}

.project-page .nav a[aria-current="page"]::after {
  position: absolute;
  right: 36px;
  bottom: 7px;
  left: 36px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--home-magenta), transparent);
  box-shadow: 0 0 8px rgba(255, 47, 125, .38);
  content: "";
}

.project-page .hero {
  position: relative;
  overflow: hidden;
  min-height: max(760px, 100svh);
  padding: clamp(118px, 16svh, 146px) 0 clamp(54px, 8svh, 88px);
  border-bottom: 1px solid rgba(255, 47, 125, .24);
  background:
    linear-gradient(90deg, rgba(3, 4, 7, .98), rgba(3, 4, 7, .73) 42%, rgba(3, 4, 7, .58)),
    radial-gradient(circle at 78% 43%, rgba(118, 169, 255, .28), transparent 23rem),
    radial-gradient(circle at 68% 70%, rgba(255, 47, 125, .2), transparent 19rem),
    repeating-linear-gradient(130deg, transparent 0 80px, rgba(255, 255, 255, .045) 81px, transparent 82px),
    repeating-linear-gradient(30deg, transparent 0 92px, rgba(84, 129, 255, .04) 93px, transparent 94px),
    #030407;
}

.project-page .hero::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 58% 42%, rgba(255, 255, 255, .85) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 52%, rgba(255, 47, 125, .9) 0 1px, transparent 2px),
    radial-gradient(circle at 84% 32%, rgba(74, 102, 255, .9) 0 1px, transparent 2px),
    radial-gradient(circle at 66% 74%, rgba(255, 255, 255, .7) 0 1px, transparent 2px);
  background-size: 120px 90px, 170px 130px, 150px 110px, 190px 140px;
  opacity: .42;
  content: "";
  mask-image: linear-gradient(90deg, transparent, #000 34%, #000 92%);
}

.project-page .hero::after {
  position: absolute;
  right: -8vw;
  bottom: -10rem;
  width: 66vw;
  min-width: 620px;
  height: 58rem;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 48% 52% 0 0;
  background:
    radial-gradient(ellipse at 48% 30%, rgba(255, 255, 255, .18), transparent 22rem),
    radial-gradient(ellipse at 55% 62%, rgba(44, 108, 255, .16), transparent 26rem);
  opacity: .72;
  content: "";
}

.project-page .section-inner,
.project-page .project-hero-grid {
  position: relative;
  z-index: 2;
}

.project-page .project-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(460px, .92fr);
  gap: 70px;
  align-items: center;
  min-height: calc(100svh - clamp(172px, 24svh, 234px));
  width: min(100% - 64px, 1280px);
}

.project-page .stack {
  gap: 20px;
}

.project-page .eyebrow {
  color: var(--home-magenta);
  font-size: 13px;
  letter-spacing: .12em;
}

.project-page h1 {
  max-width: 760px;
  margin-bottom: 0;
  color: #fff;
  font-size: 68px;
  font-weight: 400;
  line-height: .98;
}

.project-page h1 span,
.project-page h2 span {
  color: var(--home-magenta);
}

.project-page h2 {
  max-width: 840px;
  color: #fff;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.06;
}

.project-page h3 {
  color: #fff;
  font-size: 23px;
  font-weight: 500;
}

.project-page .lead,
.project-page .copy {
  color: var(--home-muted);
}

.project-page .lead {
  max-width: 620px;
  font-size: 21px;
}

.project-page .copy {
  font-size: 18px;
}

.project-page .hero-copy::after {
  display: block;
  width: 82px;
  height: 4px;
  margin-top: 4px;
  border-radius: 999px;
  background: var(--home-magenta);
  content: "";
}

.project-page .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.project-page .button {
  min-height: 56px;
  padding: 0 26px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 10px;
  background: linear-gradient(135deg, var(--home-violet), #5838ff 48%, #3526c8);
  box-shadow: 0 18px 42px rgba(75, 53, 255, .32);
  color: #fff;
  font-weight: 600;
}

.project-page .case-preview {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .02)),
    #0a0d14;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .55);
}

.project-page .case-preview::before {
  position: absolute;
  inset: 1px;
  border-radius: 17px;
  background:
    radial-gradient(circle at 74% 20%, rgba(255, 47, 125, .14), transparent 14rem),
    radial-gradient(circle at 28% 82%, rgba(75, 53, 255, .18), transparent 16rem);
  content: "";
}

.project-page .preview-toolbar,
.project-page .case-preview-body {
  position: relative;
  z-index: 1;
}

.project-page .preview-toolbar {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.project-page .preview-toolbar::before {
  flex: 0 0 auto;
  width: 46px;
  height: 10px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 5px 50%, var(--home-magenta) 0 5px, transparent 5.5px),
    radial-gradient(circle at 23px 50%, rgba(255, 255, 255, .34) 0 5px, transparent 5.5px),
    radial-gradient(circle at 41px 50%, rgba(255, 255, 255, .34) 0 5px, transparent 5.5px);
  content: "";
}

.project-page .preview-toolbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .34);
}

.project-page .preview-toolbar span:first-child {
  background: var(--home-magenta);
}

.project-page .preview-toolbar strong {
  color: rgba(255, 255, 255, .76);
  font-size: 13px;
}

.project-page .case-preview-body {
  display: grid;
  grid-template-columns: 92px 1fr;
  min-height: 382px;
}

.project-page .case-screen-sidebar {
  position: relative;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 28px 18px;
  border-right: 1px solid rgba(255, 255, 255, .08);
  background: rgba(0, 0, 0, .18);
}

.project-page .case-screen-sidebar::before {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--home-magenta), var(--home-violet));
  box-shadow:
    0 26px 0 rgba(255, 255, 255, .15),
    0 52px 0 rgba(255, 255, 255, .15),
    0 78px 0 rgba(255, 255, 255, .15);
  content: "";
}

.project-page .case-screen-sidebar span {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .15);
}

.project-page .case-screen-sidebar .is-active {
  background: linear-gradient(90deg, var(--home-magenta), var(--home-violet));
}

.project-page .case-screen-main {
  display: grid;
  gap: 20px;
  padding: 28px;
}

.project-page .case-screen-header,
.project-page .case-chart-row,
.project-page .case-data-grid span {
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .045);
}

.project-page .case-screen-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  min-height: 78px;
  padding: 18px;
  border-radius: 12px;
  color: var(--home-cyan);
  font-size: 13px;
  font-weight: 700;
}

.project-page .case-screen-header b {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
}

.project-page .case-screen-header span {
  color: var(--home-cyan);
  font-size: 13px;
  font-weight: 700;
}

.project-page .case-data-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-content: start;
  gap: 12px;
  min-height: 120px;
}

.project-page .case-data-grid::before,
.project-page .case-data-grid::after {
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  background: rgba(255, 255, 255, .045);
  box-shadow:
    0 66px 0 0 rgba(255, 255, 255, .045),
    0 66px 0 1px rgba(255, 255, 255, .1);
  content: "";
}

.project-page .case-data-grid span {
  min-height: 54px;
  border-radius: 10px;
}

.project-page .case-chart-row {
  display: grid;
  grid-template-columns: 142px 1fr;
  gap: 24px;
  align-items: center;
  min-height: 148px;
  padding: 22px;
  border-radius: 12px;
}

.project-page .case-ring {
  width: 112px;
  height: 112px;
  border: 18px solid rgba(255, 255, 255, .08);
  border-top-color: var(--home-violet);
  border-right-color: var(--home-blue);
  border-bottom-color: var(--home-cyan);
  border-radius: 50%;
}

.project-page .case-bars {
  display: grid;
  gap: 13px;
}

.project-page .case-bars::before,
.project-page .case-bars::after {
  display: block;
  height: 14px;
  border-radius: 999px;
  content: "";
}

.project-page .case-bars::before {
  width: 88%;
  background: linear-gradient(90deg, var(--home-magenta), var(--home-violet));
}

.project-page .case-bars::after {
  width: 72%;
  background: rgba(255, 255, 255, .16);
  box-shadow: 0 27px 0 var(--home-cyan);
}

.project-page .case-bars span {
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
}

.project-page .case-bars span:first-child {
  width: 88%;
  background: linear-gradient(90deg, var(--home-magenta), var(--home-violet));
}

.project-page .case-bars span:nth-child(2) {
  width: 72%;
}

.project-page .case-bars span:nth-child(3) {
  width: 54%;
  background: var(--home-cyan);
}

.project-page .section {
  border-color: rgba(255, 255, 255, .08);
  padding: 104px 0;
  background: #05060a;
}

.project-page .metrics-section {
  padding: 74px 0;
  background:
    linear-gradient(180deg, #05060a, #090b11);
}

.project-page .project-stats {
  gap: 18px;
}

.project-page .stat {
  overflow: hidden;
  min-height: 172px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 12px;
  background: rgba(7, 9, 14, .82);
  text-align: left;
}

.project-page .stat strong {
  display: block;
  padding: 26px 28px 20px;
  background: linear-gradient(135deg, #6138ff, #351fff);
  color: #fff;
  font-size: 46px;
  font-weight: 300;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.project-page .stat span {
  display: block;
  padding: 20px 28px 24px;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.project-page .split {
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1fr);
  gap: 70px;
}

.project-page .solution-section .split {
  grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr);
}

.project-page .solution-layout {
  display: grid;
  gap: clamp(54px, 6vw, 78px);
}

.project-page .solution-top {
  align-items: center;
}

.project-page .solution-deliverables {
  display: grid;
  gap: 16px;
}

.project-page .solution-deliverables h3 {
  margin: 0;
  text-align: center;
}

.project-page .challenge-section,
.project-page .impact-section {
  background:
    radial-gradient(circle at 16% 44%, rgba(255, 47, 125, .08), transparent 24rem),
    #030407;
}

.project-page .solution-section,
.project-page .next-section {
  background:
    radial-gradient(circle at 82% 28%, rgba(75, 53, 255, .13), transparent 28rem),
    #05060a;
}

.project-page .section-art {
  position: relative;
  display: grid;
  align-items: center;
  justify-items: center;
  min-height: 420px;
  margin: 0;
}

.project-page .section-art::before {
  position: absolute;
  inset: 10% 4%;
  z-index: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(31, 219, 255, .12), transparent 62%),
    radial-gradient(circle at 68% 46%, rgba(255, 47, 125, .12), transparent 48%);
  filter: blur(28px);
  content: "";
}

.project-page .section-art img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 660px);
  height: auto;
  filter:
    drop-shadow(0 34px 72px rgba(0, 0, 0, .42))
    drop-shadow(0 0 26px rgba(31, 219, 255, .18));
}

.project-page .section-art-registry-workflow img {
  width: min(100%, 680px);
}

.project-page .solution-brand-stack {
  display: grid;
  align-content: center;
  gap: 20px;
}

.project-page .solution-brand-stack .section-art {
  min-height: 300px;
}

.project-page .dual-brand-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  width: min(100%, 560px);
  margin: 0 auto;
}

.project-page .dual-brand-strip:not(:has(.dual-brand-flow))::before {
  flex: 0 0 52px;
  order: 2;
  color: rgba(0, 255, 224, .88);
  content: "\2192";
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  text-align: center;
  text-shadow: 0 0 14px rgba(0, 255, 224, .36);
}

.project-page .dual-brand-logo {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  filter:
    drop-shadow(0 18px 34px rgba(0, 0, 0, .38))
    drop-shadow(0 0 16px rgba(31, 219, 255, .14));
}

.project-page .dual-brand-logo-ir-dental {
  order: 1;
  flex: 0 1 auto;
  width: 235px;
  max-height: 46px;
}

.project-page .dual-brand-logo-dir {
  order: 3;
  flex: 0 1 auto;
  width: 172px;
  max-height: 82px;
}

.project-page .dual-brand-flow {
  position: relative;
  display: block;
  order: 2;
  flex: 0 0 52px;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 255, 224, .12), rgba(0, 255, 224, .82));
  box-shadow: 0 0 14px rgba(0, 255, 224, .28);
}

.project-page .dual-brand-flow::after {
  position: absolute;
  top: 50%;
  right: -2px;
  width: 8px;
  height: 8px;
  border-top: 1px solid rgba(0, 255, 224, .88);
  border-right: 1px solid rgba(0, 255, 224, .88);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.project-page .image-panel {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  background:
    linear-gradient(140deg, rgba(255, 47, 125, .15), transparent 36%),
    repeating-linear-gradient(135deg, transparent 0 44px, rgba(255, 255, 255, .06) 45px, transparent 46px),
    linear-gradient(135deg, #0f141c, #020306);
  box-shadow: inset 0 0 80px rgba(0, 0, 0, .55);
}

.project-page .image-panel::before,
.project-page .image-panel::after {
  position: absolute;
  content: "";
}

.project-page .image-panel::before {
  inset: 20%;
  border: 1px solid rgba(110, 160, 255, .25);
  border-radius: 50%;
  filter: blur(1px);
}

.project-page .image-panel::after {
  right: 12%;
  bottom: -18%;
  width: 260px;
  height: 360px;
  border-radius: 45% 45% 0 0;
  background: radial-gradient(ellipse, rgba(255, 255, 255, .24), transparent 62%);
  opacity: .42;
}

.project-page .workflow-panel::after {
  background: radial-gradient(ellipse, rgba(0, 255, 224, .22), transparent 62%);
}

.project-page .image-panel span {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  color: rgba(255, 255, 255, .82);
  font-size: 15px;
  font-weight: 600;
}

.project-page .deliverable-list {
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.project-page .deliverable-list li {
  position: relative;
  min-height: 138px;
  padding: 76px 20px 20px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 47, 125, .09), transparent 8rem),
    linear-gradient(145deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .025)),
    rgba(255, 255, 255, .035);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  box-shadow: 0 22px 50px rgba(0, 0, 0, .22);
}

.project-page .deliverable-list li::before,
.project-page .deliverable-list li::after {
  content: "";
}

.project-page .deliverable-list li::before {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  background-color: rgba(255, 255, 255, .055);
  background-image: var(--deliverable-icon);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 28px 28px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.project-page .deliverable-list li::after {
  position: absolute;
  top: 22px;
  right: 20px;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(0, 255, 224, .36);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(0, 255, 224, .2), rgba(0, 255, 224, .06)),
    rgba(0, 255, 224, .08);
  box-shadow: 0 0 18px rgba(0, 255, 224, .18);
  color: #00FFE0;
  line-height: 22px;
  text-align: center;
}

.project-page .deliverable-list li::after {
  content: "✓";
  font-size: 15px;
  font-weight: 800;
}

.project-page .deliverable-list li:nth-child(1) {
  --deliverable-icon: url("icons/icon-portals.svg");
}

.project-page .deliverable-list li:nth-child(2) {
  --deliverable-icon: url("icons/icon-reporting.svg");
}

.project-page .deliverable-list li:nth-child(3) {
  --deliverable-icon: url("icons/icon-customisable.svg");
}

.project-page .deliverable-list li:nth-child(4) {
  --deliverable-icon: url("icons/icon-compliance.svg");
}

.project-page .deliverable-list li:nth-child(5) {
  --deliverable-icon: url("icons/icon-cloud-storage.svg");
}

.project-page .deliverable-list li:nth-child(6) {
  --deliverable-icon: url("icons/icon-regulatory-standards.svg");
}

.project-page .deliverable-icon {
  width: 42px;
  height: 42px;
}

.project-page .impact-layout {
  display: grid;
  gap: 34px;
}

.project-page .impact-top {
  align-items: center;
}

.project-page .impact-results {
  display: grid;
  align-content: start;
  gap: 18px;
}

.project-page .impact-results h3 {
  margin: 0;
}

.project-page .result-list {
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.project-page .result-list li {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 150px;
  padding: 56px 18px 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  background:
    radial-gradient(circle at 18% 16%, rgba(0, 255, 224, .08), transparent 7rem),
    linear-gradient(145deg, rgba(255, 255, 255, .065), rgba(255, 255, 255, .026)),
    rgba(255, 255, 255, .04);
  color: #fff;
  font-weight: 600;
  line-height: 1.35;
  box-shadow: 0 20px 46px rgba(0, 0, 0, .2);
}

.project-page .result-list li::before {
  position: absolute;
  top: 20px;
  left: 18px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(0, 255, 224, .22), rgba(0, 255, 224, .07)),
    rgba(0, 255, 224, .08);
  box-shadow: 0 0 18px rgba(0, 255, 224, .18);
  color: var(--home-cyan);
  content: "✓";
  font-size: 14px;
  font-weight: 800;
}

.project-page .impact-panel {
  display: grid;
  gap: 16px;
  align-self: stretch;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  background:
    radial-gradient(circle at 72% 20%, rgba(255, 47, 125, .12), transparent 12rem),
    radial-gradient(circle at 26% 78%, rgba(75, 53, 255, .16), transparent 16rem),
    #090b11;
}

.project-page .impact-panel div {
  position: relative;
  min-height: 112px;
  padding: 20px 104px 20px 20px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  background:
    radial-gradient(circle at 88% 26%, rgba(0, 255, 224, .09), transparent 5.5rem),
    rgba(255, 255, 255, .045);
}

.project-page .impact-panel div::after {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  background-color: rgba(255, 255, 255, .055);
  background-image: var(--impact-icon);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 36px 36px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .08),
    0 0 28px rgba(0, 255, 224, .08);
  content: "";
  transform: translateY(-50%);
}

.project-page .impact-panel div:nth-child(1) {
  --impact-icon: url("icons/icon-patient-device.svg");
}

.project-page .impact-panel div:nth-child(2) {
  --impact-icon: url("icons/icon-compliance.svg");
}

.project-page .impact-panel div:nth-child(3) {
  --impact-icon: url("icons/icon-reporting.svg");
}

@media (max-width: 700px) {
  .project-page .impact-panel div {
    padding-right: 84px;
  }

  .project-page .impact-panel div::after {
    right: 18px;
    width: 48px;
    height: 48px;
    background-size: 30px 30px;
  }
}

.project-page .impact-panel b,
.project-page .impact-panel span {
  display: block;
}

.project-page .impact-panel b {
  color: #fff;
  font-size: 26px;
  font-weight: 500;
}

.project-page .impact-panel span {
  margin-top: 8px;
  color: var(--home-muted);
}

.project-page .next-panel {
  max-width: 960px;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  background:
    linear-gradient(140deg, rgba(255, 47, 125, .12), transparent 36%),
    rgba(255, 255, 255, .045);
}

.project-page .final-cta {
  padding: 118px 0;
  background:
    linear-gradient(90deg, rgba(3, 4, 7, .95), rgba(3, 4, 7, .5)),
    radial-gradient(circle at 82% 42%, rgba(75, 53, 255, .22), transparent 22rem),
    #05060a;
}

.project-page .final-cta .cta {
  max-width: 900px;
}

.project-page .site-footer {
  background: #030407;
}

.project-page .site-footer .bar {
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.project-page .footer-links {
  color: var(--home-muted);
}

@media (max-width: 980px) {
  .project-page .bar,
  .project-page .project-hero-grid,
  .project-page .section-inner {
    width: min(100% - 36px, 1280px);
  }

  .project-page .bar,
  .project-page .project-hero-grid,
  .project-page .split,
  .project-page .site-footer .bar {
    display: grid;
  }

  .project-page .site-header {
    position: relative;
    background: #030407;
  }

  .project-page .bar {
    padding: 18px 0;
  }

  .project-page .nav {
    justify-content: space-between;
    overflow-x: auto;
    width: 100%;
  }

  .project-page .nav a {
    min-width: auto;
    padding: 12px 15px;
  }

  .project-page .hero {
    min-height: 100svh;
    padding: clamp(48px, 8svh, 72px) 0 clamp(46px, 7svh, 64px);
  }

  .project-page h1 {
    font-size: 52px;
  }

  .project-page h2 {
    font-size: 38px;
  }

  .project-page .project-hero-grid,
  .project-page .split,
  .project-page .solution-section .split {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .project-page .impact-layout {
    gap: 30px;
  }

  .project-page .impact-results .result-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-page .section-art {
    min-height: auto;
  }

  .project-page .solution-brand-stack .section-art {
    min-height: auto;
  }

  .project-page .section-art img {
    width: min(100%, 560px);
  }

  .project-page .solution-layout {
    gap: 46px;
  }

  .project-page .solution-deliverables .deliverable-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-page .project-hero-grid {
    min-height: auto;
  }

  .project-page .case-preview {
    transform: none;
  }

  .project-page .grid.four {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .project-page .brand {
    max-width: 220px;
  }

  .project-page .brand-logo {
    height: 26px;
    max-width: 220px;
  }

  .project-page .nav {
    border-radius: 24px;
  }

  .project-page h1 {
    font-size: 42px;
  }

  .project-page h2 {
    font-size: 32px;
  }

  .project-page .lead {
    font-size: 19px;
  }

  .project-page .hero-actions,
  .project-page .button {
    width: 100%;
  }

  .project-page .case-preview-body,
  .project-page .case-chart-row,
  .project-page .deliverable-list,
  .project-page .grid.four {
    grid-template-columns: 1fr;
  }

  .project-page .section-art img {
    width: min(100%, 420px);
  }

  .project-page .solution-brand-stack {
    gap: 16px;
  }

  .project-page .dual-brand-strip {
    gap: 12px;
  }

  .project-page .dual-brand-logo-ir-dental {
    width: 150px;
    max-height: 36px;
  }

  .project-page .dual-brand-logo-dir {
    width: 112px;
    max-height: 58px;
  }

  .project-page .dual-brand-flow,
  .project-page .dual-brand-strip:not(:has(.dual-brand-flow))::before {
    flex-basis: 28px;
  }

  .project-page .solution-layout {
    gap: 34px;
  }

  .project-page .solution-copy {
    order: -1;
  }

  .project-page .solution-deliverables h3 {
    text-align: left;
  }

  .project-page .solution-deliverables .deliverable-list {
    grid-template-columns: 1fr;
  }

  .project-page .impact-layout {
    gap: 24px;
  }

  .project-page .impact-results .result-list {
    grid-template-columns: 1fr;
  }

  .project-page .case-screen-sidebar {
    display: none;
  }

  .project-page .case-screen-header {
    display: grid;
  }

  .project-page .stat strong {
    font-size: 38px;
  }
}

/* Contact page: Fluent Forms visual concept in the shared Concept A system. */
.contact-page {
  --home-bg: #030407;
  --home-panel: #090b11;
  --home-panel-soft: #10131b;
  --home-text: #f6f7fb;
  --home-muted: #b5bbc8;
  --home-faint: rgba(255, 255, 255, .12);
  --home-magenta: #ff2f7d;
  --home-violet: #4b35ff;
  --home-blue: #2c6cff;
  --home-cyan: #00FFE0;
  color: var(--home-text);
  background:
    radial-gradient(circle at 72% 20%, rgba(44, 108, 255, .18), transparent 34rem),
    radial-gradient(circle at 30% 78%, rgba(255, 47, 125, .12), transparent 30rem),
    var(--home-bg);
  font-family: Inter, Arial, Helvetica, sans-serif;
}

.contact-page .site-header,
.contact-page .site-footer {
  position: relative;
  z-index: 5;
  border-color: transparent;
  background: transparent;
}

.contact-page .site-header {
  position: absolute;
  inset: 0 0 auto;
}

.contact-page .bar,
.contact-page .contact-grid {
  width: min(100% - 64px, 1280px);
}

.contact-page .bar {
  min-height: 100px;
}

.contact-page .brand {
  color: #fff;
  width: fit-content;
}

.contact-page .brand-logo {
  height: 31px;
  max-width: 295px;
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, .1));
}

.contact-page .nav {
  align-items: center;
  gap: 0;
  min-height: 50px;
  padding: 3px;
  border: 1px solid rgba(255, 47, 125, .82);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .015)),
    rgba(3, 4, 7, .38);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .035) inset,
    0 12px 34px rgba(0, 0, 0, .22),
    0 0 22px rgba(255, 47, 125, .08);
  backdrop-filter: blur(18px);
}

.contact-page .nav a {
  position: relative;
  min-width: 104px;
  padding: 12px 18px;
  border-radius: 14px;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.contact-page .nav a[aria-current="page"] {
  color: var(--home-magenta);
  font-weight: 600;
}

.contact-page .nav a[aria-current="page"]::after {
  position: absolute;
  right: 36px;
  bottom: 7px;
  left: 36px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--home-magenta), transparent);
  box-shadow: 0 0 8px rgba(255, 47, 125, .38);
  content: "";
}

.home-page .nav a,
.about-page .nav a,
.project-page .nav a,
.contact-page .nav a {
  isolation: isolate;
  overflow: hidden;
  transition:
    color .26s ease,
    text-shadow .26s ease,
    transform .26s ease;
}

.home-page .nav a::before,
.about-page .nav a::before,
.project-page .nav a::before,
.contact-page .nav a::before {
  position: absolute;
  inset: 4px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, .18), transparent 58%),
    radial-gradient(circle at 84% 78%, rgba(0, 255, 224, .06), transparent 42%),
    rgba(255, 255, 255, .045);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .16),
    inset 0 -1px 0 rgba(255, 255, 255, .04),
    0 10px 28px rgba(0, 0, 0, .16),
    0 0 18px rgba(255, 255, 255, .06);
  content: "";
  opacity: 0;
  transform: scale(.88);
  transition:
    opacity .26s ease,
    transform .26s ease;
}

.home-page .nav a:hover,
.home-page .nav a:focus-visible,
.about-page .nav a:hover,
.about-page .nav a:focus-visible,
.project-page .nav a:hover,
.project-page .nav a:focus-visible,
.contact-page .nav a:hover,
.contact-page .nav a:focus-visible {
  color: #fff;
  text-shadow: 0 0 14px rgba(255, 255, 255, .18);
  transform: translateY(-1px);
}

.home-page .nav a:hover::before,
.home-page .nav a:focus-visible::before,
.about-page .nav a:hover::before,
.about-page .nav a:focus-visible::before,
.project-page .nav a:hover::before,
.project-page .nav a:focus-visible::before,
.contact-page .nav a:hover::before,
.contact-page .nav a:focus-visible::before {
  opacity: 1;
  transform: scale(1);
}

.home-page .nav a:not([aria-current="page"])::after,
.about-page .nav a:not([aria-current="page"])::after,
.project-page .nav a:not([aria-current="page"])::after,
.contact-page .nav a:not([aria-current="page"])::after {
  position: absolute;
  right: 38px;
  bottom: 7px;
  left: 38px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 224, .46), rgba(255, 255, 255, .36), transparent);
  box-shadow: 0 0 8px rgba(0, 255, 224, .16);
  content: "";
  opacity: 0;
  transform: scaleX(.2);
  transition:
    opacity .26s ease,
    transform .26s ease;
}

.home-page .nav a:not([aria-current="page"]):hover::after,
.home-page .nav a:not([aria-current="page"]):focus-visible::after,
.about-page .nav a:not([aria-current="page"]):hover::after,
.about-page .nav a:not([aria-current="page"]):focus-visible::after,
.project-page .nav a:not([aria-current="page"]):hover::after,
.project-page .nav a:not([aria-current="page"]):focus-visible::after,
.contact-page .nav a:not([aria-current="page"]):hover::after,
.contact-page .nav a:not([aria-current="page"]):focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

@media (prefers-reduced-motion: reduce) {
  .home-page .nav a,
  .home-page .nav a::before,
  .home-page .nav a::after,
  .about-page .nav a,
  .about-page .nav a::before,
  .about-page .nav a::after,
  .project-page .nav a,
  .project-page .nav a::before,
  .project-page .nav a::after,
  .contact-page .nav a,
  .contact-page .nav a::before,
  .contact-page .nav a::after {
    transition: none;
  }

  .home-page .nav a:hover,
  .home-page .nav a:focus-visible,
  .about-page .nav a:hover,
  .about-page .nav a:focus-visible,
  .project-page .nav a:hover,
  .project-page .nav a:focus-visible,
  .contact-page .nav a:hover,
  .contact-page .nav a:focus-visible {
    transform: none;
  }
}

.contact-page .hero {
  position: relative;
  overflow: hidden;
  min-height: max(780px, 100svh);
  padding: clamp(118px, 16svh, 146px) 0 clamp(58px, 8svh, 96px);
  border-bottom: 1px solid rgba(255, 47, 125, .24);
  background:
    linear-gradient(90deg, rgba(3, 4, 7, .98), rgba(3, 4, 7, .76) 46%, rgba(3, 4, 7, .6)),
    radial-gradient(circle at 78% 43%, rgba(118, 169, 255, .25), transparent 23rem),
    radial-gradient(circle at 68% 70%, rgba(255, 47, 125, .18), transparent 19rem),
    repeating-linear-gradient(130deg, transparent 0 80px, rgba(255, 255, 255, .045) 81px, transparent 82px),
    repeating-linear-gradient(30deg, transparent 0 92px, rgba(84, 129, 255, .04) 93px, transparent 94px),
    #030407;
}

.contact-page .hero::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 58% 42%, rgba(255, 255, 255, .85) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 52%, rgba(255, 47, 125, .9) 0 1px, transparent 2px),
    radial-gradient(circle at 84% 32%, rgba(74, 102, 255, .9) 0 1px, transparent 2px),
    radial-gradient(circle at 66% 74%, rgba(255, 255, 255, .7) 0 1px, transparent 2px);
  background-size: 120px 90px, 170px 130px, 150px 110px, 190px 140px;
  opacity: .42;
  content: "";
  mask-image: linear-gradient(90deg, transparent, #000 34%, #000 92%);
}

.contact-page .hero::after {
  position: absolute;
  right: -8vw;
  bottom: -10rem;
  width: 66vw;
  min-width: 620px;
  height: 58rem;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 48% 52% 0 0;
  background:
    radial-gradient(ellipse at 48% 30%, rgba(255, 255, 255, .18), transparent 22rem),
    radial-gradient(ellipse at 55% 62%, rgba(44, 108, 255, .16), transparent 26rem);
  opacity: .72;
  content: "";
}

.home-page .hero,
.about-page .hero,
.project-page .hero,
.contact-page .hero {
  background: #030407;
}

.home-page .hero::before,
.home-page .hero::after,
.about-page .hero::before,
.about-page .hero::after,
.project-page .hero::before,
.project-page .hero::after,
.contact-page .hero::before,
.contact-page .hero::after {
  content: none;
}

.ir-hero-video,
.ir-hero-video-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ir-hero-video {
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ir-hero-video-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 4, 7, .92), rgba(3, 4, 7, .76) 42%, rgba(3, 4, 7, .56)),
    linear-gradient(180deg, rgba(3, 4, 7, .12), rgba(3, 4, 7, .46)),
    rgba(0, 0, 0, .42);
}

.contact-page .contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .76fr) minmax(520px, .92fr);
  gap: 76px;
  align-items: stretch;
  min-height: calc(100svh - clamp(176px, 24svh, 242px));
}

.contact-page .stack {
  gap: 20px;
}

.contact-page .eyebrow {
  color: var(--home-magenta);
  font-size: 13px;
  letter-spacing: .12em;
}

.contact-page h1 {
  max-width: 760px;
  margin-bottom: 0;
  color: #fff;
  font-size: 68px;
  font-weight: 400;
  line-height: .98;
}

.contact-page h1 span,
.contact-page h2 span {
  color: var(--home-magenta);
}

.contact-page h2 {
  color: #fff;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.08;
}

.contact-page .lead {
  max-width: 620px;
  color: var(--home-muted);
  font-size: 21px;
}

.contact-page .contact-copy::after {
  display: block;
  width: 82px;
  height: 4px;
  margin-top: 4px;
  border-radius: 999px;
  background: var(--home-magenta);
  content: "";
}

.contact-page .contact-proof {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.contact-page .contact-proof div {
  position: relative;
  min-height: 78px;
  padding: 16px 92px 16px 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  background:
    radial-gradient(circle at 88% 30%, rgba(0, 255, 224, .08), transparent 5rem),
    rgba(255, 255, 255, .045);
}

.contact-page .contact-proof div::after {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 15px;
  background-color: rgba(255, 255, 255, .055);
  background-image: var(--contact-proof-icon);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 32px 32px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .08),
    0 0 24px rgba(0, 255, 224, .08);
  content: "";
  transform: translateY(-50%);
}

.contact-page .contact-proof div:nth-child(1) {
  --contact-proof-icon: url("icons/icon-customisable.svg");
}

.contact-page .contact-proof div:nth-child(2) {
  --contact-proof-icon: url("icons/icon-compliance.svg");
}

.contact-page .contact-proof div:nth-child(3) {
  --contact-proof-icon: url("icons/icon-clinicians.svg");
}

.contact-page .contact-proof b,
.contact-page .contact-proof span {
  display: block;
}

.contact-page .contact-proof b {
  color: #fff;
  font-size: 17px;
}

.contact-page .contact-proof span {
  margin-top: 3px;
  color: var(--home-muted);
  font-size: 14px;
}

.contact-page .contact-form-panel {
  position: relative;
  display: grid;
  align-content: center;
  align-self: stretch;
  overflow: hidden;
  padding: clamp(34px, 4.4vw, 54px) 30px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 18px;
  background:
    radial-gradient(circle at 74% 12%, rgba(255, 47, 125, .12), transparent 13rem),
    radial-gradient(circle at 18% 92%, rgba(75, 53, 255, .18), transparent 16rem),
    linear-gradient(145deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .02)),
    #0a0d14;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .55);
}

.contact-page .contact-form-panel::before {
  content: none;
}

.contact-page .form-panel-heading,
.contact-page .contact-form {
  position: relative;
  z-index: 1;
}

.contact-page .form-panel-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.contact-page .contact-form {
  display: block;
}

.contact-page .form-row {
  display: grid;
  gap: 16px;
}

.contact-page .form-row.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-page .field {
  display: grid;
  gap: 8px;
  padding: 0;
}

.contact-page .field span {
  display: block;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.contact-page .contact-form .input {
  display: block;
  width: 100%;
  height: 30px;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .12) !important;
  border-radius: 12px;
  outline: none;
  background: rgba(255, 255, 255, .045) !important;
  background-color: rgba(255, 255, 255, .045) !important;
  box-shadow: none !important;
  color: #fff !important;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
  backdrop-filter: blur(14px);
  -webkit-appearance: none;
  appearance: none;
  color-scheme: dark;
}

.contact-page .contact-form select.input {
  padding-right: 34px;
  background:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, .72) 50%) calc(100% - 17px) 12px / 7px 7px no-repeat,
    linear-gradient(135deg, rgba(255, 255, 255, .72) 50%, transparent 50%) calc(100% - 12px) 12px / 7px 7px no-repeat,
    rgba(255, 255, 255, .045) !important;
  background-color: rgba(255, 255, 255, .045) !important;
}

.contact-page .contact-form .input::placeholder {
  color: rgba(198, 208, 226, .82) !important;
  opacity: 1;
}

.contact-page .contact-form .input:focus {
  border-color: rgba(255, 255, 255, .24) !important;
  background: rgba(255, 255, 255, .06) !important;
  background-color: rgba(255, 255, 255, .06) !important;
  box-shadow: 0 0 0 2px rgba(255, 47, 125, .1) !important;
}

.contact-page .contact-form .message .input {
  height: 76px;
  min-height: 76px;
  padding: 12px;
  resize: vertical;
}

.contact-page .contact-form .input:-webkit-autofill,
.contact-page .contact-form .input:-webkit-autofill:hover,
.contact-page .contact-form .input:-webkit-autofill:focus {
  border-color: rgba(255, 255, 255, .12) !important;
  box-shadow: 0 0 0 1000px rgb(19, 22, 28) inset !important;
  -webkit-text-fill-color: #fff !important;
}

.contact-page .form-footer {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}

.contact-page .form-footer p {
  max-width: 280px;
  margin: 0;
  color: var(--home-muted);
  font-size: 13px;
}

.contact-page .button {
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 10px;
  background: linear-gradient(135deg, var(--home-violet), #5838ff 48%, #3526c8);
  box-shadow: 0 18px 42px rgba(75, 53, 255, .32);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.contact-page .site-footer {
  background: #030407;
}

.contact-page .site-footer .bar {
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.contact-page .footer-links {
  color: var(--home-muted);
}

@media (min-width: 981px) and (max-height: 760px) {
  .home-page .hero,
  .about-page .hero,
  .project-page .hero,
  .contact-page .hero {
    min-height: 100svh;
    padding-top: 108px;
    padding-bottom: 38px;
  }

  .home-page .hero-grid,
  .about-page .about-hero-grid,
  .project-page .project-hero-grid,
  .contact-page .contact-grid {
    gap: 48px;
    min-height: calc(100svh - 146px);
  }

  .home-page .stack,
  .about-page .stack,
  .project-page .stack,
  .contact-page .stack {
    gap: 16px;
  }

  .home-page h1,
  .about-page h1,
  .project-page h1,
  .contact-page h1 {
    font-size: clamp(50px, 5.2vw, 60px);
  }

  .home-page .lead,
  .about-page .lead,
  .project-page .lead,
  .contact-page .lead {
    font-size: 19px;
    line-height: 1.48;
  }

  .home-page .button,
  .about-page .button,
  .project-page .button,
  .contact-page .button {
    min-height: 52px;
  }

  .home-page .platform-preview,
  .project-page .case-preview {
    min-height: 360px;
  }

  .about-page .about-orbit {
    min-height: 430px;
  }

  .contact-page .contact-form-panel {
    padding: 26px;
  }

  .contact-page .contact-form {
    gap: 14px;
  }

  .contact-page .field {
    min-height: 68px;
    padding: 12px 14px;
  }

  .contact-page .contact-form .message .input {
    height: 76px;
    min-height: 76px;
  }
}

@media (min-width: 981px) and (max-height: 660px) {
  .home-page .hero,
  .about-page .hero,
  .project-page .hero,
  .contact-page .hero {
    padding-top: 92px;
    padding-bottom: 28px;
  }

  .home-page .hero-grid,
  .about-page .about-hero-grid,
  .project-page .project-hero-grid,
  .contact-page .contact-grid {
    min-height: calc(100svh - 120px);
  }

  .home-page h1,
  .about-page h1,
  .project-page h1,
  .contact-page h1 {
    font-size: clamp(42px, 4.7vw, 54px);
  }

  .home-page .lead,
  .about-page .lead,
  .project-page .lead,
  .contact-page .lead {
    font-size: 17px;
    line-height: 1.42;
  }

  .home-page .button,
  .about-page .button,
  .project-page .button,
  .contact-page .button {
    min-height: 46px;
    padding: 0 20px;
  }

  .about-page .about-orbit {
    min-height: 360px;
  }

  .contact-page .contact-grid {
    gap: 34px;
    grid-template-columns: minmax(0, .72fr) minmax(430px, .9fr);
  }

  .contact-page .contact-proof {
    gap: 10px;
  }

  .contact-page .contact-proof div {
    min-height: 66px;
    padding: 12px 78px 12px 14px;
  }

  .contact-page .contact-proof div::after {
    right: 14px;
    width: 46px;
    height: 46px;
    background-size: 28px 28px;
  }

  .contact-page .contact-form-panel {
    padding: 18px;
  }

  .contact-page .fluent-form-live .ff-el-form-top fieldset {
    gap: 10px;
  }

  .contact-page .fluent-form-live .ff-el-form-control {
    height: 34px;
    min-height: 34px;
  }

  .contact-page .fluent-form-live textarea.ff-el-form-control {
    height: 70px;
    min-height: 70px;
  }

  .contact-page .form-panel-heading {
    gap: 5px;
    margin-bottom: 12px;
  }

  .contact-page .form-panel-heading h2 {
    font-size: 26px;
  }

  .contact-page .contact-form {
    gap: 8px;
  }

  .contact-page .form-row.two {
    gap: 8px;
  }

  .contact-page .field {
    min-height: 56px;
    gap: 4px;
    padding: 9px 10px;
  }

  .contact-page .field span {
    font-size: 11px;
  }

  .contact-page .contact-form .input {
    min-height: 28px;
    font-size: 13px;
  }

  .contact-page .contact-form .message .input {
    height: 48px;
    min-height: 48px;
    padding: 8px;
  }

  .contact-page .form-footer {
    gap: 10px;
    margin-top: 0;
  }

  .contact-page .form-footer p {
    max-width: 230px;
    font-size: 11px;
    line-height: 1.35;
  }
}

@media (max-width: 980px) {
  .contact-page .bar,
  .contact-page .contact-grid,
  .contact-page .section-inner {
    width: min(100% - 36px, 1280px);
  }

  .contact-page .bar,
  .contact-page .contact-grid,
  .contact-page .site-footer .bar {
    display: grid;
  }

  .contact-page .site-header {
    position: relative;
    background: #030407;
  }

  .contact-page .bar {
    padding: 18px 0;
  }

  .contact-page .nav {
    justify-content: space-between;
    overflow-x: auto;
    width: 100%;
  }

  .contact-page .nav a {
    min-width: auto;
    padding: 12px 15px;
  }

  .contact-page .hero {
    min-height: 100svh;
    padding: clamp(48px, 8svh, 72px) 0 clamp(46px, 7svh, 64px);
  }

  .contact-page .contact-grid {
    min-height: auto;
  }

  .contact-page h1 {
    font-size: 52px;
  }

  .contact-page .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .contact-page .contact-proof div {
    padding-right: 78px;
  }

  .contact-page .contact-proof div::after {
    right: 14px;
    width: 46px;
    height: 46px;
    background-size: 28px 28px;
  }
}

@media (max-width: 620px) {
  .contact-page .brand {
    max-width: 220px;
  }

  .contact-page .brand-logo {
    height: 26px;
    max-width: 220px;
  }

  .contact-page .nav {
    border-radius: 24px;
  }

  .contact-page h1 {
    font-size: 42px;
  }

  .contact-page h2 {
    font-size: 28px;
  }

  .contact-page .lead {
    font-size: 19px;
  }

  .contact-page .form-row.two,
  .contact-page .form-footer {
    grid-template-columns: 1fr;
    display: grid;
  }

  .contact-page .button {
    width: 100%;
  }

  .contact-page .contact-form-panel {
    padding: 20px;
  }

  .contact-page .fluent-form-live .ff-el-form-top fieldset {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-page .fluent-form-live .ff_submit_btn_wrapper {
    justify-content: stretch;
  }

  .contact-page .fluent-form-live .ff-btn-submit,
  .contact-page .fluent-form-live button[type="submit"] {
    width: 100%;
  }
}

/* Final contact field override: clear the global .field white background and match the left glass cards. */
.contact-page .contact-form label.field {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

.contact-page .contact-form input.input,
.contact-page .contact-form textarea.input,
.contact-page .contact-form select.input {
  border: 1px solid rgba(255, 255, 255, .12) !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, .045) !important;
  background-color: rgba(255, 255, 255, .045) !important;
  box-shadow: none !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  caret-color: #fff !important;
  backdrop-filter: blur(14px);
}

.contact-page .contact-form input.input::placeholder,
.contact-page .contact-form textarea.input::placeholder {
  color: #fff !important;
  opacity: .72 !important;
  -webkit-text-fill-color: #fff !important;
}

.contact-page .contact-form select.input {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

/* Fluent Forms contact implementation. */
.contact-page .fluent-form-live {
  min-height: 0;
}

.contact-page .fluent-form-live .ff-el-form-top {
  margin: 0;
}

.contact-page .fluent-form-live .ff-el-form-top fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 16px;
  align-content: center;
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-page .fluent-form-live .ff-el-group {
  display: grid;
  gap: 8px;
  margin: 0 !important;
}

.contact-page .fluent-form-live .ir-ff-full,
.contact-page .fluent-form-live .ff_submit_btn_wrapper {
  grid-column: 1 / -1;
}

.contact-page .fluent-form-live .ff-el-input--label {
  margin: 0 !important;
}

.contact-page .fluent-form-live .ff-el-input--label label {
  color: rgba(255, 255, 255, .84);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.contact-page .fluent-form-live .ff-el-input--label .ff-el-form-check-label,
.contact-page .fluent-form-live .ff-el-input--label span {
  color: inherit;
}

.contact-page .fluent-form-live .ff-el-form-control {
  display: block;
  width: 100%;
  height: 44px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, .12) !important;
  border-radius: 12px !important;
  outline: none;
  background: rgba(255, 255, 255, .045) !important;
  background-color: rgba(255, 255, 255, .045) !important;
  box-shadow: none !important;
  color: #fff !important;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
  backdrop-filter: blur(14px);
  -webkit-appearance: none;
  appearance: none;
  color-scheme: dark;
}

.contact-page .fluent-form-live textarea.ff-el-form-control {
  height: clamp(132px, 18svh, 178px);
  min-height: 132px;
  padding: 14px;
  resize: vertical;
}

.contact-page .fluent-form-live .ff-el-form-control::placeholder {
  color: #fff !important;
  opacity: .72 !important;
  -webkit-text-fill-color: #fff !important;
}

.contact-page .fluent-form-live .ff-el-form-control:focus {
  border-color: rgba(255, 255, 255, .26) !important;
  background: rgba(255, 255, 255, .06) !important;
  background-color: rgba(255, 255, 255, .06) !important;
  box-shadow: 0 0 0 2px rgba(255, 47, 125, .1) !important;
}

.contact-page .fluent-form-live .ff-el-form-control:-webkit-autofill,
.contact-page .fluent-form-live .ff-el-form-control:-webkit-autofill:hover,
.contact-page .fluent-form-live .ff-el-form-control:-webkit-autofill:focus {
  border-color: rgba(255, 255, 255, .12) !important;
  box-shadow: 0 0 0 1000px rgb(19, 22, 28) inset !important;
  -webkit-text-fill-color: #fff !important;
}

.contact-page .fluent-form-live .ff_submit_btn_wrapper {
  display: flex;
  justify-content: flex-end;
  margin-top: 4px !important;
}

.contact-page .fluent-form-live .ff-btn-submit,
.contact-page .fluent-form-live button[type="submit"] {
  position: relative;
  overflow: hidden;
  min-height: 52px;
  padding: 0 26px;
  border: 1px solid rgba(255, 255, 255, .18) !important;
  border-radius: 10px !important;
  background: linear-gradient(135deg, var(--home-violet), #5838ff 48%, #3526c8) !important;
  box-shadow: 0 18px 42px rgba(75, 53, 255, .32);
  color: #fff !important;
  font-weight: 700;
  isolation: isolate;
  transform: translateY(0);
  transition:
    transform .32s ease,
    border-color .32s ease,
    box-shadow .32s ease,
    filter .32s ease;
  cursor: pointer;
}

.contact-page .fluent-form-live .ff-btn-submit::before,
.contact-page .fluent-form-live button[type="submit"]::before {
  position: absolute;
  inset: -1px;
  z-index: 0;
  border-radius: inherit;
  background:
    linear-gradient(120deg, transparent 0 28%, rgba(255, 255, 255, .42) 42%, transparent 58% 100%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translateX(-62%) skewX(-16deg);
  transition: opacity .14s ease;
}

.contact-page .fluent-form-live .ff-btn-submit:hover,
.contact-page .fluent-form-live .ff-btn-submit:focus-visible,
.contact-page .fluent-form-live button[type="submit"]:hover,
.contact-page .fluent-form-live button[type="submit"]:focus-visible {
  border-color: rgba(255, 255, 255, .36) !important;
  background: linear-gradient(135deg, var(--home-magenta), #ff4b93 52%, #d91f68) !important;
  box-shadow:
    0 22px 54px rgba(255, 47, 125, .42),
    0 0 0 1px rgba(255, 255, 255, .1) inset,
    0 0 34px rgba(255, 47, 125, .16);
  filter: saturate(1.08) brightness(1.04);
  transform: translateY(-2px);
}

.contact-page .fluent-form-live .ff-btn-submit:hover::before,
.contact-page .fluent-form-live .ff-btn-submit:focus-visible::before,
.contact-page .fluent-form-live button[type="submit"]:hover::before,
.contact-page .fluent-form-live button[type="submit"]:focus-visible::before {
  animation: none;
  opacity: 0;
}

.contact-page .fluent-form-live .ff-btn-submit:focus-visible,
.contact-page .fluent-form-live button[type="submit"]:focus-visible {
  outline: 2px solid rgba(255, 47, 125, .72);
  outline-offset: 4px;
}

.contact-page .fluent-form-live .ff-btn-submit:active,
.contact-page .fluent-form-live button[type="submit"]:active {
  animation: none;
  transform: translateY(0);
}

.contact-page .fluent-form-live .ff-el-is-error .ff-el-form-control {
  border-color: rgba(255, 47, 125, .72) !important;
}

.contact-page .fluent-form-live .error,
.contact-page .fluent-form-live .ff-el-is-error .text-danger {
  color: #ff6f9f !important;
  font-size: 12px;
  font-weight: 700;
}

@media (min-width: 981px) and (max-height: 660px) {
  .contact-page .fluent-form-live .ff-el-form-top fieldset {
    gap: 10px;
  }

  .contact-page .fluent-form-live .ff-el-form-control {
    height: 34px;
    min-height: 34px;
  }

  .contact-page .fluent-form-live textarea.ff-el-form-control {
    height: 70px;
    min-height: 70px;
  }
}

@media (max-width: 620px) {
  .contact-page .fluent-form-live .ff-el-form-top fieldset {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-page .fluent-form-live .ff_submit_btn_wrapper {
    justify-content: stretch;
  }

  .contact-page .fluent-form-live .ff-btn-submit,
  .contact-page .fluent-form-live button[type="submit"] {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-page .fluent-form-live .ff-btn-submit,
  .contact-page .fluent-form-live .ff-btn-submit::before,
  .contact-page .fluent-form-live button[type="submit"],
  .contact-page .fluent-form-live button[type="submit"]::before {
    animation: none;
    transition: none;
  }

  .contact-page .fluent-form-live .ff-btn-submit:hover,
  .contact-page .fluent-form-live .ff-btn-submit:focus-visible,
  .contact-page .fluent-form-live .ff-btn-submit:active,
  .contact-page .fluent-form-live button[type="submit"]:hover,
  .contact-page .fluent-form-live button[type="submit"]:focus-visible,
  .contact-page .fluent-form-live button[type="submit"]:active {
    transform: none;
  }

  .contact-page .fluent-form-live .ff-btn-submit:hover::before,
  .contact-page .fluent-form-live .ff-btn-submit:focus-visible::before,
  .contact-page .fluent-form-live button[type="submit"]:hover::before,
  .contact-page .fluent-form-live button[type="submit"]:focus-visible::before {
    opacity: 0;
  }
}

/* Mobile navigation enhancement. Without JS, the existing horizontal nav remains available. */
.nav-toggle {
  display: none;
}

.nav-toggle-line {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 10px rgba(255, 255, 255, .18);
  transition:
    transform .24s ease,
    opacity .24s ease,
    background-color .24s ease;
}

@media (max-width: 980px) {
  body.ir-mobile-nav-open {
    overflow: hidden;
  }

  .ir-mobile-nav-ready.home-page .site-header .bar,
  .ir-mobile-nav-ready.about-page .site-header .bar,
  .ir-mobile-nav-ready.project-page .site-header .bar,
  .ir-mobile-nav-ready.contact-page .site-header .bar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .ir-mobile-nav-ready.home-page .nav-toggle,
  .ir-mobile-nav-ready.about-page .nav-toggle,
  .ir-mobile-nav-ready.project-page .nav-toggle,
  .ir-mobile-nav-ready.contact-page .nav-toggle {
    position: relative;
    z-index: 31;
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 14px;
    background:
      radial-gradient(circle at 50% 0%, rgba(255, 255, 255, .16), transparent 58%),
      radial-gradient(circle at 84% 78%, rgba(0, 255, 224, .08), transparent 42%),
      rgba(255, 255, 255, .045);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, .14),
      0 12px 30px rgba(0, 0, 0, .24),
      0 0 18px rgba(255, 255, 255, .06);
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .ir-mobile-nav-ready.home-page .nav-toggle:hover,
  .ir-mobile-nav-ready.home-page .nav-toggle:focus-visible,
  .ir-mobile-nav-ready.about-page .nav-toggle:hover,
  .ir-mobile-nav-ready.about-page .nav-toggle:focus-visible,
  .ir-mobile-nav-ready.project-page .nav-toggle:hover,
  .ir-mobile-nav-ready.project-page .nav-toggle:focus-visible,
  .ir-mobile-nav-ready.contact-page .nav-toggle:hover,
  .ir-mobile-nav-ready.contact-page .nav-toggle:focus-visible {
    border-color: rgba(255, 255, 255, .24);
    outline: none;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, .18),
      0 14px 34px rgba(0, 0, 0, .28),
      0 0 22px rgba(0, 255, 224, .09);
  }

  .ir-mobile-nav-ready.home-page .site-header.is-nav-open .nav-toggle-line:first-child,
  .ir-mobile-nav-ready.about-page .site-header.is-nav-open .nav-toggle-line:first-child,
  .ir-mobile-nav-ready.project-page .site-header.is-nav-open .nav-toggle-line:first-child,
  .ir-mobile-nav-ready.contact-page .site-header.is-nav-open .nav-toggle-line:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .ir-mobile-nav-ready.home-page .site-header.is-nav-open .nav-toggle-line:nth-child(2),
  .ir-mobile-nav-ready.about-page .site-header.is-nav-open .nav-toggle-line:nth-child(2),
  .ir-mobile-nav-ready.project-page .site-header.is-nav-open .nav-toggle-line:nth-child(2),
  .ir-mobile-nav-ready.contact-page .site-header.is-nav-open .nav-toggle-line:nth-child(2) {
    opacity: 0;
  }

  .ir-mobile-nav-ready.home-page .site-header.is-nav-open .nav-toggle-line:nth-child(3),
  .ir-mobile-nav-ready.about-page .site-header.is-nav-open .nav-toggle-line:nth-child(3),
  .ir-mobile-nav-ready.project-page .site-header.is-nav-open .nav-toggle-line:nth-child(3),
  .ir-mobile-nav-ready.contact-page .site-header.is-nav-open .nav-toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .ir-mobile-nav-ready.home-page .site-header .nav,
  .ir-mobile-nav-ready.about-page .site-header .nav,
  .ir-mobile-nav-ready.project-page .site-header .nav,
  .ir-mobile-nav-ready.contact-page .site-header .nav {
    position: fixed;
    inset: 0;
    z-index: 20;
    display: grid;
    overflow: auto;
    width: 100vw;
    min-height: 100svh;
    align-content: center;
    justify-items: center;
    gap: 10px;
    padding: 80px 28px;
    border: 0;
    border-radius: 0;
    background:
      radial-gradient(circle at 50% 0%, rgba(255, 255, 255, .09), transparent 34rem),
      radial-gradient(circle at 82% 28%, rgba(0, 255, 224, .055), transparent 24rem),
      radial-gradient(circle at 18% 82%, rgba(255, 47, 125, .055), transparent 26rem),
      rgba(3, 4, 7, .985);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, .1),
      inset 0 -1px 0 rgba(255, 255, 255, .05);
    opacity: 0;
    pointer-events: none;
    transform: scale(1.02);
    transform-origin: center;
    transition:
      opacity .24s ease,
      transform .24s ease,
      visibility .24s ease;
    visibility: hidden;
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
  }

  .ir-mobile-nav-ready.home-page .site-header.is-nav-open .nav,
  .ir-mobile-nav-ready.about-page .site-header.is-nav-open .nav,
  .ir-mobile-nav-ready.project-page .site-header.is-nav-open .nav,
  .ir-mobile-nav-ready.contact-page .site-header.is-nav-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
    visibility: visible;
  }

  .ir-mobile-nav-ready.home-page .site-header .nav a,
  .ir-mobile-nav-ready.about-page .site-header .nav a,
  .ir-mobile-nav-ready.project-page .site-header .nav a,
  .ir-mobile-nav-ready.contact-page .site-header .nav a {
    display: flex;
    width: calc(100vw - 56px);
    max-width: none;
    min-width: 0;
    align-items: center;
    justify-content: center;
    justify-self: center;
    min-height: 58px;
    padding: 16px 20px;
    border-radius: 16px;
    font-size: 20px;
    text-align: center;
  }

  .ir-mobile-nav-ready.home-page .site-header .nav a[aria-current="page"],
  .ir-mobile-nav-ready.about-page .site-header .nav a[aria-current="page"],
  .ir-mobile-nav-ready.project-page .site-header .nav a[aria-current="page"],
  .ir-mobile-nav-ready.contact-page .site-header .nav a[aria-current="page"] {
    background: transparent;
    color: #fff;
    text-shadow: 0 0 14px rgba(255, 255, 255, .18);
    transform: translateY(-1px);
  }

  .ir-mobile-nav-ready.home-page .site-header .nav a[aria-current="page"]::before,
  .ir-mobile-nav-ready.about-page .site-header .nav a[aria-current="page"]::before,
  .ir-mobile-nav-ready.project-page .site-header .nav a[aria-current="page"]::before,
  .ir-mobile-nav-ready.contact-page .site-header .nav a[aria-current="page"]::before {
    opacity: 1;
    transform: scale(1);
  }

  .ir-mobile-nav-ready.home-page .site-header .nav a::after,
  .ir-mobile-nav-ready.about-page .site-header .nav a::after,
  .ir-mobile-nav-ready.project-page .site-header .nav a::after,
  .ir-mobile-nav-ready.contact-page .site-header .nav a::after {
    right: 16px;
    bottom: 8px;
    left: 16px;
  }

  .ir-mobile-nav-ready.home-page .site-header .nav .mobile-nav-brand,
  .ir-mobile-nav-ready.about-page .site-header .nav .mobile-nav-brand,
  .ir-mobile-nav-ready.project-page .site-header .nav .mobile-nav-brand,
  .ir-mobile-nav-ready.contact-page .site-header .nav .mobile-nav-brand {
    display: flex;
    min-height: 0;
    margin-top: 20px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .ir-mobile-nav-ready .site-header .nav .mobile-nav-brand::before,
  .ir-mobile-nav-ready .site-header .nav .mobile-nav-brand::after {
    display: none !important;
  }

  .ir-mobile-nav-ready .site-header .nav .mobile-nav-brand img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 64px;
    object-fit: contain;
    opacity: .92;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-toggle-line,
  .ir-mobile-nav-ready.home-page .site-header .nav,
  .ir-mobile-nav-ready.about-page .site-header .nav,
  .ir-mobile-nav-ready.project-page .site-header .nav,
  .ir-mobile-nav-ready.contact-page .site-header .nav {
    transition: none;
  }
}

/* Home redesign direction: quieter premium SaaS, fewer decorative boxes, stronger mood. */
.home-page {
  background: var(--home-bg);
}

.home-page .site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
}

.home-page .bar {
  width: min(100% - 64px, 1280px);
}

.home-page .hero {
  min-height: max(820px, 100svh);
  padding: clamp(134px, 15svh, 158px) 0 clamp(74px, 9svh, 96px);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background:
    linear-gradient(180deg, rgba(3, 4, 7, .16), #030407 95%),
    linear-gradient(90deg, rgba(3, 4, 7, .98), rgba(3, 4, 7, .76) 48%, rgba(3, 4, 7, .28)),
    radial-gradient(circle at 72% 22%, rgba(0, 255, 224, .16), transparent 19rem),
    radial-gradient(circle at 69% 76%, rgba(255, 47, 125, .14), transparent 20rem),
    url("images/home-hero-macro-liquid-bg-v1.jpg") 64% 38% / cover no-repeat fixed,
    #030407;
}

.home-page .hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .045), transparent 30%),
    radial-gradient(circle at 84% 54%, rgba(255, 255, 255, .11), transparent 17rem);
  content: "";
  opacity: .72;
  pointer-events: none;
}

.home-page .hero::after {
  content: none;
}

.home-page .hero-grid {
  display: grid;
  width: min(100% - 64px, 1280px);
  min-height: calc(100svh - clamp(210px, 24svh, 250px));
  grid-template-columns: minmax(0, .92fr) minmax(320px, .52fr);
  align-items: center;
  gap: 84px;
}

.home-page h1 {
  max-width: 720px;
  color: #fff;
  font-size: clamp(42px, 5.45vw, 74px);
  font-weight: 400;
  line-height: 1.04;
}

.home-page h1 span,
.home-page h2 span {
  color: var(--home-cyan);
  text-shadow: 0 0 18px rgba(0, 255, 224, .22);
}

.home-page .hero-copy::after,
.home-page .section-heading::after {
  content: none;
}

.home-page .platform-preview {
  display: grid;
  align-self: end;
  min-height: auto;
  margin-top: 124px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, .14);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  border-radius: 0;
  background: linear-gradient(90deg, transparent, rgba(3, 4, 7, .28));
  box-shadow: none;
}

.home-page .platform-preview::before {
  content: none;
}

.home-page .preview-toolbar,
.home-page .preview-body aside,
.home-page .implant-visual {
  display: none;
}

.home-page .preview-body {
  display: block;
  min-height: 0;
}

.home-page .preview-main {
  display: block;
  padding: 0;
}

.home-page .preview-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.home-page .preview-metrics div {
  display: grid;
  min-height: 74px;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 14px;
  padding: 0 0 0 8px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  border-radius: 0;
  background: transparent;
}

.home-page .preview-metrics div:last-child {
  border-bottom: 0;
}

.home-page .preview-metrics div::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--home-cyan);
  box-shadow: 0 0 16px rgba(0, 255, 224, .26);
  content: "";
}

.home-page .preview-metrics div:nth-child(2)::before {
  background: var(--home-magenta);
  box-shadow: 0 0 16px rgba(255, 47, 125, .22);
}

.home-page .preview-metrics div:nth-child(3)::before {
  background: var(--home-violet);
  box-shadow: 0 0 16px rgba(75, 53, 255, .26);
}

.home-page .preview-metrics b {
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 0;
  font-weight: 800;
}

.home-page .preview-metrics b::after {
  font-size: 14px;
}

.home-page .preview-metrics div:nth-child(1) b::after {
  content: "Patient and device tracking";
}

.home-page .preview-metrics div:nth-child(2) b::after {
  content: "Consent and ethics logic";
}

.home-page .preview-metrics div:nth-child(3) b::after {
  content: "Research-grade reporting";
}

.home-page .preview-metrics small {
  display: none;
}

.home-page .hero .button {
  min-height: 50px;
  border-radius: 7px;
}

.home-page .intro-section {
  background:
    linear-gradient(90deg, rgba(3, 4, 7, .98), rgba(3, 4, 7, .72)),
    url("images/home-network-bg.jpg") center / cover no-repeat,
    #090b11;
}

.home-page .intro-section .split {
  display: block;
}

.home-page .intro-section .stack {
  max-width: 820px;
}

.home-page .intro-section .section-art {
  display: none;
}

.home-page .intro-section .section-inner::after {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 58px;
  border-top: 1px solid rgba(255, 255, 255, .13);
  border-bottom: 1px solid rgba(255, 255, 255, .13);
  color: rgba(181, 187, 200, .74);
  font-size: 13px;
  line-height: 1.45;
  content:
    "Improve clinical oversight\a Clearer visibility across implant data and patient records.\a\a Support ethical compliance\a Governance-aware workflows for sensitive registry projects.\a\a Streamline research\a Structured data that can support audit and long-term analysis.";
  white-space: pre-line;
}

.home-page .services-section {
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 47, 125, .07), transparent 18rem),
    #090b11;
}

.home-page .section-heading {
  max-width: 860px;
  margin-bottom: 48px;
}

.home-page .feature-list {
  gap: 18px;
}

.home-page .feature-list li {
  min-height: 168px;
  align-content: start;
  gap: 24px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .025)),
    rgba(255, 255, 255, .035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
  font-size: 20px;
}

.home-page .feature-list li span {
  display: block;
  order: -2;
  color: rgba(255, 47, 125, .88);
  font-family: "Orbitron", Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1;
}

.home-page .service-icon {
  order: -1;
  justify-self: end;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  opacity: .82;
  filter: drop-shadow(0 0 10px rgba(0, 255, 224, .12));
}

.home-page .proof-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .025), rgba(255, 255, 255, .01)),
    #10131b;
}

.home-page .proof-section::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 4, 7, .96), rgba(3, 4, 7, .7)),
    url("images/about-clinical-bg.jpg") center / cover no-repeat;
  content: "";
  opacity: .48;
  pointer-events: none;
}

.home-page .proof-section .split {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(360px, .66fr);
  gap: 72px;
}

.home-page .proof-section .section-art {
  display: none;
}

.home-page .proof-section .stack {
  display: contents;
}

.home-page .proof-section h2,
.home-page .proof-section h3,
.home-page .proof-section .copy {
  grid-column: 1;
}

.home-page .proof-section h2 {
  max-width: 620px;
}

.home-page .proof-section h3 {
  margin-top: 8px;
  color: rgba(246, 247, 251, .78);
  font-size: 22px;
  font-weight: 700;
}

.home-page .proof-section .copy {
  max-width: 620px;
}

.home-page .proof-grid {
  display: grid;
  grid-column: 2;
  grid-row: 1 / span 4;
  align-self: start;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.home-page .proof-grid .card {
  display: grid;
  grid-template-columns: 34px 1fr;
  min-height: 78px;
  align-items: center;
  gap: 16px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .11);
  border-radius: 0;
  background: transparent;
  color: rgba(246, 247, 251, .88);
  font-size: 16px;
  font-weight: 800;
}

.home-page .proof-grid .card::before {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid rgba(0, 255, 224, .38);
  border-radius: 50%;
  background: rgba(0, 255, 224, .08);
  box-shadow: 0 0 16px rgba(0, 255, 224, .12);
  color: var(--home-cyan);
  content: "✓";
  font-size: 14px;
  font-weight: 900;
}

.home-page .proof-icon {
  display: none;
}

.home-page .final-cta {
  padding: 96px 0;
  background:
    radial-gradient(circle at 76% 38%, rgba(75, 53, 255, .15), transparent 24rem),
    #090b11;
}

.home-page .final-cta .cta {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  text-align: left;
}

.home-page .final-cta h2 {
  max-width: 880px;
  font-size: clamp(31px, 4vw, 56px);
}

.home-page .final-cta .lead {
  margin: 16px 0 0;
}

@media (max-width: 980px) {
  .home-page .bar,
  .home-page .section-inner,
  .home-page .hero-grid {
    width: min(100% - 36px, 1280px);
  }

  .home-page .hero {
    min-height: auto;
    padding: 72px 0 64px;
  }

  .home-page .site-header {
    position: relative;
    background: #030407;
  }

  .home-page .hero-grid,
  .home-page .proof-section .split,
  .home-page .final-cta .cta {
    grid-template-columns: 1fr;
    gap: 42px;
    min-height: 0;
  }

  .home-page .platform-preview {
    margin-top: 0;
  }

  .home-page h1 {
    font-size: clamp(40px, 11vw, 58px);
  }

  .home-page .proof-grid,
  .home-page .proof-section h2,
  .home-page .proof-section h3,
  .home-page .proof-section .copy {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 720px) {
  .home-page .preview-metrics,
  .home-page .intro-section .section-inner::after,
  .home-page .feature-list {
    grid-template-columns: 1fr;
  }

  .home-page .intro-section .section-inner::after {
    gap: 18px;
    padding: 22px 0;
  }

  .home-page .feature-list li {
    min-height: 140px;
  }

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

/* Home redesign refinement from browser review. */
.home-page .site-header {
  border-bottom: 1px solid rgba(255, 47, 125, .18);
  background: rgba(3, 4, 7, .72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.home-page .bar {
  min-height: 78px;
}

.home-page .brand-logo,
.home-page .custom-logo {
  height: 38px;
  max-width: 255px;
}

.home-page .nav {
  min-height: 48px;
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .04);
  box-shadow: none;
}

.home-page .nav a {
  min-width: 0;
  padding: 9px 13px;
  border-radius: 6px;
  color: rgba(255, 255, 255, .74);
  font-size: 13px;
  font-weight: 700;
}

.home-page .nav a[aria-current="page"],
.home-page .nav a:hover,
.home-page .nav a:focus-visible {
  background: rgba(255, 255, 255, .075);
  color: #fff;
  text-shadow: none;
}

.home-page .nav a::before,
.home-page .nav a::after {
  content: none !important;
}

.home-page .intro-section {
  background:
    linear-gradient(90deg, rgba(3, 4, 7, .98), rgba(3, 4, 7, .76) 54%, rgba(3, 4, 7, .36)),
    url("images/home-network-bg.jpg") center / cover no-repeat,
    #090b11;
}

.home-page .intro-section .split {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(340px, .66fr);
  gap: 72px;
  align-items: center;
}

.home-page .intro-section .stack {
  max-width: 760px;
}

.home-page .intro-section h2 {
  font-family: "Orbitron", Arial, Helvetica, sans-serif;
  font-size: clamp(36px, 4.4vw, 62px);
  font-weight: 400;
}

.home-page .intro-section .section-inner::after {
  content: none;
}

.home-page .intro-section .section-art {
  display: grid;
  min-height: 360px;
}

.home-page .intro-section .section-art::before {
  inset: 12% 4%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 255, 224, .12), transparent 62%),
    radial-gradient(circle at 70% 42%, rgba(255, 47, 125, .08), transparent 48%);
  filter: blur(28px);
}

.home-page .intro-section .section-art img {
  width: min(100%, 560px);
  opacity: .78;
  filter:
    drop-shadow(0 34px 72px rgba(0, 0, 0, .42))
    drop-shadow(0 0 18px rgba(0, 255, 224, .12));
}

.home-page .proof-section h2 {
  margin: 0 0 16px;
  color: var(--home-magenta);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.home-page .proof-section h3 {
  max-width: 620px;
  margin: 0;
  color: #fff;
  font-family: "Orbitron", Arial, Helvetica, sans-serif;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.04;
}

.home-page .proof-section .copy {
  margin-top: 22px;
}

.home-page .proof-grid {
  grid-template-columns: 1fr !important;
}

.home-page .proof-grid .card {
  grid-template-columns: 34px 1fr;
  width: 100%;
}

@media (max-width: 980px) {
  .home-page .site-header {
    background: #030407;
  }

  .home-page .brand-logo,
  .home-page .custom-logo {
    height: 31px;
    max-width: 235px;
  }

  .home-page .intro-section .split {
    grid-template-columns: 1fr;
  }

  .home-page .intro-section .section-art {
    min-height: 280px;
  }
}

@media (max-width: 620px) {
  .home-page .intro-section .section-art {
    display: none;
  }
}

/* Exact hardcoded Home concept implementation. */
.home-page .home-redesign .section-inner {
  width: min(calc(100% - 48px), 1160px);
  margin: 0 auto;
}

.home-page,
.home-page .home-redesign {
  overflow-x: clip;
}

.home-page .home-redesign-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 900px;
  padding: 154px 0 84px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background:
    linear-gradient(135deg, #151820 0%, #07090f 52%, #020307 100%),
    #030407;
}

.home-page .home-redesign-hero .ir-hero-video,
.about-page .about-redesign-hero .ir-hero-video,
.contact-page .contact-redesign-hero .ir-hero-video,
.project-page .projects-redesign-hero .ir-hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.home-page .home-redesign-hero::after,
.about-page .about-redesign-hero::after,
.contact-page .contact-redesign-hero::after,
.project-page .projects-redesign-hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
}

.home-page .home-redesign-hero::after {
  background:
    linear-gradient(180deg, rgba(3, 4, 7, .16), #030407 95%),
    linear-gradient(90deg, rgba(3, 4, 7, .98), rgba(3, 4, 7, .76) 48%, rgba(3, 4, 7, .28)),
    radial-gradient(circle at 72% 22%, rgba(0, 255, 224, .16), transparent 19rem),
    radial-gradient(circle at 69% 76%, rgba(255, 47, 125, .14), transparent 20rem);
}

.home-page .home-redesign-hero::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .045), transparent 30%),
    radial-gradient(circle at 84% 54%, rgba(255, 255, 255, .11), transparent 17rem);
  content: "";
  opacity: .72;
  pointer-events: none;
}

.home-page .home-redesign .hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  width: min(calc(100% - 48px), 1160px);
  min-height: calc(100svh - 238px);
  grid-template-columns: 1fr;
  align-items: end;
}

.home-page .home-redesign h1,
.home-page .home-redesign h2 {
  margin: 0;
  font-family: "Orbitron", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: .98;
}

.home-page .home-redesign h1 {
  max-width: 720px;
  color: #fff;
  font-size: clamp(42px, 5.45vw, 74px);
  line-height: 1.04;
}

.home-page .home-redesign h1 .heading-line {
  display: block;
  color: #fff;
  text-shadow: none;
  white-space: normal;
}

.home-page .home-redesign h1 span,
.home-page .home-redesign h2 span {
  color: var(--home-cyan);
  text-shadow: 0 0 18px rgba(0, 255, 224, .22);
}

.home-page .home-redesign h1 .heading-line {
  color: #fff;
  text-shadow: none;
}

.home-page .home-redesign h1 .heading-accent {
  color: var(--home-cyan);
  text-shadow: 0 0 18px rgba(0, 255, 224, .22);
}

.home-page .home-redesign .eyebrow {
  margin: 0 0 18px;
  color: rgba(255, 47, 125, .94);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.home-page .home-redesign .lead {
  max-width: 620px;
  margin-top: 26px;
  color: rgba(246, 247, 251, .8);
  font-size: 21px;
  line-height: 1.55;
}

.home-page .home-redesign .copy {
  color: rgba(181, 187, 200, .8);
  font-size: 17px;
  line-height: 1.72;
}

.home-page .home-redesign .button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
}

.home-page .home-redesign .button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 7px;
  padding: 13px 18px;
  background: linear-gradient(135deg, var(--home-violet), #5838ff 48%, #3526c8);
  box-shadow: 0 18px 42px rgba(75, 53, 255, .25);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.home-page .home-redesign .hero-proof {
  display: grid;
  max-width: 720px;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 70px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .14);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  text-align: left;
}

.home-page .home-redesign .hero-proof div {
  min-height: 94px;
  padding: 23px 18px 22px;
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.home-page .home-redesign .hero-proof div:last-child {
  border-right: 0;
}

.home-page .home-redesign .hero-proof b {
  display: block;
  color: #fff;
  font-family: "Orbitron", Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.08;
}

.home-page .home-redesign .hero-proof span {
  display: block;
  margin-top: 8px;
  color: rgba(181, 187, 200, .82);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.home-page .home-redesign .hero-capabilities {
  display: grid;
  gap: 0;
  align-self: end;
  margin-top: 124px;
  margin-bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, .14);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  background: linear-gradient(90deg, transparent, rgba(3, 4, 7, .28));
}

.home-page .home-redesign .capability-row {
  display: grid;
  min-height: 74px;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 14px;
  padding: 0 0 0 8px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  font-weight: 800;
}

.home-page .home-redesign .capability-row:last-child {
  border-bottom: 0;
}

.home-page .home-redesign .capability-row::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--home-cyan);
  box-shadow: 0 0 16px rgba(0, 255, 224, .26);
  content: "";
}

.home-page .home-redesign .capability-row:nth-child(2)::before {
  background: var(--home-magenta);
  box-shadow: 0 0 16px rgba(255, 47, 125, .22);
}

.home-page .home-redesign .capability-row:nth-child(3)::before {
  background: var(--home-violet);
  box-shadow: 0 0 16px rgba(75, 53, 255, .26);
}

.home-page .home-redesign .section {
  padding: 108px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.home-page .home-redesign-intro {
  background:
    linear-gradient(90deg, rgba(3, 4, 7, .6), rgba(3, 4, 7, .6)),
    linear-gradient(180deg, rgba(3, 4, 7, .6), rgba(3, 4, 7, .6)),
    url("images/implant-devices.png") center / cover no-repeat,
    #030407;
}

.home-page .home-redesign .intro-copy {
  display: grid;
  max-width: 820px;
  gap: 24px;
  margin: 0;
  text-align: left;
}

.home-page .home-redesign .intro-signals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 58px;
  border-top: 1px solid rgba(255, 255, 255, .13);
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.home-page .home-redesign .intro-signal {
  min-height: 94px;
  padding: 24px 22px;
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.home-page .home-redesign .intro-signal:last-child {
  border-right: 0;
}

.home-page .home-redesign .intro-signal b {
  display: block;
  color: #fff;
  font-size: 16px;
  line-height: 1.25;
}

.home-page .home-redesign .intro-signal span {
  display: block;
  margin-top: 8px;
  color: rgba(181, 187, 200, .74);
  font-size: 13px;
}

.home-page .home-redesign-services {
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 47, 125, .07), transparent 18rem),
    #090b11;
}

.home-page .home-redesign .section-kicker {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: end;
  margin-bottom: 62px;
}

.home-page .home-redesign .section-kicker p:last-child {
  color: rgba(181, 187, 200, .78);
  font-size: 17px;
}

.home-page .home-redesign .service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  border: 0;
}

.home-page .home-redesign .service-row {
  display: grid;
  min-height: 168px;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 24px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .025)),
    rgba(255, 255, 255, .035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}

.home-page .home-redesign .service-row .number {
  grid-column: 1 / -1;
  color: rgba(255, 47, 125, .88);
  font-family: "Orbitron", Arial, Helvetica, sans-serif;
  font-size: 17px;
}

.home-page .home-redesign .service-row strong {
  display: block;
  color: #fff;
  font-size: 21px;
  line-height: 1.25;
}

.home-page .home-redesign .service-copy {
  display: grid;
  gap: 10px;
}

.home-page .home-redesign .service-copy span {
  display: block;
  max-width: 25rem;
  color: rgba(181, 187, 200, .82);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.home-page .home-redesign .service-icon {
  justify-self: end;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  opacity: .82;
  filter: drop-shadow(0 0 10px rgba(0, 255, 224, .12));
}

.home-page .home-redesign-proof {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .025), rgba(255, 255, 255, .01)),
    #10131b;
}

.home-page .home-redesign-proof::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 4, 7, .6), rgba(3, 4, 7, .6)),
    linear-gradient(180deg, rgba(3, 4, 7, .6), rgba(3, 4, 7, .6)),
    url("images/surgeons.png") center / cover no-repeat;
  content: "";
  opacity: 1;
  pointer-events: none;
}

.home-page .home-redesign .proof-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(360px, .66fr);
  gap: 72px;
  align-items: end;
}

.home-page .home-redesign .proof-copy {
  display: grid;
  gap: 24px;
}

.home-page .home-redesign .proof-copy h2 {
  max-width: 620px;
  margin: 0;
  color: #fff;
  font-family: "Orbitron", Arial, Helvetica, sans-serif;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.04;
  text-transform: none;
}

.home-page .home-redesign .proof-copy h2 span {
  color: var(--home-cyan);
  text-shadow: 0 0 18px rgba(0, 255, 224, .22);
}

.home-page .home-redesign .proof-copy .copy {
  max-width: 620px;
  margin: 0;
}

.home-page .home-redesign .proof-list {
  display: grid;
  align-self: end;
  grid-template-columns: 1fr;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.home-page .home-redesign .proof-item {
  display: grid;
  min-height: 78px;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .11);
  color: rgba(246, 247, 251, .88);
  font-size: 16px;
  font-weight: 800;
}

.home-page .home-redesign .proof-item::before {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid rgba(0, 255, 224, .38);
  border-radius: 50%;
  background: rgba(0, 255, 224, .08);
  box-shadow: 0 0 16px rgba(0, 255, 224, .12);
  color: var(--home-cyan);
  content: "✓";
  font-size: 14px;
  font-weight: 900;
}

.home-page .home-redesign-cta {
  padding: 96px 0;
  background:
    radial-gradient(circle at 76% 38%, rgba(75, 53, 255, .15), transparent 24rem),
    #090b11;
}

.home-page .home-redesign .cta-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
}

.home-page .home-redesign .cta-line h2 {
  max-width: 880px;
  font-size: clamp(31px, 4vw, 56px);
}

.home-page .home-redesign .cta-line .lead {
  margin-top: 16px;
  font-size: 20px;
}

@media (max-width: 980px) {
  .home-page .home-redesign .section-inner,
  .home-page .home-redesign .hero-grid {
    width: min(calc(100% - 34px), 1160px);
  }

  .home-page .home-redesign .hero-grid,
  .home-page .home-redesign-hero-copy {
    min-width: 0;
  }

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

  .home-page .home-redesign h1 {
    max-width: 100%;
    font-size: clamp(34px, 10.7vw, 52px);
  }

  .home-page .home-redesign h1 .heading-line {
    white-space: normal;
  }

  .home-page .home-redesign .lead {
    max-width: 100%;
  }

  .home-page .home-redesign .button-row,
  .home-page .home-redesign .button,
  .home-page .home-redesign .hero-proof {
    width: 100%;
    min-width: 0;
  }

  .home-page .home-redesign-hero {
    min-height: 0;
    padding-top: 128px;
  }

  .home-page .home-redesign .hero-grid,
  .home-page .home-redesign .section-kicker,
  .home-page .home-redesign .proof-layout,
  .home-page .home-redesign .cta-line {
    grid-template-columns: 1fr;
  }

  .home-page .home-redesign .hero-capabilities {
    margin-top: 30px;
  }
}

@media (max-width: 640px) {
  .home-page .home-redesign h1 {
    font-size: clamp(34px, 10.7vw, 42px);
  }

  .home-page .home-redesign .lead {
    font-size: 18px;
  }

  .home-page .home-redesign .hero-proof,
  .home-page .home-redesign .intro-signals,
  .home-page .home-redesign .service-list {
    width: 100%;
    min-width: 0;
    grid-template-columns: 1fr;
  }

  .home-page .home-redesign .hero-proof div,
  .home-page .home-redesign .intro-signal {
    border-right: 0;
  }

  .home-page .home-redesign .intro-signal {
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .home-page .home-redesign .intro-signal:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 980px) {
  .ir-mobile-nav-ready.home-page .site-header .nav {
    right: 0;
    left: 0;
    width: auto;
    transform: none;
  }
}

/* Hardcoded About concept implementation. */
.about-page .about-redesign .section-inner {
  width: min(calc(100% - 48px), 1160px);
  margin: 0 auto;
}

.about-page,
.about-page .about-redesign {
  overflow-x: clip;
}

.about-page .site-header {
  min-height: 78px;
  border-bottom: 1px solid rgba(255, 47, 125, .16);
  background: rgba(3, 4, 7, .42);
  backdrop-filter: blur(14px);
}

.about-page .site-header .bar {
  width: min(calc(100% - 48px), 1160px);
  min-height: 78px;
}

.about-page .site-header .brand-logo,
.about-page .site-header .custom-logo {
  height: 28px;
  max-width: 260px;
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, .08));
}

.about-page .site-header .nav {
  min-height: 50px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .015)),
    rgba(3, 4, 7, .48);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .03) inset,
    0 12px 34px rgba(0, 0, 0, .24);
  backdrop-filter: blur(18px);
}

.about-page .site-header .nav a {
  min-width: 86px;
  border-radius: 6px;
  padding: 11px 16px;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  font-weight: 800;
}

.about-page .site-header .nav a[aria-current="page"] {
  background: rgba(255, 255, 255, .07);
  color: #fff;
}

.about-page .site-header .nav a[aria-current="page"]::after {
  display: none;
}

.about-page .about-redesign-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 880px;
  padding: 132px 0 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background:
    linear-gradient(135deg, #151820 0%, #07090f 52%, #020307 100%),
    #030407;
}

.about-page .about-redesign-hero::after {
  background:
    linear-gradient(180deg, rgba(3, 4, 7, .1), #030407 96%),
    linear-gradient(90deg, rgba(3, 4, 7, .98), rgba(3, 4, 7, .76) 42%, rgba(3, 4, 7, .35)),
    radial-gradient(circle at 74% 28%, rgba(0, 255, 224, .13), transparent 19rem),
    radial-gradient(circle at 72% 78%, rgba(255, 47, 125, .14), transparent 20rem);
}

.about-page .about-redesign-hero::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .035), transparent 30%),
    radial-gradient(circle at 86% 52%, rgba(255, 255, 255, .1), transparent 16rem);
  content: "";
  opacity: .72;
  pointer-events: none;
}

.about-page .about-redesign-hero .section-inner {
  position: relative;
  z-index: 3;
  display: grid;
  min-height: calc(100svh - 132px);
  align-content: end;
  gap: 54px;
  padding-bottom: 74px;
}

.about-page .about-redesign .hero-topline {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(320px, .42fr);
  gap: 64px;
  align-items: end;
}

.about-page .about-redesign .hero-copy,
.about-page .about-redesign .hero-statement,
.about-page .about-redesign .belief-copy,
.about-page .about-redesign .values-copy {
  display: grid;
}

.about-page .about-redesign .hero-copy {
  gap: 24px;
}

.about-page .about-redesign .hero-statement {
  gap: 28px;
  padding-bottom: 4px;
}

.about-page .about-redesign .hero-statement p {
  color: rgba(246, 247, 251, .74);
  font-size: 17px;
  line-height: 1.72;
}

.about-page .about-redesign h1,
.about-page .about-redesign h2 {
  margin: 0;
  color: #fff;
  font-family: "Orbitron", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.about-page .about-redesign h1 {
  max-width: 850px;
  font-size: clamp(42px, 5.1vw, 72px);
  line-height: 1.03;
}

.about-page .about-redesign h2 {
  max-width: 780px;
  font-size: clamp(34px, 4.1vw, 56px);
  line-height: 1.06;
}

.about-page .about-redesign h1 span,
.about-page .about-redesign h2 span {
  color: var(--home-cyan);
  text-shadow: 0 0 18px rgba(0, 255, 224, .18);
}

.about-page .about-redesign .eyebrow {
  margin: 0;
  color: rgba(255, 47, 125, .94);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.about-page .about-redesign .lead {
  max-width: 620px;
  color: rgba(246, 247, 251, .8);
  font-size: 21px;
  line-height: 1.55;
}

.about-page .about-redesign .copy {
  color: rgba(181, 187, 200, .8);
  font-size: 17px;
  line-height: 1.72;
}

.about-page .about-redesign .button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 7px;
  padding: 13px 18px;
  background: linear-gradient(135deg, var(--home-violet), #5838ff 48%, #3526c8);
  box-shadow: 0 18px 42px rgba(75, 53, 255, .25);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.about-page .about-redesign .mission-index {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .14);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.about-page .about-redesign .mission-index div {
  min-height: 104px;
  padding: 25px 22px 22px;
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.about-page .about-redesign .mission-index div:last-child {
  border-right: 0;
}

.about-page .about-redesign .mission-index b {
  display: block;
  color: #fff;
  font-family: "Orbitron", Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.08;
}

.about-page .about-redesign .mission-index span {
  display: block;
  margin-top: 8px;
  color: rgba(181, 187, 200, .82);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.about-page .about-redesign .section {
  padding: 108px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.about-page .about-redesign .belief-section {
  background:
    linear-gradient(90deg, rgba(3, 4, 7, .6), rgba(3, 4, 7, .6)),
    linear-gradient(180deg, rgba(3, 4, 7, .6), rgba(3, 4, 7, .6)),
    url("images/data-research.png") center / cover no-repeat,
    #030407;
}

.about-page .about-redesign .belief-layout {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(360px, .64fr);
  gap: 76px;
  align-items: end;
}

.about-page .about-redesign .belief-copy {
  gap: 24px;
}

.about-page .about-redesign .belief-copy .copy {
  max-width: 680px;
}

.about-page .about-redesign .principle-list {
  display: grid;
  margin-top: clamp(80px, 12vw, 150px);
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.about-page .about-redesign .principle-row {
  display: grid;
  min-height: 86px;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .11);
}

.about-page .about-redesign .principle-row::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--home-cyan);
  box-shadow: 0 0 16px rgba(0, 255, 224, .26);
  content: "";
}

.about-page .about-redesign .principle-row:nth-child(2)::before {
  background: var(--home-magenta);
  box-shadow: 0 0 16px rgba(255, 47, 125, .22);
}

.about-page .about-redesign .principle-row:nth-child(3)::before {
  background: var(--home-violet);
  box-shadow: 0 0 16px rgba(75, 53, 255, .26);
}

.about-page .about-redesign .principle-row b {
  display: block;
  color: #fff;
  font-size: 16px;
  line-height: 1.25;
}

.about-page .about-redesign .principle-row span {
  display: block;
  margin-top: 6px;
  color: rgba(181, 187, 200, .74);
  font-size: 13px;
  line-height: 1.5;
}

.about-page .about-redesign .team-section {
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 47, 125, .07), transparent 18rem),
    #090b11;
}

.about-page .about-redesign .section-kicker {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(300px, .44fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 62px;
}

.about-page .about-redesign .section-kicker > p {
  color: rgba(181, 187, 200, .78);
  font-size: 17px;
  line-height: 1.7;
}

.about-page .about-redesign .team-system {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .13);
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.about-page .about-redesign .team-step {
  min-height: 270px;
  padding: 30px 28px;
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.about-page .about-redesign .team-step:last-child {
  border-right: 0;
}

.about-page .about-redesign .team-step .number {
  display: block;
  margin-bottom: 82px;
  color: rgba(255, 47, 125, .88);
  font-family: "Orbitron", Arial, Helvetica, sans-serif;
  font-size: 17px;
}

.about-page .about-redesign .team-step strong {
  display: block;
  max-width: 280px;
  color: #fff;
  font-size: 21px;
  line-height: 1.25;
}

.about-page .about-redesign .team-step p {
  max-width: 310px;
  margin-top: 15px;
  color: rgba(181, 187, 200, .76);
  font-size: 14px;
  line-height: 1.6;
}

.about-page .about-redesign .values-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .025), rgba(255, 255, 255, .01)),
    #10131b;
}

.about-page .about-redesign .values-section::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 4, 7, .6), rgba(3, 4, 7, .6)),
    linear-gradient(180deg, rgba(3, 4, 7, .6), rgba(3, 4, 7, .6)),
    url("images/research-board.png") center / cover no-repeat;
  content: "";
  opacity: 1;
  pointer-events: none;
}

.about-page .about-redesign .values-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(420px, .76fr);
  gap: 72px;
  align-items: start;
}

.about-page .about-redesign .values-copy {
  gap: 20px;
}

.about-page .about-redesign .values-list {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.about-page .about-redesign .value-item {
  display: grid;
  min-height: 86px;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .11);
}

.about-page .about-redesign .value-item::before {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid rgba(0, 255, 224, .38);
  border-radius: 50%;
  background: rgba(0, 255, 224, .08);
  box-shadow: 0 0 16px rgba(0, 255, 224, .12);
  color: var(--home-cyan);
  content: "✓";
  font-size: 14px;
  font-weight: 900;
}

.about-page .about-redesign .value-item b {
  display: block;
  color: rgba(246, 247, 251, .92);
  font-size: 16px;
  font-weight: 800;
}

.about-page .about-redesign .value-item span {
  display: block;
  margin-top: 5px;
  color: rgba(181, 187, 200, .76);
  font-size: 13px;
  line-height: 1.5;
}

.about-page .about-redesign-cta {
  padding: 96px 0;
  background:
    radial-gradient(circle at 76% 38%, rgba(75, 53, 255, .15), transparent 24rem),
    #090b11;
}

.about-page .about-redesign .cta-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
}

.about-page .about-redesign .cta-line h2 {
  max-width: 880px;
  font-size: clamp(31px, 4vw, 56px);
}

.about-page .about-redesign .cta-line .lead {
  margin-top: 16px;
  font-size: 20px;
}

@media (max-width: 980px) {
  .about-page .about-redesign .section-inner,
  .about-page .site-header .bar {
    width: min(calc(100% - 34px), 1160px);
  }

  .about-page .site-header {
    position: relative;
    background: #030407;
  }

  .about-page .site-header .brand-logo,
  .about-page .site-header .custom-logo {
    height: 31px;
    max-width: 235px;
  }

  .about-page .about-redesign-hero {
    min-height: 0;
    padding-top: 72px;
  }

  .about-page .about-redesign-hero .section-inner {
    min-height: auto;
  }

  .about-page .about-redesign .hero-topline,
  .about-page .about-redesign .belief-layout,
  .about-page .about-redesign .section-kicker,
  .about-page .about-redesign .values-layout,
  .about-page .about-redesign .cta-line {
    grid-template-columns: 1fr;
  }

  .about-page .about-redesign .principle-list {
    margin-top: 16px;
  }

  .about-page .about-redesign .team-system {
    grid-template-columns: 1fr;
  }

  .about-page .about-redesign .team-step {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .about-page .about-redesign .team-step:last-child {
    border-bottom: 0;
  }

  .about-page .about-redesign .team-step .number {
    margin-bottom: 44px;
  }

  .ir-mobile-nav-ready.about-page .site-header .nav {
    right: 0;
    left: 0;
    width: auto;
    transform: none;
  }
}

@media (max-width: 640px) {
  .about-page .about-redesign h1 {
    font-size: 42px;
  }

  .about-page .about-redesign .lead {
    font-size: 18px;
  }

  .about-page .about-redesign .button {
    width: 100%;
  }

  .about-page .about-redesign .mission-index {
    grid-template-columns: 1fr;
  }

  .about-page .about-redesign .mission-index div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .about-page .about-redesign .mission-index div:last-child {
    border-bottom: 0;
  }
}

/* Hardcoded Contact concept implementation. */
.contact-page .contact-redesign .section-inner {
  width: min(calc(100% - 48px), 1160px);
  margin: 0 auto;
}

.contact-page,
.contact-page .contact-redesign {
  overflow-x: clip;
}

.contact-page .site-header {
  min-height: 78px;
  border-bottom: 1px solid rgba(255, 47, 125, .16);
  background: rgba(3, 4, 7, .42);
  backdrop-filter: blur(14px);
}

.contact-page .site-header .bar {
  width: min(calc(100% - 48px), 1160px);
  min-height: 78px;
}

.contact-page .site-header .brand-logo,
.contact-page .site-header .custom-logo {
  height: 28px;
  max-width: 260px;
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, .08));
}

.contact-page .site-header .nav {
  min-height: 50px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .015)),
    rgba(3, 4, 7, .48);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .03) inset,
    0 12px 34px rgba(0, 0, 0, .24);
  backdrop-filter: blur(18px);
}

.contact-page .site-header .nav a {
  min-width: 86px;
  border-radius: 6px;
  padding: 11px 16px;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  font-weight: 800;
}

.contact-page .site-header .nav a[aria-current="page"] {
  background: rgba(255, 255, 255, .07);
  color: #fff;
}

.contact-page .site-header .nav a[aria-current="page"]::after {
  display: none;
}

.contact-page .contact-redesign-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 132px 0 88px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background:
    linear-gradient(135deg, #151820 0%, #07090f 52%, #020307 100%),
    #030407;
}

.contact-page .contact-redesign-hero::after {
  background:
    linear-gradient(180deg, rgba(3, 4, 7, .08), #030407 96%),
    linear-gradient(90deg, rgba(3, 4, 7, .98), rgba(3, 4, 7, .84) 42%, rgba(3, 4, 7, .38)),
    radial-gradient(circle at 82% 28%, rgba(0, 255, 224, .11), transparent 18rem),
    radial-gradient(circle at 76% 78%, rgba(255, 47, 125, .14), transparent 20rem);
}

.contact-page .contact-redesign-hero::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .04), transparent 30%),
    radial-gradient(circle at 86% 56%, rgba(255, 255, 255, .1), transparent 18rem);
  content: "";
  opacity: .72;
  pointer-events: none;
}

.contact-page .contact-redesign .contact-layout {
  position: relative;
  z-index: 3;
  display: grid;
  min-height: calc(100svh - 132px);
  grid-template-columns: minmax(0, .74fr) minmax(420px, .68fr);
  gap: 76px;
  align-items: center;
}

.contact-page .contact-redesign .contact-copy {
  display: grid;
  gap: 26px;
}

.contact-page .contact-redesign h1,
.contact-page .contact-redesign h2 {
  margin: 0;
  color: #fff;
  font-family: "Orbitron", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.contact-page .contact-redesign h1 {
  max-width: 760px;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.04;
}

.contact-page .contact-redesign h2 {
  max-width: 800px;
  font-size: clamp(34px, 4.1vw, 56px);
  line-height: 1.06;
}

.contact-page .contact-redesign h1 span,
.contact-page .contact-redesign h2 span {
  color: var(--home-cyan);
  text-shadow: 0 0 18px rgba(0, 255, 224, .18);
}

.contact-page .contact-redesign .eyebrow {
  margin: 0;
  color: rgba(255, 47, 125, .94);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-page .contact-redesign .lead {
  max-width: 620px;
  color: rgba(246, 247, 251, .8);
  font-size: 21px;
  line-height: 1.55;
}

.contact-page .contact-redesign .copy {
  color: rgba(181, 187, 200, .8);
  font-size: 17px;
  line-height: 1.72;
}

.contact-page .contact-redesign .button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 7px;
  padding: 13px 22px;
  background: linear-gradient(135deg, var(--home-violet), #5838ff 48%, #3526c8);
  box-shadow: 0 18px 42px rgba(75, 53, 255, .25);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.contact-page .contact-redesign .contact-intake {
  display: grid;
  margin-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.contact-page .contact-redesign .intake-row {
  display: grid;
  min-height: 76px;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.contact-page .contact-redesign .intake-row:last-child {
  border-bottom: 0;
}

.contact-page .contact-redesign .intake-row::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--home-cyan);
  box-shadow: 0 0 16px rgba(0, 255, 224, .26);
  content: "";
}

.contact-page .contact-redesign .intake-row:nth-child(2)::before {
  background: var(--home-magenta);
  box-shadow: 0 0 16px rgba(255, 47, 125, .22);
}

.contact-page .contact-redesign .intake-row:nth-child(3)::before {
  background: var(--home-violet);
  box-shadow: 0 0 16px rgba(75, 53, 255, .26);
}

.contact-page .contact-redesign .intake-row b {
  display: block;
  color: #fff;
  font-size: 16px;
  line-height: 1.25;
}

.contact-page .contact-redesign .intake-row span {
  display: block;
  margin-top: 5px;
  color: rgba(181, 187, 200, .74);
  font-size: 13px;
  line-height: 1.5;
}

.contact-page .contact-redesign-form-shell {
  position: relative;
  align-self: center;
  overflow: hidden;
  min-height: min(680px, calc(100svh - 180px));
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 8px;
  padding: 26px 30px;
  background:
    radial-gradient(circle at 84% 12%, rgba(0, 255, 224, .08), transparent 12rem),
    linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .025)),
    rgba(9, 11, 17, .8);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, .42),
    inset 0 1px 0 rgba(255, 255, 255, .06);
  backdrop-filter: blur(18px);
}

.contact-page .contact-redesign-form-shell::before {
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 224, .32), transparent);
  content: "";
}

.contact-page .contact-redesign-form-shell .form-panel-heading {
  display: grid;
  gap: 9px;
  margin-bottom: 20px;
}

.contact-page .contact-redesign-form-shell .form-panel-heading h2 {
  max-width: 460px;
  color: #fff;
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: clamp(24px, 2.1vw, 31px);
  font-weight: 800;
  line-height: 1.14;
}

.contact-page .contact-redesign-form-shell .form-panel-heading h2 span {
  color: inherit;
  text-shadow: none;
}

.contact-page .contact-redesign-form-shell .fluent-form-live .ff-el-form-top fieldset {
  gap: 13px 16px;
}

.contact-page .contact-redesign-form-shell .fluent-form-live .ff-el-form-control {
  height: 40px;
  min-height: 40px;
}

.contact-page .contact-redesign-form-shell .fluent-form-live textarea.ff-el-form-control {
  height: 108px;
  min-height: 108px;
}

.contact-page .contact-redesign-form-shell .fluent-form-live .ff_submit_btn_wrapper {
  margin-top: 0 !important;
}

.contact-page .contact-redesign-form-shell .fluent-form-live .ff-btn-submit,
.contact-page .contact-redesign-form-shell .fluent-form-live button[type="submit"] {
  min-height: 48px;
  padding: 0 24px;
}

.contact-page .contact-redesign .section {
  padding: 108px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.contact-page .contact-redesign .pathway-section {
  background:
    linear-gradient(90deg, rgba(3, 4, 7, .98), rgba(3, 4, 7, .74)),
    url("images/home-network-bg.jpg") center / cover no-repeat,
    #090b11;
}

.contact-page .contact-redesign .pathway-layout {
  display: grid;
  grid-template-columns: minmax(0, .74fr) minmax(420px, .76fr);
  gap: 72px;
  align-items: end;
}

.contact-page .contact-redesign .pathway-copy {
  display: grid;
  gap: 24px;
}

.contact-page .contact-redesign .pathway-list {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.contact-page .contact-redesign .pathway-step {
  display: grid;
  min-height: 94px;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.contact-page .contact-redesign .pathway-step .number {
  color: rgba(255, 47, 125, .88);
  font-family: "Orbitron", Arial, Helvetica, sans-serif;
  font-size: 17px;
}

.contact-page .contact-redesign .pathway-step b {
  display: block;
  color: #fff;
  font-size: 16px;
  line-height: 1.3;
}

.contact-page .contact-redesign .pathway-step span {
  display: block;
  margin-top: 6px;
  color: rgba(181, 187, 200, .74);
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .contact-page .contact-redesign .section-inner,
  .contact-page .site-header .bar {
    width: min(calc(100% - 34px), 1160px);
  }

  .contact-page .site-header {
    position: relative;
    background: #030407;
  }

  .contact-page .site-header .brand-logo,
  .contact-page .site-header .custom-logo {
    height: 31px;
    max-width: 235px;
  }

  .contact-page .contact-redesign-hero {
    padding-top: 72px;
  }

  .contact-page .contact-redesign .contact-layout,
  .contact-page .contact-redesign .pathway-layout {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .ir-mobile-nav-ready.contact-page .site-header .nav {
    right: 0;
    left: 0;
    width: auto;
    transform: none;
  }
}

@media (max-width: 640px) {
  .contact-page .contact-redesign h1 {
    font-size: 42px;
  }

  .contact-page .contact-redesign .lead {
    font-size: 18px;
  }

  .contact-page .contact-redesign-form-shell {
    min-height: 0;
    padding: 22px;
  }

  .contact-page .contact-redesign .button {
    width: 100%;
  }

  .contact-page .contact-redesign .pathway-step {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 0;
  }
}

/* Hardcoded Projects case-study redesign, approved 2026-07-08. */
.project-page .projects-redesign {
  overflow-x: clip;
  background: #030407;
}

.project-page .site-header {
  min-height: 78px;
  border-bottom: 1px solid rgba(255, 47, 125, .16);
  background: rgba(3, 4, 7, .42);
  backdrop-filter: blur(14px);
}

.project-page .projects-redesign .section-inner,
.project-page .site-header .bar {
  width: min(calc(100% - 48px), 1160px);
}

.project-page .site-header .bar {
  min-height: 78px;
}

.project-page .site-header .brand-logo,
.project-page .site-header .custom-logo {
  height: 28px;
  max-width: 260px;
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, .08));
}

.project-page .site-header .nav {
  min-height: 50px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .015)),
    rgba(3, 4, 7, .48);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .03) inset,
    0 12px 34px rgba(0, 0, 0, .24);
  backdrop-filter: blur(18px);
}

.project-page .site-header .nav a {
  min-width: 86px;
  border-radius: 6px;
  padding: 11px 16px;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  font-weight: 800;
}

.project-page .site-header .nav a[aria-current="page"] {
  background: rgba(255, 255, 255, .07);
  color: #fff;
}

.project-page .site-header .nav a[aria-current="page"]::after {
  display: none;
}

.project-page .projects-redesign .projects-case-label {
  display: grid;
  gap: 16px;
  justify-items: start;
  margin: 0;
  color: #fff;
  font-family: "Orbitron", Arial, Helvetica, sans-serif;
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  text-shadow: 0 0 20px rgba(255, 255, 255, .06);
}

.project-page .projects-redesign .projects-case-label::after {
  width: 76px;
  height: 3px;
  background: var(--home-magenta);
  box-shadow: 0 0 16px rgba(255, 47, 125, .2);
  content: "";
}

.project-page .projects-redesign-hero .projects-case-label {
  font-size: clamp(36px, 4.8vw, 68px);
  max-width: none;
  white-space: nowrap;
}

.project-page .projects-redesign h1,
.project-page .projects-redesign h2 {
  color: #fff;
  font-family: "Orbitron", Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.project-page .projects-redesign h1 {
  max-width: 760px;
  font-size: clamp(36px, 3.6vw, 54px);
  line-height: 1.04;
}

.project-page .projects-redesign h2 {
  max-width: 800px;
  font-size: clamp(28px, 3.1vw, 42px);
  line-height: 1.06;
}

.project-page .projects-redesign h1 span,
.project-page .projects-redesign h2 span {
  color: var(--home-cyan);
  text-shadow: 0 0 18px rgba(0, 255, 224, .18);
}

.project-page .projects-redesign .lead {
  max-width: 630px;
  color: rgba(246, 247, 251, .8);
  font-size: 21px;
  line-height: 1.55;
}

.project-page .projects-redesign .copy {
  color: rgba(181, 187, 200, .8);
  font-size: 17px;
  line-height: 1.72;
}

.project-page .projects-redesign-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 930px;
  padding: 132px 0 88px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background:
    linear-gradient(135deg, #151820 0%, #07090f 52%, #020307 100%),
    #030407;
}

.project-page .projects-redesign-hero::after {
  background:
    linear-gradient(180deg, rgba(3, 4, 7, .1), #030407 96%),
    linear-gradient(90deg, rgba(3, 4, 7, .98), rgba(3, 4, 7, .8) 42%, rgba(3, 4, 7, .46)),
    radial-gradient(circle at 78% 28%, rgba(0, 255, 224, .12), transparent 18rem),
    radial-gradient(circle at 78% 76%, rgba(255, 47, 125, .14), transparent 20rem);
}

.project-page .projects-redesign-hero::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .04), transparent 30%),
    radial-gradient(circle at 86% 56%, rgba(255, 255, 255, .1), transparent 18rem);
  content: "";
  opacity: .72;
  pointer-events: none;
}

.project-page .projects-case-hero-layout {
  position: relative;
  z-index: 3;
  display: grid;
  min-height: calc(100svh - 132px);
  grid-template-columns: minmax(0, .7fr) minmax(460px, .8fr);
  gap: 72px;
  align-items: center;
}

.project-page .projects-case-copy {
  display: grid;
  gap: 24px;
}

.project-page .projects-case-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.project-page .projects-case-meta div {
  min-height: 92px;
  padding: 22px 18px;
  border-right: 1px solid rgba(255, 255, 255, .1);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.project-page .projects-case-meta div:nth-child(2n) {
  border-right: 0;
}

.project-page .projects-case-meta div:nth-last-child(-n+2) {
  border-bottom: 0;
}

.project-page .projects-case-meta b {
  display: block;
  color: #fff;
  font-family: "Orbitron", Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.08;
}

.project-page .projects-case-meta span {
  display: block;
  margin-top: 8px;
  color: rgba(181, 187, 200, .82);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.project-page .projects-product-visual {
  display: grid;
  align-self: center;
}

.project-page .projects-screen-frame img {
  display: block;
  width: min(124%, 860px);
  max-width: none;
  margin-left: -10%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center;
  filter:
    drop-shadow(0 34px 70px rgba(0, 0, 0, .46))
    drop-shadow(0 0 24px rgba(0, 255, 224, .08));
}

.project-page .projects-challenge-section {
  background:
    linear-gradient(90deg, rgba(3, 4, 7, .7), rgba(3, 4, 7, .7)),
    linear-gradient(180deg, rgba(3, 4, 7, .7), rgba(3, 4, 7, .7)),
    url("images/ir-xray-background.png") center / cover no-repeat,
    #030407;
}

.project-page .projects-narrative-layout,
.project-page .projects-impact-layout {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(420px, .78fr);
  gap: 72px;
  align-items: end;
}

.project-page .projects-narrative-copy,
.project-page .projects-impact-copy {
  display: grid;
  gap: 24px;
}

.project-page .projects-evidence-list,
.project-page .projects-result-list {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.project-page .projects-evidence-row,
.project-page .projects-result-row {
  display: grid;
  min-height: 78px;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  color: rgba(246, 247, 251, .88);
  font-size: 15px;
  font-weight: 800;
}

.project-page .projects-evidence-row {
  grid-template-columns: 44px 1fr;
}

.project-page .projects-evidence-row::before {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid rgba(255, 61, 61, .44);
  border-radius: 50%;
  background: rgba(255, 61, 61, .08);
  box-shadow: 0 0 18px rgba(255, 61, 61, .14);
  color: #ff4d5f;
  content: "×";
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.project-page .projects-solution-section {
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 47, 125, .07), transparent 18rem),
    #090b11;
}

.project-page .projects-solution-layout {
  display: grid;
  gap: 82px;
}

.project-page .projects-solution-top {
  display: grid;
  grid-template-columns: minmax(0, .74fr) minmax(420px, .76fr);
  gap: 72px;
  align-items: center;
}

.project-page .projects-brand-context {
  display: grid;
  gap: 22px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, .14);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.project-page .projects-brand-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 54px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}

.project-page .projects-brand-cell {
  display: grid;
  min-height: 82px;
  place-items: center;
  padding: 14px 18px;
}

.project-page .projects-brand-cell img {
  display: block;
  max-width: 100%;
  max-height: 58px;
  object-fit: contain;
  opacity: .94;
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, .08));
}

.project-page .projects-brand-arrow {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  justify-self: center;
  border: 1px solid rgba(0, 255, 224, .34);
  border-radius: 50%;
  color: var(--home-cyan);
  font-weight: 900;
  box-shadow: 0 0 16px rgba(0, 255, 224, .1);
}

.project-page .projects-brand-note {
  color: rgba(181, 187, 200, .78);
  font-size: 14px;
  line-height: 1.65;
}

.project-page .projects-deliverables-wrap {
  display: grid;
  gap: 28px;
}

.project-page .projects-deliverables-wrap h3 {
  color: #fff;
  font-size: 22px;
}

.project-page .projects-deliverable-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.project-page .projects-deliverable-row {
  display: grid;
  min-height: 168px;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 24px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .025)),
    rgba(255, 255, 255, .035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}

.project-page .projects-deliverable-row .number {
  grid-column: 1 / -1;
  color: rgba(255, 47, 125, .88);
  font-family: "Orbitron", Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
}

.project-page .projects-deliverable-row strong {
  display: block;
  color: #fff;
  font-size: 18px;
  line-height: 1.3;
}

.project-page .projects-deliverable-row img {
  display: block;
  justify-self: end;
  width: 40px;
  height: 40px;
  object-fit: contain;
  opacity: .82;
  filter: drop-shadow(0 0 10px rgba(0, 255, 224, .12));
}

.project-page .projects-impact-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .025), rgba(255, 255, 255, .01)),
    #10131b;
}

.project-page .projects-impact-section::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(3, 4, 7, .75), rgba(3, 4, 7, .75)),
    url("images/dir-impact-clinic.png") center / cover no-repeat;
  content: "";
  opacity: 1;
  pointer-events: none;
}

.project-page .projects-impact-section .section-inner {
  position: relative;
}

.project-page .projects-impact-layout {
  align-items: end;
}

.project-page .projects-impact-layout .projects-result-list {
  grid-template-columns: 1fr;
  margin-top: clamp(80px, 12vw, 150px);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.project-page .projects-result-row {
  grid-template-columns: 46px 1fr;
  min-height: 90px;
  padding: 0 22px 0 20px;
}

.project-page .projects-result-row::before {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid rgba(0, 255, 224, .38);
  border-radius: 50%;
  background: rgba(0, 255, 224, .08);
  box-shadow: 0 0 16px rgba(0, 255, 224, .12);
  color: var(--home-cyan);
  content: "✓";
  font-size: 14px;
  font-weight: 900;
}

.project-page .projects-next-section {
  background:
    linear-gradient(90deg, rgba(3, 4, 7, .98), rgba(3, 4, 7, .78)),
    #090b11;
}

.project-page .projects-next-panel {
  display: grid;
  gap: 24px;
  max-width: 900px;
}

.project-page .projects-redesign-cta {
  padding: 116px 0 108px;
  background:
    radial-gradient(circle at 76% 38%, rgba(75, 53, 255, .15), transparent 24rem),
    #090b11;
}

.project-page .projects-redesign .cta-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
}

.project-page .projects-redesign .cta-line h2 {
  max-width: 880px;
  font-size: clamp(31px, 4vw, 56px);
}

.project-page .projects-redesign .cta-line .lead {
  margin-top: 16px;
  font-size: 20px;
}

@media (max-width: 980px) {
  .project-page .projects-redesign .section-inner,
  .project-page .site-header .bar {
    width: min(calc(100% - 34px), 1160px);
  }

  .project-page .site-header {
    position: relative;
    background: #030407;
  }

  .project-page .site-header .brand-logo,
  .project-page .site-header .custom-logo {
    height: 31px;
    max-width: 235px;
  }

  .project-page .projects-redesign-hero {
    min-height: 0;
    padding-top: 72px;
  }

  .project-page .projects-case-hero-layout,
  .project-page .projects-narrative-layout,
  .project-page .projects-solution-top,
  .project-page .projects-impact-layout,
  .project-page .projects-redesign .cta-line {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .project-page .projects-deliverable-list {
    grid-template-columns: 1fr;
  }

  .project-page .projects-impact-layout .projects-result-list {
    margin-top: 16px;
  }

  .project-page .projects-screen-frame img {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .project-page .projects-redesign h1 {
    font-size: 42px;
  }

  .project-page .projects-redesign .lead {
    font-size: 18px;
  }

  .project-page .projects-case-meta,
  .project-page .projects-brand-flow {
    grid-template-columns: 1fr;
  }

  .project-page .projects-brand-arrow {
    transform: rotate(90deg);
  }

  .project-page .projects-case-meta div {
    border-right: 0;
  }

  .project-page .projects-case-meta div:nth-last-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }
}

/* Final responsive hero viewport polish for the hardcoded redesign pages. */
.home-page .home-redesign-hero,
.about-page .about-redesign-hero,
.contact-page .contact-redesign-hero,
.project-page .projects-redesign-hero {
  min-height: 100svh;
  min-height: 100dvh;
}

.home-page .home-redesign-hero {
  padding-block: clamp(112px, 14svh, 154px) clamp(52px, 8svh, 84px);
}

.home-page .home-redesign .hero-grid {
  min-height: calc(100svh - clamp(164px, 22svh, 238px));
  min-height: calc(100dvh - clamp(164px, 22dvh, 238px));
}

.about-page .about-redesign-hero {
  padding-top: clamp(104px, 13svh, 132px);
}

.about-page .about-redesign-hero .section-inner {
  min-height: calc(100svh - clamp(104px, 13svh, 132px));
  min-height: calc(100dvh - clamp(104px, 13dvh, 132px));
  padding-bottom: clamp(48px, 8svh, 74px);
}

.contact-page .contact-redesign-hero,
.project-page .projects-redesign-hero {
  padding-block: clamp(104px, 13svh, 132px) clamp(56px, 8svh, 88px);
}

.contact-page .contact-redesign .contact-layout,
.project-page .projects-case-hero-layout {
  min-height: calc(100svh - clamp(160px, 21svh, 220px));
  min-height: calc(100dvh - clamp(160px, 21dvh, 220px));
}

.home-page .home-redesign .button-row,
.about-page .about-redesign .button-row,
.contact-page .contact-redesign .button-row,
.project-page .projects-redesign .button-row {
  position: relative;
  z-index: 2;
}

@media (max-height: 780px) and (min-width: 981px) {
  .home-page .home-redesign-hero,
  .contact-page .contact-redesign-hero,
  .project-page .projects-redesign-hero {
    padding-block: 96px 44px;
  }

  .about-page .about-redesign-hero {
    padding-top: 96px;
  }

  .about-page .about-redesign-hero .section-inner {
    padding-bottom: 44px;
  }

  .home-page .home-redesign .hero-grid,
  .contact-page .contact-redesign .contact-layout,
  .project-page .projects-case-hero-layout {
    min-height: calc(100svh - 140px);
    min-height: calc(100dvh - 140px);
  }

  .about-page .about-redesign-hero .section-inner {
    min-height: calc(100svh - 96px);
    min-height: calc(100dvh - 96px);
  }

  .home-page .home-redesign h1,
  .project-page .projects-redesign h1 {
  font-size: clamp(42px, 4.25vw, 64px);
  }

  .about-page .about-redesign h1,
  .contact-page .contact-redesign h1 {
    font-size: clamp(42px, 4.8vw, 68px);
  }

  .home-page .home-redesign .lead,
  .about-page .about-redesign .lead,
  .contact-page .contact-redesign .lead,
  .project-page .projects-redesign .lead {
    font-size: 18px;
  }

  .home-page .home-redesign .hero-proof,
  .project-page .projects-case-meta {
    margin-top: 18px;
  }

  .home-page .home-redesign .hero-proof div,
  .project-page .projects-case-meta div {
    min-height: 76px;
    padding-block: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .home-redesign-hero .ir-hero-video,
  .about-page .about-redesign-hero .ir-hero-video,
  .contact-page .contact-redesign-hero .ir-hero-video,
  .project-page .projects-redesign-hero .ir-hero-video {
    display: none;
  }
}

@media (max-height: 680px) and (min-width: 981px) {
  .home-page .home-redesign-hero,
  .contact-page .contact-redesign-hero,
  .project-page .projects-redesign-hero {
    padding-block: 84px 36px;
  }

  .about-page .about-redesign-hero {
    padding-top: 84px;
  }

  .about-page .about-redesign-hero .section-inner {
    padding-bottom: 36px;
  }

  .home-page .home-redesign .hero-grid,
  .contact-page .contact-redesign .contact-layout,
  .project-page .projects-case-hero-layout {
    min-height: calc(100svh - 120px);
    min-height: calc(100dvh - 120px);
  }

  .about-page .about-redesign-hero .section-inner {
    min-height: calc(100svh - 84px);
    min-height: calc(100dvh - 84px);
  }

  .home-page .home-redesign .hero-grid,
  .project-page .projects-case-hero-layout {
    align-items: start;
  }

  .home-page .home-redesign h1,
  .project-page .projects-redesign h1 {
    font-size: clamp(38px, 3.9vw, 56px);
  }

  .contact-page .contact-redesign h1 {
    font-size: clamp(38px, 4.4vw, 60px);
  }

  .about-page .about-redesign h1 {
    font-size: clamp(38px, 4.2vw, 58px);
  }

  .home-page .home-redesign .hero-proof,
  .project-page .projects-case-meta,
  .contact-page .contact-redesign .contact-intake {
    max-height: 34svh;
    overflow: hidden;
  }
}

/* Final header alignment for the hardcoded redesign pages. */
@media (min-width: 981px) {
  .home-page .site-header,
  .about-page .site-header,
  .contact-page .site-header,
  .project-page .site-header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 20;
    min-height: 78px;
    border-bottom: 1px solid rgba(255, 47, 125, .16);
    background: rgba(3, 4, 7, .42);
    backdrop-filter: blur(14px);
  }

  .home-page .site-header .bar,
  .about-page .site-header .bar,
  .contact-page .site-header .bar,
  .project-page .site-header .bar {
    width: min(calc(100% - 48px), 1160px);
    min-height: 78px;
  }

  .home-page .site-header .brand-logo,
  .home-page .site-header .custom-logo,
  .about-page .site-header .brand-logo,
  .about-page .site-header .custom-logo,
  .contact-page .site-header .brand-logo,
  .contact-page .site-header .custom-logo,
  .project-page .site-header .brand-logo,
  .project-page .site-header .custom-logo {
    height: 28px;
    max-width: 260px;
    filter: drop-shadow(0 0 14px rgba(255, 255, 255, .08));
  }

  .home-page .site-header .nav,
  .about-page .site-header .nav,
  .contact-page .site-header .nav,
  .project-page .site-header .nav {
    align-items: center;
    gap: 6px;
    min-height: 50px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .015)),
      rgba(3, 4, 7, .48);
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, .03) inset,
      0 12px 34px rgba(0, 0, 0, .24);
    backdrop-filter: blur(18px);
  }

  .home-page .site-header .nav a,
  .about-page .site-header .nav a,
  .contact-page .site-header .nav a,
  .project-page .site-header .nav a {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-width: 86px;
    padding: 11px 16px;
    border-radius: 6px;
    background: transparent;
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
    font-weight: 800;
    text-align: center;
    text-shadow: none;
    transition:
      color .26s ease,
      text-shadow .26s ease,
      transform .26s ease;
  }

  .home-page .site-header .nav a::before,
  .about-page .site-header .nav a::before,
  .contact-page .site-header .nav a::before,
  .project-page .site-header .nav a::before {
    position: absolute;
    inset: 4px;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: inherit;
    background:
      radial-gradient(circle at 50% 0%, rgba(255, 255, 255, .18), transparent 58%),
      radial-gradient(circle at 84% 78%, rgba(0, 255, 224, .06), transparent 42%),
      rgba(255, 255, 255, .045);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, .16),
      inset 0 -1px 0 rgba(255, 255, 255, .04),
      0 10px 28px rgba(0, 0, 0, .16),
      0 0 18px rgba(255, 255, 255, .06);
    content: "" !important;
    opacity: 0;
    transform: scale(.88);
    transition:
      opacity .26s ease,
      transform .26s ease;
  }

  .home-page .site-header .nav a:hover,
  .home-page .site-header .nav a:focus-visible,
  .about-page .site-header .nav a:hover,
  .about-page .site-header .nav a:focus-visible,
  .contact-page .site-header .nav a:hover,
  .contact-page .site-header .nav a:focus-visible,
  .project-page .site-header .nav a:hover,
  .project-page .site-header .nav a:focus-visible {
    background: transparent;
    color: #fff;
    text-shadow: 0 0 14px rgba(255, 255, 255, .18);
    transform: translateY(-1px);
  }

  .home-page .site-header .nav a:hover::before,
  .home-page .site-header .nav a:focus-visible::before,
  .about-page .site-header .nav a:hover::before,
  .about-page .site-header .nav a:focus-visible::before,
  .contact-page .site-header .nav a:hover::before,
  .contact-page .site-header .nav a:focus-visible::before,
  .project-page .site-header .nav a:hover::before,
  .project-page .site-header .nav a:focus-visible::before {
    opacity: 1;
    transform: scale(1);
  }

  .home-page .site-header .nav a[aria-current="page"],
  .about-page .site-header .nav a[aria-current="page"],
  .contact-page .site-header .nav a[aria-current="page"],
  .project-page .site-header .nav a[aria-current="page"] {
    background: rgba(255, 255, 255, .07);
    color: #fff;
  }

  .home-page .site-header .nav a:not([aria-current="page"])::after,
  .about-page .site-header .nav a:not([aria-current="page"])::after,
  .contact-page .site-header .nav a:not([aria-current="page"])::after,
  .project-page .site-header .nav a:not([aria-current="page"])::after {
    position: absolute;
    right: 38px;
    bottom: 7px;
    left: 38px;
    height: 1px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 224, .46), rgba(255, 255, 255, .36), transparent);
    box-shadow: 0 0 8px rgba(0, 255, 224, .16);
    content: "" !important;
    opacity: 0;
    transform: scaleX(.2);
    transition:
      opacity .26s ease,
      transform .26s ease;
  }

  .home-page .site-header .nav a:not([aria-current="page"]):hover::after,
  .home-page .site-header .nav a:not([aria-current="page"]):focus-visible::after,
  .about-page .site-header .nav a:not([aria-current="page"]):hover::after,
  .about-page .site-header .nav a:not([aria-current="page"]):focus-visible::after,
  .contact-page .site-header .nav a:not([aria-current="page"]):hover::after,
  .contact-page .site-header .nav a:not([aria-current="page"]):focus-visible::after,
  .project-page .site-header .nav a:not([aria-current="page"]):hover::after,
  .project-page .site-header .nav a:not([aria-current="page"]):focus-visible::after {
    opacity: 1;
    transform: scaleX(1);
  }

  .home-page .site-header .nav a[aria-current="page"]::after,
  .about-page .site-header .nav a[aria-current="page"]::after,
  .contact-page .site-header .nav a[aria-current="page"]::after,
  .project-page .site-header .nav a[aria-current="page"]::after {
    display: none;
  }
}

/* Premium scroll-aware header behavior for redesigned pages. */
@media (min-width: 981px) {
  .ir-header-ready.home-page .site-header,
  .ir-header-ready.about-page .site-header,
  .ir-header-ready.contact-page .site-header,
  .ir-header-ready.project-page .site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    opacity: 1;
    transition:
      opacity .42s cubic-bezier(.22, 1, .36, 1),
      background-color .42s ease,
      border-color .42s ease,
      box-shadow .42s ease,
      backdrop-filter .42s ease;
    will-change: opacity;
  }

  .admin-bar.ir-header-ready.home-page .site-header,
  .admin-bar.ir-header-ready.about-page .site-header,
  .admin-bar.ir-header-ready.contact-page .site-header,
  .admin-bar.ir-header-ready.project-page .site-header {
    top: 32px;
  }

  .ir-header-scrolled.home-page .site-header,
  .ir-header-scrolled.about-page .site-header,
  .ir-header-scrolled.contact-page .site-header,
  .ir-header-scrolled.project-page .site-header {
    border-bottom-color: rgba(255, 47, 125, .22);
    background: rgba(3, 4, 7, .68);
    box-shadow:
      0 18px 44px rgba(0, 0, 0, .24),
      0 1px 0 rgba(255, 255, 255, .04) inset;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .ir-header-hidden:not(.ir-mobile-nav-open).home-page .site-header,
  .ir-header-hidden:not(.ir-mobile-nav-open).about-page .site-header,
  .ir-header-hidden:not(.ir-mobile-nav-open).contact-page .site-header,
  .ir-header-hidden:not(.ir-mobile-nav-open).project-page .site-header {
    opacity: 0;
    pointer-events: none;
  }
}

@media (min-width: 981px) and (prefers-reduced-motion: reduce) {
  .ir-header-ready.home-page .site-header,
  .ir-header-ready.about-page .site-header,
  .ir-header-ready.contact-page .site-header,
  .ir-header-ready.project-page .site-header {
    opacity: 1;
    transition: none;
  }
}

/* Deterministic smoked-glass selected state for mobile navigation. */
@media (max-width: 980px) {
  body.ir-mobile-nav-ready .site-header .nav a {
    box-sizing: border-box;
  }

  body.ir-mobile-nav-ready .site-header .nav a.is-current,
  body.ir-mobile-nav-ready .site-header .nav a[aria-current="page"],
  body.ir-mobile-nav-ready .site-header .nav .current-menu-item > a,
  body.ir-mobile-nav-ready .site-header .nav .current_page_item > a {
    border: 1px solid rgba(255, 255, 255, .28) !important;
    background: linear-gradient(135deg, #242830, #12191c 68%, #10201f) !important;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, .12),
      0 10px 24px rgba(0, 0, 0, .3),
      0 0 16px rgba(0, 255, 224, .07) !important;
    color: #fff;
    text-shadow: 0 0 12px rgba(255, 255, 255, .12);
    transform: none;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  body.ir-mobile-nav-ready .site-header .nav a.is-current::before,
  body.ir-mobile-nav-ready .site-header .nav a[aria-current="page"]::before,
  body.ir-mobile-nav-ready .site-header .nav .current-menu-item > a::before,
  body.ir-mobile-nav-ready .site-header .nav .current_page_item > a::before {
    opacity: 0 !important;
  }

  body.ir-mobile-nav-ready .site-header .nav a.is-current::after,
  body.ir-mobile-nav-ready .site-header .nav a[aria-current="page"]::after,
  body.ir-mobile-nav-ready .site-header .nav .current-menu-item > a::after,
  body.ir-mobile-nav-ready .site-header .nav .current_page_item > a::after {
    display: none !important;
  }
}

/* Prevent iOS and other touch browsers from retaining a tap as a hover state. */
@media (max-width: 980px) and (hover: none), (max-width: 980px) and (pointer: coarse) {
  body.ir-mobile-nav-ready .site-header .nav a:not(.is-current):not([aria-current="page"]) {
    border-color: transparent !important;
    background: transparent !important;
    box-shadow: none !important;
    color: rgba(255, 255, 255, .78);
    text-shadow: none;
    transform: none;
  }

  body.ir-mobile-nav-ready .site-header .nav a:not(.is-current):not([aria-current="page"])::before,
  body.ir-mobile-nav-ready .site-header .nav a:not(.is-current):not([aria-current="page"])::after {
    display: none !important;
  }
}
