:root {
  color-scheme: light;
  --ink: #07111f;
  --muted: #536174;
  --muted-strong: #314256;
  --line: #d7e2ee;
  --line-dark: rgb(255 255 255 / 14%);
  --surface: #ffffff;
  --soft: #f4f8fc;
  --soft-blue: #eaf6ff;
  --navy: #06182d;
  --navy-2: #0a213a;
  --black: #03070c;
  --blue: #0f86d8;
  --blue-dark: #075f9f;
  --blue-bright: #24b7ff;
  --green: #2cb879;
  --radius: 8px;
  --radius-sm: 6px;
  --shadow-sm: 0 10px 28px rgb(8 22 38 / 8%);
  --shadow: 0 22px 60px rgb(8 22 38 / 14%);
  --shadow-dark: 0 22px 70px rgb(0 0 0 / 30%);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

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

a:hover {
  color: var(--blue);
}

p {
  margin: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  color: #fff;
  background: var(--blue);
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgb(3 7 12 / 94%);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(var(--max), calc(100% - 2rem));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  color: #fff;
  font-weight: 800;
}

.brand-logo {
  width: 158px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: rgb(255 255 255 / 76%);
  font-size: 0.94rem;
  font-weight: 750;
}

.site-nav a {
  padding: 0.55rem 0.62rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
  background: rgb(255 255 255 / 7%);
  border-color: rgb(255 255 255 / 10%);
}

.site-nav a[aria-current="page"] {
  color: #fff;
  background: rgb(36 183 255 / 13%);
  border-color: rgb(36 183 255 / 30%);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  color: #fff;
  background: rgb(255 255 255 / 7%);
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: var(--radius);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  content: "";
  background: currentColor;
  border-radius: 999px;
}

.menu-toggle span {
  margin: 5px 0;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 46px;
  padding: 0.78rem 1.14rem;
  color: #fff;
  background: linear-gradient(180deg, var(--blue-bright), var(--blue));
  border: 1px solid rgb(36 183 255 / 34%);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgb(15 134 216 / 25%);
  font: inherit;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover,
.button:focus-visible {
  color: #fff;
  background: linear-gradient(180deg, #3bc0ff, var(--blue-dark));
  border-color: rgb(36 183 255 / 52%);
  box-shadow: 0 14px 34px rgb(15 134 216 / 32%);
  transform: translateY(-1px);
}

.button.secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
  box-shadow: 0 10px 24px rgb(8 22 38 / 8%);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  color: var(--ink);
  background: var(--soft);
  border-color: #bdd2e5;
  box-shadow: 0 12px 28px rgb(8 22 38 / 10%);
}

.button.dark {
  color: #fff;
  background: linear-gradient(180deg, #13253a, var(--black));
  border-color: rgb(255 255 255 / 16%);
  box-shadow: 0 12px 30px rgb(0 0 0 / 20%);
}

.button.dark:hover,
.button.dark:focus-visible {
  background: linear-gradient(180deg, #1a314a, #07111f);
  border-color: rgb(36 183 255 / 35%);
}

.hero .button.secondary,
.page-hero .button.secondary,
.cta-band .button.secondary {
  color: #fff;
  background: rgb(255 255 255 / 8%);
  border-color: rgb(255 255 255 / 18%);
  box-shadow: none;
}

.hero .button.secondary:hover,
.hero .button.secondary:focus-visible,
.page-hero .button.secondary:hover,
.page-hero .button.secondary:focus-visible,
.cta-band .button.secondary:hover,
.cta-band .button.secondary:focus-visible {
  color: #fff;
  background: rgb(255 255 255 / 14%);
  border-color: rgb(36 183 255 / 36%);
}

.section {
  padding: 5.5rem 0;
}

.section.tight {
  padding: 4rem 0;
}

.section.soft {
  background:
    linear-gradient(180deg, #fff 0%, var(--soft) 100%);
}

.section.dark {
  position: relative;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgb(36 183 255 / 16%), transparent 34rem),
    linear-gradient(135deg, rgb(5 17 31 / 98%), rgb(2 7 13 / 99%)),
    var(--black);
}

.section.dark::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgb(255 255 255 / 5%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 5%) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, transparent, #000 25%, #000 70%, transparent);
}

.section.dark > .container {
  position: relative;
  z-index: 1;
}

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.dark .eyebrow,
.hero .eyebrow,
.page-hero .eyebrow,
.cta-band .eyebrow {
  color: var(--blue-bright);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 840px;
  font-size: 4.65rem;
}

h2 {
  max-width: 780px;
  font-size: 3rem;
}

h3 {
  font-size: 1.25rem;
}

.lead {
  max-width: 720px;
  color: #304158;
  font-size: 1.16rem;
  line-height: 1.7;
}

.dark .lead,
.hero .lead,
.page-hero .lead {
  color: rgb(255 255 255 / 82%);
}

.section-head {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.section-head.split {
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 2rem;
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--black);
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.66;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 72% 38%, rgb(36 183 255 / 20%), transparent 28rem),
    linear-gradient(90deg, rgb(3 7 12 / 96%) 0%, rgb(3 7 12 / 83%) 44%, rgb(3 7 12 / 36%) 100%),
    linear-gradient(0deg, rgb(3 7 12 / 76%) 0%, rgb(3 7 12 / 4%) 50%);
}

.hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgb(255 255 255 / 5%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 5%) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, #000 0%, #000 48%, transparent 82%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: end;
  gap: 2.5rem;
  padding: 6.25rem 0 5rem;
}

.hero-copy {
  display: grid;
  gap: 1.35rem;
  max-width: 820px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.2rem;
}

.hero-service-line {
  color: #fff;
  font-size: 1rem;
  font-weight: 850;
}

.hero-location-line {
  max-width: 680px;
  color: rgb(255 255 255 / 78%);
  font-size: 1rem;
  line-height: 1.6;
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.15rem;
}

.service-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.42rem 0.68rem;
  color: rgb(255 255 255 / 88%);
  background: rgb(255 255 255 / 9%);
  border: 1px solid rgb(255 255 255 / 15%);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-card {
  display: grid;
  gap: 1rem;
  padding: 1.15rem;
  background: rgb(5 17 31 / 78%);
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: var(--radius);
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(14px);
}

.hero-card-label {
  color: var(--blue-bright);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-card ul {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-card li {
  display: grid;
  gap: 0.12rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgb(255 255 255 / 12%);
}

.hero-card li:first-child {
  padding-top: 0;
  border-top: 0;
}

.hero-card strong {
  color: #fff;
  font-size: 0.98rem;
}

.hero-card span:not(.hero-card-label) {
  color: rgb(255 255 255 / 70%);
  font-size: 0.92rem;
  line-height: 1.5;
}

.proof-strip {
  width: min(var(--max), calc(100% - 2rem));
  margin: -2rem auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.proof-item {
  min-height: 118px;
  display: grid;
  align-content: start;
  gap: 0.35rem;
  padding: 1.15rem;
  background: #fff;
}

.proof-item strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.2;
}

.proof-item span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.grid {
  display: grid;
  align-items: stretch;
  gap: 1rem;
}

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

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

.card {
  min-height: 100%;
  padding: 1.45rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.card:hover {
  border-color: #bdd2e5;
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.card.dark-card {
  background: rgb(255 255 255 / 7%);
  border-color: rgb(255 255 255 / 16%);
  box-shadow: none;
}

.card.dark-card:hover {
  border-color: rgb(36 183 255 / 32%);
  box-shadow: 0 18px 48px rgb(0 0 0 / 20%);
}

.card h3 {
  margin-bottom: 0.6rem;
}

.card p,
.card li {
  color: var(--muted);
}

.card .eyebrow {
  color: var(--blue);
}

.dark .card p,
.dark .card li {
  color: rgb(255 255 255 / 74%);
}

.card ul,
.check-list {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.card li,
.check-list li {
  position: relative;
  padding-left: 1.35rem;
}

.card li::before,
.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 0.45rem;
  height: 0.45rem;
  content: "";
  background: var(--green);
  border-radius: 50%;
}

.icon-row {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 1rem;
  color: #fff;
  background:
    linear-gradient(180deg, var(--blue-bright), var(--blue));
  border-radius: var(--radius);
  box-shadow: 0 10px 22px rgb(15 134 216 / 24%);
}

.icon-row svg {
  width: 22px;
  height: 22px;
}

.service-card,
.service-detail {
  display: grid;
  align-content: start;
}

.service-detail {
  gap: 0.85rem;
}

.service-detail h2 {
  font-size: 1.55rem;
}

.service-detail .icon-row {
  margin-bottom: 0;
}

.content-stack {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.section-link {
  margin-top: 1.25rem;
  font-weight: 850;
}

.section-link a {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.25em;
}

.section-link a:hover,
.section-link a:focus-visible {
  color: var(--blue-dark);
}

.dark-link a {
  color: var(--blue-bright);
}

.dark-link a:hover,
.dark-link a:focus-visible {
  color: #fff;
}

.note-text {
  color: var(--muted-strong);
  font-size: 0.98rem;
  line-height: 1.6;
}

.policy-content p,
.policy-content li {
  color: var(--muted-strong);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.trust-item {
  min-height: 168px;
  display: grid;
  align-content: start;
  gap: 0.45rem;
  padding: 1.35rem;
  background: #fff;
}

.trust-item strong {
  font-size: 1.06rem;
  line-height: 1.25;
}

.trust-item span {
  color: var(--muted);
  line-height: 1.55;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  background: rgb(255 255 255 / 16%);
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: var(--radius);
}

.process-step {
  padding: 1.45rem;
  background: rgb(255 255 255 / 7%);
}

.process-step span {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--black);
  background: var(--blue-bright);
  border-radius: 50%;
  font-size: 0.88rem;
  font-weight: 900;
}

.process-step p {
  margin-top: 0.55rem;
  color: rgb(255 255 255 / 74%);
}

.cta-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
  overflow: hidden;
  padding: 2rem;
  color: #fff;
  background:
    radial-gradient(circle at 82% 12%, rgb(36 183 255 / 20%), transparent 20rem),
    linear-gradient(135deg, var(--navy), var(--black));
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cta-band p {
  color: rgb(255 255 255 / 78%);
}

.cta-band h2 {
  font-size: 2.3rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.5rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 5.25rem 0 4.25rem;
  color: #fff;
  background:
    radial-gradient(circle at 78% 8%, rgb(36 183 255 / 17%), transparent 28rem),
    linear-gradient(135deg, rgb(5 17 31 / 98%), rgb(3 7 12 / 99%)),
    var(--black);
}

.page-hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgb(255 255 255 / 5%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 5%) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, #000, transparent 82%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  color: rgb(255 255 255 / 68%);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: #fff;
}

.breadcrumb a:hover {
  color: var(--blue-bright);
}

.inner-page-hero {
  min-height: clamp(360px, 38vw, 420px);
  display: grid;
  align-items: center;
  isolation: isolate;
  padding: 0;
  background:
    radial-gradient(circle at 78% 34%, rgb(36 183 255 / 20%), transparent 25rem),
    linear-gradient(115deg, #03070c 0%, #06182d 56%, #03101e 100%),
    var(--black);
}

.inner-page-hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    linear-gradient(90deg, rgb(3 7 12 / 99%) 0%, rgb(4 13 24 / 97%) 45%, rgb(4 13 24 / 80%) 64%, rgb(4 13 24 / 42%) 100%),
    linear-gradient(0deg, rgb(3 7 12 / 26%) 0%, transparent 42%);
}

.inner-page-hero::after {
  z-index: 0;
  background-image:
    linear-gradient(rgb(255 255 255 / 5%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 5%) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, transparent 0%, transparent 42%, #000 72%, #000 100%);
}

.inner-page-hero-content {
  min-height: inherit;
  align-items: center;
  padding: 2.65rem 0;
}

.inner-page-hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.68rem;
  max-width: min(720px, 64vw);
}

.inner-page-hero h1 {
  max-width: 720px;
  font-size: clamp(2.4rem, 3.3vw, 3.15rem);
}

.inner-page-hero .lead {
  max-width: 700px;
  font-size: 1rem;
  line-height: 1.55;
}

.inner-page-hero .eyebrow {
  margin: 0;
}

.inner-page-hero-visual {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 1;
  width: min(58vw, 690px);
  overflow: hidden;
  pointer-events: none;
}

.inner-page-hero-visual::before,
.inner-page-hero-visual::after {
  position: absolute;
  content: "";
  border-radius: 999px;
}

.inner-page-hero-visual::before {
  width: 26rem;
  height: 26rem;
  right: -7rem;
  top: -7rem;
  background: radial-gradient(circle, rgb(36 183 255 / 20%), transparent 65%);
}

.inner-page-hero-visual::after {
  width: 19rem;
  height: 19rem;
  right: 16%;
  bottom: -9rem;
  background: radial-gradient(circle, rgb(44 184 121 / 12%), transparent 68%);
}

.inner-hero-grid,
.inner-hero-glow,
.inner-hero-panel,
.inner-hero-node,
.inner-hero-line {
  position: absolute;
  display: block;
}

.inner-hero-grid {
  inset: 8% -12% 5% 6%;
  opacity: 0.7;
  background:
    linear-gradient(120deg, transparent 0 47%, rgb(36 183 255 / 18%) 48% 49%, transparent 50% 100%),
    linear-gradient(rgb(255 255 255 / 7%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 7%) 1px, transparent 1px);
  background-size: 180px 180px, 42px 42px, 42px 42px;
  mask-image: linear-gradient(90deg, transparent, #000 26%, #000 86%, transparent);
}

.inner-hero-glow {
  border-radius: 999px;
  filter: blur(2px);
}

.inner-hero-glow-a {
  width: 18rem;
  height: 18rem;
  right: 12%;
  top: 18%;
  background: radial-gradient(circle, rgb(36 183 255 / 22%), transparent 64%);
}

.inner-hero-glow-b {
  width: 11rem;
  height: 11rem;
  right: 50%;
  bottom: 10%;
  background: radial-gradient(circle, rgb(15 134 216 / 18%), transparent 68%);
}

.inner-hero-panel {
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgb(255 255 255 / 13%), rgb(255 255 255 / 5%)),
    rgb(6 24 45 / 76%);
  box-shadow: 0 22px 60px rgb(0 0 0 / 26%);
  backdrop-filter: blur(10px);
}

.inner-hero-panel::before,
.inner-hero-panel::after {
  position: absolute;
  content: "";
}

.inner-hero-panel::before {
  left: 1rem;
  right: 1rem;
  top: 1rem;
  height: 2.5rem;
  border-top: 2px solid rgb(36 183 255 / 62%);
  border-bottom: 1px solid rgb(255 255 255 / 14%);
}

.inner-hero-panel::after {
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  height: 2.35rem;
  background:
    linear-gradient(90deg, rgb(36 183 255 / 68%) 0 20%, transparent 20% 27%, rgb(255 255 255 / 28%) 27% 45%, transparent 45% 52%, rgb(255 255 255 / 18%) 52% 100%);
}

.inner-hero-panel-a {
  width: 18rem;
  height: 9.6rem;
  right: 14%;
  top: 21%;
  transform: rotate(-2deg);
}

.inner-hero-panel-b {
  width: 10.2rem;
  height: 12.4rem;
  right: 5%;
  bottom: 14%;
  transform: rotate(3deg);
}

.inner-hero-panel-c {
  width: 15.2rem;
  height: 4.4rem;
  right: 35%;
  bottom: 20%;
  transform: rotate(1deg);
}

.inner-hero-node {
  width: 0.88rem;
  height: 0.88rem;
  border: 2px solid rgb(36 183 255 / 86%);
  border-radius: 999px;
  background: rgb(3 7 12 / 86%);
  box-shadow: 0 0 0 0.42rem rgb(36 183 255 / 10%), 0 0 24px rgb(36 183 255 / 42%);
}

.inner-hero-node-a {
  right: 44%;
  top: 26%;
}

.inner-hero-node-b {
  right: 24%;
  top: 58%;
}

.inner-hero-node-c {
  right: 57%;
  bottom: 23%;
}

.inner-hero-line {
  height: 2px;
  transform-origin: left center;
  background: linear-gradient(90deg, transparent, rgb(36 183 255 / 58%), transparent);
}

.inner-hero-line-a {
  width: 13.8rem;
  right: 27%;
  top: 32%;
  transform: rotate(14deg);
}

.inner-hero-line-b {
  width: 12rem;
  right: 36%;
  top: 59%;
  transform: rotate(-19deg);
}

.inner-hero-line-c {
  width: 10rem;
  right: 18%;
  bottom: 28%;
  transform: rotate(9deg);
}

.inner-page-hero--services .inner-hero-panel-a {
  background:
    radial-gradient(circle at 82% 25%, rgb(36 183 255 / 17%), transparent 42%),
    linear-gradient(90deg, rgb(255 255 255 / 11%) 0 8%, transparent 8% 100%),
    linear-gradient(180deg, rgb(255 255 255 / 14%), rgb(255 255 255 / 5%)),
    rgb(6 24 45 / 78%);
}

.inner-page-hero--services .inner-hero-panel-b::before {
  height: 5.8rem;
  border: 1px solid rgb(36 183 255 / 28%);
  background:
    radial-gradient(circle at 50% 28%, rgb(36 183 255 / 64%) 0 0.34rem, transparent 0.38rem),
    linear-gradient(rgb(255 255 255 / 8%) 1px, transparent 1px);
  background-size: auto, 100% 1.2rem;
}

.inner-page-hero--services .inner-hero-panel-c {
  height: 3.8rem;
}

.inner-page-hero--services .inner-hero-panel-c::before {
  top: 1.18rem;
  height: 0.4rem;
  border: 0;
  background: linear-gradient(90deg, rgb(36 183 255 / 70%), rgb(44 184 121 / 44%), rgb(36 183 255 / 30%));
}

.inner-page-hero--partners {
  background:
    radial-gradient(circle at 79% 35%, rgb(36 183 255 / 18%), transparent 24rem),
    radial-gradient(circle at 88% 84%, rgb(44 184 121 / 10%), transparent 18rem),
    linear-gradient(115deg, #03070c 0%, #06182d 56%, #03101e 100%),
    var(--black);
}

.inner-page-hero--partners .inner-hero-grid {
  background-size: 140px 140px, 38px 38px, 38px 38px;
}

.inner-page-hero--partners .inner-hero-panel-a {
  right: 21%;
  top: 18%;
  width: 14rem;
  height: 12.4rem;
}

.inner-page-hero--partners .inner-hero-panel-b {
  right: 6%;
  bottom: 17%;
  width: 12.8rem;
  height: 8.4rem;
}

.inner-page-hero--partners .inner-hero-panel-c {
  right: 43%;
  bottom: 18%;
  width: 12rem;
  height: 5.2rem;
}

.inner-page-hero--partners .inner-hero-node {
  width: 1.05rem;
  height: 1.05rem;
  border-color: rgb(44 184 121 / 86%);
  box-shadow: 0 0 0 0.46rem rgb(44 184 121 / 9%), 0 0 24px rgb(36 183 255 / 36%);
}

.inner-page-hero--partners .inner-hero-node-a {
  right: 52%;
  top: 25%;
}

.inner-page-hero--partners .inner-hero-node-b {
  right: 17%;
  top: 48%;
}

.inner-page-hero--partners .inner-hero-node-c {
  right: 61%;
  bottom: 21%;
}

.inner-page-hero--partners .inner-hero-line-a,
.inner-page-hero--partners .inner-hero-line-b,
.inner-page-hero--partners .inner-hero-line-c {
  background: linear-gradient(90deg, transparent, rgb(44 184 121 / 50%), rgb(36 183 255 / 50%), transparent);
}

.inner-page-hero--about {
  background:
    radial-gradient(circle at 78% 34%, rgb(36 183 255 / 16%), transparent 24rem),
    radial-gradient(circle at 88% 18%, rgb(226 183 111 / 12%), transparent 18rem),
    linear-gradient(115deg, #03070c 0%, #06182d 58%, #07101a 100%),
    var(--black);
}

.inner-page-hero--about .inner-page-hero-visual::after {
  background: radial-gradient(circle, rgb(226 183 111 / 12%), transparent 68%);
}

.inner-page-hero--about .inner-hero-panel {
  border-color: rgb(255 255 255 / 16%);
  background:
    linear-gradient(180deg, rgb(226 183 111 / 10%), rgb(255 255 255 / 5%)),
    rgb(6 24 45 / 72%);
}

.inner-page-hero--about .inner-hero-panel-a {
  right: 17%;
  top: 19%;
  width: 16rem;
  height: 11rem;
  transform: rotate(-1deg);
}

.inner-page-hero--about .inner-hero-panel-b {
  right: 7%;
  bottom: 19%;
  width: 10.8rem;
  height: 9.2rem;
  transform: rotate(2deg);
}

.inner-page-hero--about .inner-hero-panel-c {
  right: 38%;
  bottom: 18%;
  width: 13rem;
  height: 6rem;
}

.inner-page-hero--about .inner-hero-node {
  border-color: rgb(226 183 111 / 78%);
  box-shadow: 0 0 0 0.42rem rgb(226 183 111 / 9%), 0 0 24px rgb(36 183 255 / 28%);
}

.inner-page-hero--about .inner-hero-line {
  background: linear-gradient(90deg, transparent, rgb(226 183 111 / 40%), rgb(36 183 255 / 45%), transparent);
}

.inner-page-hero--contact .inner-page-hero-visual {
  opacity: 0.78;
}

.inner-page-hero--contact .inner-hero-panel {
  opacity: 0.52;
}

.inner-page-hero--contact .inner-hero-panel-a {
  right: 12%;
  top: 26%;
  width: 15rem;
  height: 8.8rem;
}

.inner-page-hero--contact .inner-hero-panel-b {
  right: -1%;
  bottom: 20%;
  width: 10.5rem;
  height: 9rem;
}

.inner-page-hero--contact .inner-hero-panel-c {
  display: none;
}

.inner-page-hero--contact .inner-hero-node,
.inner-page-hero--contact .inner-hero-line {
  opacity: 0.58;
}

.service-row {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}

.service-row:first-child {
  border-top: 0;
}

.service-row p {
  color: var(--muted);
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.feature-list span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.52rem 0.72rem;
  color: #26364a;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 760;
}

.split-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-list,
.contact-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 0;
}

.contact-item,
.contact-card {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.contact-card {
  min-height: 130px;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.contact-item span,
.contact-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-item a,
.contact-item strong,
.contact-card a,
.contact-card strong {
  font-size: 1.05rem;
  font-weight: 850;
}

.contact-panel {
  display: grid;
  gap: 1rem;
  padding: 1.55rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-panel h2 {
  font-size: 2rem;
}

.contact-panel p {
  color: var(--muted);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.5rem;
}

.intake-section {
  scroll-margin-top: 68px;
}

.intake-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr);
  gap: 1.35rem;
  align-items: start;
}

.intake-details {
  display: grid;
  gap: 0.85rem;
  padding: 1.4rem;
  background: rgb(255 255 255 / 7%);
  border: 1px solid rgb(255 255 255 / 15%);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgb(0 0 0 / 18%);
}

.intake-details h3 {
  font-size: 1.45rem;
}

.intake-details .check-list {
  margin-top: 0.2rem;
}

.intake-details li {
  color: rgb(255 255 255 / 78%);
}

.intake-details .button {
  width: fit-content;
  margin-top: 0.35rem;
}

.intake-card {
  min-width: 0;
  padding: 1.35rem;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 12%), rgb(255 255 255 / 7%)),
    rgb(6 24 45 / 74%);
  border: 1px solid rgb(255 255 255 / 24%);
  border-radius: var(--radius);
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(14px);
}

.intake-form {
  display: grid;
  gap: 1.15rem;
}

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

.form-field {
  display: grid;
  gap: 0.42rem;
  min-width: 0;
}

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

.form-field label {
  color: rgb(255 255 255 / 86%);
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.3;
}

.form-field label span {
  color: var(--blue-bright);
}

.form-field label .optional-label {
  color: rgb(255 255 255 / 58%);
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.78rem 0.9rem;
  color: #fff;
  background: rgb(3 7 12 / 58%);
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: var(--radius-sm);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 5%);
  font: inherit;
  line-height: 1.35;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.form-field select {
  appearance: none;
  padding-right: 2.4rem;
  background-image:
    linear-gradient(45deg, transparent 50%, rgb(255 255 255 / 82%) 50%),
    linear-gradient(135deg, rgb(255 255 255 / 82%) 50%, transparent 50%);
  background-position:
    calc(100% - 1rem) 50%,
    calc(100% - 0.68rem) 50%;
  background-size: 0.34rem 0.34rem, 0.34rem 0.34rem;
  background-repeat: no-repeat;
}

.form-field textarea {
  min-height: 154px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 0;
  background-color: rgb(3 7 12 / 72%);
  border-color: rgb(36 183 255 / 78%);
  box-shadow:
    0 0 0 3px rgb(36 183 255 / 22%),
    inset 0 1px 0 rgb(255 255 255 / 5%);
}

.form-field input:user-invalid,
.form-field select:user-invalid,
.form-field textarea:user-invalid {
  border-color: #ff8f8f;
  box-shadow:
    0 0 0 3px rgb(255 143 143 / 16%),
    inset 0 1px 0 rgb(255 255 255 / 5%);
}

.field-note,
.required-note,
.privacy-note {
  color: rgb(255 255 255 / 66%);
  font-size: 0.9rem;
  line-height: 1.55;
}

.required-note span {
  color: var(--blue-bright);
  font-weight: 900;
}

.privacy-note {
  padding-top: 0.15rem;
}

.privacy-note a {
  color: var(--blue-bright);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.form-notes {
  display: grid;
  gap: 0.45rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.form-honeypot {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid rgb(36 183 255 / 45%);
  outline-offset: 3px;
}

.site-footer {
  color: rgb(255 255 255 / 78%);
  background:
    radial-gradient(circle at 12% 0%, rgb(36 183 255 / 12%), transparent 24rem),
    var(--black);
}

.footer-inner {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 3.5rem 0;
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 2.5rem;
}

.footer-brand {
  display: grid;
  gap: 1rem;
  max-width: 500px;
}

.footer-brand .brand {
  color: #fff;
}

.footer-brand .brand-logo {
  width: 210px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.footer-links h2 {
  margin-bottom: 0.75rem;
  color: #fff;
  font-size: 1rem;
}

.footer-links ul {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a:hover {
  color: var(--blue-bright);
}

.subfooter {
  border-top: 1px solid rgb(255 255 255 / 14%);
}

.subfooter .container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  color: rgb(255 255 255 / 60%);
  font-size: 0.9rem;
}

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

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

@media (max-width: 1024px) {
  h1 {
    font-size: 3.6rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .lead {
    font-size: 1.08rem;
  }

  .inner-page-hero {
    min-height: 360px;
  }

  .inner-page-hero-copy {
    max-width: min(650px, 65vw);
  }

  .inner-page-hero h1 {
    font-size: clamp(2.3rem, 3.8vw, 2.85rem);
  }

  .hero-content {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    max-width: 640px;
  }

  .proof-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid.cards-3,
  .trust-grid,
  .process {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 920px) {
  .header-inner {
    min-height: 66px;
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 66px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 0.75rem 1rem 1rem;
    color: rgb(255 255 255 / 80%);
    background: rgb(3 7 12 / 98%);
    border-bottom: 1px solid var(--line-dark);
  }

  .site-nav[data-open="true"] {
    display: flex;
  }

  .site-nav a {
    padding: 0.85rem 0.8rem;
  }

  .header-actions > .button {
    display: none;
  }

  .section-head.split,
  .grid.cards-2,
  .cta-band,
  .service-row,
  .split-panel,
  .intake-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .contact-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 5rem 0;
  }

  .service-row {
    gap: 1rem;
  }

  .cta-actions {
    margin-top: 0;
  }

  .intake-form {
    order: 1;
  }

  .intake-details {
    order: 2;
  }

  .inner-page-hero {
    min-height: 340px;
  }

  .inner-page-hero-content {
    padding: 2.5rem 0;
  }

  .inner-page-hero-copy {
    max-width: min(560px, 68vw);
  }

  .inner-page-hero-visual {
    width: 50vw;
  }

  .inner-hero-panel-a {
    right: 7%;
  }

  .inner-hero-panel-c,
  .inner-hero-node-c,
  .inner-hero-line-b {
    opacity: 0.42;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 2.7rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.18rem;
  }

  .brand-logo {
    width: 136px;
  }

  .footer-brand .brand-logo {
    width: 180px;
  }

  .section {
    padding: 3.75rem 0;
  }

  .page-hero {
    padding: 3.75rem 0 3.2rem;
  }

  .inner-page-hero {
    min-height: auto;
    padding: 0;
  }

  .inner-page-hero::before {
    background:
      linear-gradient(90deg, rgb(3 7 12 / 99%) 0%, rgb(4 13 24 / 97%) 62%, rgb(4 13 24 / 78%) 100%),
      linear-gradient(0deg, rgb(3 7 12 / 30%) 0%, transparent 42%);
  }

  .inner-page-hero::after {
    opacity: 0.52;
    mask-image: linear-gradient(90deg, transparent 0%, #000 45%, #000 100%);
  }

  .inner-page-hero-content {
    min-height: auto;
    padding: 2.25rem 0;
  }

  .inner-page-hero-copy {
    max-width: 100%;
    gap: 0.62rem;
  }

  .inner-page-hero h1 {
    font-size: clamp(1.95rem, 8vw, 2.25rem);
  }

  .inner-page-hero .lead {
    font-size: 0.96rem;
    line-height: 1.52;
  }

  .inner-page-hero .inner-page-hero-visual {
    width: 100%;
    opacity: 0.3;
  }

  .inner-hero-grid {
    inset: 4% -28% 0 22%;
  }

  .inner-hero-glow-a {
    right: -12%;
    top: 8%;
  }

  .inner-hero-glow-b {
    right: 18%;
    bottom: -8%;
  }

  .inner-page-hero .inner-hero-panel {
    opacity: 0.34;
  }

  .inner-page-hero .inner-hero-panel-a {
    width: 13rem;
    height: 7.3rem;
    right: -28%;
    top: 19%;
  }

  .inner-page-hero .inner-hero-panel-b {
    width: 8rem;
    height: 8.8rem;
    right: -18%;
    bottom: 10%;
  }

  .inner-hero-panel-c,
  .inner-hero-node-c,
  .inner-hero-line-b,
  .inner-hero-line-c {
    display: none;
  }

  .hero-media {
    object-position: 66% center;
    opacity: 0.46;
  }

  .hero-content {
    padding: 4.5rem 0;
  }

  .hero-card {
    padding: 1rem;
  }

  .proof-strip,
  .grid.cards-3,
  .trust-grid,
  .process {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .cta-actions,
  .contact-actions,
  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .cta-actions .button,
  .contact-actions .button,
  .form-actions .button,
  .cta-band > .button {
    width: 100%;
  }

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

  .card,
  .contact-panel,
  .contact-card,
  .intake-card,
  .intake-details,
  .cta-band,
  .process-step,
  .trust-item {
    padding: 1.2rem;
  }

  .intake-details .button {
    width: 100%;
  }

  .cta-band h2 {
    font-size: 1.8rem;
  }

  .feature-list span {
    width: 100%;
  }

  .subfooter .container {
    flex-direction: column;
  }
}

@media (max-width: 400px) {
  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.82rem;
  }

  .container,
  .header-inner,
  .hero-content,
  .proof-strip,
  .footer-inner {
    width: min(var(--max), calc(100% - 1.5rem));
  }

  .service-pills span {
    width: 100%;
  }

  .inner-page-hero-content {
    padding: 2rem 0;
  }

  .inner-page-hero h1 {
    font-size: 1.95rem;
  }

  .inner-page-hero .breadcrumb {
    font-size: 0.84rem;
  }
}
