:root {
  --ink: #10213f;
  --muted: #4a6285;
  --muted-strong: #304d75;
  --navy: #19346c;
  --navy-dark: #102955;
  --cobalt: #2b6cf4;
  --sky: #2b88ff;
  --sky-light: #7cc2ff;
  --sky-pale: #e9f4ff;
  --line: #d2def2;
  --line-strong: #b8c9ea;
  --surface: #ffffff;
  --surface-soft: #f7fbff;
  --max: 1180px;
  --radius-xl: 22px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --section-space: clamp(3.8rem, 5.2vw, 5.7rem);
  --shadow-sm: 0 10px 18px -16px rgba(16, 33, 63, 0.38);
  --shadow-md: 0 22px 44px -32px rgba(16, 33, 63, 0.44);
  --shadow-lg: 0 34px 52px -36px rgba(16, 33, 63, 0.5);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  background:
    radial-gradient(circle at 18% 14%, rgba(43, 108, 244, 0.15), transparent 37%),
    radial-gradient(circle at 84% 8%, rgba(21, 183, 197, 0.12), transparent 36%),
    linear-gradient(180deg, #f8fbff, #edf4ff);
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(25, 52, 108, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(25, 52, 108, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 88%);
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(var(--max), 92vw);
  margin: auto;
}

main {
  isolation: isolate;
}

h1,
h2,
h3,
h4 {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.15rem, 5.2vw, 4.35rem);
}

h2 {
  font-size: clamp(1.85rem, 3.35vw, 3rem);
}

h3 {
  font-size: clamp(1.08rem, 1.25vw, 1.3rem);
}

h4 {
  font-size: clamp(0.98rem, 0.8vw, 1.1rem);
}

p {
  color: var(--muted);
  font-size: clamp(0.98rem, 0.34vw + 0.92rem, 1.05rem);
}

a {
  color: var(--sky);
}

strong {
  color: var(--navy);
}

.text-accent-cyan {
  color: rgb(51, 181, 232);
}

.page-hero h1 .text-accent-cyan,
.home-hero h1 .text-accent-cyan {
  color: rgb(51, 181, 232);
  -webkit-text-fill-color: rgb(51, 181, 232);
  background: none;
}

.footer-desc .text-accent-cyan {
  color: rgb(51, 181, 232);
  font-weight: 700;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding-top: clamp(14px, 1.8vw, 20px);
  pointer-events: none;
}

.site-header.is-scrolled {
  padding-top: clamp(9px, 1.1vw, 12px);
}

.top {
  position: relative;
  pointer-events: auto;
  width: min(94vw, 1240px);
  max-width: min(94vw, 1240px);
  margin: 0 auto;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(14px, 2vw, 34px);
  padding: 0;
  border-radius: 0;
  border: 0;
  border-bottom: 0;
  background: transparent;
  box-shadow: none;
  transition:
    min-height 220ms ease,
    padding 220ms ease,
    border-color 220ms ease,
    border-radius 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled .top {
  min-height: 58px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(219, 239, 255, 0.22);
  border-radius: 0;
  background: rgba(6, 22, 44, 0.4);
  box-shadow: none;
  backdrop-filter: blur(5px) saturate(110%);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  line-height: 0;
  padding: 0;
}

.brand-logo {
  display: block;
  height: clamp(40px, 3.2vw, 50px);
  width: auto;
  max-width: min(40vw, 280px);
  transition: height 220ms ease;
}

.site-header.is-scrolled .brand-logo {
  height: clamp(36px, 2.9vw, 44px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.9vw, 28px);
}

.nav-links a {
  color: rgba(244, 250, 255, 0.82);
  text-decoration: none;
  font-weight: 500;
  font-size: clamp(0.84rem, 0.32vw + 0.77rem, 0.95rem);
  text-transform: none;
  letter-spacing: 0.01em;
  transition: color 0.2s ease, opacity 0.2s ease;
  position: relative;
  white-space: nowrap;
  opacity: 0.86;
}

.nav-links a:not(.button)::after {
  display: none;
}

.nav-links a:not(.button) {
  border-radius: 0;
  padding: 4px 0;
}

.nav-links a:not(.button):hover,
.nav-links a:not(.button).active {
  color:rgb(51, 181, 232);
  background: transparent;
  opacity: 1;
}

.nav-links a:not(.button):hover::after,
.nav-links a:not(.button).active::after {
  transform: none;
}

.site-header .nav-links .button {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  white-space: nowrap;
}

.button::after {
  content: "";
  position: absolute;
  inset: -36% -120%;
  border-radius: inherit;
  background: linear-gradient(
    108deg,
    rgba(255, 255, 255, 0) 36%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(255, 255, 255, 0) 64%
  );
  opacity: 0;
  transform: translateX(-46%) rotate(14deg);
  transition: transform 620ms cubic-bezier(0.23, 1, 0.32, 1), opacity 220ms ease;
  pointer-events: none;
}

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

.button:hover::after,
.button:focus-visible::after {
  opacity: 1;
  transform: translateX(54%) rotate(14deg);
}

.button:focus-visible {
  outline: 2px solid var(--sky-light);
  outline-offset: 2px;
}

.button.primary {
  color: #fff;
  background: linear-gradient(122deg, var(--navy), var(--cobalt));
  box-shadow: 0 14px 24px -18px rgba(25, 52, 108, 0.95);
}

.button.primary:hover {
  box-shadow: 0 20px 30px -20px rgba(25, 52, 108, 0.98);
}

.button.secondary {
  color: var(--navy);
  border-color: rgba(25, 52, 108, 0.24);
  background: rgba(255, 255, 255, 0.72);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.95);
}

.menu-btn {
  display: none;
  border: 1px solid rgba(214, 238, 255, 0.48);
  background: rgba(8, 26, 52, 0.44);
  border-radius: var(--radius-sm);
  width: 40px;
  height: 40px;
  color: #f5fbff;
}

.back-to-top {
  position: fixed;
  right: clamp(12px, 2.4vw, 26px);
  bottom: clamp(14px, 2.6vw, 28px);
  z-index: 86;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(125, 162, 213, 0.62);
  background: #1d4ed8;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  box-shadow:
    0 22px 44px -12px rgba(17, 56, 150, 0.7),
    0 10px 22px -10px rgba(17, 56, 150, 0.58),
    0 0 18px rgba(29, 78, 216, 0.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px) scale(0.96);
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease,
    background-color 180ms ease,
    visibility 0s linear 220ms;
}

.back-to-top .back-to-top-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.back-to-top .back-to-top-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.8;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  transition: opacity 220ms ease, transform 220ms ease, box-shadow 220ms ease, background-color 180ms ease;
}

body.menu-open .back-to-top {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(8px) scale(0.96) !important;
}

.back-to-top:hover {
  transform: translateY(-2px);
  background: #1e40af;
  box-shadow:
    0 26px 48px -12px rgba(17, 56, 150, 0.78),
    0 12px 24px -10px rgba(17, 56, 150, 0.66),
    0 0 22px rgba(37, 99, 235, 0.3);
}

.back-to-top:focus-visible {
  background: #1e40af;
  outline: 2px solid rgba(152, 198, 255, 0.92);
  outline-offset: 2px;
}

.back-to-top:active {
  background: #1e3a8a;
  transform: translateY(0);
  box-shadow:
    0 16px 30px -12px rgba(17, 56, 150, 0.74),
    0 6px 14px -9px rgba(17, 56, 150, 0.6);
}

.section {
  padding: var(--section-space) 0;
  position: relative;
}

.section-head {
  max-width: 780px;
  margin-bottom: clamp(1.2rem, 2vw, 2rem);
}

.section-head h2 {
  max-width: 24ch;
}

.kicker {
  color: var(--sky);
  font-size: 0.77rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 10px;
}

.intro {
  font-size: clamp(1rem, 0.44vw + 0.94rem, 1.1rem);
  max-width: 62ch;
  color: var(--muted-strong);
}

.page-hero {
  padding: clamp(5rem, 7vw, 7rem) 0 clamp(3.3rem, 4.8vw, 4.8rem);
  background: linear-gradient(138deg, rgba(25, 52, 108, 0.96), rgba(43, 108, 244, 0.93));
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  right: -110px;
  top: -120px;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(124, 194, 255, 0.45), transparent 70%);
  pointer-events: none;
}

.page-hero::after {
  content: "";
  position: absolute;
  left: 8%;
  bottom: -130px;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(21, 183, 197, 0.2), transparent 75%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero p,
.page-hero h1,
.page-hero .eyebrow {
  color: #fff;
}

.page-hero h1 {
  margin-top: 14px;
  max-width: 15ch;
}

.page-hero .eyebrow {
  display: inline-flex;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 999px;
}

.page-hero .hero-copy {
  max-width: 62ch;
  margin-top: 14px;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  color: rgba(255, 255, 255, 0.86);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: clamp(1rem, 2.8vw, 2.4rem);
  align-items: center;
}

.panel,
.card,
.stat-card,
.step {
  backdrop-filter: blur(3px);
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  padding: clamp(1rem, 2vw, 1.6rem);
  box-shadow: var(--shadow-md);
}

.panel h2,
.panel h3 {
  margin-bottom: 10px;
}

.panel p {
  margin-bottom: 12px;
}

.dark-panel {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-xl);
  background: linear-gradient(168deg, rgba(25, 52, 108, 0.97), rgba(43, 108, 244, 0.93));
  color: #fff;
  padding: clamp(1.1rem, 2vw, 1.7rem);
  box-shadow: var(--shadow-lg);
}

.dark-panel h3 {
  color: #fff;
  margin-bottom: 12px;
}

.matrix {
  list-style: none;
  display: grid;
  gap: 9px;
}

.matrix li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 11px;
  padding: 9px 11px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
}

.matrix span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.84rem;
}

.actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.stat-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  overflow: visible;
}

.stat-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.84);
  padding: 18px 14px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.stat-card b {
  display: block;
  font-size: clamp(1.45rem, 2vw, 2rem);
  color: var(--navy);
  font-family: "Space Grotesk", sans-serif;
  margin-bottom: 2px;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.counter-confetti-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
  z-index: 3;
}

.counter-confetti-piece {
  position: absolute;
  background: var(--c, #2b6cf4);
  border-radius: 2px;
  opacity: 0;
  transform: translate(-50%, -50%) translate3d(0, 0, 0) rotate(0deg) scale(0.86);
  will-change: transform, opacity;
  animation: counterConfettiFall 1600ms cubic-bezier(0.05, 0.82, 0.25, 1) forwards;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.core-services-grid {
  margin-top: clamp(1rem, 2.2vw, 1.7rem);
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.84);
  padding: clamp(1rem, 1.8vw, 1.25rem);
  box-shadow: var(--shadow-sm);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(43, 108, 244, 0.55), rgba(21, 183, 197, 0.55));
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(43, 108, 244, 0.42);
  box-shadow: var(--shadow-md);
}

.icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: linear-gradient(145deg, rgba(43, 108, 244, 0.22), rgba(21, 183, 197, 0.2));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: 700 0.95rem/1 "Space Grotesk", sans-serif;
  color: var(--navy);
  margin-bottom: 11px;
}

.card h3 {
  font-size: clamp(1.02rem, 1vw, 1.2rem);
  margin-bottom: 7px;
}

.card p {
  font-size: 0.94rem;
}

.card ul {
  margin-top: 10px;
  margin-left: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.card code {
  font-size: 0.82rem;
  color: var(--navy);
  background: rgba(25, 52, 108, 0.06);
  padding: 2px 6px;
  border-radius: 6px;
}

.split {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 14px;
  align-items: start;
}

.pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pills span {
  border: 1px solid rgba(25, 52, 108, 0.2);
  background: #fff;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.82rem;
  color: var(--navy);
  font-weight: 700;
}

.kpis {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.kpi {
  border: 1px solid rgba(25, 52, 108, 0.2);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(25, 52, 108, 0.96), rgba(43, 108, 244, 0.94));
  color: #fff;
  padding: 15px;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.kpi b {
  font: 700 clamp(1.45rem, 2.2vw, 2rem)/1 "Space Grotesk", sans-serif;
  margin-bottom: 7px;
}

.kpi span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.step {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}

.step .n {
  width: 33px;
  height: 33px;
  border-radius: 9px;
  background: linear-gradient(145deg, var(--cobalt), var(--navy));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: 700 0.9rem/1 "Space Grotesk", sans-serif;
  margin-bottom: 12px;
}

.step h4 {
  margin-bottom: 7px;
}

.step p {
  font-size: 0.9rem;
}

/* About Milestone Timeline */
.milestone-timeline {
  position: relative;
  margin-top: clamp(1.1rem, 2vw, 1.7rem);
  display: grid;
  gap: 14px;
}

.milestone-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  bottom: 8px;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(43, 108, 244, 0.64), rgba(43, 108, 244, 0.08));
}

.milestone-item {
  position: relative;
  border: 1px solid rgba(25, 52, 108, 0.16);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(238, 247, 255, 0.9));
  box-shadow: var(--shadow-sm);
  width: calc(50% - 30px);
  min-height: 164px;
  padding: 16px;
}

.milestone-item.left {
  margin-right: auto;
}

.milestone-item.right {
  margin-left: auto;
}

.milestone-item::before {
  content: "";
  position: absolute;
  top: 29px;
  width: 30px;
  height: 2px;
  background: rgba(43, 108, 244, 0.5);
}

.milestone-item.left::before {
  right: -30px;
}

.milestone-item.right::before {
  left: -30px;
}

.milestone-item::after {
  content: "";
  position: absolute;
  top: 20px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #fff;
  border: 3px solid rgba(43, 108, 244, 0.88);
  box-shadow: 0 0 0 6px rgba(43, 108, 244, 0.12);
}

.milestone-item.left::after {
  right: -40px;
}

.milestone-item.right::after {
  left: -40px;
}

.milestone-item .n {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: linear-gradient(145deg, var(--cobalt), var(--navy));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: 700 0.92rem/1 "Space Grotesk", sans-serif;
  margin-bottom: 10px;
}

.milestone-item h4 {
  margin-bottom: 7px;
}

.milestone-item p {
  margin: 0;
  font-size: 0.92rem;
}

.service-nav {
  position: sticky;
  top: 86px;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.service-nav .inner {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 0;
  scrollbar-width: none;
}

.service-nav .inner::-webkit-scrollbar {
  display: none;
}

.service-nav a {
  flex-shrink: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  background: #fff;
  transition: 0.2s ease;
}

.service-nav a:hover {
  color: var(--navy);
  background: var(--sky-pale);
  border-color: var(--line-strong);
}

.services-showcase .container {
  display: grid;
  gap: 14px;
}

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

.service-overview-tile {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}

.service-overview-head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-overview-index {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: linear-gradient(145deg, var(--cobalt), var(--navy));
  color: #fff;
  font: 700 0.78rem/1 "Space Grotesk", sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.service-overview-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  padding: 6px;
  border: 1px solid rgba(43, 108, 244, 0.28);
  background: rgba(233, 244, 255, 0.9);
}

.services-overview-page .service-overview-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  padding: 8px;
}

.core-services-grid .core-service-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  padding: 8px;
  margin-bottom: 11px;
}

.service-overview-points {
  margin: 4px 0 2px 18px;
  color: var(--muted);
  display: grid;
  gap: 4px;
  font-size: 0.9rem;
}

.service-overview-tile .button {
  margin-top: auto;
}

.service-feature-layout {
  align-items: stretch;
}

.service-feature-media {
  margin: 0;
  border: 1px solid rgba(25, 52, 108, 0.14);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(244, 250, 255, 0.9);
  display: grid;
  grid-template-rows: 1fr auto;
}

.service-feature-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.service-feature-media figcaption {
  padding: 9px 12px 10px;
  color: var(--muted-strong);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.4;
}

.service-feature-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.service-feature-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 2px 0 10px;
}

.service-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  padding: 6px;
  border: 1px solid rgba(34, 100, 196, 0.26);
  background: rgba(229, 241, 255, 0.84);
}

.service-feature-meta .section-tag {
  margin: 0;
}

.service-feature-card .service-discuss-btn {
  margin-top: 24px;
  align-self: flex-start;
}

.service-detail-highlights {
  margin: 10px 0 14px 18px;
  color: var(--muted);
  display: grid;
  gap: 6px;
}

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

.service-snapshot-card h4 {
  margin-bottom: 6px;
}

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

.service-value-card h3 {
  margin-bottom: 6px;
}

.service-process-steps {
  margin-top: 4px;
}

.service-scope-subhead {
  margin-top: 14px;
  margin-bottom: 8px;
}

.service-detail-page .page-hero h1 {
  max-width: 19ch;
}

.service-detail-page .service-feature-band,
.service-detail-page .service-snapshot-band,
.service-detail-page .service-value-band,
.service-detail-page .service-process-band,
.service-detail-page .service-scope-band {
  position: relative;
  border-top: 1px solid rgba(20, 49, 95, 0.16);
  border-bottom: 1px solid rgba(20, 49, 95, 0.12);
}

.service-detail-page .service-feature-band {
  background:
    radial-gradient(120% 130% at 100% 0%, rgba(73, 152, 243, 0.17), transparent 62%),
    linear-gradient(180deg, rgba(247, 252, 255, 0.97), rgba(238, 247, 255, 0.92));
}

.service-detail-page .service-snapshot-band {
  background:
    radial-gradient(120% 130% at 0% 10%, rgba(87, 163, 241, 0.16), transparent 62%),
    linear-gradient(180deg, rgba(241, 249, 255, 0.96), rgba(232, 243, 255, 0.9));
}

.service-detail-page .service-value-band {
  background:
    radial-gradient(130% 120% at 100% 12%, rgba(79, 177, 196, 0.16), transparent 62%),
    linear-gradient(180deg, rgba(236, 246, 255, 0.96), rgba(227, 240, 255, 0.9));
}

.service-detail-page .service-process-band {
  background:
    radial-gradient(120% 130% at 8% 0%, rgba(68, 143, 234, 0.14), transparent 64%),
    linear-gradient(180deg, rgba(244, 250, 255, 0.95), rgba(234, 244, 255, 0.9));
}

.service-detail-page .service-scope-band {
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(70, 157, 235, 0.14), transparent 64%),
    linear-gradient(180deg, rgba(239, 248, 255, 0.96), rgba(230, 241, 255, 0.9));
}

.service-detail-page .service-feature-band::before,
.service-detail-page .service-snapshot-band::before,
.service-detail-page .service-value-band::before,
.service-detail-page .service-process-band::before,
.service-detail-page .service-scope-band::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(44, 108, 244, 0.14), rgba(52, 181, 232, 0.26), rgba(44, 108, 244, 0.14));
  pointer-events: none;
}

.services-accordion {
  display: grid;
  gap: 12px;
}

.service-accordion-item {
  border: 1px solid rgba(19, 52, 103, 0.16);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 249, 255, 0.92));
  box-shadow: var(--shadow-sm);
  padding: 0;
  overflow: hidden;
  transition: border-color 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.service-accordion-item.is-open {
  border-color: rgba(37, 99, 235, 0.38);
  box-shadow: var(--shadow-md);
  background: linear-gradient(180deg, rgba(245, 251, 255, 0.98), rgba(234, 244, 255, 0.94));
}

.service-main-trigger {
  width: 100%;
  border: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 246, 255, 0.92));
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px;
  text-align: left;
  cursor: pointer;
}

.service-main-trigger:focus-visible {
  outline: 2px solid rgba(29, 78, 216, 0.5);
  outline-offset: -2px;
}

.service-main-label {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}

.service-main-index {
  font: 700 0.82rem/1 "Space Grotesk", sans-serif;
  letter-spacing: 0.06em;
  color: var(--muted-strong);
}

.service-main-title {
  font: 700 1.02rem/1.2 "Space Grotesk", sans-serif;
  color: var(--navy);
}

.service-main-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(25, 52, 108, 0.22);
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 220ms ease, background-color 220ms ease;
}

.service-accordion-item.is-open .service-main-icon {
  transform: rotate(45deg);
  background: rgba(37, 99, 235, 0.12);
}

.service-main-panel {
  display: none;
  padding: 10px;
}

.service-accordion-item.is-open .service-main-panel {
  display: block;
}

.service-accordion-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--cobalt), var(--navy));
  color: #fff;
  font: 700 0.82rem/1 "Space Grotesk", sans-serif;
}

.service-accordion-label {
  display: grid;
  gap: 3px;
}

.service-accordion-label strong {
  font: 700 1rem/1.15 "Space Grotesk", sans-serif;
  color: var(--navy);
}

.service-accordion-label small {
  color: var(--muted-strong);
  font-size: 0.84rem;
}

.service-summary-card {
  border: 1px solid rgba(158, 196, 255, 0.32);
  border-radius: 13px;
  background: linear-gradient(142deg, #1d4ed8 0%, #1d4ed8 42%, #143a9f 100%);
  color: #fff;
  padding: 12px;
}

.service-summary-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: start;
  gap: 10px;
}

.service-summary-card .service-accordion-index {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.36);
}

.service-summary-icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.18);
}

.service-summary-card .service-accordion-label strong {
  color: #fff;
}

.service-summary-card .service-accordion-label small {
  color: rgba(230, 240, 255, 0.94);
}

.service-summary-points {
  margin: 10px 0 0 18px;
  color: rgba(243, 248, 255, 0.96);
  display: grid;
  gap: 5px;
}

.service-summary-points li {
  font-size: 0.89rem;
}

