:root {
  --navy-950: #07192d;
  --navy-900: #0c2340;
  --navy-800: #133656;
  --slate-700: #46637d;
  --slate-600: #5d748a;
  --slate-300: #cbd8e3;
  --slate-200: #dce5ec;
  --slate-100: #eef4f7;
  --white: #ffffff;
  --cyan: #3abeff;
  --cyan-dark: #0788c6;
  --green: #38d6a3;
  --green-dark: #087b5b;
  --ink: #142638;
  --muted: #5b6f82;
  --shadow-sm: 0 10px 30px rgba(7, 25, 45, .08);
  --shadow-lg: 0 30px 80px rgba(7, 25, 45, .18);
  --radius-sm: .8rem;
  --radius: 1.35rem;
  --radius-lg: 2rem;
  --max-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
::selection { background: rgba(58, 190, 255, .28); }

.skip-link {
  position: fixed;
  top: .75rem;
  left: .75rem;
  z-index: 999;
  padding: .75rem 1rem;
  color: var(--white);
  background: var(--navy-900);
  border-radius: .5rem;
  transform: translateY(-180%);
}
.skip-link:focus { transform: none; }

.container {
  width: min(calc(100% - 2.5rem), var(--max-width));
  margin-inline: auto;
}
.narrow { width: min(calc(100% - 2.5rem), 820px); margin-inline: auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 .8rem;
  color: var(--cyan-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 1.7rem;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--green));
}

h1, h2, h3, h4 {
  margin: 0 0 .8rem;
  color: var(--navy-900);
  line-height: 1.12;
  letter-spacing: -.025em;
}
h1 { font-size: clamp(2.6rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.35rem); }
h3 { font-size: clamp(1.22rem, 2vw, 1.55rem); }
p { margin: 0 0 1.1rem; }
.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-tight { padding: 3rem 0; }
.section-muted { background: var(--slate-100); }
.section-dark {
  color: rgba(255,255,255,.82);
  background: var(--navy-950);
}
.section-dark h2, .section-dark h3 { color: var(--white); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  min-height: 3.1rem;
  padding: .78rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid rgba(58,190,255,.35); outline-offset: 3px; }
.btn-primary {
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--cyan), var(--green));
  box-shadow: 0 15px 35px rgba(58,190,255,.22);
}
.btn-primary:hover { box-shadow: 0 19px 42px rgba(58,190,255,.3); }
.btn-secondary {
  color: var(--white);
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.08);
}
.btn-light {
  color: var(--navy-900);
  border-color: var(--slate-200);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--cyan-dark);
  font-weight: 800;
  text-decoration: none;
}
.text-link:hover { text-decoration: underline; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(12,35,64,.08);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand { width: 275px; flex: 0 0 auto; }
.brand img { width: 100%; height: auto; }
.site-nav { display: flex; align-items: center; gap: .2rem; }
.site-nav a {
  padding: .6rem .8rem;
  border-radius: 999px;
  color: var(--navy-800);
  font-size: .94rem;
  font-weight: 750;
  text-decoration: none;
}
.site-nav a:hover, .site-nav a[aria-current="page"] {
  color: var(--navy-950);
  background: var(--slate-100);
}
.site-nav .nav-cta {
  margin-left: .45rem;
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--cyan), var(--green));
}
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: var(--navy-900);
  background: var(--slate-100);
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: .2s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 700px;
  display: grid;
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 74% 25%, rgba(58,190,255,.2), transparent 28rem),
    radial-gradient(circle at 82% 70%, rgba(56,214,163,.16), transparent 26rem),
    linear-gradient(135deg, #07192d 0%, #0c2f52 60%, #0b3e5f 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .23;
  background-image:
    linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, transparent 5%, #000 55%, #000);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: clamp(3rem, 7vw, 6rem);
  align-items: center;
  padding: 5.5rem 0 6rem;
}
.hero h1 { max-width: 780px; color: var(--white); }
.hero .lead { color: rgba(255,255,255,.76); max-width: 700px; }
.hero .eyebrow { color: var(--cyan); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.8rem; }
.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem 1.4rem;
  margin-top: 2rem;
  color: rgba(255,255,255,.68);
  font-size: .9rem;
  font-weight: 650;
}
.hero-note span { display: inline-flex; align-items: center; gap: .45rem; }
.hero-note span::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
}
.hero-visual {
  position: relative;
  min-height: 460px;
}
.orbit {
  position: absolute;
  inset: 8% 3% 5% 3%;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
}
.orbit::before, .orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
}
.orbit::before { inset: 13%; }
.orbit::after { inset: 29%; }
.core-card {
  position: absolute;
  inset: 24% 14% 20%;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 2rem;
  background: linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.05));
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}
.core-card img { width: 110px; filter: drop-shadow(0 12px 20px rgba(0,0,0,.25)); }
.core-card strong {
  display: block;
  margin-top: 1rem;
  color: var(--white);
  text-align: center;
  font-size: 1.35rem;
}
.core-card small { color: rgba(255,255,255,.68); text-align: center; }
.float-card {
  position: absolute;
  z-index: 3;
  width: 180px;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 1.15rem;
  background: rgba(7,25,45,.76);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
}
.float-card strong { display: block; color: var(--white); font-size: .96rem; }
.float-card span { color: rgba(255,255,255,.6); font-size: .78rem; }
.float-card.one { top: 6%; left: 0; }
.float-card.two { top: 25%; right: 0; }
.float-card.three { bottom: 6%; left: 2%; }
.float-card .dot {
  width: .72rem;
  height: .72rem;
  margin-bottom: .7rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  box-shadow: 0 0 0 7px rgba(58,190,255,.1);
}

