:root {
  color-scheme: light;
  --navy-950: #071426;
  --navy-900: #0a1c34;
  --navy-800: #102b4e;
  --blue-700: #145dc7;
  --blue-600: #176de5;
  --blue-500: #2d7cf0;
  --blue-100: #e8f1ff;
  --blue-50: #f3f7ff;
  --mint-700: #087765;
  --mint-500: #16a58a;
  --mint-100: #dff8f1;
  --mint-50: #effcf8;
  --ink: #10223b;
  --muted: #5a6b80;
  --line: #dce4ee;
  --line-strong: #c7d3e1;
  --surface: #f5f7fa;
  --surface-blue: #f4f8ff;
  --white: #ffffff;
  --shadow-sm: 0 8px 28px rgba(7, 20, 38, 0.07);
  --shadow-md: 0 22px 64px rgba(7, 20, 38, 0.12);
  --shadow-blue: 0 16px 36px rgba(20, 93, 199, 0.22);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --shell: 1180px;
  --header-height: 76px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  background: var(--white);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% -10%, rgba(45, 124, 240, 0.08), transparent 30rem),
    var(--white);
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

main {
  display: block;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

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

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid rgba(23, 109, 229, 0.38);
  outline-offset: 4px;
}

::selection {
  color: var(--navy-950);
  background: var(--mint-100);
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: var(--radius-sm);
  font-weight: 750;
  transform: translateY(-150%);
  transition: transform 180ms var(--ease-out);
}

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

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

.section {
  padding-block: clamp(84px, 10vw, 132px);
}

.section-soft {
  background:
    linear-gradient(135deg, rgba(232, 241, 255, 0.62), transparent 52%),
    var(--surface);
  border-block: 1px solid rgba(220, 228, 238, 0.76);
}

.section-navy {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 0%, rgba(45, 124, 240, 0.25), transparent 27rem),
    radial-gradient(circle at 8% 100%, rgba(22, 165, 138, 0.14), transparent 24rem),
    var(--navy-950);
}

.section-navy::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  grid-template-columns: minmax(max-content, 1fr) auto minmax(max-content, 1fr);
  align-items: center;
  min-height: var(--header-height);
  padding: 10px max(24px, calc((100vw - var(--shell)) / 2));
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  transition:
    background-color 220ms var(--ease-smooth),
    border-color 220ms var(--ease-smooth),
    box-shadow 220ms var(--ease-smooth);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(199, 211, 225, 0.82);
  box-shadow: 0 10px 30px rgba(7, 20, 38, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 11px;
  width: fit-content;
  color: var(--navy-950);
  text-decoration: none;
  font-size: 15px;
  font-weight: 820;
  letter-spacing: -0.02em;
}

.brand img {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
}

.brand span {
  display: grid;
  line-height: 1.18;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 680;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 4px;
}

.desktop-nav a {
  position: relative;
  padding: 8px 12px;
  color: #42546b;
  text-decoration: none;
  font-size: 14px;
  font-weight: 680;
  border-radius: 8px;
  transition:
    color 160ms ease,
    background-color 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--navy-950);
  background: var(--surface);
}

.site-header > .button {
  justify-self: end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 20px;
  color: var(--white);
  background: var(--blue-600);
  border: 1px solid var(--blue-600);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(20, 93, 199, 0.15);
  text-align: center;
  text-decoration: none;
  font-size: 15px;
  font-weight: 760;
  line-height: 1.2;
  cursor: pointer;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms var(--ease-out);
}

.button:hover {
  color: var(--white);
  background: var(--blue-700);
  border-color: var(--blue-700);
  box-shadow: var(--shadow-blue);
  transform: translateY(-2px);
}

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

.button-small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 13px;
  border-radius: 10px;
}

.button-secondary {
  color: var(--navy-800);
  background: rgba(255, 255, 255, 0.76);
  border-color: var(--line-strong);
  box-shadow: none;
}

.button-secondary:hover {
  color: var(--navy-950);
  background: var(--white);
  border-color: #aebed0;
  box-shadow: var(--shadow-sm);
}

.button-light {
  color: var(--navy-950);
  background: var(--white);
  border-color: var(--white);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.button-light:hover {
  color: var(--navy-950);
  background: var(--mint-50);
  border-color: var(--mint-100);
}

.button-arrow span {
  display: inline-block;
  transition: transform 180ms var(--ease-out);
}

.button-arrow:hover span,
.button-arrow:focus-visible span {
  transform: translate(2px, -2px);
}

.menu-button,
.mobile-menu {
  display: none;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 840;
  letter-spacing: 0.13em;
  line-height: 1.25;
  text-transform: uppercase;
}

.section-navy .eyebrow,
.final-cta .eyebrow,
.section-heading.light .eyebrow {
  color: #8fd8ff;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--navy-950);
  font-weight: 790;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(3.1rem, 6.1vw, 5.65rem);
  line-height: 0.99;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.05rem, 4vw, 3.65rem);
  line-height: 1.05;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.15rem, 2vw, 1.42rem);
  line-height: 1.18;
  letter-spacing: -0.027em;
}

p {
  margin-top: 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(38px, 5vw, 60px);
}

.section-heading p:not(.eyebrow) {
  max-width: 690px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.14rem);
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.light h2 {
  color: var(--white);
}

.section-heading.light p:not(.eyebrow) {
  color: #adbed2;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(390px, 0.94fr);
  align-items: center;
  gap: clamp(52px, 7vw, 100px);
  min-height: calc(100svh - var(--header-height));
  padding-block: clamp(62px, 8vw, 104px);
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 13%;
  left: -14%;
  width: 34vw;
  min-width: 360px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(45, 124, 240, 0.11), transparent 68%);
  content: "";
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-lede {
  max-width: 700px;
  margin-bottom: 30px;
  color: #42566f;
  font-size: clamp(1.12rem, 1.9vw, 1.38rem);
  line-height: 1.55;
}

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

.booking-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 660;
}

.booking-note span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.booking-note span:first-child::before {
  width: 7px;
  height: 7px;
  background: var(--mint-500);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--mint-100);
  content: "";
}

.booking-note span + span::before {
  position: absolute;
  left: -11px;
  width: 1px;
  height: 14px;
  background: var(--line-strong);
  content: "";
}

.hero-trust {
  max-width: 610px;
  margin: 27px 0 0;
  padding-left: 15px;
  color: #64768b;
  border-left: 2px solid var(--line-strong);
  font-size: 13px;
  line-height: 1.6;
}

.hero-system {
  position: relative;
  overflow: hidden;
  padding: clamp(25px, 3.2vw, 38px);
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(45, 124, 240, 0.32), transparent 42%),
    linear-gradient(155deg, #112c4d, #071426 76%);
  border: 1px solid rgba(164, 196, 231, 0.18);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.hero-system::before {
  position: absolute;
  top: -30%;
  right: -20%;
  width: 68%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(22, 165, 138, 0.2), transparent 68%);
  content: "";
  pointer-events: none;
}

.system-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  color: #9eb3ca;
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.system-topline i {
  width: 8px;
  height: 8px;
  background: var(--mint-500);
  border: 2px solid #bff7e9;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(22, 165, 138, 0.12);
}

.system-node {
  position: relative;
  z-index: 1;
  padding: 19px 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  backdrop-filter: blur(8px);
}

.system-node-problem {
  border-color: rgba(127, 194, 255, 0.2);
}