.service-accordion-trigger {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}

.service-accordion-trigger:focus-visible {
  outline: 2px solid rgba(219, 234, 254, 0.95);
  outline-offset: 2px;
}

.service-accordion-icon {
  width: auto;
  height: auto;
  border-radius: 0;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 220ms ease;
}

.service-accordion-item.is-detail-open .service-accordion-icon {
  transform: rotate(45deg);
}

.service-accordion-item.is-open .service-summary-card {
  background: linear-gradient(142deg, #1e40af 0%, #1d4ed8 44%, #143a9f 100%);
}

.service-accordion-panel {
  display: none;
  margin-top: 8px;
}

.service-accordion-item.is-detail-open .service-accordion-panel {
  display: block;
}

.services-carousel {
  position: relative;
  padding: 8px 0 0;
}

.services-carousel-pin {
  position: relative;
  padding: 4px 0 12px;
}

.services-carousel-viewport {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
}

.services-carousel-track {
  display: flex;
  align-items: stretch;
  gap: 14px;
  will-change: transform;
  transition: transform 440ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.service-carousel-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 14px;
  align-items: stretch;
}

.service-carousel-copy,
.service-carousel-media {
  border: 1px solid rgba(19, 52, 103, 0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 250, 255, 0.92));
}

.service-carousel-copy {
  padding: clamp(18px, 2.2vw, 26px);
  display: flex;
  flex-direction: column;
}

.service-carousel-copy h2 {
  margin-bottom: 8px;
}

.service-carousel-copy p {
  margin-bottom: 12px;
}

.service-carousel-copy .button {
  margin-top: auto;
}

.service-carousel-slide.content-only {
  grid-template-columns: minmax(240px, 0.92fr) minmax(0, 1.08fr);
  align-items: stretch;
}

.service-carousel-slide.content-only.reverse .service-overview-card {
  order: 2;
}

.service-carousel-slide.content-only.reverse .service-carousel-copy {
  order: 1;
}

.service-overview-card {
  padding: clamp(18px, 2.2vw, 24px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.service-overview-card .service-mini-title {
  margin-top: 0;
}

.service-overview-card .service-feature-list {
  margin-bottom: 0;
}

.service-rich-copy .section-tag {
  display: inline-flex;
  align-self: flex-start;
  margin: 2px 0 10px;
  padding: 6px 10px;
  border: 1px solid rgba(34, 100, 196, 0.26);
  border-radius: 999px;
  font: 700 0.74rem/1 "Space Grotesk", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(229, 241, 255, 0.84);
}

.service-rich-copy .lead {
  color: var(--muted-strong);
  font-weight: 600;
}

.service-mini-title {
  margin: 10px 0 8px;
  font-size: clamp(1.02rem, 1vw + 0.88rem, 1.2rem);
}

.service-feature-list {
  margin: 8px 0 14px 18px;
  color: var(--muted);
}

.service-feature-list li {
  margin-bottom: 6px;
  font-size: 0.92rem;
}

.sub-service-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.sub-service-card {
  border: 1px solid rgba(25, 52, 108, 0.14);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 249, 255, 0.9));
  padding: 11px 12px;
}

.sub-service-card h4 {
  margin-bottom: 6px;
  font-size: 0.92rem;
}

.sub-service-card p {
  margin: 0;
  font-size: 0.88rem;
}

.benefit-pills {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.benefit-pill {
  border: 1px solid rgba(38, 96, 188, 0.22);
  border-radius: 999px;
  background: rgba(227, 240, 255, 0.78);
  color: var(--navy);
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 6px 10px;
}

.xdt-steps {
  margin-top: 14px;
  border: 1px solid rgba(25, 52, 108, 0.14);
  border-radius: 12px;
  background: rgba(242, 248, 255, 0.86);
  padding: 12px;
}

.xdt-steps h4 {
  margin-bottom: 8px;
  font-size: 0.92rem;
}

.xdt-steps ol {
  margin-left: 20px;
  color: var(--muted);
  display: grid;
  gap: 6px;
}

.xdt-steps li {
  font-size: 0.88rem;
}

.service-points {
  margin: 8px 0 18px 18px;
  color: var(--muted);
}

.service-points li {
  margin-bottom: 6px;
  font-size: 0.92rem;
}

.service-carousel-media {
  padding: 10px;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 10px;
}

.service-carousel-media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(25, 52, 108, 0.1);
}

.service-carousel-media figcaption {
  color: var(--muted-strong);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.4;
  padding: 0 4px 2px;
}

.services-carousel-controls {
  margin-top: 12px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 10px;
}

.service-carousel-arrow {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(15, 42, 84, 0.2);
  background: rgba(255, 255, 255, 0.86);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.08rem;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, opacity 220ms ease, background-color 220ms ease;
}

.service-carousel-arrow:hover:not(:disabled) {
  transform: translateY(-1px);
  background: #fff;
  box-shadow: 0 12px 18px -14px rgba(16, 33, 63, 0.64);
}

.service-carousel-arrow:disabled {
  opacity: 0.38;
  cursor: default;
}

.service-carousel-progress {
  height: 7px;
  border-radius: 999px;
  background: rgba(25, 52, 108, 0.14);
  overflow: hidden;
}

.service-carousel-progress span {
  display: block;
  width: 16.66%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cobalt), var(--sky));
  transition: width 260ms ease;
}

.service-carousel-counter {
  color: var(--navy);
  font: 700 0.86rem/1 "Space Grotesk", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .services-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .service-feature-media img {
    min-height: 280px;
  }

  .service-main-trigger {
    padding: 13px 14px;
  }

  .service-main-title {
    font-size: 0.98rem;
  }

  .service-main-panel {
    padding: 9px;
  }

  .service-summary-head {
    gap: 9px;
  }

  .service-summary-points {
    margin-top: 9px;
    gap: 4px;
  }

  .services-carousel {
    height: auto;
  }

  .services-carousel-pin {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
    padding: 0 0 8px;
  }

  .services-carousel-viewport {
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    padding-bottom: 4px;
  }

  .services-carousel-viewport::-webkit-scrollbar {
    display: none;
  }

  .services-carousel-track {
    width: max-content;
    transform: none !important;
    gap: 12px;
    padding-right: 12px;
  }

  .service-carousel-slide {
    min-width: min(90vw, 640px);
    grid-template-columns: 1fr;
    scroll-snap-align: start;
  }

  .service-carousel-media img {
    min-height: 220px;
  }

  .sub-service-cards {
    grid-template-columns: 1fr;
  }

  .service-carousel-slide.content-only.reverse .service-overview-card,
  .service-carousel-slide.content-only.reverse .service-carousel-copy {
    order: initial;
  }
}

@media (max-width: 760px) {
  .services-overview-grid {
    grid-template-columns: 1fr;
  }

  .service-snapshot-grid,
  .service-value-grid {
    grid-template-columns: 1fr;
  }

  .service-feature-layout {
    gap: 10px;
  }

  .service-feature-media img {
    height: clamp(190px, 56vw, 280px);
    min-height: 0;
  }

  .service-accordion-item {
    padding: 0;
  }

  .service-main-trigger {
    padding: 12px;
  }

  .service-main-label {
    gap: 7px;
  }

  .service-main-index {
    font-size: 0.76rem;
  }

  .service-main-title {
    font-size: 0.92rem;
  }

  .service-main-icon {
    width: 26px;
    height: 26px;
  }

  .service-main-panel {
    padding: 8px;
  }

  .service-summary-card {
    padding: 10px;
  }

  .service-summary-head {
    gap: 8px;
  }

  .service-accordion-index {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    font-size: 0.76rem;
  }

  .service-accordion-label strong {
    font-size: 0.94rem;
  }

  .service-accordion-label small {
    font-size: 0.8rem;
  }

  .service-summary-icon {
    width: 30px;
    height: 30px;
    padding: 5px;
  }

  .service-summary-points {
    margin-left: 16px;
  }

  .service-summary-points li {
    font-size: 0.84rem;
  }

  .service-accordion-trigger {
    width: 28px;
    height: 28px;
  }

  .services-carousel-viewport {
    overflow: visible;
    scroll-snap-type: none;
    padding-bottom: 0;
  }

  .services-carousel-track {
    display: grid;
    width: 100%;
    gap: 12px;
    padding-right: 0;
  }

  .service-carousel-slide {
    min-width: 100%;
    grid-template-columns: 1fr;
    scroll-snap-align: none;
  }

  .service-carousel-media {
    display: none;
  }

  .services-carousel-controls {
    display: none;
  }
}

.service-block {
  padding: clamp(3rem, 4vw, 4.4rem) 0;
}

.service-block.alt {
  background: linear-gradient(180deg, rgba(233, 244, 255, 0.6), rgba(255, 255, 255, 0.75));
}

.service-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 14px;
  align-items: start;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 6px 11px;
  background: var(--sky-pale);
  color: var(--navy);
  margin-bottom: 12px;
}

.service-sub {
  color: var(--sky);
  font-size: 0.92rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.checks {
  margin: 10px 0 16px 18px;
  color: var(--muted);
}

.checks li {
  margin-bottom: 6px;
  font-size: 0.92rem;
}

.contact-block {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-xl);
  padding: 24px;
  background: linear-gradient(132deg, rgba(25, 52, 108, 0.95), rgba(43, 108, 244, 0.9));
  color: #fff;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  box-shadow: var(--shadow-lg);
}

.contact-block h2,
.contact-block h3,
.contact-block p,
.contact-block li,
.contact-block a,
.contact-block label {
  color: #fff;
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 9px;
  margin-top: 14px;
  font-weight: 600;
}

.contact-list a {
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
}

.form {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 14px;
  display: grid;
  gap: 9px;
}

.form label {
  font-size: 0.84rem;
  font-weight: 600;
}

.form input,
.form textarea {
  width: 100%;
  padding: 10px 11px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(10, 29, 64, 0.35);
  color: #fff;
  border-radius: 10px;
  font: inherit;
}

.form textarea {
  min-height: 90px;
  resize: vertical;
}

.form ::placeholder {
  color: rgba(255, 255, 255, 0.78);
}

.cta-band {
  background: linear-gradient(132deg, rgba(25, 52, 108, 0.95), rgba(43, 108, 244, 0.9));
  color: #fff;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.cta-band::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(124, 194, 255, 0.35), transparent 70%);
  right: -90px;
  top: -90px;
}

.cta-band .container {
  position: relative;
  z-index: 1;
}

.cta-band h2,
.cta-band p {
  color: #fff;
}

.cta-band p {
  max-width: 700px;
  margin: 10px auto 0;
  color: rgba(255, 255, 255, 0.84);
}

.cta-band .actions {
  justify-content: center;
}

