:root {
  --navy-950: #020b1c;
  --navy-925: #031126;
  --navy-900: #03142c;
  --navy-850: #061a36;
  --navy-800: #09213f;
  --cyan: #41c8f4;
  --turquoise: #43ddd3;
  --mint: #56efad;
  --teal: #2296a7;
  --white: #ffffff;
  --cloud: #f4f8fb;
  --silver: #d9e3ea;
  --muted: #8fa5b5;
  --graphite: #16232d;
  --ink: #07131e;
  --line-dark: rgba(255, 255, 255, 0.11);
  --line-light: rgba(7, 19, 30, 0.12);
  --gradient-brand: linear-gradient(120deg, #41c8f4 0%, #43ddd3 50%, #56efad 100%);
  --gradient-dark: linear-gradient(180deg, #020b1c 0%, #061a36 100%);
  --shadow-sm: 0 12px 34px rgba(2, 11, 28, 0.14);
  --shadow-md: 0 24px 70px rgba(2, 11, 28, 0.22);
  --shadow-lg: 0 42px 120px rgba(2, 11, 28, 0.34);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --radius-xl: 48px;
  --container: 1200px;
  --header-height: 74px;
  --font-display: "Manrope", "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; color-scheme: dark; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--white);
  background: var(--navy-950);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.is-loaded { opacity: 1; }
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
[hidden] { display: none !important; }
::selection { color: var(--navy-950); background: var(--mint); }

h1, h2, h3, h4, p, ul, ol { margin-top: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 760;
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.75rem, 7vw, 6.8rem); }
h2 { font-size: clamp(2rem, 4.6vw, 4.6rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); }
p { text-wrap: pretty; }
small { font-size: 0.82rem; }

:focus-visible {
  outline: 3px solid rgba(65, 200, 244, 0.78);
  outline-offset: 4px;
}
.skip-link {
  position: fixed;
  z-index: 10020;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--navy-950);
  background: var(--mint);
  font-weight: 800;
  transition: transform 0.2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(var(--container), calc(100% - 32px)); margin-inline: auto; }
.container--narrow { width: min(850px, calc(100% - 32px)); margin-inline: auto; }
.section { position: relative; padding-block: clamp(76px, 10vw, 148px); }
.section--compact { padding-block: clamp(52px, 7vw, 92px); }
.section--light { color: var(--ink); background: var(--cloud); }
.section--white { color: var(--ink); background: var(--white); }
.section--deep { background: var(--navy-925); }
.section--gradient { background: linear-gradient(145deg, var(--navy-900), var(--navy-850)); }
.section--cut { clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%); padding-block: clamp(110px, 12vw, 170px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 26px;
  height: 2px;
  content: "";
  background: var(--gradient-brand);
  box-shadow: 0 0 18px rgba(67, 221, 211, 0.42);
}
.section--light .eyebrow,
.section--white .eyebrow { color: #127b82; }
.lead {
  max-width: 760px;
  color: var(--silver);
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  line-height: 1.72;
}
.section--light .lead,
.section--white .lead { color: #465d6d; }
.section-heading { max-width: 860px; margin-bottom: clamp(34px, 5vw, 64px); }
.section-heading h2 { margin-bottom: 20px; }
.section-heading p { max-width: 720px; color: var(--muted); font-size: 1.08rem; }
.section--light .section-heading p,
.section--white .section-heading p { color: #566b79; }
.muted { color: var(--muted); }
.text-gradient {
  color: transparent;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
}

.grid { display: grid; gap: 18px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.stack { display: grid; gap: 18px; }
.cluster { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.82rem;
}
.breadcrumbs li + li::before { margin-right: 8px; content: "/"; opacity: 0.55; }
.breadcrumbs a:hover { color: var(--white); }
.section--light .breadcrumbs a:hover { color: var(--ink); }

.page-transition {
  position: fixed;
  z-index: 10050;
  inset: 0;
  pointer-events: none;
  opacity: 1;
  background: var(--navy-950);
  transform: translateY(0);
  transition: opacity 0.34s ease, transform 0.34s ease;
}
.page-transition::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110px;
  height: 3px;
  content: "";
  background: var(--gradient-brand);
  transform: translate(-50%, -50%) rotate(-43deg) scaleX(1);
  transform-origin: center;
}
.page-transition.is-ready { opacity: 0; transform: translateY(-6%); }
.page-transition.is-leaving { opacity: 1; transform: translateY(0); }
.scroll-progress {
  position: fixed;
  z-index: 10010;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transform-origin: left;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.72s ease var(--reveal-delay, 0ms), transform 0.72s cubic-bezier(.2,.7,.2,1) var(--reveal-delay, 0ms);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

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

@media print {
  .site-header, .promo-bar, .floating-actions, .footer-cta, .site-footer, .ctg-consent-banner, .ctg-consent-modal { display: none; }
  body { color: #000; background: #fff; }
  .section { padding-block: 32px; }
}