.system-node small {
  display: block;
  margin-bottom: 7px;
  color: #7fc2ff;
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.system-node strong {
  display: block;
  margin-bottom: 4px;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.system-node p {
  margin: 0;
  color: #aebfd1;
  font-size: 13px;
  line-height: 1.48;
}

.system-node-result {
  background: linear-gradient(135deg, rgba(22, 165, 138, 0.18), rgba(255, 255, 255, 0.07));
  border-color: rgba(93, 222, 191, 0.3);
}

.system-connector {
  position: relative;
  z-index: 1;
  width: 2px;
  height: 25px;
  margin-inline: auto;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
}

.system-connector span {
  display: block;
  width: 100%;
  height: 40%;
  background: linear-gradient(to bottom, transparent, #78b9ff, transparent);
  animation: flow-line 2.2s ease-in-out infinite;
}

.system-routes {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.system-routes span {
  padding: 10px 7px;
  color: #dceaff;
  background: rgba(56, 133, 232, 0.11);
  border: 1px solid rgba(127, 194, 255, 0.2);
  border-radius: 9px;
  text-align: center;
  font-size: 10px;
  font-weight: 720;
}

.system-caption {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  color: #8199b2;
  text-align: center;
  font-size: 11px;
}

.problem-explorer {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 24px;
  align-items: stretch;
}

.problem-list {
  display: grid;
  align-content: start;
  gap: 8px;
}

.problem-list button {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 58px;
  padding: 12px 16px;
  color: #40536b;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid transparent;
  border-radius: 12px;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms var(--ease-out);
}

.problem-list button span {
  color: #91a0b1;
  font-size: 10px;
  font-weight: 790;
  letter-spacing: 0.1em;
}

.problem-list button:hover {
  color: var(--navy-950);
  background: var(--white);
  border-color: var(--line);
  transform: translateX(3px);
}

.problem-list button[aria-pressed="true"] {
  color: var(--navy-950);
  background: var(--white);
  border-color: #b9d4fb;
  box-shadow: var(--shadow-sm);
}

.problem-list button[aria-pressed="true"] span {
  color: var(--blue-600);
}

.problem-panel {
  display: flex;
  flex-direction: column;
  min-height: 414px;
  padding: clamp(28px, 4vw, 48px);
  background:
    radial-gradient(circle at 100% 0%, rgba(45, 124, 240, 0.1), transparent 20rem),
    var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition:
    opacity 120ms ease,
    transform 180ms var(--ease-out),
    box-shadow 180ms ease;
}

.problem-panel:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.problem-panel.is-switching {
  opacity: 0.35;
  transform: translateY(5px);
}

.problem-panel h3 {
  max-width: 600px;
  margin-bottom: 16px;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.08;
}

.problem-panel > p:not(.eyebrow):not(.problem-control) {
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
}

.route-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 9px 0 24px;
}

.route-tags span {
  padding: 7px 11px;
  color: var(--blue-700);
  background: var(--blue-50);
  border: 1px solid #d4e4ff;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 780;
}

.problem-control {
  margin: 0 0 24px;
  padding: 12px 14px;
  color: #176653;
  background: var(--mint-50);
  border-left: 3px solid var(--mint-500);
  border-radius: 0 9px 9px 0;
  font-size: 13px;
  line-height: 1.5;
}

.problem-panel .text-link {
  margin-top: auto;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--blue-700);
  text-decoration: none;
  font-size: 14px;
  font-weight: 760;
}

.text-link span {
  display: inline-block;
  transition: transform 180ms var(--ease-out);
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(3px);
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 58px 1fr;
  align-items: center;
}

.before-after article {
  min-height: 320px;
  padding: clamp(28px, 4vw, 44px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.before-after .after-card {
  background:
    radial-gradient(circle at 100% 0%, rgba(22, 165, 138, 0.12), transparent 16rem),
    var(--white);
  border-color: #bde7dc;
  box-shadow: var(--shadow-sm);
}

.state-label {
  display: inline-flex;
  margin-bottom: 19px;
  padding: 5px 9px;
  color: #6a7888;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.after-card .state-label {
  color: var(--mint-700);
  background: var(--mint-50);
  border-color: #bde7dc;
}

.before-after ul {
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.before-after li {
  position: relative;
  padding-left: 25px;
  color: #43556c;
}

.before-after li::before {
  position: absolute;
  top: 0.65em;
  left: 2px;
  width: 7px;
  height: 7px;
  background: #a7b4c3;
  border-radius: 50%;
  content: "";
}

.after-card li::before {
  background: var(--mint-500);
  box-shadow: 0 0 0 4px var(--mint-100);
}

.transformation-mark {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--white);
  background: var(--blue-600);
  border: 8px solid var(--white);
  border-radius: 50%;
  font-size: 19px;
  box-shadow: var(--shadow-sm);
}

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

.service-grid article {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  padding: clamp(25px, 3.3vw, 38px);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-md);
  transition:
    background-color 200ms ease,
    border-color 200ms ease,
    transform 220ms var(--ease-out);
}

.service-grid article:hover {
  background: rgba(255, 255, 255, 0.085);
  border-color: rgba(127, 194, 255, 0.34);
  transform: translateY(-3px);
}

.service-grid h3 {
  color: var(--white);
  font-size: clamp(1.55rem, 2.5vw, 2.1rem);
}

.service-grid article > p:not(.service-fit) {
  color: #adbed2;
}

.service-number {
  margin-bottom: 48px;
  color: #6f87a1;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.service-fit {
  margin-bottom: 13px;
  color: #8fd8ff;
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.service-grid dl {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
}

.service-grid dl div {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.service-grid dt {
  margin-bottom: 3px;
  color: #7590aa;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.service-grid dd {
  margin: 0;
  color: #d5e0ec;
  font-size: 13px;
  line-height: 1.55;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.solution-card {
  position: relative;
  min-height: 300px;
  padding: clamp(25px, 3vw, 36px);
  color: inherit;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 200ms var(--ease-out);
}

.solution-card:hover {
  z-index: 1;
  background: var(--surface-blue);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.solution-card > span {
  display: block;
  margin-bottom: 30px;
  color: var(--blue-700);
  font-size: 10px;
  font-weight: 810;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.solution-card h3 {
  font-size: clamp(1.3rem, 2vw, 1.72rem);
}

.solution-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.solution-card i {
  position: absolute;
  right: 28px;
  bottom: 24px;
  color: var(--blue-600);
  font-size: 20px;
  font-style: normal;
  transition: transform 180ms var(--ease-out);
}

.solution-card:hover i,
.solution-card:focus-visible i {
  transform: translateX(5px);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(54px, 8vw, 105px);
  align-items: start;
}

.process-layout .section-heading {
  position: sticky;
  top: calc(var(--header-height) + 38px);
  margin-bottom: 0;
}

.process-layout .button {
  margin-top: 12px;
}

.process-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 17px;
  padding: 0 0 34px;
}

.process-steps li:not(:last-child)::before {
  position: absolute;
  top: 41px;
  bottom: 2px;
  left: 21px;
  width: 1px;
  background: linear-gradient(var(--line-strong), transparent);
  content: "";
}

.process-steps li > span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  color: var(--blue-700);
  background: var(--white);
  border: 1px solid #bfd4f1;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(7, 20, 38, 0.06);
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.08em;
}

.process-steps h3 {
  margin: 5px 0 7px;
}

.process-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.control-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.control-grid article {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition:
    border-color 180ms ease,
    transform 200ms var(--ease-out),
    box-shadow 180ms ease;
}

.control-grid article:hover {
  border-color: #b9d4fb;
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.control-grid article > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 29px;
  color: var(--mint-700);
  background: var(--mint-50);
  border: 1px solid var(--mint-100);
  border-radius: 11px;
  font-size: 17px;
  font-weight: 750;
}

.control-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.founder-section {
  padding-block: 0;
  background: var(--navy-950);
}

.founder-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(52px, 8vw, 110px);
}

.founder-photo {
  align-self: stretch;
  max-height: 720px;
  overflow: hidden;
  background: #102b4e;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
  object-position: center 18%;
  filter: saturate(0.78) contrast(1.04);
}

.founder-copy {
  max-width: 610px;
  padding-block: clamp(72px, 9vw, 120px);
}

.founder-copy h2 {
  color: var(--white);
}

.founder-copy > p:not(.eyebrow) {
  color: #b1c0d1;
  font-size: 17px;
}

.founder-points {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.founder-points li {
  position: relative;
  padding: 12px 14px 12px 38px;
  color: #dae5ef;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  font-size: 14px;
}

.founder-points li::before {
  position: absolute;
  top: 17px;
  left: 17px;
  width: 8px;
  height: 8px;
  background: var(--mint-500);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(22, 165, 138, 0.12);
  content: "";
}

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

.guide-grid article {
  min-height: 250px;
  padding: clamp(24px, 3vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 200ms var(--ease-out);
}

.guide-grid article:hover {
  border-color: #bad4f7;
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.guide-grid article > span {
  display: block;
  margin-bottom: 35px;
  color: var(--blue-700);
  font-size: 10px;
  font-weight: 810;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.guide-grid h3 a {
  text-decoration: none;
}

.guide-grid h3 a::after {
  position: absolute;
  inset: 0;
  content: "";
}

.guide-grid article {
  position: relative;
}

.guide-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.guide-all {
  margin-top: 28px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(48px, 8vw, 108px);
  align-items: start;
}

.faq-layout .section-heading {
  position: sticky;
  top: calc(var(--header-height) + 38px);
  margin-bottom: 0;
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-list details {
  border-bottom: 1px solid var(--line-strong);
}

.faq-list summary {
  position: relative;
  padding: 24px 48px 24px 0;
  color: var(--navy-950);
  font-size: 17px;
  font-weight: 730;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 33px;
  right: 6px;
  width: 14px;
  height: 2px;
  background: var(--blue-600);
  border-radius: 2px;
  content: "";
  transition: transform 180ms var(--ease-out);
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 690px;
  margin: -6px 48px 24px 0;
  color: var(--muted);
  font-size: 15px;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
  margin-block: clamp(80px, 10vw, 130px);
  padding: clamp(38px, 6vw, 72px);
  color: var(--white);
  background:
    radial-gradient(circle at 90% 20%, rgba(74, 161, 255, 0.32), transparent 20rem),
    linear-gradient(135deg, var(--blue-700), #0a315e);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.final-cta h2 {
  margin-bottom: 12px;
  color: var(--white);
}

.final-cta > div > p:not(.eyebrow):not(.booking-note) {
  max-width: 680px;
  margin-bottom: 0;
  color: #d7e8ff;
}

.booking-note-light {
  color: #d7e8ff;
}

.booking-note-light span:first-child::before {
  background: #61e0c6;
  box-shadow: 0 0 0 4px rgba(97, 224, 198, 0.16);
}

.booking-note-light span + span::before {
  background: rgba(255, 255, 255, 0.3);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px 60px;
  align-items: start;
  padding: 55px max(24px, calc((100vw - var(--shell)) / 2));
  color: #aab9c8;
  background: var(--navy-950);
}

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

.site-footer > div > p {
  max-width: 430px;
  margin: 16px 0 0;
  font-size: 13px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px 22px;
}

.site-footer nav a {
  color: #c3cfdb;
  text-decoration: none;
  font-size: 13px;
  font-weight: 650;
}

.site-footer nav a:hover {
  color: var(--white);
}

.site-footer > small {
  grid-column: 1 / -1;
  padding-top: 26px;
  color: #71849a;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
}

.breadcrumbs {
  padding-top: 28px;
  color: #7a899a;
  font-size: 12px;
}

.breadcrumbs a {
  color: var(--blue-700);
  text-decoration: none;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: clamp(48px, 7vw, 92px);
  align-items: center;
  min-height: min(760px, calc(100svh - var(--header-height) - 42px));
  padding-block: clamp(64px, 8vw, 104px);
}

.page-hero h1 {
  max-width: 760px;
  font-size: clamp(2.8rem, 5.4vw, 5rem);
}

.page-panel {
  padding: clamp(27px, 3.5vw, 42px);
  background:
    radial-gradient(circle at 100% 0%, rgba(45, 124, 240, 0.1), transparent 18rem),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.page-panel h2 {
  margin-bottom: 22px;
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
}

.page-panel ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-panel li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 14px;
}

.page-panel li::before {
  position: absolute;
  top: 0.65em;
  left: 2px;
  width: 7px;
  height: 7px;
  background: var(--blue-500);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--blue-100);
  content: "";
}

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

.content-grid article {
  min-height: 235px;
  padding: clamp(24px, 3vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.content-grid article::before {
  display: block;
  width: 31px;
  height: 3px;
  margin-bottom: 34px;
  background: linear-gradient(90deg, var(--blue-600), var(--mint-500));
  border-radius: 3px;
  content: "";
}

.content-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.page-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 42px;
  padding: clamp(32px, 5vw, 58px);
  background:
    linear-gradient(120deg, rgba(232, 241, 255, 0.82), rgba(239, 252, 248, 0.62)),
    var(--white);
  border: 1px solid #cbdcf0;
  border-radius: var(--radius-lg);
}

.page-cta h2 {
  max-width: 760px;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
}

.page-cta > div > p:not(.eyebrow) {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--muted);
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-top: 22px;
}

.condition-note {
  width: fit-content;
  margin-top: 24px;
  padding: 8px 11px;
  color: #607188;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 9px;
  font-size: 12px;
}

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

.scope-grid article {
  padding: clamp(25px, 3vw, 36px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.scope-grid h2 {
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
}

.scope-grid p {
  color: var(--muted);
  font-size: 14px;
}

.scope-grid p:last-child {
  margin-bottom: 0;
}

@keyframes flow-line {
  0% {
    transform: translateY(-150%);
  }
  60%,
  100% {
    transform: translateY(300%);
  }
}

@keyframes status-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 5px rgba(22, 165, 138, 0.1);
  }
  50% {
    box-shadow: 0 0 0 9px rgba(22, 165, 138, 0.02);
  }
}

.system-topline i {
  animation: status-pulse 2.8s ease-in-out infinite;
}

html.js.motion-ready [data-hero-enter] {
  opacity: 0;
  transform: translateY(18px);
}

html.js.motion-ready.is-entered [data-hero-enter] {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 620ms var(--ease-out),
    transform 620ms var(--ease-out);
  transition-delay: calc(var(--enter-order, 0) * 70ms);
}

html.js.motion-ready [data-system-step] {
  opacity: 0.28;
  transform: translateY(8px) scale(0.985);
  transition:
    opacity 480ms var(--ease-out),
    transform 480ms var(--ease-out),
    border-color 480ms ease,
    background-color 480ms ease;
}

html.js.motion-ready [data-system-step].is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

html.js.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 700ms var(--ease-out),
    transform 700ms var(--ease-out);
}

html.js.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 12px;
  }

  .desktop-nav {
    gap: 0;
  }

  .desktop-nav a {
    padding-inline: 9px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
    gap: 45px;
  }

  .hero h1 {
    font-size: clamp(3rem, 6vw, 4.7rem);
  }

  .service-grid article {
    min-height: 510px;
  }

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

@media (max-width: 820px) {
  :root {
    --header-height: 72px;
  }

  .section-shell {
    width: min(calc(100% - 36px), var(--shell));
  }

  .section {
    padding-block: 82px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: var(--header-height);
    padding-inline: 18px;
  }

  .desktop-nav,
  .site-header > .button {
    display: none;
  }

  .menu-button {
    position: relative;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 11px;
    cursor: pointer;
  }

  .menu-button > span {
    position: absolute;
    width: 18px;
    height: 2px;
    background: var(--navy-950);
    border-radius: 2px;
    transition:
      transform 180ms var(--ease-out),
      opacity 180ms ease;
  }

  .menu-button > span:nth-child(1) {
    transform: translateY(-6px);
  }

  .menu-button > span:nth-child(3) {
    transform: translateY(6px);
  }

  .menu-button[aria-expanded="true"] > span:nth-child(1) {
    transform: rotate(45deg);
  }

  .menu-button[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] > span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 110;
    top: calc(var(--header-height) + 8px);
    right: 14px;
    left: 14px;
    display: grid;
    gap: 5px;
    max-height: calc(100svh - var(--header-height) - 24px);
    padding: 14px;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu > a:not(.button) {
    padding: 13px 14px;
    color: #344860;
    border-radius: 9px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
  }

  .mobile-menu > a:not(.button):hover {
    background: var(--surface);
  }

  .mobile-menu .button {
    margin-top: 5px;
  }

  .hero,
  .page-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero {
    gap: 54px;
    padding-block: 62px 82px;
  }

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

  h1,
  .hero h1 {
    font-size: clamp(3rem, 11vw, 5rem);
  }

  .hero-system {
    max-width: 650px;
  }

  .problem-explorer {
    grid-template-columns: 1fr;
  }

  .problem-list {
    display: flex;
    margin-inline: -18px;
    padding-inline: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .problem-list::-webkit-scrollbar {
    display: none;
  }

  .problem-list button {
    flex: 0 0 min(72vw, 290px);
    scroll-snap-align: start;
  }

  .problem-panel {
    min-height: 390px;
  }

  .service-grid,
  .solution-grid,
  .guide-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .service-grid article {
    min-height: auto;
  }

  .service-number {
    margin-bottom: 30px;
  }

  .solution-grid {
    border-left: 0;
  }

  .solution-card {
    min-height: 250px;
    border-left: 1px solid var(--line);
  }

  .process-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .process-layout .section-heading,
  .faq-layout .section-heading {
    position: static;
  }

  .founder-layout {
    grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
    gap: 44px;
  }

  .founder-photo img {
    min-height: 560px;
  }

  .page-hero {
    gap: 42px;
    padding-block: 56px 82px;
  }

  .page-panel {
    max-width: 650px;
  }

  .page-cta,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .final-cta > .button,
  .page-cta > .button {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .section-shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .section {
    padding-block: 70px;
  }

  .brand {
    gap: 9px;
    font-size: 14px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .brand small {
    font-size: 9px;
  }

  h1,
  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.65rem, 13.4vw, 4.2rem);
    line-height: 1.01;
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 2.85rem);
  }

  .hero {
    gap: 44px;
    padding-top: 48px;
  }

  .hero-lede {
    font-size: 1.08rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .booking-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .booking-note span + span::before {
    display: none;
  }

  .hero-system {
    padding: 22px;
    border-radius: 21px;
  }

  .system-routes {
    grid-template-columns: 1fr;
  }

  .system-connector {
    height: 20px;
  }

  .problem-list {
    margin-inline: -16px;
    padding-inline: 16px;
  }

  .problem-list button {
    flex-basis: 82vw;
  }

  .problem-panel {
    min-height: 430px;
    padding: 25px;
    border-radius: 20px;
  }

  .before-after {
    grid-template-columns: 1fr;
  }

  .before-after article {
    min-height: auto;
  }

  .transformation-mark {
    width: 48px;
    height: 48px;
    margin: -5px auto;
    transform: rotate(90deg);
  }

  .control-grid,
  .scope-grid {
    grid-template-columns: 1fr;
  }

  .founder-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .founder-photo {
    max-height: 510px;
    margin-inline: -16px;
  }

  .founder-photo img {
    min-height: 480px;
  }

  .founder-copy {
    padding-block: 60px 72px;
  }

  .process-steps li {
    grid-template-columns: 45px 1fr;
    gap: 12px;
  }

  .process-steps li:not(:last-child)::before {
    left: 19px;
  }

  .process-steps li > span {
    width: 39px;
    height: 39px;
  }

  .final-cta,
  .page-cta {
    gap: 30px;
    padding: 30px 24px;
    border-radius: 20px;
  }

  .final-cta {
    width: min(calc(100% - 24px), var(--shell));
    margin-block: 70px;
  }

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

  .site-footer {
    grid-template-columns: 1fr;
    padding: 48px 22px 36px;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .site-footer > small {
    grid-column: 1;
  }

  .breadcrumbs {
    padding-top: 20px;
  }

  .page-hero {
    padding-block: 45px 70px;
  }

  .page-panel {
    padding: 25px;
    border-radius: 20px;
  }
}

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

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

  html.js.motion-ready [data-hero-enter],
  html.js.motion-ready [data-system-step],
  html.js.motion-ready [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* --------------------------------------------------------------------------
   Clear Business AI — luminous UI kit · 2026-07-20
   This final layer keeps the approved information architecture intact while
   translating every public page to the same glass, aurora and motion system.
   -------------------------------------------------------------------------- */

:root {
  --navy-950: #0f172a;
  --navy-900: #17233b;
  --navy-800: #223452;
  --blue-700: #164ee8;
  --blue-600: #2563ff;
  --blue-500: #4b7dff;
  --blue-100: #e3edff;
  --blue-50: #f3f7ff;
  --cyan-500: #00cfe8;
  --cyan-400: #06dff5;
  --cyan-100: #dffbff;
  --lavender-600: #7c3aed;
  --lavender-400: #a78bfa;
  --lavender-100: #eee8ff;
  --mint-700: #087c77;
  --mint-500: #0cb9ac;
  --mint-100: #d9faf5;
  --mint-50: #effdfb;
  --ink: #0f172a;
  --muted: #52627a;
  --line: rgba(99, 124, 166, 0.18);
  --line-strong: rgba(83, 111, 158, 0.3);
  --surface: #f7fbff;
  --surface-blue: #f2f7ff;
  --ice: #f7fbff;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.72);
  --glass-strong: rgba(255, 255, 255, 0.9);
  --aurora: linear-gradient(112deg, #2563ff 0%, #03cde9 48%, #8b5cf6 100%);
  --aurora-soft:
    radial-gradient(circle at 12% 16%, rgba(6, 223, 245, 0.16), transparent 25rem),
    radial-gradient(circle at 88% 10%, rgba(124, 58, 237, 0.13), transparent 27rem),
    linear-gradient(145deg, #ffffff 0%, #f2f8ff 54%, #f8f5ff 100%);
  --shadow-sm: 0 12px 38px rgba(28, 61, 118, 0.09);
  --shadow-md: 0 28px 80px rgba(30, 65, 128, 0.14);
  --shadow-blue: 0 18px 42px rgba(37, 99, 255, 0.28);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 32px;
}

html {
  background: var(--ice);
}

body {
  min-width: 0;
  background:
    radial-gradient(circle at 8% 3%, rgba(6, 223, 245, 0.1), transparent 24rem),
    radial-gradient(circle at 92% 13%, rgba(124, 58, 237, 0.09), transparent 28rem),
    linear-gradient(#ffffff, #fbfdff 38%, #ffffff 74%);
}

main {
  position: relative;
}

:focus-visible {
  outline-color: rgba(37, 99, 255, 0.5);
}

::selection {
  color: var(--navy-950);
  background: var(--cyan-100);
}

.section {
  position: relative;
}

.section-soft {
  overflow: hidden;
  background:
    linear-gradient(rgba(37, 99, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 255, 0.025) 1px, transparent 1px),
    var(--aurora-soft);
  background-size: 48px 48px, 48px 48px, auto;
  border-block-color: rgba(106, 132, 175, 0.16);
}

.section-navy {
  color: var(--ink);
  background:
    radial-gradient(circle at 92% 8%, rgba(124, 58, 237, 0.13), transparent 28rem),
    radial-gradient(circle at 5% 92%, rgba(6, 223, 245, 0.14), transparent 26rem),
    linear-gradient(145deg, #f5faff, #ffffff 54%, #f8f5ff);
  border-block: 1px solid rgba(96, 125, 173, 0.16);
}

.section-navy::before {
  background-image:
    linear-gradient(rgba(37, 99, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 255, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.site-header {
  min-height: 78px;
  background: rgba(249, 252, 255, 0.7);
  border-bottom-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 1px 0 rgba(95, 121, 165, 0.08);
  backdrop-filter: blur(22px) saturate(175%);
  -webkit-backdrop-filter: blur(22px) saturate(175%);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(103, 129, 172, 0.18);
  box-shadow: 0 14px 42px rgba(28, 60, 116, 0.09);
}

.brand img {
  filter: drop-shadow(0 7px 12px rgba(37, 99, 255, 0.16));
}

.desktop-nav {
  padding: 5px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(108, 134, 176, 0.11);
  border-radius: var(--radius-pill);
}

.desktop-nav a {
  padding-inline: 15px;
  border-radius: var(--radius-pill);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--blue-700);
  background: rgba(229, 239, 255, 0.82);
}

.button {
  position: relative;
  overflow: hidden;
  background: var(--aurora);
  background-size: 180% 100%;
  border-color: rgba(37, 99, 255, 0.46);
  border-radius: 14px;
  box-shadow:
    0 12px 28px rgba(37, 99, 255, 0.2),
    inset 0 1px rgba(255, 255, 255, 0.35);
  transition:
    color 180ms ease,
    background-position 360ms var(--ease-out),
    border-color 180ms ease,
    box-shadow 220ms ease,
    transform 220ms var(--ease-out);
}

.button::before {
  position: absolute;
  inset: -1px;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.34) 48%, transparent 74%);
  content: "";
  pointer-events: none;
  transform: translateX(-120%);
  transition: transform 520ms var(--ease-out);
}

.button:hover,
.button:focus-visible {
  background: var(--aurora);
  background-position: 100% 50%;
  border-color: rgba(124, 58, 237, 0.38);
  box-shadow:
    0 18px 38px rgba(37, 99, 255, 0.25),
    0 7px 22px rgba(124, 58, 237, 0.13);
  transform: translateY(-3px);
}

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(120%);
}

.button-small {
  border-radius: var(--radius-pill);
}

.button-secondary {
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(87, 118, 166, 0.25);
  box-shadow: 0 9px 26px rgba(29, 61, 118, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--blue-700);
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(37, 99, 255, 0.3);
}

.button-light {
  color: var(--blue-700);
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 38px rgba(17, 45, 103, 0.22);
}

.button-light:hover,
.button-light:focus-visible {
  color: var(--lavender-600);
  background: var(--white);
  border-color: var(--white);
}

.eyebrow {
  width: fit-content;
  padding: 6px 10px;
  color: var(--blue-700);
  background: linear-gradient(120deg, rgba(37, 99, 255, 0.09), rgba(6, 223, 245, 0.08));
  border: 1px solid rgba(37, 99, 255, 0.12);
  border-radius: var(--radius-pill);
  letter-spacing: 0.11em;
}

.section-navy .eyebrow,
.section-heading.light .eyebrow {
  color: var(--blue-700);
}

h1,
h2,
h3 {
  color: var(--ink);
  letter-spacing: -0.048em;
}

h1 {
  font-size: clamp(3.05rem, 5.55vw, 5.25rem);
}

.section-heading.light h2 {
  color: var(--ink);
}

.section-heading.light p:not(.eyebrow) {
  color: var(--muted);
}

.hero {
  position: relative;
  grid-template-columns: minmax(0, 0.94fr) minmax(440px, 1.06fr);
  gap: clamp(48px, 6vw, 84px);
  min-height: min(870px, calc(100svh - var(--header-height)));
  padding-block: clamp(58px, 7.5vw, 96px);
}

.hero::before {
  top: -2%;
  left: 0;
  width: 47vw;
  min-width: 560px;
  background:
    radial-gradient(circle, rgba(6, 223, 245, 0.12), transparent 64%),
    radial-gradient(circle at 63% 44%, rgba(37, 99, 255, 0.08), transparent 54%);
  filter: blur(2px);
}

.hero::after {
  position: absolute;
  z-index: -1;
  top: 6%;
  right: 0;
  width: 50vw;
  min-width: 600px;
  aspect-ratio: 1;
  background-image:
    radial-gradient(circle at center, rgba(124, 58, 237, 0.08), transparent 62%),
    linear-gradient(rgba(37, 99, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 255, 0.032) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
  content: "";
  mask-image: radial-gradient(circle, black, transparent 69%);
  pointer-events: none;
}

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

.hero-lede {
  color: #435570;
}

.hero-trust {
  border-image: var(--aurora) 1;
}

.hero-system {
  --hero-shift-x: 0px;
  --hero-shift-y: 0px;
  isolation: isolate;
  min-height: 650px;
  padding: 0;
  color: var(--ink);
  background: #f4f8ff;
  border: 1px solid rgba(85, 117, 169, 0.18);
  border-radius: 34px;
  box-shadow:
    0 38px 90px rgba(29, 63, 123, 0.16),
    inset 0 1px rgba(255, 255, 255, 0.92);
}

.hero-system::before {
  z-index: 1;
  inset: 0;
  width: auto;
  aspect-ratio: auto;
  background:
    linear-gradient(90deg, rgba(246, 250, 255, 0.96) 0%, rgba(247, 251, 255, 0.75) 42%, rgba(247, 251, 255, 0.06) 76%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent 56%);
}

.hero-system::after {
  position: absolute;
  z-index: 3;
  top: -22%;
  left: -50%;
  width: 38%;
  height: 145%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  content: "";
  pointer-events: none;
  transform: rotate(15deg);
  animation: visual-sheen 8.5s 1.2s ease-in-out infinite;
}

.hero-art {
  position: absolute;
  z-index: 0;
  inset: -3%;
  overflow: hidden;
  pointer-events: none;
}

.hero-art video,
.hero-art img {
  display: block;
  width: 106%;
  height: 106%;
  max-width: none;
  object-fit: cover;
  object-position: 52% center;
  transform: translate3d(var(--hero-shift-x), var(--hero-shift-y), 0) scale(1.035);
  will-change: transform;
}

.hero-art img {
  animation: hero-art-float 8s ease-in-out infinite;
}

.hero-video-toggle {
  position: absolute;
  z-index: 4;
  top: 18px;
  right: 18px;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  color: var(--primary-700);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(82, 116, 172, 0.2);
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(29, 63, 122, 0.12);
  backdrop-filter: blur(14px) saturate(155%);
  -webkit-backdrop-filter: blur(14px) saturate(155%);
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.hero-video-toggle::before,
.hero-video-toggle::after {
  width: 3px;
  height: 14px;
  background: currentColor;
  border-radius: 2px;
  content: "";
}

.hero-video-toggle::before {
  transform: translateX(-3px);
}

.hero-video-toggle::after {
  position: absolute;
  transform: translateX(3px);
}

.hero-video-toggle[data-paused="true"]::before {
  width: 0;
  height: 0;
  background: transparent;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid currentColor;
  border-radius: 0;
  transform: translateX(2px);
}

.hero-video-toggle[data-paused="true"]::after {
  display: none;
}

.hero-video-toggle:hover {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(37, 99, 255, 0.18);
  transform: translateY(-2px);
}

.hero-video-toggle:focus-visible {
  outline: 3px solid rgba(37, 99, 255, 0.34);
  outline-offset: 3px;
}

.hero-system-flow {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(69%, 405px);
  min-height: 650px;
  padding: 30px 0 30px clamp(24px, 4vw, 42px);
}

.system-topline {
  margin-bottom: 21px;
  color: #566a86;
}

.system-topline i {
  background: var(--cyan-500);
  border-color: #d8fbff;
  box-shadow: 0 0 0 6px rgba(6, 223, 245, 0.13);
}

.system-node {
  padding: 18px 19px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(91, 122, 173, 0.2);
  border-radius: 17px;
  box-shadow:
    0 16px 38px rgba(27, 62, 120, 0.11),
    inset 0 1px rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.system-node-problem {
  border-color: rgba(37, 99, 255, 0.2);
}

.system-node small {
  color: var(--blue-700);
}

.system-node strong {
  color: var(--ink);
}

.system-node p {
  color: #52647d;
}

.system-node-result {
  width: calc(100% + 42px);
  margin-left: 22px;
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.9), rgba(228, 250, 255, 0.72)),
    rgba(255, 255, 255, 0.8);
  border-color: rgba(0, 207, 232, 0.28);
}

.system-connector {
  height: 23px;
  background: rgba(37, 99, 255, 0.16);
}

.system-connector span {
  background: linear-gradient(to bottom, transparent, var(--blue-600), var(--cyan-400), transparent);
}

.system-routes {
  width: calc(100% + 34px);
  margin-left: 10px;
}

.system-routes span {
  color: var(--blue-700);
  background: rgba(247, 251, 255, 0.76);
  border-color: rgba(37, 99, 255, 0.18);
  box-shadow: 0 8px 22px rgba(32, 70, 133, 0.08);
  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);
}

.system-caption {
  width: calc(100% + 40px);
  color: #64748b;
}

.problem-explorer {
  gap: 20px;
  padding: clamp(10px, 2vw, 18px);
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(99, 126, 171, 0.14);
  border-radius: 30px;
  box-shadow: 0 24px 70px rgba(30, 65, 125, 0.09);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.problem-list {
  gap: 7px;
}

.problem-list button {
  min-height: 61px;
  background: rgba(255, 255, 255, 0.54);
  border-color: transparent;
  border-radius: 14px;
}

.problem-list button:hover {
  border-color: rgba(37, 99, 255, 0.14);
}

.problem-list button[aria-pressed="true"] {
  color: var(--blue-700);
  background:
    linear-gradient(120deg, rgba(37, 99, 255, 0.1), rgba(6, 223, 245, 0.07)),
    rgba(255, 255, 255, 0.92);
  border-color: rgba(37, 99, 255, 0.22);
  box-shadow: 0 12px 30px rgba(31, 67, 127, 0.1);
}

.problem-panel {
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(124, 58, 237, 0.1), transparent 20rem),
    radial-gradient(circle at 75% 100%, rgba(6, 223, 245, 0.1), transparent 18rem),
    rgba(255, 255, 255, 0.86);
  border-color: rgba(76, 111, 170, 0.17);
  box-shadow: 0 20px 54px rgba(29, 63, 123, 0.11);
}

.route-tags span {
  color: var(--blue-700);
  background: linear-gradient(120deg, var(--blue-50), var(--lavender-100));
  border-color: rgba(89, 93, 220, 0.17);
}

.problem-control {
  color: #0b6666;
  background: linear-gradient(120deg, var(--mint-50), rgba(223, 251, 255, 0.76));
  border-left-color: var(--cyan-500);
}

.before-after {
  gap: 0;
}

.before-after article {
  background:
    linear-gradient(rgba(255, 255, 255, 0.75), rgba(247, 251, 255, 0.88)),
    var(--surface);
  border-color: rgba(91, 119, 165, 0.18);
  box-shadow: 0 18px 48px rgba(28, 62, 119, 0.08);
}

.before-after .after-card {
  background:
    radial-gradient(circle at 100% 0%, rgba(6, 223, 245, 0.13), transparent 17rem),
    radial-gradient(circle at 12% 100%, rgba(124, 58, 237, 0.09), transparent 17rem),
    var(--white);
  border-color: rgba(6, 183, 210, 0.28);
  box-shadow: 0 24px 60px rgba(28, 79, 135, 0.12);
}

.after-card .state-label {
  color: var(--blue-700);
  background: linear-gradient(120deg, var(--cyan-100), var(--lavender-100));
  border-color: rgba(37, 99, 255, 0.14);
}

.after-card li::before {
  background: var(--cyan-500);
  box-shadow: 0 0 0 4px var(--cyan-100);
}

.transformation-mark {
  background: var(--aurora);
  border-color: #fbfdff;
  box-shadow: 0 14px 34px rgba(37, 99, 255, 0.24);
}

.service-grid {
  gap: 18px;
}

.service-grid article {
  isolation: isolate;
  min-height: 470px;
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(245, 249, 255, 0.76)),
    var(--white);
  border-color: rgba(81, 112, 164, 0.17);
  border-radius: 25px;
  box-shadow: 0 18px 54px rgba(29, 63, 122, 0.09);
}

.service-grid article::before {
  position: absolute;
  z-index: -1;
  top: -130px;
  right: -105px;
  width: 245px;
  height: 245px;
  background: radial-gradient(circle, rgba(37, 99, 255, 0.13), transparent 67%);
  content: "";
  transition: transform 500ms var(--ease-out);
}

.service-grid article:nth-child(2)::before {
  background: radial-gradient(circle, rgba(6, 223, 245, 0.16), transparent 67%);
}

.service-grid article:nth-child(3)::before {
  background: radial-gradient(circle, rgba(124, 58, 237, 0.14), transparent 67%);
}

.service-grid article:hover {
  background:
    linear-gradient(145deg, #ffffff, rgba(246, 250, 255, 0.92)),
    var(--white);
  border-color: rgba(37, 99, 255, 0.25);
  box-shadow: 0 26px 66px rgba(29, 63, 122, 0.13);
  transform: translateY(-4px);
}

.service-grid article:hover::before {
  transform: translate(-12px, 12px) scale(1.08);
}

.service-grid h3 {
  color: var(--ink);
}

.service-grid article > p:not(.service-fit) {
  color: var(--muted);
}

.service-number {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 46px;
  color: var(--blue-700);
  background: linear-gradient(135deg, var(--blue-100), var(--cyan-100));
  border: 1px solid rgba(37, 99, 255, 0.13);
  border-radius: 13px;
}

.service-fit {
  color: var(--blue-700);
}

.service-grid dl div {
  border-top-color: rgba(83, 111, 158, 0.17);
}

.service-grid dt {
  color: #687994;
}

.service-grid dd {
  color: #354965;
}

.solution-grid {
  gap: 16px;
  border: 0;
}

.solution-card {
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(37, 99, 255, 0.08), transparent 14rem),
    rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(87, 117, 166, 0.18);
  border-radius: 22px;
  box-shadow: 0 14px 42px rgba(29, 62, 119, 0.07);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.solution-card:nth-child(3n + 2) {
  background:
    radial-gradient(circle at 100% 0%, rgba(6, 223, 245, 0.1), transparent 14rem),
    rgba(255, 255, 255, 0.88);
}

.solution-card:nth-child(3n) {
  background:
    radial-gradient(circle at 100% 0%, rgba(124, 58, 237, 0.09), transparent 14rem),
    rgba(255, 255, 255, 0.88);
}

.solution-card:hover {
  background-color: rgba(255, 255, 255, 0.98);
  border-color: rgba(37, 99, 255, 0.27);
  box-shadow: 0 24px 58px rgba(29, 63, 123, 0.13);
  transform: translateY(-4px);
}

.solution-card > span {
  width: fit-content;
  margin-bottom: 34px;
  padding: 6px 9px;
  background: rgba(233, 241, 255, 0.8);
  border: 1px solid rgba(37, 99, 255, 0.11);
  border-radius: var(--radius-pill);
}

.solution-card i {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  background: var(--blue-50);
  border: 1px solid rgba(37, 99, 255, 0.14);
  border-radius: 50%;
}

.process-steps {
  display: grid;
  gap: 12px;
}

.process-steps li {
  padding: 0;
}

.process-steps li:not(:last-child)::before {
  top: 43px;
  bottom: -17px;
  background: linear-gradient(var(--blue-100), rgba(6, 223, 245, 0.16));
}

.process-steps li > span {
  margin-top: 19px;
  color: var(--blue-700);
  background: linear-gradient(135deg, #ffffff, var(--blue-50));
  border-color: rgba(37, 99, 255, 0.22);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(29, 63, 122, 0.1);
}

.process-steps li > div {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(90, 120, 169, 0.15);
  border-radius: 18px;
  box-shadow: 0 12px 34px rgba(29, 63, 122, 0.06);
  transition:
    border-color 180ms ease,
    box-shadow 220ms ease,
    transform 220ms var(--ease-out);
}

.process-steps li:hover > div {
  border-color: rgba(37, 99, 255, 0.24);
  box-shadow: 0 19px 44px rgba(29, 63, 122, 0.1);
  transform: translateX(4px);
}

.control-grid {
  gap: 16px;
}

.control-grid article {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 255, 0.76)),
    var(--white);
  border-color: rgba(85, 116, 166, 0.17);
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(29, 63, 122, 0.07);
}

.control-grid article:hover {
  border-color: rgba(37, 99, 255, 0.25);
  box-shadow: 0 22px 52px rgba(29, 63, 122, 0.11);
  transform: translateY(-4px);
}

.control-grid article > span {
  color: var(--blue-700);
  background: linear-gradient(135deg, var(--cyan-100), var(--lavender-100));
  border-color: rgba(37, 99, 255, 0.12);
  border-radius: 13px;
}

.founder-section {
  overflow: hidden;
  padding-block: clamp(78px, 9vw, 118px);
  background:
    linear-gradient(rgba(37, 99, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 255, 0.026) 1px, transparent 1px),
    radial-gradient(circle at 2% 100%, rgba(6, 223, 245, 0.13), transparent 27rem),
    radial-gradient(circle at 96% 0%, rgba(124, 58, 237, 0.12), transparent 29rem),
    #f7fbff;
  background-size: 50px 50px, 50px 50px, auto, auto, auto;
  border-block: 1px solid rgba(91, 119, 165, 0.16);
}

.founder-photo {
  align-self: center;
  max-height: 680px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-100), var(--lavender-100));
  border: 1px solid rgba(89, 116, 164, 0.18);
  border-radius: 32px;
  box-shadow: 0 30px 74px rgba(30, 64, 123, 0.16);
}

.founder-photo img {
  min-height: 560px;
  filter: saturate(0.88) contrast(1.025);
  transition: transform 650ms var(--ease-out);
}

.founder-photo:hover img {
  transform: scale(1.018);
}

.founder-copy {
  padding-block: 24px;
}

.founder-copy h2 {
  color: var(--ink);
}

.founder-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.founder-points li {
  color: #344861;
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(91, 120, 168, 0.15);
  border-radius: 13px;
  box-shadow: 0 9px 28px rgba(30, 63, 120, 0.05);
}

.founder-points li::before {
  background: var(--cyan-500);
  box-shadow: 0 0 0 4px var(--cyan-100);
}

.guide-grid {
  gap: 18px;
}

.guide-grid article {
  min-height: 270px;
  background:
    radial-gradient(circle at 100% 0%, rgba(37, 99, 255, 0.07), transparent 13rem),
    rgba(255, 255, 255, 0.85);
  border-color: rgba(87, 117, 166, 0.17);
  border-radius: 22px;
  box-shadow: 0 14px 42px rgba(29, 63, 122, 0.07);
}

.guide-grid article:hover {
  border-color: rgba(37, 99, 255, 0.25);
  box-shadow: 0 23px 54px rgba(29, 63, 122, 0.12);
  transform: translateY(-4px);
}

.guide-grid article > span {
  width: fit-content;
  padding: 6px 9px;
  background: linear-gradient(120deg, var(--blue-50), var(--lavender-100));
  border: 1px solid rgba(37, 99, 255, 0.11);
  border-radius: var(--radius-pill);
}

.faq-list {
  padding: 8px 24px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(90, 119, 167, 0.16);
  border-radius: 22px;
  box-shadow: 0 16px 46px rgba(29, 63, 122, 0.07);
}

.faq-list details {
  border-bottom-color: rgba(91, 119, 164, 0.16);
}

.faq-list details:last-child {
  border-bottom: 0;
}

.faq-list summary {
  transition:
    color 180ms ease,
    padding-left 220ms var(--ease-out);
}

.faq-list summary:hover {
  color: var(--blue-700);
  padding-left: 5px;
}

.final-cta {
  position: relative;
  isolation: isolate;
  min-height: 390px;
  overflow: hidden;
  background: var(--aurora);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 34px;
  box-shadow:
    0 32px 78px rgba(37, 99, 255, 0.24),
    0 16px 40px rgba(124, 58, 237, 0.12);
}

.final-cta::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 47, 151, 0.8) 0%, rgba(15, 63, 171, 0.64) 39%, rgba(8, 73, 169, 0.12) 72%);
  content: "";
  pointer-events: none;
}

.final-cta-art {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.final-cta-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 900ms var(--ease-out);
}

.final-cta:hover .final-cta-art img {
  transform: scale(1.025);
}

.final-cta > div,
.final-cta > a {
  position: relative;
  z-index: 2;
}

.final-cta > div {
  max-width: 690px;
}

.final-cta .eyebrow {
  color: #e8fbff;
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.2);
}

.site-footer {
  color: #64748b;
  background:
    radial-gradient(circle at 12% 110%, rgba(6, 223, 245, 0.1), transparent 22rem),
    linear-gradient(180deg, #f8fbff, #f2f6fc);
  border-top: 1px solid rgba(86, 115, 164, 0.15);
}

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

.site-footer nav a {
  color: #52637b;
}

.site-footer nav a:hover {
  color: var(--blue-700);
}

.site-footer > small {
  color: #7c8ba0;
  border-top-color: rgba(85, 114, 162, 0.14);
}

.page-hero {
  position: relative;
}

.page-hero::before {
  position: absolute;
  z-index: -1;
  top: 2%;
  right: 0;
  width: 48vw;
  min-width: 520px;
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 48% 44%, rgba(6, 223, 245, 0.12), transparent 31%),
    radial-gradient(circle at 58% 54%, rgba(124, 58, 237, 0.1), transparent 55%),
    linear-gradient(rgba(37, 99, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 255, 0.03) 1px, transparent 1px);
  background-size: auto, auto, 42px 42px, 42px 42px;
  content: "";
  mask-image: radial-gradient(circle, black, transparent 68%);
  pointer-events: none;
}

.page-panel {
  background:
    radial-gradient(circle at 100% 0%, rgba(124, 58, 237, 0.1), transparent 18rem),
    radial-gradient(circle at 0% 100%, rgba(6, 223, 245, 0.11), transparent 17rem),
    rgba(255, 255, 255, 0.76);
  border-color: rgba(85, 116, 166, 0.18);
  box-shadow: 0 22px 62px rgba(29, 63, 123, 0.11);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.content-grid {
  gap: 18px;
}

.content-grid article,
.scope-grid article {
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(87, 117, 166, 0.17);
  border-radius: 22px;
  box-shadow: 0 13px 38px rgba(29, 63, 122, 0.06);
}

.content-grid article::before {
  height: 4px;
  background: var(--aurora);
}

.page-cta {
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 12%, rgba(124, 58, 237, 0.13), transparent 20rem),
    radial-gradient(circle at 3% 100%, rgba(6, 223, 245, 0.13), transparent 18rem),
    rgba(255, 255, 255, 0.8);
  border-color: rgba(80, 112, 166, 0.19);
  box-shadow: 0 22px 60px rgba(29, 63, 122, 0.1);
}

@keyframes hero-art-float {
  0%,
  100% {
    transform: translate3d(var(--hero-shift-x), calc(var(--hero-shift-y) - 3px), 0) scale(1.035);
  }
  50% {
    transform: translate3d(var(--hero-shift-x), calc(var(--hero-shift-y) + 5px), 0) scale(1.045);
  }
}

@keyframes visual-sheen {
  0%,
  55% {
    left: -50%;
    opacity: 0;
  }
  64% {
    opacity: 0.5;
  }
  80%,
  100% {
    left: 125%;
    opacity: 0;
  }
}

@media (max-width: 1040px) {
  .desktop-nav a {
    padding-inline: 10px;
  }

  .hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(370px, 1.08fr);
    gap: 38px;
  }

  .hero-system,
  .hero-system-flow {
    min-height: 610px;
  }

  .hero-system-flow {
    width: min(72%, 370px);
    padding-left: 26px;
  }

  .service-grid article {
    min-height: 500px;
  }
}

@media (max-width: 820px) {
  .site-header {
    background: rgba(249, 252, 255, 0.88);
  }

  .menu-button {
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(87, 117, 166, 0.2);
    border-radius: 13px;
    box-shadow: 0 8px 22px rgba(29, 63, 122, 0.08);
  }

  .mobile-menu {
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(87, 117, 166, 0.18);
    border-radius: 20px;
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
  }

  .hero,
  .page-hero {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 48px;
  }

  .hero::before,
  .hero::after,
  .page-hero::before {
    width: 100%;
    min-width: 0;
  }

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

  .hero-system {
    width: 100%;
    max-width: 690px;
  }

  .hero-system,
  .hero-system-flow {
    min-height: 590px;
  }

  .hero-system-flow {
    width: min(64%, 400px);
    padding-left: 32px;
  }

  .problem-explorer {
    padding: 14px;
  }

  .problem-list {
    margin-inline: -14px;
    padding-inline: 14px;
  }

  .solution-grid {
    border: 0;
  }

  .solution-card {
    border: 1px solid rgba(87, 117, 166, 0.18);
  }

  .founder-layout {
    grid-template-columns: minmax(240px, 0.82fr) minmax(0, 1.18fr);
  }

  .final-cta {
    min-height: 440px;
  }

  .final-cta > div {
    max-width: 590px;
  }
}

@media (max-width: 620px) {
  .eyebrow {
    padding: 5px 8px;
  }

  .hero {
    gap: 38px;
  }

  .hero-system {
    min-height: 570px;
    border-radius: 25px;
  }

  .hero-video-toggle {
    top: 12px;
    right: 12px;
  }

  .hero-system-flow {
    justify-content: flex-end;
    width: 100%;
    min-height: 570px;
    padding: 150px 20px 22px;
    background: linear-gradient(180deg, transparent 12%, rgba(247, 251, 255, 0.3) 33%, rgba(247, 251, 255, 0.94) 62%);
  }

  .hero-system::before {
    background: linear-gradient(180deg, rgba(247, 251, 255, 0.02) 0%, rgba(247, 251, 255, 0.18) 38%, rgba(247, 251, 255, 0.9) 72%);
  }

  .hero-art video,
  .hero-art img {
    height: 68%;
    object-position: 59% top;
  }

  .system-topline {
    margin-bottom: 13px;
  }

  .system-node {
    padding: 14px 15px;
  }

  .system-node-result,
  .system-routes,
  .system-caption {
    width: 100%;
    margin-left: 0;
  }

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

  .system-routes span {
    padding-inline: 4px;
    font-size: 9px;
  }

  .problem-explorer {
    margin-inline: -6px;
    padding: 10px;
    border-radius: 24px;
  }

  .problem-list {
    margin-inline: -10px;
    padding-inline: 10px;
  }

  .service-grid article {
    min-height: auto;
  }

  .founder-section {
    padding-block: 0;
  }

  .founder-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .founder-photo {
    margin-inline: -16px;
    border-inline: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .founder-copy {
    padding-block: 58px 72px;
  }

  .process-steps li:hover > div {
    transform: none;
  }

  .faq-list {
    padding-inline: 18px;
  }

  .final-cta {
    min-height: 480px;
    padding-bottom: 34px;
    border-radius: 25px;
  }

  .final-cta::after {
    background:
      linear-gradient(180deg, rgba(15, 65, 173, 0.48), rgba(12, 47, 151, 0.9) 75%),
      linear-gradient(90deg, rgba(12, 47, 151, 0.35), transparent);
  }

  .final-cta-art img {
    object-position: 67% center;
  }

  .site-footer {
    padding-inline: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-art video,
  .hero-art img,
  .hero-system::after {
    animation: none !important;
  }

  .hero-art video,
  .hero-art img {
    transform: none !important;
  }

  .button::before {
    display: none;
  }

  .hero-video-toggle {
    transition: none;
  }

  .hero-video-toggle:hover {
    transform: none;
  }

  .final-cta:hover .final-cta-art img,
  .founder-photo:hover img,
  .service-grid article:hover,
  .solution-card:hover,
  .control-grid article:hover,
  .guide-grid article:hover,
  .process-steps li:hover > div {
    transform: none !important;
  }
}