.mega-footer {
  background: linear-gradient(180deg, #152e61, #10264f);
  color: #fff;
  margin-top: 40px;
}

.mega-footer .upper {
  padding: clamp(2.6rem, 4.2vw, 3.6rem) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 0.75fr;
  gap: 28px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-logo {
  display: block;
  width: auto;
  height: clamp(42px, 4vw, 54px);
  max-width: none;
  background: transparent;
  filter: none;
}

.footer-brand-copy {
  display: grid;
  gap: 3px;
}

.footer-brand-name {
  margin: 0;
  font: 600 clamp(1rem, 0.4vw + 0.92rem, 1.22rem)/1 "Sora", sans-serif;
  letter-spacing: 0.22rem;
  text-transform: uppercase;
  color: #f7fbff;
  white-space: nowrap;
}

.footer-brand-tagline {
  margin: 0;
  font: 500 clamp(0.72rem, 0.24vw + 0.67rem, 0.82rem)/1.25 "Sora", sans-serif;
  letter-spacing: 0.04em;
  color: #2377ed;
  white-space: nowrap;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  max-width: 42ch;
}

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  transition: 0.2s ease;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.23);
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 14px;
  font-size: 0.86rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.footer-col li,
.footer-col a,
.footer-col p {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom .inner {
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.8rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .hero-grid,
  .split,
  .service-layout,
  .contact-block {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .milestone-item {
    width: calc(50% - 24px);
    min-height: 156px;
  }

  .milestone-item::before {
    width: 24px;
  }

  .milestone-item.left::before {
    right: -24px;
  }

  .milestone-item.right::before {
    left: -24px;
  }

  .milestone-item.left::after {
    right: -34px;
  }

  .milestone-item.right::after {
    left: -34px;
  }

  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    padding-top: 10px;
  }

  .top {
    width: min(94vw, 620px);
    max-width: 94vw;
    margin: 0 auto;
    min-height: 64px;
    padding: 0;
    gap: 10px;
    border: 0;
    border-bottom: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-header.is-scrolled .top {
    min-height: 58px;
    padding: 0;
    border: 0;
    border-bottom: 1px solid rgba(218, 238, 255, 0.2);
    border-radius: 0;
    background: rgba(6, 22, 44, 0.46);
  }

  .brand-logo {
    height: clamp(35px, 7.8vw, 42px);
  }

  .site-header.is-scrolled .brand-logo {
    height: clamp(34px, 7.4vw, 40px);
  }

  .nav-links {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 48;
    background: rgba(5, 18, 38, 0.96);
    box-shadow: none;
    padding: 108px 24px 34px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    backdrop-filter: blur(12px) saturate(115%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 220ms ease, transform 220ms ease, visibility 0s linear 220ms;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 52;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(209, 236, 255, 0.45);
    background: rgba(8, 26, 52, 0.52);
  }

  .nav-links a:not(.button)::after {
    display: none;
  }

  .nav-links a {
    color: rgba(241, 249, 255, 0.92);
    font-size: clamp(1rem, 1.6vw, 1.08rem);
    font-weight: 500;
    letter-spacing: 0.015em;
    opacity: 0.92;
  }

  .nav-links a:not(.button) {
    border-radius: 0;
    padding: 4px 0;
  }

  .nav-links a:not(.button).active,
  .nav-links a:not(.button):hover {
    color: #fff;
    background: transparent;
    opacity: 1;
  }

  .page-hero {
    padding-top: 86px;
  }

  .milestone-timeline {
    gap: 12px;
  }

  .milestone-timeline::before {
    left: 8px;
    transform: none;
  }

  .milestone-item,
  .milestone-item.left,
  .milestone-item.right {
    width: auto;
    margin-left: 24px;
    margin-right: 0;
    min-height: 148px;
    padding: 14px;
  }

  .milestone-item::before,
  .milestone-item.left::before,
  .milestone-item.right::before {
    left: -15px;
    right: auto;
    width: 15px;
  }

  .milestone-item::after,
  .milestone-item.left::after,
  .milestone-item.right::after {
    left: -25px;
    right: auto;
  }

  .grid-3,
  .timeline,
  .kpis,
  .stat-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-nav {
    top: 96px;
  }

  .back-to-top {
    width: 42px;
    height: 42px;
    right: 12px;
    bottom: 14px;
  }

  .back-to-top .back-to-top-icon,
  .back-to-top .back-to-top-icon svg {
    width: 16px;
    height: 16px;
  }
}

/* Pass 2 Refinements */
[id] {
  scroll-margin-top: 132px;
}

.section-head {
  margin-bottom: clamp(1.4rem, 2.6vw, 2.4rem);
}

.section-head h2,
.page-hero h1 {
  text-wrap: balance;
}

.page-hero .hero-copy,
.panel p,
.card p {
  text-wrap: pretty;
}

.grid-3 > .card,
.service-layout > .panel,
.split > .panel {
  min-height: 100%;
}

.grid-3 > .card {
  display: flex;
  flex-direction: column;
}

.single-col-grid {
  grid-template-columns: 1fr !important;
  gap: 10px !important;
}

.mt-12 {
  margin-top: 12px;
}

.service-layout {
  align-items: stretch;
}

.service-layout .button {
  margin-top: auto;
  align-self: flex-start;
}

.cta-band {
  background: transparent;
  position: relative;
}

.cta-band::before {
  display: none;
}

.cta-band .container {
  background: linear-gradient(132deg, rgba(25, 52, 108, 0.95), rgba(43, 108, 244, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3.4vw, 2.35rem);
  box-shadow: var(--shadow-lg);
}

.cta-band .actions {
  margin-top: 20px;
}

.footer-grid {
  align-items: start;
}

.footer-col ul {
  gap: 10px;
}

.footer-col a {
  display: inline-flex;
  transition: color 0.22s ease, transform 0.22s ease;
}

.footer-col a:hover {
  transform: translateX(2px);
}

.footer-bottom .inner {
  justify-content: center;
}

@media (max-width: 760px) {
  [id] {
    scroll-margin-top: 118px;
  }

  .section {
    padding: clamp(3.1rem, 9vw, 3.8rem) 0;
  }

  .page-hero h1 {
    max-width: 100%;
  }

  .actions .button,
  .service-layout .button {
    width: 100%;
  }

  .cta-band .container {
    padding: 1.3rem 1.05rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .card:hover,
  .button:hover {
    transform: none;
  }

  .button::after {
    opacity: 0 !important;
    transform: none !important;
    transition: none !important;
  }

  .milestone-item {
    transition: none !important;
  }

  .back-to-top {
    transition: none !important;
  }
}

.actions-center { justify-content: center; }
.mt-20 { margin-top: 20px; }
.mt-10 { margin-top: 10px; }
.card-dashed { border-style: dashed; border-color: var(--line-strong); }
.tiny-note { font-size: 0.82rem; }

.mt-14 { margin-top: 14px; }

/* Section Fine-Tuning Pass 3 */
.section {
  padding: clamp(2.25rem, 3.2vw, 3.25rem) 0;
}

.section-head {
  max-width: 820px;
  margin-bottom: clamp(1.6rem, 2.8vw, 2.6rem);
}

.section-head .intro {
  max-width: 64ch;
}

body:not(.home-page) .page-hero {
  padding: clamp(4.35rem, 5.2vw, 5.6rem) 0 clamp(1.7rem, 2.8vw, 2.4rem);
}

body:not(.home-page) .page-hero h1 {
  margin-top: 10px;
  max-width: 20ch;
}

body:not(.home-page) .page-hero .hero-copy {
  margin-top: 10px;
  max-width: 58ch;
  font-size: clamp(0.94rem, 0.5vw + 0.86rem, 1.04rem);
}

.panel {
  padding: clamp(1.2rem, 2.1vw, 1.85rem);
}

.panel p:last-child,
.card p:last-child {
  margin-bottom: 0;
}

.card {
  padding: clamp(1.1rem, 1.95vw, 1.4rem);
}

.split,
.service-layout {
  gap: clamp(1rem, 2.2vw, 1.8rem);
}

.service-block {
  padding: clamp(1.9rem, 2.8vw, 2.8rem) 0;
}

.timeline {
  gap: clamp(12px, 1.4vw, 18px);
}

.step {
  min-height: 100%;
}

.service-nav {
  position: relative;
  top: 0;
  z-index: 2;
}

.service-nav .inner {
  padding: 11px 0;
}

.service-nav a {
  padding: 8px 13px;
  transition:
    color 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.service-nav a:hover {
  transform: translateY(-1px);
}

.service-nav a.is-active {
  color: #0f1f2a;
  background: #edf2d1;
  border-color: rgba(15, 31, 42, 0.16);
  box-shadow: 0 8px 14px -12px rgba(16, 33, 63, 0.55);
}

.grid-2-balanced {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-dashed {
  background: linear-gradient(180deg, rgba(247, 251, 255, 0.95), rgba(255, 255, 255, 0.86));
}

.card.contact-form-shell {
  border-style: solid;
  border-color: rgba(47, 119, 214, 0.34);
  background:
    radial-gradient(130% 120% at 10% 0%, rgba(56, 189, 248, 0.18), transparent 55%),
    radial-gradient(120% 100% at 100% 100%, rgba(43, 108, 244, 0.16), transparent 60%),
    linear-gradient(180deg, rgba(239, 248, 255, 0.97), rgba(230, 241, 255, 0.94));
}

.contact-form-embed {
  display: block;
  width: 100%;
  height: 1320px;
  min-height: 1320px;
  border: 0;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

@media (max-width: 980px) {
  .contact-form-embed {
    height: 1440px;
    min-height: 1440px;
  }
}

@media (max-width: 760px) {
  .contact-form-embed {
    height: 1560px;
    min-height: 1560px;
  }

  .section {
    padding: clamp(1.8rem, 5.1vw, 2.35rem) 0;
  }

  .service-block {
    padding: clamp(1.65rem, 4.7vw, 2.15rem) 0;
  }

  body:not(.home-page) .page-hero {
    padding-top: 82px;
    padding-bottom: clamp(1.5rem, 4.6vw, 2rem);
  }

  .grid-2-balanced {
    grid-template-columns: 1fr;
  }
}

/* Visual Separation + Sub Hero + Media System */
.section[class*="band-"],
.service-block[class*="band-"] {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-top: 1px solid rgba(14, 40, 78, 0.08);
  border-bottom: 1px solid rgba(14, 40, 78, 0.08);
}

.section[class*="band-"] > .container,
.service-block[class*="band-"] > .container {
  position: relative;
  z-index: 1;
}

.section.band-a,
.service-block.band-a {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 249, 255, 0.9));
}

.section.band-b,
.service-block.band-b {
  background: linear-gradient(180deg, rgba(233, 244, 255, 0.76), rgba(255, 255, 255, 0.94));
}

.section.band-c,
.service-block.band-c {
  background: linear-gradient(180deg, rgba(229, 247, 245, 0.74), rgba(255, 255, 255, 0.94));
}

.section[class*="band-"]::before,
.service-block[class*="band-"]::before {
  content: "";
  position: absolute;
  top: -38%;
  right: -14%;
  width: min(42vw, 460px);
  height: min(42vw, 460px);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(102, 176, 255, 0.2), rgba(102, 176, 255, 0.02) 62%, transparent 74%);
  pointer-events: none;
  z-index: 0;
}

.section[class*="band-"]::after,
.service-block[class*="band-"]::after {
  content: "";
  position: absolute;
  bottom: -42%;
  left: -12%;
  width: min(36vw, 390px);
  height: min(36vw, 390px);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(49, 194, 206, 0.16), rgba(49, 194, 206, 0.02) 64%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.service-block.alt {
  background: transparent;
}

.sub-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #0f2d5f;
}

.sub-hero .sub-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.06);
  transform-origin: center;
  filter: saturate(1.03) contrast(1.04);
}

.about-page .sub-hero .sub-hero-media {
  background-image: url("images/about-growth-dashboard.jpg");
  background-position: center 36%;
}

.legal-page .sub-hero .sub-hero-media {
  background-image: url("images/legal-policy-hero.jpg");
  background-position: center 34%;
}

.privacy-page .sub-hero .sub-hero-media {
  background-image: url("images/legal-policy-hero.jpg");
  background-position: center 38%;
}

.terms-page .sub-hero .sub-hero-media {
  background-image: url("images/legal-policy-hero.jpg");
  background-position: center 34%;
}

.services-page .sub-hero .sub-hero-media {
  background-image: url("images/services-custom-app.jpg");
  background-position: center 38%;
}

.services-overview-page .sub-hero .sub-hero-media {
  background-image: url("images/home-core-services.jpg");
  background-position: center 34%;
}

.service-custom-page .sub-hero .sub-hero-media {
  background-image: url("images/services-custom-app.jpg");
  background-position: center 38%;
}

.service-moodle-page .sub-hero .sub-hero-media {
  background-image: url("images/services-moodle-lms.jpg");
  background-position: center 38%;
}

.service-staffing-page .sub-hero .sub-hero-media {
  background-image: url("images/home-trust-team.jpg");
  background-position: center 38%;
}

.service-xdt-page .sub-hero .sub-hero-media {
  background-image: url("images/services-xdt-team.jpg");
  background-position: center 38%;
}

.service-hosting-page .sub-hero .sub-hero-media {
  background-image: url("images/services-cloud-hosting.jpg");
  background-position: center 38%;
}

.service-instructional-page .sub-hero .sub-hero-media {
  background-image: url("images/services-instructional-design.jpg");
  background-position: center 38%;
}

.contact-page .sub-hero .sub-hero-media {
  background-image: url("images/contact-office.jpg");
  background-position: center 40%;
}

.sub-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(118deg, rgba(7, 22, 47, 0.88) 2%, rgba(11, 40, 78, 0.72) 44%, rgba(36, 89, 211, 0.48) 100%);
}

.sub-hero::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  top: -28%;
  bottom: auto;
  width: auto;
  height: 82%;
  border-radius: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(circle, rgba(184, 231, 255, 0.26), rgba(184, 231, 255, 0.02) 66%, transparent 82%);
}

.sub-hero .sub-hero-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(5, 20, 44, 0.24), rgba(5, 20, 44, 0));
  background-size: 64px 64px, 64px 64px, cover;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.18) 74%, transparent 100%);
  opacity: 0.28;
}

