:root {
  color-scheme: dark;
  --ink: #07111f;
  --ink-2: #0b1828;
  --steel: #162332;
  --steel-2: #233244;
  --platinum: #f2f6fb;
  --muted: #a9b6c6;
  --muted-dark: #526173;
  --ice: #4fb7ff;
  --ice-2: #97d8ff;
  --gold: #d7b86a;
  --gold-2: #fff0b8;
  --paper: #f6f8fb;
  --paper-2: #e9eef5;
  --danger: #ef4444;
  --radius: 8px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --content: 1180px;
  --header-height: 76px;
  --body-size: 1rem;
  --h1-size: 3rem;
  --h2-size: 2.1rem;
  --h3-size: 1.25rem;
}

@media (min-width: 760px) {
  :root {
    --h1-size: 4.8rem;
    --h2-size: 3.2rem;
    --h3-size: 1.45rem;
  }
}

@media (min-width: 1180px) {
  :root {
    --h1-size: 6.2rem;
    --h2-size: 4rem;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(135deg, #050a12 0%, #07111f 46%, #10151c 100%);
  background-size: 54px 54px, 54px 54px, auto;
  color: var(--platinum);
  font-family: "Manrope", sans-serif;
  font-size: var(--body-size);
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

.icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button,
a,
summary,
select {
  touch-action: manipulation;
}

::selection {
  background: rgba(79, 183, 255, 0.35);
  color: #fff;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  background: var(--gold);
  color: #06111f;
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

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

:focus-visible {
  outline: 3px solid var(--ice-2);
  outline-offset: 3px;
}

.content-shell {
  width: min(100% - 32px, var(--content));
  margin-inline: auto;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 10, 18, 0.74);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 10, 18, 0.92);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
}

.nav-shell {
  width: min(100% - 28px, 1240px);
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 48px;
}

.brand-shield {
  width: 46px;
  height: 50px;
  display: inline-grid;
  place-items: center;
  clip-path: polygon(50% 0, 92% 16%, 80% 82%, 50% 100%, 20% 82%, 8% 16%);
  background: linear-gradient(145deg, #f8fbff 0%, #738293 42%, #f2f6fb 100%);
  color: #06111f;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5), 0 0 28px rgba(79, 183, 255, 0.22);
}

.brand-copy {
  display: grid;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.72rem;
}

.brand-copy strong {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.15rem;
  color: #fff;
}

.site-menu {
  display: none;
  align-items: center;
  gap: 1.35rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-menu a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: color 160ms ease;
}

.site-menu a:hover {
  color: #fff;
}

.nav-actions {
  display: none;
  align-items: center;
  gap: 0.65rem;
}

.nav-toggle {
  min-width: 48px;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  cursor: pointer;
}

.nav-toggle svg {
  width: 20px;
  height: 20px;
}

.icon-link,
.button {
  min-height: 48px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.icon-link {
  padding: 0 0.8rem;
  color: #fff;
}

.icon-link svg,
.button svg,
.trust-item svg,
.service-card svg,
.pathway svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.button {
  border: 1px solid transparent;
  padding: 0 1rem;
  cursor: pointer;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--ice) 0%, #1172b6 100%);
  color: #03111d;
  box-shadow: 0 18px 45px rgba(18, 125, 199, 0.32);
}

.button-primary:hover {
  background: linear-gradient(135deg, var(--ice-2) 0%, #1c88d2 100%);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.button-dark {
  background: #07111f;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
}

.button-large {
  min-height: 56px;
  padding: 0 1.25rem;
}

.button-full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 88dvh;
  display: grid;
  align-items: end;
  padding: calc(var(--header-height) + 5rem) 0 4.5rem;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  z-index: -3;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 10, 18, 0.94) 0%, rgba(5, 10, 18, 0.76) 44%, rgba(5, 10, 18, 0.22) 100%),
    linear-gradient(0deg, rgba(5, 10, 18, 0.96) 0%, rgba(5, 10, 18, 0.2) 44%, rgba(5, 10, 18, 0.74) 100%);
}

.hero-gridline {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(79, 183, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 78%);
}

.hero-inner {
  width: min(100% - 32px, var(--content));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--ice-2);
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #0b66a3;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  line-height: 0.96;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: var(--h1-size);
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 0 34px rgba(79, 183, 255, 0.22);
}