.trust-strip {
  position: relative;
  z-index: 4;
  margin-top: -1.8rem;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}
.trust-item {
  min-height: 110px;
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: 1.3rem;
  border-right: 1px solid var(--slate-200);
}
.trust-item:last-child { border-right: 0; }
.trust-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: .9rem;
  color: var(--navy-900);
  background: linear-gradient(135deg, rgba(58,190,255,.22), rgba(56,214,163,.2));
  font-weight: 900;
}
.trust-item strong { display: block; color: var(--navy-900); line-height: 1.25; }
.trust-item span { display: block; margin-top: .25rem; color: var(--muted); font-size: .8rem; }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.6rem;
}
.section-head > div:first-child { max-width: 760px; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-card {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  padding: 2rem;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 22px 55px rgba(7,25,45,.13); }
.service-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 165px;
  height: 165px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58,190,255,.17), transparent 67%);
}
.service-number {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 3.2rem;
  border-radius: .9rem;
  color: var(--navy-900);
  background: linear-gradient(135deg, rgba(58,190,255,.2), rgba(56,214,163,.2));
  font-weight: 900;
}
.service-card p { color: var(--muted); }
.mini-list {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}
.mini-list li {
  position: relative;
  margin: .55rem 0;
  padding-left: 1.25rem;
  color: var(--navy-800);
  font-size: .92rem;
  font-weight: 650;
}
.mini-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: .42rem;
  height: .42rem;
  border-radius: 50%;
  background: var(--green);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: center;
}
.panel {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 80% 18%, rgba(58,190,255,.26), transparent 13rem),
    linear-gradient(145deg, var(--navy-950), var(--navy-800));
  box-shadow: var(--shadow-lg);
}
.panel h2, .panel h3 { color: var(--white); }
.panel p { color: rgba(255,255,255,.72); }
.panel-lines {
  position: absolute;
  inset: 0;
  opacity: .25;
  background-image:
    linear-gradient(30deg, transparent 49.5%, rgba(255,255,255,.1) 50%, transparent 50.5%);
  background-size: 42px 42px;
}
.panel-content { position: relative; z-index: 1; }
.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.metric {
  padding: 1.2rem;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 1rem;
  background: rgba(255,255,255,.07);
}
.metric strong { display: block; color: var(--cyan); font-size: 1.4rem; }
.metric span { color: rgba(255,255,255,.66); font-size: .82rem; }