.sub-hero .sub-hero-glow {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(7px);
}

.sub-hero .glow-a {
  width: min(34vw, 360px);
  height: min(34vw, 360px);
  top: -128px;
  right: 12%;
  background: radial-gradient(circle, rgba(220, 245, 255, 0.24), rgba(220, 245, 255, 0.02) 74%);
}

.sub-hero .glow-b {
  width: min(30vw, 300px);
  height: min(30vw, 300px);
  bottom: -124px;
  left: -30px;
  background: radial-gradient(circle, rgba(34, 179, 255, 0.22), rgba(34, 179, 255, 0.02) 72%);
}

.sub-hero .container {
  position: relative;
  z-index: 3;
}

.sub-hero .sub-hero-content {
  width: min(760px, 100%);
  margin-top: clamp(0.45rem, 0.9vw, 0.85rem);
  border: 1px solid rgba(170, 221, 255, 0.34);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(8, 27, 55, 0.6), rgba(15, 44, 88, 0.42));
  padding: clamp(0.82rem, 1.4vw, 1.15rem) clamp(0.9rem, 1.6vw, 1.25rem);
  box-shadow: 0 24px 42px -30px rgba(8, 19, 36, 0.88);
  backdrop-filter: blur(9px) saturate(120%);
}

.sub-hero .eyebrow {
  border-color: rgba(223, 245, 255, 0.5);
  background: rgba(255, 255, 255, 0.2);
  padding: 5px 10px;
  font-size: 0.72rem;
}

.sub-hero h1 {
  font-size: clamp(1.68rem, 3.4vw, 2.62rem);
  max-width: 16.5ch;
}

.sub-hero .hero-copy {
  max-width: 56ch;
  color: rgba(241, 248, 255, 0.92);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .sub-hero h1 {
    background: linear-gradient(96deg, #ffffff 6%, #d9f0ff 44%, #ffffff 88%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.media-frame {
  margin-top: 18px;
  border: 1px solid rgba(25, 52, 108, 0.16);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.media-frame img {
  width: 100%;
  height: clamp(190px, 24vw, 300px);
  object-fit: cover;
}

.media-frame figcaption {
  padding: 9px 12px;
  font-size: 0.82rem;
  color: var(--muted-strong);
  background: linear-gradient(180deg, rgba(233, 244, 255, 0.82), rgba(255, 255, 255, 0.96));
}

.media-frame-wide img {
  height: clamp(230px, 30vw, 360px);
}

.media-frame-compact img {
  height: clamp(170px, 21vw, 230px);
}

.service-visual {
  display: flex;
  flex-direction: column;
}

.service-visual img {
  width: 100%;
  height: clamp(200px, 24vw, 320px);
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(25, 52, 108, 0.12);
  margin-bottom: 13px;
}

.service-visual p {
  margin-bottom: 0;
}

.legal-shell .legal-lead-card {
  margin-bottom: 18px;
}

.legal-shell .legal-meta {
  margin: 8px 0 10px;
  font-size: 0.9rem;
  color: var(--muted-strong);
}

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

.legal-card {
  height: 100%;
}

.legal-card h3 {
  margin-bottom: 7px;
  font-size: 1.04rem;
}

.legal-card p {
  margin: 0;
}

.legal-card ul {
  margin: 8px 0 0 18px;
  color: var(--muted);
  display: grid;
  gap: 6px;
}

.legal-card-wide {
  grid-column: 1 / -1;
}

@media (max-width: 760px) {
  .section[class*="band-"]::before,
  .section[class*="band-"]::after,
  .service-block[class*="band-"]::before,
  .service-block[class*="band-"]::after {
    opacity: 0.66;
  }

  .sub-hero .sub-hero-grid-overlay {
    opacity: 0.22;
  }

  .sub-hero .sub-hero-media {
    transform: scale(1.03);
  }

  .sub-hero .sub-hero-content {
    border-radius: 16px;
    padding: 0.72rem 0.76rem;
    margin-top: 0.42rem;
  }

  .about-page .sub-hero .sub-hero-media {
    background-position: center 34%;
  }

  .legal-page .sub-hero .sub-hero-media {
    background-position: center 32%;
  }

  .privacy-page .sub-hero .sub-hero-media {
    background-position: center 34%;
  }

  .terms-page .sub-hero .sub-hero-media {
    background-position: center 30%;
  }

  .services-page .sub-hero .sub-hero-media {
    background-position: center 30%;
  }

  .services-overview-page .sub-hero .sub-hero-media {
    background-position: center 28%;
  }

  .contact-page .sub-hero .sub-hero-media {
    background-position: center 36%;
  }

  .media-frame img,
  .media-frame-wide img,
  .media-frame-compact img,
  .service-visual img {
    height: 188px;
  }

  .legal-grid {
    grid-template-columns: 1fr;
  }
}


/* Pocketchange-Inspired Hero */
.home-hero {
  --mx: 0;
  --my: 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(1200px 620px at 78% -12%, rgba(173, 222, 255, 0.24), transparent 64%),
    linear-gradient(141deg, #132a5d 0%, #2459d3 46%, #4ea0ff 100%);
}

.home-hero::before {
  content: "";
  position: absolute;
  width: min(56vw, 700px);
  height: min(56vw, 700px);
  top: -28%;
  right: -14%;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, rgba(208, 240, 255, 0.28), rgba(208, 240, 255, 0.04) 54%, transparent 72%);
  transform: translate3d(calc(var(--mx) * 18px), calc(var(--my) * 10px), 0);
  animation: heroAuraFloat 14s ease-in-out infinite;
}

.home-hero::after {
  content: "";
  position: absolute;
  width: min(48vw, 580px);
  height: min(48vw, 580px);
  left: -16%;
  bottom: -42%;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, rgba(44, 200, 255, 0.24), rgba(44, 200, 255, 0.02) 62%, transparent 78%);
  transform: translate3d(calc(var(--mx) * -13px), calc(var(--my) * -7px), 0);
  animation: heroAuraFloat 17s ease-in-out infinite reverse;
}

.home-hero .hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.74;
  mix-blend-mode: screen;
  pointer-events: none;
}

.home-hero .hero-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 72% 24%, rgba(255, 255, 255, 0.18), transparent 52%);
  background-size: 66px 66px, 66px 66px, cover;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.1) 78%, transparent 100%);
  opacity: 0.32;
  animation: heroNoiseDrift 22s linear infinite;
}

.home-hero .hero-noise {
  position: absolute;
  inset: -10% 0 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.22;
  background-image: radial-gradient(circle 1.2px at 1.2px 1.2px, rgba(255, 255, 255, 0.78) 100%, transparent 0);
  background-size: 24px 24px;
  animation: heroNoiseDrift 16s linear infinite;
}

.home-hero .hero-beam {
  --beam-rot: 0deg;
  position: absolute;
  inset: auto;
  height: 180px;
  border-radius: 999px;
  filter: blur(4px);
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(176, 230, 255, 0.42), rgba(255, 255, 255, 0));
  opacity: 0.42;
  animation: heroBeamSweep 18s cubic-bezier(0.45, 0.05, 0.3, 1) infinite;
}

.home-hero .beam-a {
  --beam-rot: -18deg;
  width: min(62vw, 780px);
  left: -20%;
  top: 18%;
  animation-delay: -2.5s;
}

.home-hero .beam-b {
  --beam-rot: 22deg;
  width: min(48vw, 560px);
  right: -12%;
  top: 36%;
  animation-delay: -7.2s;
  opacity: 0.3;
}