h2 {
  max-width: 760px;
  font-size: var(--h2-size);
  color: inherit;
}

h3 {
  font-size: var(--h3-size);
}

.hero-lede,
.section-intro {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-lede {
  margin: 1.15rem 0 0;
  color: #d9e4f2;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  max-width: 760px;
  margin: 2.25rem 0 0;
}

.hero-metrics div {
  min-height: 116px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(5, 10, 18, 0.58);
  backdrop-filter: blur(12px);
}

.hero-metrics dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-metrics .metric-value {
  margin: 0.1rem 0 0;
  color: var(--gold-2);
  font-family: "Rajdhani", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.hero-metrics .metric-note {
  display: block;
  margin-left: 0;
  margin-top: 0.4rem;
  color: #d9e4f2;
  font-size: 0.92rem;
}

.trust-band {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #07111f;
}

.trust-list {
  display: grid;
  grid-template-columns: 1fr;
}

.trust-item {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: #f8fbff;
  font-weight: 800;
}

.trust-item:last-child {
  border-bottom: 0;
}

.trust-item svg {
  color: var(--gold);
}

.section {
  padding: 5rem 0;
}

.section-light {
  background: var(--paper);
  color: #091421;
}

.section-dark {
  background:
    linear-gradient(90deg, rgba(79, 183, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    #07111f;
  background-size: 68px 68px;
  color: #fff;
}

.section-heading,
.split-heading {
  display: grid;
  gap: 1rem;
}

.section-light .section-intro {
  color: var(--muted-dark);
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.service-card {
  position: relative;
  min-height: 266px;
  padding: 1.25rem;
  border: 1px solid rgba(7, 17, 31, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(233, 238, 245, 0.9)),
    var(--paper);
  box-shadow: 0 18px 46px rgba(7, 17, 31, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(17, 114, 182, 0.35);
  box-shadow: 0 22px 60px rgba(7, 17, 31, 0.14);
}

.service-card .service-number {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  color: rgba(7, 17, 31, 0.28);
  font-family: "Rajdhani", sans-serif;
  font-size: 2.35rem;
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.service-card svg {
  width: 42px;
  height: 42px;
  margin-bottom: 1.75rem;
  color: #0b66a3;
}

.service-card h3 {
  max-width: 220px;
  color: #07111f;
}

.service-card p {
  margin: 0.8rem 0 0;
  color: var(--muted-dark);
}

.system-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.system-panel {
  position: relative;
  min-height: 340px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #050a12;
  box-shadow: var(--shadow);
}

.system-panel img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
  transition: transform 500ms ease;
}

.system-panel:hover img {
  transform: scale(1.045);
}

.system-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 34%, rgba(5, 10, 18, 0.92) 100%);
}

.system-panel figcaption {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: 1.2rem;
}

.system-panel strong {
  display: block;
  color: #fff;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.6rem;
}

.system-panel span {
  display: block;
  max-width: 330px;
  color: #d9e4f2;
}

.standards-layout,
.area-layout,
.quote-layout,
.faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.pathway-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.pathway {
  min-height: 216px;
  padding: 1.2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(7, 17, 31, 0.1);
  background: #fff;
  box-shadow: 0 16px 44px rgba(7, 17, 31, 0.08);
}

.pathway svg {
  width: 38px;
  height: 38px;
  color: #0b66a3;
  margin-bottom: 1rem;
}

.pathway h3,
.pathway p {
  margin: 0;
}

.pathway p {
  margin-top: 0.65rem;
  color: var(--muted-dark);
}

.service-ticket {
  position: sticky;
  top: calc(var(--header-height) + 1rem);
  padding: 1.4rem;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 240, 184, 0.94), rgba(215, 184, 106, 0.96));
  color: #07111f;
  box-shadow: 0 24px 60px rgba(111, 82, 9, 0.22);
}

.service-ticket span {
  display: block;
  font-weight: 900;
  text-transform: uppercase;
}

.service-ticket strong {
  display: block;
  margin: 0.3rem 0 0.1rem;
  font-family: "Rajdhani", sans-serif;
  font-size: 5.6rem;
  line-height: 0.9;
  font-variant-numeric: tabular-nums;
}

.service-ticket p {
  margin: 0 0 1.2rem;
  color: #263241;
  font-weight: 700;
}

.map-section {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(135deg, #06111f 0%, #10151c 100%);
  background-size: 72px 72px, 72px 72px, auto;
  color: #fff;
}

.area-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.radius-board {
  min-height: 390px;
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
    #081524;
  box-shadow: var(--shadow);
}

.radius-ring {
  width: min(100%, 280px);
  aspect-ratio: 1;
  margin: 0 auto 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(79, 183, 255, 0.35);
  border-radius: 50%;
  background:
    linear-gradient(90deg, rgba(79, 183, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    rgba(5, 10, 18, 0.72);
  background-size: 34px 34px;
  box-shadow: inset 0 0 50px rgba(79, 183, 255, 0.16), 0 0 50px rgba(79, 183, 255, 0.1);
}

.radius-ring span {
  display: block;
  color: var(--gold-2);
  font-family: "Rajdhani", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 0.9;
  font-variant-numeric: tabular-nums;
}

.radius-ring small {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
}

.radius-board ul {
  list-style: none;
  display: grid;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
}

.radius-board li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: #d9e4f2;
}

.radius-board svg {
  width: 20px;
  height: 20px;
  margin-top: 0.15rem;
  color: var(--gold);
  flex: 0 0 auto;
}

.quote-form {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(7, 17, 31, 0.1);
  background: #fff;
  box-shadow: 0 18px 56px rgba(7, 17, 31, 0.12);
}

.field-group {
  display: grid;
  gap: 0.45rem;
}

.field-group label {
  color: #07111f;
  font-weight: 800;
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(7, 17, 31, 0.16);
  border-radius: var(--radius);
  background: #f8fafc;
  color: #07111f;
  padding: 0.8rem 0.9rem;
}

.field-group textarea {
  resize: vertical;
}

.brand-label {
  margin: 1.5rem 0 0;
  color: #07111f;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.75rem;
}

.brand-strip span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(7, 17, 31, 0.12);
  border-radius: var(--radius);
  background: #fff;
  padding: 0 0.85rem;
  color: #07111f;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
}

.faq-section {
  background: #07111f;
  color: #fff;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

details {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 1rem;
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

details p {
  margin: 0;
  padding: 0 1rem 1rem;
  color: var(--muted);
}

.site-footer {
  background: #050a12;
  color: #d9e4f2;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 0;
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-layout p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

address {
  display: grid;
  gap: 0.35rem;
  font-style: normal;
}

address strong {
  color: #fff;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.4rem;
}

address a {
  color: var(--ice-2);
  font-weight: 800;
}

.footer-bottom {
  width: min(100% - 32px, var(--content));
  min-height: 64px;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
}

.footer-bottom a {
  color: #fff;
  font-weight: 900;
}

.reveal {
  opacity: 1;
  transform: none;
}

.enhance .reveal {
  opacity: 1;
  transform: none;
  transition: opacity 520ms ease, transform 520ms ease;
}

@media (max-width: 759px) {
  .site-menu {
    position: fixed;
    top: var(--header-height);
    left: 14px;
    right: 14px;
    display: none;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(5, 10, 18, 0.96);
    box-shadow: var(--shadow);
  }

  body.nav-open .site-menu {
    display: grid;
  }

  body.nav-open .site-menu a {
    min-height: 52px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  body.nav-open .site-menu a:last-child {
    border-bottom: 0;
  }

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

@media (min-width: 560px) {
  .hero-metrics {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (min-width: 760px) {
  .nav-toggle {
    display: none;
  }

  .site-menu,
  .nav-actions {
    display: flex;
  }

  .trust-list {
    grid-template-columns: repeat(5, 1fr);
  }

  .trust-item {
    justify-content: center;
    min-height: 92px;
    padding: 0 1rem;
    border-bottom: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
    text-align: center;
  }

  .trust-item:last-child {
    border-right: 0;
  }

  .split-heading {
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.8fr);
    align-items: end;
  }

  .standards-layout,
  .area-layout,
  .quote-layout,
  .faq-layout {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    gap: 3rem;
  }

  .footer-layout {
    grid-template-columns: 1fr auto;
  }
}

@media (min-width: 980px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .system-panel:nth-child(3) {
    grid-column: span 2;
  }
}

@media (min-width: 1180px) {
  .hero {
    padding-bottom: 5.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