.feature-list { display: grid; gap: 1rem; }
.feature {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--slate-200);
}
.feature:last-child { border-bottom: 0; }
.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 1rem;
  color: var(--navy-900);
  background: linear-gradient(135deg, rgba(58,190,255,.2), rgba(56,214,163,.18));
  font-weight: 900;
}
.feature p { margin-bottom: 0; color: var(--muted); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: process;
}
.process-step {
  position: relative;
  padding: 1.6rem;
  border-top: 2px solid var(--slate-200);
  counter-increment: process;
}
.process-step::before {
  content: "0" counter(process);
  display: block;
  margin-bottom: 1.2rem;
  color: var(--cyan-dark);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .12em;
}
.process-step p { color: var(--muted); font-size: .94rem; }

.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem 1.5rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}
.check-grid li {
  position: relative;
  padding: 1rem 1rem 1rem 3rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 1rem;
  color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.05);
}
.check-grid li::before {
  content: "✓";
  position: absolute;
  left: 1rem;
  color: var(--green);
  font-weight: 900;
}

.cta {
  position: relative;
  overflow: hidden;
  padding: clamp(2.6rem, 6vw, 4.3rem);
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(56,214,163,.25), transparent 18rem),
    linear-gradient(125deg, var(--navy-950), #0e4266);
  box-shadow: var(--shadow-lg);
}
.cta::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -160px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(255,255,255,.025), 0 0 0 90px rgba(255,255,255,.02);
}
.cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}
.cta h2 { max-width: 780px; color: var(--white); }
.cta p { max-width: 700px; color: rgba(255,255,255,.7); }

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 9vw, 8rem) 0;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 25%, rgba(58,190,255,.2), transparent 24rem),
    linear-gradient(135deg, var(--navy-950), #0c3a5c);
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, transparent, #000);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 900px; color: var(--white); }
.page-hero .lead { color: rgba(255,255,255,.72); }

.content-grid {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 4rem;
  align-items: start;
}
.side-nav {
  position: sticky;
  top: 105px;
  display: grid;
  gap: .45rem;
  padding: 1rem;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.side-nav strong { padding: .55rem .65rem; color: var(--navy-900); }
.side-nav a {
  padding: .55rem .65rem;
  border-radius: .65rem;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
}
.side-nav a:hover { color: var(--navy-900); background: var(--slate-100); }

.content-block {
  scroll-margin-top: 120px;
  padding: 0 0 3.5rem;
  margin-bottom: 3.5rem;
  border-bottom: 1px solid var(--slate-200);
}
.content-block:last-child { margin-bottom: 0; border-bottom: 0; }
.content-block p, .prose p, .prose li { color: var(--muted); }
.prose h2 { margin-top: 2.4rem; }
.prose h3 { margin-top: 1.8rem; }
.prose ul { padding-left: 1.25rem; }
.prose a { color: var(--cyan-dark); }
.prose .notice {
  margin: 2rem 0;
  padding: 1.3rem 1.5rem;
  border-left: 4px solid var(--cyan);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--slate-100);
}

.pill-row { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.2rem 0 0; }
.pill {
  padding: .45rem .75rem;
  border: 1px solid var(--slate-200);
  border-radius: 999px;
  color: var(--navy-800);
  background: var(--white);
  font-size: .82rem;
  font-weight: 750;
}

.profile-card {
  padding: clamp(2rem, 5vw, 3rem);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.profile-initials {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  margin-bottom: 1.4rem;
  border-radius: 1.4rem;
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--cyan), var(--green));
  font-size: 1.75rem;
  font-weight: 900;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.contact-card {
  min-height: 230px;
  padding: 2rem;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.contact-card .label {
  display: block;
  margin-bottom: .75rem;
  color: var(--cyan-dark);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.contact-card a {
  color: var(--navy-900);
  font-size: clamp(1.2rem, 3vw, 1.75rem);
  font-weight: 850;
  text-decoration: none;
}
.contact-card a:hover { color: var(--cyan-dark); }
.contact-card p { margin-top: .8rem; color: var(--muted); }

.site-footer {
  padding: 4.5rem 0 2rem;
  color: rgba(255,255,255,.68);
  background: var(--navy-950);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .6fr .6fr .8fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand img { width: 265px; opacity: .98; }
.footer-brand p { max-width: 390px; margin-top: 1.2rem; }
.site-footer h3 { margin-bottom: 1rem; color: var(--white); font-size: .95rem; letter-spacing: .04em; }
.footer-links { display: grid; gap: .6rem; }
.footer-links a { color: rgba(255,255,255,.68); text-decoration: none; }
.footer-links a:hover { color: var(--cyan); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .82rem;
}
.footer-bottom p { margin: 0; }
.footer-bottom a { color: rgba(255,255,255,.68); }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: 78px 0 auto;
    display: none;
    align-items: stretch;
    flex-direction: column;
    padding: 1rem 1.25rem 1.5rem;
    border-bottom: 1px solid var(--slate-200);
    background: var(--white);
    box-shadow: var(--shadow-lg);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: .85rem 1rem; }
  .site-nav .nav-cta { margin: .5rem 0 0; text-align: center; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 420px; max-width: 620px; width: 100%; margin-inline: auto; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--slate-200); }
  .card-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .split { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .content-grid { grid-template-columns: 1fr; gap: 2rem; }
  .side-nav { position: static; grid-template-columns: repeat(3, 1fr); }
  .side-nav strong { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .container, .narrow { width: min(calc(100% - 1.5rem), var(--max-width)); }
  .brand { width: 225px; }
  .nav-wrap { min-height: 70px; }
  .site-nav { inset: 70px 0 auto; }
  .hero-grid { padding: 4rem 0 5rem; }
  .hero-visual { min-height: 365px; }
  .float-card { width: 145px; padding: .8rem; }
  .core-card { inset: 26% 12% 22%; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--slate-200); }
  .trust-item:last-child { border-bottom: 0; }
  .section-head { align-items: start; flex-direction: column; }
  .process-grid, .check-grid, .contact-grid, .metric-grid { grid-template-columns: 1fr; }
  .cta-grid { grid-template-columns: 1fr; }
  .side-nav { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* Professional refinement */
:root {
  --cyan: #2aa7d6;
  --cyan-dark: #087ca9;
  --green: #2bb58b;
  --green-dark: #13765e;
  --slate-100: #f4f7f9;
  --shadow-sm: 0 5px 18px rgba(7, 25, 45, .065);
  --shadow-lg: 0 18px 48px rgba(7, 25, 45, .13);
  --radius-sm: .5rem;
  --radius: .75rem;
  --radius-lg: 1.1rem;
}

body {
  background: #fbfcfd;
  line-height: 1.62;
}

h1, h2, h3, h4 {
  letter-spacing: -.018em;
  font-weight: 760;
}

h1 {
  font-size: clamp(2.55rem, 5vw, 4.65rem);
}

h2 {
  font-size: clamp(1.95rem, 3.6vw, 3.05rem);
}

.eyebrow {
  font-size: .74rem;
  letter-spacing: .15em;
}

.eyebrow::before {
  width: 1.35rem;
  background: var(--cyan);
}

.site-header {
  border-bottom-color: rgba(12, 35, 64, .12);
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  min-height: 82px;
}

.site-nav {
  gap: .35rem;
}

.site-nav a {
  position: relative;
  padding: .7rem .75rem;
  border-radius: .35rem;
  font-size: .93rem;
  font-weight: 700;
}

.site-nav a:hover {
  background: #f4f7f9;
}

.site-nav a[aria-current="page"] {
  background: transparent;
  box-shadow: inset 0 -2px 0 var(--cyan-dark);
}

.site-nav .nav-cta {
  margin-left: .75rem;
  padding-inline: 1.05rem;
  color: var(--white);
  background: var(--navy-900);
  box-shadow: none;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta[aria-current="page"] {
  color: var(--white);
  background: var(--navy-800);
  box-shadow: none;
}

.btn {
  min-height: 3rem;
  padding: .76rem 1.15rem;
  border-radius: .55rem;
  font-weight: 750;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--white);
  background: var(--cyan-dark);
  box-shadow: 0 8px 22px rgba(8, 124, 169, .18);
}

.btn-primary:hover {
  background: #076f98;
  box-shadow: 0 10px 26px rgba(8, 124, 169, .23);
}

.btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, .35);
}

.btn-light {
  box-shadow: none;
}

.hero {
  min-height: 650px;
  background: linear-gradient(128deg, #07192d 0%, #0a2c49 58%, #0c3958 100%);
}

.hero::before {
  opacity: .12;
  background-size: 64px 64px;
}

.hero-grid {
  gap: clamp(3rem, 6vw, 5.5rem);
  padding: 5.4rem 0 5.8rem;
}

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

.hero .lead {
  max-width: 650px;
  color: rgba(255, 255, 255, .78);
}

.hero-note {
  color: rgba(255, 255, 255, .72);
  font-size: .88rem;
  font-weight: 600;
}

.hero-note span::before {
  color: var(--cyan);
}

.orbit {
  border-color: rgba(255, 255, 255, .08);
}

.orbit::before,
.orbit::after {
  border-color: rgba(255, 255, 255, .07);
}

.core-card {
  border-radius: 1rem;
  border-color: rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .075);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .22);
}

.float-card {
  width: 176px;
  border-radius: .7rem;
  border-color: rgba(255, 255, 255, .14);
  background: rgba(7, 25, 45, .88);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .2);
}