.home-hero .beam-c {
  --beam-rot: -12deg;
  width: min(54vw, 640px);
  left: 8%;
  bottom: 4%;
  animation-delay: -11.4s;
  opacity: 0.34;
}

.home-hero .hero-glow {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: 1;
  filter: blur(6px);
}

.home-hero .glow-a {
  width: min(34vw, 340px);
  height: min(34vw, 340px);
  top: -120px;
  right: 16%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.03) 70%);
  animation: heroGlowA 9.5s ease-in-out infinite;
}

.home-hero .glow-b {
  width: min(29vw, 280px);
  height: min(29vw, 280px);
  bottom: -120px;
  left: -30px;
  background: radial-gradient(circle, rgba(22, 180, 255, 0.44), rgba(22, 180, 255, 0.03) 68%);
  animation: heroGlowB 11s ease-in-out infinite;
}

.home-hero .hero-grid {
  position: relative;
  z-index: 3;
}

.home-hero h1 {
  color: #fff;
  text-shadow: 0 12px 28px rgba(10, 25, 68, 0.36);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .home-hero h1 {
    background: linear-gradient(94deg, #ffffff 4%, #d6eeff 46%, #ffffff 88%);
    background-size: 220% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: heroHeadlineSheen 10s linear infinite;
  }
}

.home-hero .dark-panel {
  --glare-x: 50%;
  --glare-y: 35%;
  position: relative;
  transform-style: preserve-3d;
  border-color: rgba(255, 255, 255, 0.36);
  background:
    linear-gradient(162deg, rgba(16, 35, 78, 0.88), rgba(39, 95, 222, 0.74)),
    radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.16), transparent 48%);
  box-shadow: 0 38px 60px -44px rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
  transition: box-shadow 260ms ease, border-color 260ms ease;
}

.home-hero .dark-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(560px circle at var(--glare-x) var(--glare-y), rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.04) 34%, transparent 62%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 220ms ease;
}

.home-hero .dark-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.17);
  pointer-events: none;
  z-index: 2;
}

.home-hero .dark-panel > * {
  position: relative;
  z-index: 1;
}

.home-hero .interactive-tilt {
  will-change: transform;
  transform-style: preserve-3d;
  transition: box-shadow 260ms ease, border-color 260ms ease;
}

.home-hero .interactive-tilt h3 {
  transform: translateZ(28px);
}

.home-hero .interactive-tilt .matrix {
  transform: translateZ(18px);
}

.home-hero .interactive-tilt .matrix li {
  backface-visibility: hidden;
  transition: transform 260ms ease, background-color 260ms ease, border-color 260ms ease;
}

.home-hero .interactive-tilt .matrix li:nth-child(odd) {
  transform: translateZ(20px);
}

.home-hero .interactive-tilt .matrix li:nth-child(even) {
  transform: translateZ(14px);
}

.home-hero .interactive-tilt .matrix span {
  transform: translateZ(16px);
}

.home-hero .interactive-tilt.is-active {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 52px 78px -52px rgba(0, 0, 0, 0.92), 0 0 0 1px rgba(190, 230, 255, 0.24);
}

.home-hero .interactive-tilt.is-active::before {
  opacity: 1;
}

.home-hero .interactive-tilt.is-active .matrix li {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.34);
}

.home-hero .hero-pulse-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.home-hero .hero-pulse-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 7px 11px;
  background: rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.82rem;
  backdrop-filter: blur(4px);
  animation: heroBadgePulse 5.4s ease-in-out infinite;
  animation-delay: var(--pulse-delay, 0ms);
}

.home-hero .hero-pulse-row b {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.92rem;
  color: #fff;
}

@keyframes heroNoiseDrift {
  0% { transform: translateY(0); }
  100% { transform: translateY(24px); }
}

@keyframes heroGlowA {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  50% { transform: translate(-10px, 14px) scale(1.08); opacity: 0.75; }
}

@keyframes heroGlowB {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.48; }
  50% { transform: translate(14px, -16px) scale(1.06); opacity: 0.72; }
}

@keyframes heroBeamSweep {
  0%, 100% { transform: rotate(var(--beam-rot)) translate3d(-2%, 0, 0) scaleX(1); opacity: 0.24; }
  50% { transform: rotate(var(--beam-rot)) translate3d(4%, -2%, 0) scaleX(1.04); opacity: 0.52; }
}

@keyframes heroAuraFloat {
  0%, 100% { transform: translate3d(calc(var(--mx) * 12px), calc(var(--my) * 8px), 0) scale(1); }
  50% { transform: translate3d(calc(var(--mx) * 18px), calc(var(--my) * 12px), 0) scale(1.06); }
}

@keyframes heroHeadlineSheen {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@keyframes heroBadgePulse {
  0%, 100% { transform: translateY(0); background: rgba(255, 255, 255, 0.13); }
  50% { transform: translateY(-2px); background: rgba(255, 255, 255, 0.23); }
}

@keyframes counterConfettiFall {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) translate3d(0, 0, 0) rotate(0deg) scale(0.35);
  }
  10% {
    opacity: 0.98;
  }
  72% {
    opacity: 0.82;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) translate3d(var(--dx, 0px), var(--dy, 0px), 0) rotate(var(--rot, 320deg)) scale(1.04);
  }
}

@media (max-width: 900px) {
  .home-hero .hero-beam {
    filter: blur(6px);
  }
}

@media (max-width: 760px) {
  .home-hero .hero-canvas {
    opacity: 0.58;
  }

  .home-hero .hero-grid-overlay {
    opacity: 0.24;
  }

  .home-hero .hero-noise {
    opacity: 0.18;
  }

  .home-hero .hero-pulse-row {
    margin-top: 14px;
  }

  .home-hero .hero-pulse-row span {
    font-size: 0.78rem;
  }

  .home-hero .actions .button {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero::before,
  .home-hero::after,
  .home-hero .hero-grid-overlay,
  .home-hero .hero-noise,
  .home-hero .hero-beam,
  .home-hero .hero-glow,
  .home-hero .hero-pulse-row span,
  .home-hero h1 {
    animation: none !important;
  }

  .home-hero .actions .button:hover {
    transform: none !important;
    box-shadow: none !important;
  }

  .interactive-tilt {
    transform: none !important;
    transition: none !important;
  }
}

/* Route Transitions */
.route-transition-layer {
  position: fixed;
  inset: 0;
  z-index: 9800;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  background: rgba(237, 244, 255, 0);
  transition: opacity 220ms ease, visibility 0s linear 220ms, background-color 320ms ease;
}

.route-transition-pill {
  position: absolute;
  left: 50%;
  top: var(--route-pill-top, 14px);
  width: var(--route-pill-width, min(92vw, 560px));
  height: var(--route-pill-height, 62px);
  transform: translateX(-50%) scale(0.98);
  transform-origin: center top;
  border-radius: 40px;
  border: 1px solid rgba(195, 205, 219, 0.76);
  background: rgba(243, 244, 246, 0.96);
  box-shadow: 0 18px 34px -24px rgba(11, 21, 33, 0.58);
  opacity: 0;
  transition:
    top 360ms cubic-bezier(0.2, 0.7, 0.2, 1),
    width 360ms cubic-bezier(0.2, 0.7, 0.2, 1),
    height 360ms cubic-bezier(0.2, 0.7, 0.2, 1),
    border-radius 360ms cubic-bezier(0.2, 0.7, 0.2, 1),
    border-color 260ms ease,
    opacity 180ms ease,
    transform 300ms cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 260ms ease,
    background-color 260ms ease;
}

.route-transition-layer.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 220ms ease, background-color 320ms ease;
}

.route-transition-layer.is-active .route-transition-pill {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.route-transition-layer.is-exiting {
  background: rgba(237, 244, 255, 0.92);
}

.route-transition-layer.is-exiting .route-transition-pill {
  top: 0;
  width: 100vw;
  height: 100vh;
  border-radius: 0;
  border-color: rgba(195, 205, 219, 0.2);
  background: #edf4ff;
  box-shadow: none;
}

body.route-transitioning {
  overflow: hidden;
}

body.route-transitioning .site-header,
body.route-transitioning main,
body.route-transitioning footer {
  transition: opacity 260ms ease, transform 260ms ease;
  opacity: 0.16;
  transform: translateY(-6px);
}

body.route-transition-enter .site-header,
body.route-transition-enter main,
body.route-transition-enter footer {
  animation: routePageFadeIn 420ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

@keyframes routePageFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Site Cursor */
body.has-custom-cursor {
  cursor: none;
}

body.has-custom-cursor a,
body.has-custom-cursor button,
body.has-custom-cursor .button,
body.has-custom-cursor [role="button"],
body.has-custom-cursor summary,
body.has-custom-cursor label,
body.has-custom-cursor input[type="submit"],
body.has-custom-cursor input[type="button"] {
  cursor: none !important;
}

body.has-custom-cursor input:not([type="submit"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]),
body.has-custom-cursor textarea,
body.has-custom-cursor select,
body.has-custom-cursor [contenteditable="true"] {
  cursor: text !important;
}

.custom-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scale(var(--cursor-scale, 1));
  transform-origin: center;
  transition: opacity 180ms ease, transform 220ms ease;
  will-change: transform, opacity;
}

.custom-cursor.is-visible {
  opacity: 1;
}

.custom-cursor.is-hidden {
  opacity: 0 !important;
}

.custom-cursor-ring {
  --cursor-scale: 1;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  color: #0f1f2a;
  border: 1.8px solid currentColor;
  background: rgba(15, 31, 42, 0.04);
  box-shadow:
    0 0 0 1px rgba(15, 31, 42, 0.2) inset,
    0 0 12px rgba(15, 31, 42, 0.16),
    0 0 24px rgba(43, 108, 244, 0.14);
  transition:
    width 220ms ease,
    height 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.custom-cursor-ring.tone-dark {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.24) inset,
    0 0 18px rgba(255, 255, 255, 0.4),
    0 0 34px rgba(116, 194, 255, 0.22);
}

.custom-cursor-ring.tone-light {
  color: #0f1f2a;
  background: rgba(15, 31, 42, 0.04);
  box-shadow:
    0 0 0 1px rgba(15, 31, 42, 0.2) inset,
    0 0 12px rgba(15, 31, 42, 0.16),
    0 0 24px rgba(43, 108, 244, 0.14);
}

.custom-cursor-dot {
  --cursor-scale: 1;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  color: #0f1f2a;
  background: currentColor;
  box-shadow:
    0 0 8px rgba(15, 31, 42, 0.34),
    0 0 14px rgba(43, 108, 244, 0.22);
  transition: opacity 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.custom-cursor-dot.tone-dark {
  color: #fff;
  box-shadow:
    0 0 10px rgba(255, 255, 255, 0.62),
    0 0 20px rgba(116, 194, 255, 0.3);
}

.custom-cursor-dot.tone-light {
  color: #0f1f2a;
  box-shadow:
    0 0 8px rgba(15, 31, 42, 0.34),
    0 0 14px rgba(43, 108, 244, 0.22);
}

.custom-cursor-ring.is-hover {
  --cursor-scale: 1.08;
  width: 68px;
  height: 68px;
  border-width: 2px;
}

.custom-cursor-dot.is-hover {
  --cursor-scale: 0.72;
  opacity: 0.9;
}

.custom-cursor-ring.is-down {
  --cursor-scale: 1;
  width: 56px;
  height: 56px;
}

.custom-cursor-dot.is-down {
  --cursor-scale: 1.2;
  opacity: 1;
}

@media (pointer: coarse), (hover: none) {
  .custom-cursor {
    display: none !important;
  }
}

/* Sunday-Style Nav Override */
.site-header {
  z-index: 80;
  padding-top: clamp(10px, 1.3vw, 14px);
  pointer-events: none;
}

.site-header .top {
  position: relative;
  pointer-events: auto;
  width: min(92vw, 560px);
  margin: 0 auto;
  min-height: 62px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 40px;
  border: 1px solid rgba(195, 205, 219, 0.76);
  background: rgba(243, 244, 246, 0.94);
  box-shadow: 0 18px 34px -28px rgba(11, 21, 33, 0.56);
}

.site-header .top > :not(.nav-links) {
  transition: opacity 150ms ease;
}

body.menu-open .site-header .top > :not(.nav-links) {
  opacity: 0;
  pointer-events: none;
}

.site-header .top::after {
  content: none;
}

.site-header.is-scrolled .top {
  min-height: 58px;
  padding: 8px 14px;
  border-radius: 40px;
  border: 1px solid rgba(195, 205, 219, 0.76);
  background: rgba(243, 244, 246, 0.96);
  box-shadow: 0 18px 34px -24px rgba(11, 21, 33, 0.58);
  backdrop-filter: none;
}

.site-header .top-spacer {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-header .center-brand {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #1c1f26;
  line-height: 1;
  padding: 2px 6px;
  border-radius: 10px;
}

.site-header .center-brand-mark {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
}

.site-header .center-brand .brand-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.site-header .center-brand .brand-wordmark {
  font: 600 clamp(0.98rem, 0.42vw + 0.88rem, 1.1rem)/1 "Sora", sans-serif;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #1c1f26;
}

.site-header .center-brand .brand-tagline {
  font: 500 clamp(0.66rem, 0.26vw + 0.62rem, 0.76rem)/1.15 "Sora", sans-serif;
  letter-spacing: 0.03em;
  color: #2377ed;
}

.site-header .menu-btn {
  position: relative;
  justify-self: end;
  width: 42px;
  height: 42px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: #202933;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    transform 240ms ease,
    box-shadow 240ms ease;
}

.site-header .menu-btn svg {
  display: none;
}

.site-header .menu-btn::before,
.site-header .menu-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transform: translateX(-50%);
  transition:
    top 240ms ease,
    width 240ms ease,
    transform 240ms ease,
    opacity 220ms ease,
    box-shadow 220ms ease;
}

.site-header .menu-btn::before {
  top: 13px;
  box-shadow: 0 6px 0 currentColor, 0 12px 0 currentColor;
}

.site-header .menu-btn::after {
  top: 19px;
  width: 10px;
  opacity: 1;
}

.site-header .menu-btn[aria-expanded="true"]::before {
  top: 20px;
  width: 18px;
  transform: translateX(-50%) rotate(45deg);
  box-shadow: none;
}

.site-header .menu-btn[aria-expanded="true"]::after {
  top: 20px;
  width: 18px;
  opacity: 1;
  transform: translateX(-50%) rotate(-45deg);
}

.site-header .menu-btn:not([aria-expanded="true"]):hover {
  transform: none;
  border-color: rgba(32, 41, 51, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(230, 238, 247, 0.62));
  box-shadow: 0 14px 20px -18px rgba(16, 33, 63, 0.68);
}

.site-header .menu-btn:not([aria-expanded="true"]):hover::before {
  top: 12px;
  transform: translateX(-50%) scaleX(1.08);
  box-shadow: 0 7px 0 currentColor, 0 14px 0 currentColor;
  animation: menuLineStackMotion 900ms cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
}

.site-header .menu-btn:not([aria-expanded="true"]):hover::after {
  top: 19px;
  width: 14px;
  transform: translateX(-50%) scaleX(1.08);
  opacity: 1;
  animation: menuLineCenterMotion 900ms cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
}

@keyframes menuLineStackMotion {
  0%,
  100% {
    transform: translateX(-50%) scaleX(1.08);
  }
  50% {
    transform: translateX(-50%) scaleX(1.16);
  }
}

@keyframes menuLineCenterMotion {
  0%,
  100% {
    transform: translateX(-50%) scaleX(1.08);
    width: 14px;
  }
  50% {
    transform: translateX(-50%) scaleX(1.16);
    width: 16px;
  }
}

.site-header .nav-links {
  --menu-origin-left: 50vw;
  --menu-origin-top: 10px;
  --menu-origin-width: min(92vw, 560px);
  --menu-origin-height: 62px;
  --menu-origin-radius: 40px;
  position: fixed;
  inset: 0;
  z-index: 84;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 12px;
  background: rgba(10, 19, 31, 0.24);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 0s linear 220ms;
}

.site-header .nav-links.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 220ms ease;
}

.site-header .menu-panel {
  position: absolute;
  left: 50%;
  top: var(--menu-origin-top);
  width: var(--menu-origin-width);
  min-height: var(--menu-origin-height);
  max-height: calc(100dvh - 24px);
  border-radius: var(--menu-origin-radius);
  border: 1px solid rgba(195, 205, 219, 0.76);
  background: rgba(243, 244, 246, 0.96);
  box-shadow: 0 18px 34px -24px rgba(11, 21, 33, 0.58);
  padding: 8px 14px;
  transform: translateX(-50%);
  transition:
    top 340ms cubic-bezier(0.2, 0.7, 0.2, 1),
    width 340ms cubic-bezier(0.2, 0.7, 0.2, 1),
    min-height 340ms cubic-bezier(0.2, 0.7, 0.2, 1),
    border-radius 340ms cubic-bezier(0.2, 0.7, 0.2, 1),
    padding 340ms cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 340ms cubic-bezier(0.2, 0.7, 0.2, 1),
    background-color 340ms cubic-bezier(0.2, 0.7, 0.2, 1);
  overflow: auto;
}

.site-header .nav-links.open .menu-panel {
  left: 50%;
  top: var(--menu-origin-top);
  width: min(92vw, 980px);
  min-height: min(84vh, 640px);
  border-radius: 30px;
  border-color: rgba(195, 205, 219, 0.78);
  /* background: #ececec; */
  background: rgb(234 249 255);
  box-shadow: 0 34px 54px -34px rgba(3, 8, 15, 0.8);
  padding: clamp(14px, 2vw, 20px);
}

.site-header .menu-shell {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: min(76vh, 580px);
  gap: clamp(14px, 2vw, 24px);
  opacity: 0;
  transform: translateY(-8px) scale(0.985);
  pointer-events: none;
  transition: opacity 180ms ease, transform 240ms ease;
}

.site-header .nav-links.open .menu-shell {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  transition-delay: 110ms;
}

.site-header .menu-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
}

.site-header .menu-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
}