.float-card .dot {
  box-shadow: none;
  background: var(--cyan);
}

.trust-strip {
  margin-top: -1.25rem;
}

.trust-grid {
  border-radius: .75rem;
  box-shadow: 0 12px 34px rgba(7, 25, 45, .11);
}

.trust-icon {
  border-radius: .55rem;
  background: #e8f5fa;
}

.section {
  padding: clamp(4.5rem, 8vw, 6.8rem) 0;
}

.section-muted {
  background: #f4f7f9;
}

.service-card {
  min-height: 370px;
  border-radius: .75rem;
  border-top: 3px solid var(--cyan-dark);
  box-shadow: none;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(7, 25, 45, .09);
}

.service-card::after {
  opacity: .45;
}

.service-number {
  margin-bottom: 2.25rem;
  border-radius: .5rem;
  background: #e8f5fa;
}

.panel {
  border-radius: 1rem;
  background: linear-gradient(145deg, #07192d, #123a5a);
  box-shadow: 0 18px 46px rgba(7, 25, 45, .16);
}

.panel-lines {
  opacity: .1;
}

.metric {
  border-radius: .65rem;
}

.feature {
  padding: 1.15rem 0;
}

.feature-icon {
  border-radius: .6rem;
  background: #e8f5fa;
}

.process-step {
  border-top-color: #c9d6df;
}

.check-grid li {
  border-radius: .6rem;
}

.cta {
  border-radius: 1rem;
  background: linear-gradient(125deg, #07192d, #0c3654);
  box-shadow: 0 16px 42px rgba(7, 25, 45, .14);
}

.cta::after {
  opacity: .45;
}

.page-hero {
  background: linear-gradient(128deg, #07192d, #0c3654);
}

.page-hero::after {
  opacity: .1;
}

.side-nav,
.profile-card,
.contact-card {
  border-radius: .75rem;
  box-shadow: none;
}

.side-nav {
  border-left: 3px solid var(--cyan-dark);
}

.profile-initials {
  border-radius: .65rem;
  color: var(--white);
  background: var(--cyan-dark);
}

.pill {
  border-radius: .4rem;
  background: #f7f9fa;
}

.site-footer {
  background: #07192d;
}

.reveal {
  transform: translateY(10px);
  transition-duration: .4s;
}

@media (max-width: 680px) {
  .site-nav .nav-cta {
    margin-left: 0;
  }
}

/* Responsive homepage hero graphic
   Uses normal CSS Grid flow rather than overlapping absolute-positioned cards. */
.hero-visual {
  position: relative;
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-areas:
    "core core core"
    "one two three";
  gap: 1rem;
  align-items: stretch;
  padding: 1.15rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 1rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .018));
}

.hero-visual .orbit {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: min(92%, 560px);
  aspect-ratio: 1;
  inset: auto;
  transform: translate(-50%, -50%);
  border-color: rgba(255, 255, 255, .075);
  pointer-events: none;
}

.hero-visual .orbit::before {
  inset: 14%;
  border-color: rgba(255, 255, 255, .065);
}

.hero-visual .orbit::after {
  inset: 31%;
  border-color: rgba(255, 255, 255, .055);
}

.hero-visual .core-card {
  position: relative;
  inset: auto;
  grid-area: core;
  z-index: 2;
  min-width: 0;
  min-height: 270px;
  display: grid;
  place-items: center;
  padding: 2rem 1.5rem;
  border-radius: .9rem;
  background:
    linear-gradient(145deg, rgba(75, 133, 174, .34), rgba(31, 80, 115, .28));
  box-shadow: none;
}

.hero-visual .core-card > div {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.hero-visual .core-card img {
  width: clamp(76px, 9vw, 102px);
  filter: drop-shadow(0 8px 15px rgba(0, 0, 0, .2));
}

.hero-visual .core-card strong {
  max-width: 440px;
  margin-top: 1.15rem;
  font-size: clamp(1.15rem, 2.2vw, 1.48rem);
  line-height: 1.3;
}

.hero-visual .core-card small {
  display: block;
  margin-top: .6rem;
  color: rgba(255, 255, 255, .72);
  line-height: 1.45;
}

.hero-visual .float-card {
  position: relative;
  inset: auto;
  z-index: 2;
  width: auto;
  min-width: 0;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 1rem;
  border-radius: .7rem;
  background: rgba(7, 25, 45, .9);
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.hero-visual .float-card.one {
  grid-area: one;
  top: auto;
  left: auto;
}

.hero-visual .float-card.two {
  grid-area: two;
  top: auto;
  right: auto;
}

.hero-visual .float-card.three {
  grid-area: three;
  bottom: auto;
  left: auto;
}

.hero-visual .float-card .dot {
  width: .62rem;
  height: .62rem;
  flex: 0 0 auto;
  margin-bottom: .72rem;
  box-shadow: none;
  background: var(--cyan);
}

.hero-visual .float-card strong {
  font-size: .9rem;
  line-height: 1.3;
}

.hero-visual .float-card span {
  display: block;
  margin-top: .4rem;
  color: rgba(255, 255, 255, .67);
  font-size: .74rem;
  line-height: 1.5;
}

@media (max-width: 1100px) and (min-width: 981px) {
  .hero-visual {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "core core"
      "one two"
      "three three";
  }

  .hero-visual .float-card {
    min-height: 118px;
  }
}

@media (max-width: 980px) {
  .hero-visual {
    width: min(100%, 680px);
    max-width: 680px;
    margin-inline: auto;
    min-height: 0;
  }
}

@media (max-width: 680px) {
  .hero-visual {
    grid-template-columns: 1fr;
    grid-template-areas:
      "core"
      "one"
      "two"
      "three";
    gap: .75rem;
    padding: .75rem;
    border-radius: .8rem;
  }

  .hero-visual .core-card {
    min-height: 225px;
    padding: 1.5rem 1rem;
  }

  .hero-visual .core-card strong {
    max-width: 290px;
    font-size: 1.15rem;
  }

  .hero-visual .core-card small {
    max-width: 280px;
    font-size: .82rem;
  }

  .hero-visual .float-card {
    min-height: 0;
    display: grid;
    grid-template-columns: 1rem minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: .72rem;
    row-gap: .2rem;
    align-items: start;
    padding: .9rem 1rem;
  }

  .hero-visual .float-card .dot {
    grid-column: 1;
    grid-row: 1 / span 2;
    margin: .28rem 0 0;
  }

  .hero-visual .float-card strong {
    grid-column: 2;
    grid-row: 1;
    font-size: .9rem;
  }

  .hero-visual .float-card span {
    grid-column: 2;
    grid-row: 2;
    margin-top: 0;
    font-size: .78rem;
  }
}