.site-header .menu-brand-mark {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.site-header .menu-title {
  text-align: center;
  font: 600 clamp(1.02rem, 0.45vw + 0.92rem, 1.2rem)/1 "Sora", sans-serif;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #1c1f26;
}

.site-header .menu-close {
  position: relative;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #202933;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.7) rotate(-80deg);
  transition:
    background-color 180ms ease,
    box-shadow 220ms ease,
    opacity 220ms ease,
    transform 300ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.site-header .menu-close::before,
.site-header .menu-close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transform-origin: center;
  transition: transform 240ms ease;
}

.site-header .menu-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.site-header .menu-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.site-header .nav-links.open .menu-close {
  opacity: 1;
  transform: scale(1) rotate(0deg);
  transition-delay: 130ms;
}

.site-header .menu-close:hover {
  background: rgba(255, 255, 255, 0.36);
  box-shadow: 0 14px 22px -18px rgba(16, 33, 63, 0.72);
  transform: scale(1.08) rotate(0deg);
}

.site-header .menu-close:hover::before {
  transform: translate(-50%, -50%) rotate(57deg) scaleX(1.22);
}

.site-header .menu-close:hover::after {
  transform: translate(-50%, -50%) rotate(-57deg) scaleX(1.22);
}

.site-header .menu-body {
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr;
  gap: clamp(18px, 2.4vw, 30px);
  align-items: start;
}

.site-header .menu-links-col {
  display: grid;
  gap: 8px;
  align-content: start;
}

.site-header .menu-links-col a:not(.menu-cta-btn) {
  display: block;
  padding: 2px 0;
  text-decoration: none;
  color: #1e252d;
  opacity: 1;
  transition: color 200ms ease;
}

.site-header .menu-links-col a:not(.menu-cta-btn):hover,
.site-header .menu-links-col a:not(.menu-cta-btn).active {
  opacity: 1;
  color: #121a27;
}

.site-header .menu-service-links {
  display: grid;
  gap: 3px;
  margin: 2px 0 6px 10px;
  padding-left: 10px;
  border-left: 1px solid rgba(32, 41, 51, 0.16);
}

.site-header .menu-links-col a.menu-sub-link {
  padding: 2px 0;
  color: #5a6472;
  font: 600 0.83rem/1.35 "Manrope", sans-serif;
  letter-spacing: 0.01em;
  transition: color 200ms ease, transform 200ms ease;
}

.site-header .menu-links-col a.menu-sub-link:hover,
.site-header .menu-links-col a.menu-sub-link:focus-visible {
  color: #1d4ed8;
  transform: translateX(8px);
}

.site-header .menu-links-col .menu-cta-btn {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: min(100%, 220px);
  padding: 0.74rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(29, 78, 216, 0.45);
  background: linear-gradient(100deg, #1d4ed8 0%, #2563eb 48%, #38bdf8 100%);
  background-size: 150% 100%;
  background-position: 0% 50%;
  color: #ffffff;
  text-decoration: none;
  font: 700 0.88rem/1 "Space Grotesk", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  box-shadow: 0 16px 24px -16px rgba(23, 66, 168, 0.7);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background-position 260ms ease;
}

.site-header .menu-links-col .menu-cta-btn::after {
  content: "";
  position: absolute;
  inset: -36% -120%;
  border-radius: inherit;
  background: linear-gradient(
    108deg,
    rgba(255, 255, 255, 0) 34%,
    rgba(255, 255, 255, 0.62) 50%,
    rgba(255, 255, 255, 0) 66%
  );
  opacity: 0;
  transform: translateX(-46%) rotate(14deg);
  transition: transform 620ms cubic-bezier(0.23, 1, 0.32, 1), opacity 220ms ease;
  pointer-events: none;
}

.site-header .menu-links-col .menu-cta-btn,
.site-header .menu-links-col .menu-cta-btn:visited,
.site-header .menu-links-col .menu-cta-btn:active {
  color: #ffffff;
  text-decoration: none;
}

.site-header .menu-links-col .menu-cta-btn span:last-child {
  font-size: 1rem;
  line-height: 1;
  transition: transform 220ms ease;
}

.site-header .menu-links-col .menu-cta-btn:hover,
.site-header .menu-links-col .menu-cta-btn:focus-visible {
  color: #ffffff;
  background-image: linear-gradient(100deg, #1d4ed8 0%, #2563eb 48%, #38bdf8 100%);
  background-size: 150% 100%;
  background-position: 100% 50%;
  transform: translateY(-1px);
  box-shadow: 0 20px 28px -16px rgba(17, 56, 150, 0.8);
}

.site-header .menu-links-col .menu-cta-btn:hover::after,
.site-header .menu-links-col .menu-cta-btn:focus-visible::after {
  opacity: 1;
  transform: translateX(54%) rotate(14deg);
}

.site-header .menu-links-col .menu-cta-btn:hover span:last-child,
.site-header .menu-links-col .menu-cta-btn:focus-visible span:last-child {
  transform: translateX(3px);
}

.site-header .menu-links-col .menu-cta-btn:focus-visible {
  outline: 2px solid rgba(29, 78, 216, 0.48);
  outline-offset: 2px;
}

.site-header .menu-link-title {
  display: inline-block;
  position: relative;
  font: 600 clamp(2rem, 1.3vw + 1.6rem, 2.45rem)/1.07 "Space Grotesk", sans-serif;
  letter-spacing: -0.01em;
  color: inherit;
  padding: 0.02em 0.14em 0.04em;
  z-index: 0;
  transition:
    font-weight 200ms ease,
    letter-spacing 200ms ease,
    color 200ms ease;
}

.site-header .menu-link-title::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 0;
  background: #2563eb;
  opacity: 1;
  clip-path: inset(0 100% 0 0);
  z-index: -1;
  transition: clip-path 280ms cubic-bezier(0.22, 0.61, 0.36, 1);
  pointer-events: none;
}

.site-header .menu-links-col a:hover .menu-link-title,
.site-header .menu-links-col a:focus-visible .menu-link-title,
.site-header .menu-links-col a.active .menu-link-title {
  font-weight: 800;
  letter-spacing: -0.026em;
  color: #ffffff;
}

.site-header .menu-links-col a:hover .menu-link-title::after,
.site-header .menu-links-col a:focus-visible .menu-link-title::after,
.site-header .menu-links-col a.active .menu-link-title::after {
  clip-path: inset(0 0 0 0);
}

.site-header .menu-link-meta {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .site-header .menu-links-col a,
  .site-header .menu-link-title {
    transition: none !important;
  }

  .site-header .menu-links-col .menu-cta-btn::after {
    opacity: 0 !important;
    transform: none !important;
    transition: none !important;
  }

  .site-header .menu-foot-line::after {
    animation: none !important;
  }
}

.site-header .menu-story-card {
  position: relative;
  display: grid;
  gap: 9px;
  text-decoration: none;
  color: #202933;
}

.site-header .menu-story-card img {
  width: 100%;
  height: clamp(250px, 32vw, 430px);
  object-fit: cover;
  border-radius: 10px;
}

.site-header .menu-story-chip {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  padding: 9px 16px;
  font: 600 1rem/1 "Space Grotesk", sans-serif;
  color: #fff;
  background: rgba(28, 39, 57, 0.5);
  backdrop-filter: blur(8px);
}

.site-header .menu-story-meta {
  color: #5b6470;
  font: 600 0.9rem/1.2 "Manrope", sans-serif;
}

.site-header .menu-foot {
  border-top: 0;
  padding-top: 0;
  display: block;
}

.site-header .menu-foot-line {
  position: relative;
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(158, 169, 183, 0.3), rgba(128, 163, 206, 0.46), rgba(158, 169, 183, 0.3));
  overflow: hidden;
}

.site-header .menu-foot-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(37, 99, 235, 0.72) 46%, rgba(56, 189, 248, 0.82) 56%, transparent 100%);
  transform: translateX(-115%);
  animation: menuFootSweep 2.9s ease-in-out infinite;
}

@keyframes menuFootSweep {
  0%,
  20%,
  100% {
    transform: translateX(-115%);
  }
  52%,
  58% {
    transform: translateX(110%);
  }
}

.site-header .nav-links .button {
  display: none !important;
}

@media (max-width: 980px) {
  .site-header .menu-body {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .site-header .menu-link-title {
    font-size: clamp(1.55rem, 2vw + 1.1rem, 2rem);
  }

  .site-header .menu-story-card img {
    height: clamp(200px, 34vw, 280px);
  }

  .site-header .menu-foot {
    gap: 8px;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding-top: 9px;
  }

  .site-header .top {
    width: min(95vw, 430px);
    min-height: 56px;
    padding: 7px 11px;
    border-radius: 12px;
  }

  .site-header.is-scrolled .top {
    min-height: 56px;
    padding: 7px 11px;
    border-radius: 12px;
  }

  .site-header .top-spacer {
    width: 38px;
    height: 38px;
  }

  .site-header .center-brand {
    gap: 6px;
    padding: 0 4px;
  }

  .site-header .center-brand-mark {
    width: 30px;
    height: 30px;
  }

  .site-header .center-brand .brand-wordmark {
    font-size: clamp(0.72rem, 0.38vw + 0.66rem, 0.8rem);
    letter-spacing: 0.03em;
  }

  .site-header .center-brand .brand-tagline {
    font-size: clamp(0.56rem, 0.24vw + 0.52rem, 0.64rem);
    letter-spacing: 0.03em;
  }

  .site-header .menu-btn {
    width: 38px;
    height: 38px;
  }

  .site-header .menu-btn::before,
  .site-header .menu-btn::after {
    width: 16px;
  }

  .site-header .nav-links {
    padding: 8px;
    align-items: stretch;
  }

  .site-header .menu-panel {
    max-height: calc(100dvh - 16px);
  }

  .site-header .nav-links.open .menu-panel {
    width: calc(100vw - 16px);
    min-height: calc(100dvh - 16px);
    border-radius: 12px;
    padding: 12px 12px 14px;
  }

  .site-header .menu-shell {
    min-height: calc(100dvh - 44px);
    gap: 12px;
  }

  .site-header .menu-title {
    font-size: 0.95rem;
    letter-spacing: 0.04em;
  }

  .site-header .menu-close {
    width: 36px;
    height: 36px;
    font-size: 0;
  }

  .site-header .menu-link-title {
    font-size: 1.42rem;
  }

  .site-header .menu-links-col .menu-cta-btn {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
    font-size: 0.84rem;
    letter-spacing: 0.07em;
  }

  .site-header .menu-story-chip {
    font-size: 0.9rem;
    padding: 8px 13px;
  }

}

/* Global Surface Refresh */
:root {
  --surface-0: #f5f9ff;
  --surface-1: #ebf3fc;
  --surface-2: #dfeaf8;
  --surface-3: #d4e4f7;
  --surface-mint: #dcedef;
  --section-divider-top: rgba(14, 40, 78, 0.13);
  --section-divider-bottom: rgba(14, 40, 78, 0.08);
  --ambient-blue: rgba(77, 152, 245, 0.24);
  --ambient-cyan: rgba(58, 190, 201, 0.2);
}

body {
  background:
    radial-gradient(circle at 12% 10%, rgba(43, 108, 244, 0.16), transparent 32%),
    radial-gradient(circle at 90% 6%, rgba(21, 183, 197, 0.14), transparent 34%),
    linear-gradient(180deg, #f8fbff 0%, #eef4fc 44%, #e8f0fb 100%);
}

.section,
.service-block {
  position: relative;
  border-top: 1px solid var(--section-divider-top);
  border-bottom: 1px solid var(--section-divider-bottom);
  background: linear-gradient(180deg, rgba(247, 251, 255, 0.95), rgba(240, 247, 255, 0.9));
}

.section > .container,
.service-block > .container {
  position: relative;
  z-index: 1;
}

.section.band-a,
.service-block.band-a {
  background:
    radial-gradient(140% 120% at 100% -10%, rgba(120, 176, 245, 0.16), transparent 62%),
    linear-gradient(180deg, rgba(248, 252, 255, 0.97), var(--surface-1));
}

.section.band-b,
.service-block.band-b {
  background:
    radial-gradient(120% 110% at 0% 8%, rgba(102, 163, 240, 0.2), transparent 60%),
    linear-gradient(180deg, rgba(236, 245, 255, 0.96), var(--surface-2));
}

.section.band-c,
.service-block.band-c {
  background:
    radial-gradient(130% 100% at 100% 0%, rgba(74, 177, 196, 0.2), transparent 62%),
    linear-gradient(180deg, rgba(232, 242, 252, 0.95), var(--surface-mint));
}

.section[class*="band-"]::before,
.service-block[class*="band-"]::before {
  background: radial-gradient(circle, var(--ambient-blue), rgba(102, 176, 255, 0.04) 58%, transparent 74%);
}

.section[class*="band-"]::after,
.service-block[class*="band-"]::after {
  background: radial-gradient(circle, var(--ambient-cyan), rgba(49, 194, 206, 0.04) 60%, transparent 78%);
}

.panel,
.card,
.stat-card,
.service-carousel-copy,
.service-carousel-media {
  border-color: rgba(16, 46, 94, 0.19);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 251, 255, 0.92));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.92) inset,
    0 16px 30px -28px rgba(16, 33, 63, 0.42);
}

.card:hover,
.service-carousel-arrow:hover:not(:disabled) {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.94) inset,
    0 22px 32px -24px rgba(16, 33, 63, 0.5);
}

.services-carousel {
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(76, 159, 246, 0.14), transparent 62%),
    linear-gradient(180deg, rgba(241, 248, 255, 0.95), rgba(232, 242, 252, 0.9));
  border-top: 1px solid var(--section-divider-top);
  border-bottom: 1px solid var(--section-divider-bottom);
}

@media (max-width: 760px) {
  .section,
  .service-block,
  .services-carousel {
    border-top-color: rgba(14, 40, 78, 0.11);
    border-bottom-color: rgba(14, 40, 78, 0.07);
  }
}

/* Tablet hero offset for fixed floating navbar */
@media (min-width: 761px) and (max-width: 1024px) {
  .page-hero,
  body:not(.home-page) .page-hero {
    padding-top: 6.5rem;
  }
}

