:root {
  --navy-950: #040f24;
  --navy-900: #071735;
  --navy-800: #12366a;
  --silver-500: #a9b6c7;
  --silver-400: #c0cad8;
  --silver-300: #d4dbe6;
  --white: #ffffff;
  --ink-900: #142033;
  --ink-700: #3b4f69;
  --surface: #f2f5fa;
  --line: #d4dce8;
  --max-width: 1160px;
  --radius: 10px;
  --shadow: 0 18px 40px rgba(6, 18, 40, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink-900);
  background: var(--white);
  line-height: 1.65;
}

body.site-locked {
  overflow: hidden;
}

body.site-locked .site-shell,
body.site-locked .skip-link {
  visibility: hidden;
  pointer-events: none;
}

.password-gate {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
  background:
    radial-gradient(circle at 12% 16%, rgba(210, 223, 241, 0.5) 0, rgba(210, 223, 241, 0) 35%),
    linear-gradient(155deg, #f5f8fd 0%, #e8eef8 46%, #dde6f3 100%);
}

body:not(.site-locked) .password-gate {
  display: none;
}

.password-gate-panel {
  width: min(100%, 460px);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #d6dfec;
  border-radius: 16px;
  box-shadow: 0 22px 44px rgba(9, 27, 56, 0.14);
  padding: 2.2rem 2rem 2rem;
}

.password-gate-logo {
  width: 72px;
  margin-bottom: 1.2rem;
}

.password-gate-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #4b6283;
  font-size: 0.72rem;
  font-weight: 700;
  margin: 0 0 0.45rem;
}

.password-gate-panel h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.7rem, 4vw, 2.1rem);
  font-family: "Playfair Display", Georgia, serif;
  color: #0d2346;
}

.password-gate-copy {
  margin: 0 0 1.3rem;
  color: #39506f;
}

.password-gate-form {
  display: grid;
  gap: 0.65rem;
}

.password-gate-form label {
  font-weight: 600;
  color: #12284c;
}

.password-gate-form input {
  border: 1px solid #b6c6da;
  border-radius: 8px;
  padding: 0.75rem 0.85rem;
  font-size: 1rem;
}

.password-gate-form input:focus-visible {
  outline: 2px solid #254a7f;
  outline-offset: 2px;
}

.password-gate-form .btn {
  margin-top: 0.35rem;
  width: 100%;
}

.password-gate-error {
  min-height: 1.25rem;
  margin: 0.2rem 0 0;
  color: #7f1322;
  font-size: 0.9rem;
}

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

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

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: var(--white);
  padding: 0.5rem 0.75rem;
  z-index: 10000;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.section {
  padding: 6.5rem 0;
}

.section h2,
.hero h1 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0.01em;
}

.section h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin: 0 0 1rem;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #7b8fa8;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(7, 23, 53, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  transition: box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled {
  box-shadow: 0 8px 18px rgba(2, 10, 24, 0.22);
  background: rgba(4, 15, 36, 0.92);
  border-bottom-color: rgba(188, 205, 230, 0.2);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 120px;
  gap: 0.7rem;
}

.brand img {
  width: 56px;
  height: 56px;
  transform: scale(2);
  transform-origin: left center;
  object-fit: contain;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: #e7edf6;
}

.primary-nav a {
  font-size: 0.92rem;
  opacity: 0.92;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  opacity: 1;
  color: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(124deg, #e4ebf6 8%, #c7d5e8 100%);
  color: #081f44;
  border-color: rgba(255, 255, 255, 0.62);
  box-shadow: 0 8px 16px rgba(6, 21, 45, 0.18);
}

.btn-secondary {
  border-color: rgba(192, 205, 223, 0.62);
  color: #deebff;
  background: rgba(8, 25, 49, 0.28);
}

.nav-cta {
  margin-left: 0.5rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.25rem;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
}

.hero {
  position: relative;
  background-image: linear-gradient(148deg, #112f59 0%, #081733 55%, #040d22 100%);
  color: var(--white);
  min-height: 88vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-background,
.hero-overlay,
.hero-nav-lines,
.hero-nav-lines::before,
.hero-nav-lines::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-background {
  background-repeat: no-repeat;
}

.hero-background-landing {
  background-image: url("assets/background-landing.png");
  background-position: right center;
  background-size: cover;
  opacity: 0.56;
}

.hero-background-sky {
  background-image: url("assets/background-sky.png");
  background-position: center top;
  background-size: cover;
  opacity: 0.4;
}

.hero-overlay {
  background: linear-gradient(105deg, rgba(3, 11, 26, 0.84) 5%, rgba(4, 15, 36, 0.64) 48%, rgba(4, 15, 36, 0.8) 100%);
}

.hero-nav-lines::before,
.hero-nav-lines::after {
  content: "";
}

.hero-nav-lines {
  background-image: radial-gradient(circle at 76% 36%, rgba(215, 224, 236, 0.08) 0, rgba(215, 224, 236, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 74% 58%, rgba(215, 224, 236, 0.06) 0, rgba(215, 224, 236, 0.06) 1px, transparent 1px);
  background-size: 230px 230px, 280px 280px;
}

.hero-nav-lines::before {
  inset: auto -20% 26% auto;
  width: 68%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(215, 224, 236, 0.22), transparent);
  transform: rotate(-14deg);
}

.hero-nav-lines::after {
  inset: auto -18% 42% auto;
  width: 58%;
  height: 1px;
  border-top: 1px solid rgba(215, 224, 236, 0.18);
  border-radius: 100% 100% 0 0;
  transform: rotate(-9deg);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 8.6rem 0 6.4rem;
}

.hero .section-kicker {
  margin-bottom: 1rem;
  color: #dbe8fb;
  letter-spacing: 0.16em;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto auto 8% -12%;
  width: 58%;
  height: 45%;
  border: 1px solid rgba(208, 222, 242, 0.16);
  border-radius: 999px;
  transform: rotate(-11deg);
  pointer-events: none;
}

.hero h1 {
  font-size: clamp(2.15rem, 5vw, 4rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin: 0 0 1.4rem;
}

.hero-subtitle {
  margin: 0;
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  font-weight: 600;
  color: #d9e6f8;
  max-width: 34ch;
}

.hero-copy {
  margin: 1rem 0 2.3rem;
  max-width: 60ch;
  color: #c5d3e7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.credibility-row {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  list-style: none;
  margin: 1.9rem 0 0;
  padding: 0;
  color: #d3ddea;
  font-size: 0.9rem;
}

.credibility-row li {
  padding-left: 0.95rem;
  border-left: 1px solid rgba(208, 222, 240, 0.42);
}

.service-grid,
.method-grid,
.stats-grid,
.footer-grid {
  display: grid;
  gap: 1.25rem;
}

.service-grid,
.method-grid,
.stats-grid,
.about-grid {
  margin-top: 2.25rem;
}

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

.card,
.stat-card,
.contact-card,
.phase-detail {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.card {
  padding: 1.6rem;
}

.service-card {
  position: relative;
  padding: 1.9rem 1.7rem 1.65rem;
  overflow: hidden;
  border-top: 3px solid #9cb4d3;
}

.service-card::before {
  content: "";
  position: absolute;
  right: 1.15rem;
  top: 1.25rem;
  width: 68px;
  height: 20px;
  border-top: 1px dashed rgba(89, 117, 153, 0.45);
  border-radius: 999px;
  opacity: 0.65;
  pointer-events: none;
}

.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 0.9rem;
}

.service-card .card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin: 0 0 1.15rem;
  padding: 0.7rem;
  border-radius: 14px;
  border: 1px solid #d3ddea;
  background: linear-gradient(150deg, #f8fbff 8%, #edf3fb 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.card h3 {
  margin-top: 0;
}

.service-card h3 {
  margin-bottom: 0.9rem;
}

.card-subtitle {
  color: var(--ink-700);
  font-weight: 600;
  margin-top: -0.35rem;
}

.service-card .card-subtitle {
  margin: 0 0 0.9rem;
}

.service-card p {
  margin: 0 0 0.75rem;
  line-height: 1.4;
  color: #324867;
}

.service-card ul {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.42rem;
}

.service-card li {
  line-height: 1.35;
}

.section-dark {
  background: linear-gradient(160deg, #06132a, #112d58);
  color: var(--white);
}

.section-dark .intro,
.section-dark .closing-copy {
  color: #d5dfec;
}

.differentiation-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2.8rem;
  align-items: start;
}

.differentiation-intro .intro {
  margin: 0 0 0.95rem;
  max-width: 34ch;
}

.differentiation-intro h2 {
  margin: 0;
  max-width: 13ch;
}

.feature-stack {
  display: grid;
  gap: 1.15rem;
  margin: 0;
}

.feature-tile {
  position: relative;
  margin: 0;
  padding: 1.15rem 1.35rem 1.25rem;
  border-radius: calc(var(--radius) - 1px);
  border: 1px solid rgba(204, 219, 237, 0.2);
  background-color: rgba(5, 20, 41, 0.64);
  background-image:
    linear-gradient(130deg, rgba(204, 219, 237, 0.14) 0%, rgba(204, 219, 237, 0.03) 46%, transparent 100%),
    repeating-linear-gradient(90deg, transparent 0, transparent 32px, rgba(196, 216, 240, 0.08) 32px, rgba(196, 216, 240, 0.08) 33px),
    repeating-linear-gradient(0deg, transparent 0, transparent 20px, rgba(196, 216, 240, 0.05) 20px, rgba(196, 216, 240, 0.05) 21px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 18px 30px rgba(3, 11, 24, 0.28);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature-tile::before {
  content: "";
  position: absolute;
  left: 1.35rem;
  right: 1.35rem;
  top: 1.45rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(217, 230, 247, 0.7), rgba(217, 230, 247, 0.24));
  pointer-events: none;
}

.feature-tile:hover,
.feature-tile:focus-within {
  transform: translateY(-2px);
  border-color: rgba(199, 217, 240, 0.58);
  box-shadow: inset 0 0 0 1px rgba(215, 229, 247, 0.18), 0 24px 36px rgba(2, 8, 19, 0.4);
}

.feature-context {
  margin: 0 0 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.68rem;
  font-weight: 600;
}

.feature-statement {
  margin: 0;
  color: #f5f8ff;
  font-weight: 700;
  font-size: clamp(1.05rem, 1.55vw, 1.24rem);
  line-height: 1.32;
  max-width: 34ch;
}

.feature-tile.is-process {
  background-color: rgba(8, 25, 49, 0.55);
  border-color: rgba(178, 200, 229, 0.18);
}

.feature-tile.is-process .feature-context {
  color: #9fb6d4;
}

.feature-tile.is-process .feature-statement {
  color: #d8e4f3;
}

.feature-tile.is-control {
  border-color: rgba(184, 208, 236, 0.42);
  background-color: rgba(7, 24, 49, 0.75);
  box-shadow: inset 0 0 0 1px rgba(196, 218, 244, 0.16), 0 22px 36px rgba(2, 8, 19, 0.42);
}

.feature-tile.is-control .feature-context {
  color: #d2e7ff;
}

.section-dark .closing-copy {
  margin-top: 1.35rem;
  max-width: 56ch;
  font-weight: 500;
}

.method-intro {
  max-width: 62ch;
  color: var(--ink-700);
}

.framework-visual {
  margin-top: 1.6rem;
  position: relative;
  height: 132px;
  border: 1px solid #c4d2e4;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 14% 26%, rgba(120, 151, 189, 0.28), transparent 42%),
    linear-gradient(125deg, #f8fbff 5%, #ebf2fb 55%, #e4ecf8 100%);
  overflow: hidden;
}

.framework-visual::before,
.framework-visual::after {
  content: "";
  position: absolute;
  inset: 0;
}

.framework-visual::before {
  background:
    repeating-linear-gradient(90deg, transparent 0, transparent 42px, rgba(89, 122, 163, 0.1) 42px, rgba(89, 122, 163, 0.1) 43px),
    repeating-linear-gradient(0deg, transparent 0, transparent 24px, rgba(89, 122, 163, 0.08) 24px, rgba(89, 122, 163, 0.08) 25px);
}

.framework-visual::after {
  background:
    linear-gradient(92deg, transparent 4%, rgba(66, 99, 139, 0.5) 38%, rgba(66, 99, 139, 0.2) 65%, transparent 93%);
  transform: rotate(-8deg);
}

.framework-node {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 2px solid #2f527d;
  background: #eaf1fc;
  box-shadow: 0 0 0 4px rgba(180, 203, 232, 0.38);
}

.node-a { top: 24%; left: 16%; }
.node-b { top: 58%; left: 34%; }
.node-c { top: 36%; left: 56%; }
.node-d { top: 62%; left: 81%; }

.method-cta-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.method-cta-card {
  border-color: #c1d0e3;
  background: linear-gradient(155deg, #fff 0%, #f4f8ff 100%);
}

.method-tag {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: #547095;
}

.method-cta-card p {
  color: #37506f;
}

.method-cta-actions {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.text-link {
  font-weight: 600;
  color: #15375e;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.timeline {
  --node-size: 2.45rem;
  margin-top: 2.25rem;
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
  padding: 2rem 1.15rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #f8faff, #edf2f9);
}

.timeline-path {
  position: absolute;
  left: calc(1.15rem + (var(--node-size) / 2));
  right: calc(1.15rem + (var(--node-size) / 2));
  top: 3.2rem;
  height: 2px;
  background: linear-gradient(90deg, #9cb1cc, #b9c8db);
  opacity: 0.8;
  pointer-events: none;
}

.timeline-milestone {
  width: 100%;
  text-align: left;
  border: 1px solid transparent;
  background: transparent;
  padding: 0;
  color: var(--ink-900);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.milestone-node {
  position: relative;
  display: grid;
  place-items: center;
  width: var(--node-size);
  height: var(--node-size);
  border-radius: 999px;
  border: 2px solid #9eb1c9;
  background: linear-gradient(150deg, #fdfefe, #e8eef7);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #5f7697;
  box-shadow: 0 6px 16px rgba(16, 40, 74, 0.12);
}

.milestone-title {
  display: block;
  margin-top: 0.8rem;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.25;
}

.milestone-brief {
  display: block;
  margin-top: 0.35rem;
  color: var(--ink-700);
  font-size: 0.85rem;
  line-height: 1.35;
}

.timeline-milestone:hover,
.timeline-milestone:focus-visible {
  transform: translateY(-2px);
}

.timeline-milestone:focus-visible .milestone-node,
.timeline-milestone:hover .milestone-node {
  border-color: #7f96b4;
  box-shadow: 0 10px 20px rgba(16, 40, 74, 0.16);
}

.timeline-milestone.is-active .milestone-node {
  border-color: #395d86;
  color: #0f2f55;
  background: linear-gradient(150deg, #f9fcff, #dbe8f8);
  box-shadow: 0 12px 24px rgba(16, 40, 74, 0.2);
}

.timeline-milestone.is-active .milestone-title {
  color: #0f2f55;
}

.phase-detail {
  margin-top: 1rem;
  padding: 1.25rem;
}

.phase-detail h3 {
  margin: 0 0 0.45rem;
}

.phase-detail p {
  margin: 0;
  color: var(--ink-700);
}

.support-image-grid {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.support-image-card {
  margin: 0;
  padding: 1rem;
  border: 1px solid #cad6e6;
  border-radius: var(--radius);
  background: linear-gradient(165deg, #f9fcff 0%, #edf3fb 55%, #e8eff9 100%);
  box-shadow: 0 16px 34px rgba(7, 25, 51, 0.12);
}

.intelligence-module {
  position: relative;
  overflow: hidden;
}

.intelligence-module::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.5), transparent 45%);
  pointer-events: none;
}

.module-label {
  margin: 0 0 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.68rem;
  color: #6280a4;
  font-weight: 700;
}

.interactive-card {
  transform-style: preserve-3d;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.interactive-card:hover,
.interactive-card:focus-within {
  transform: translateY(-3px) rotateX(2deg) rotateY(-2deg);
  box-shadow: 0 20px 36px rgba(10, 28, 56, 0.16);
}

.support-image-card figcaption {
  margin-top: 0.7rem;
  color: var(--ink-700);
  font-size: 0.92rem;
}

.section-alt {
  background: var(--surface);
}

.stat-card {
  padding: 1.55rem 1.4rem 1.35rem;
  text-align: left;
  border-color: #c2ccdb;
  box-shadow: 0 14px 28px rgba(7, 25, 51, 0.08);
}

.stat-value {
  margin: 0;
  font-size: clamp(2.4rem, 4.8vw, 3.45rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.03;
  color: var(--navy-800);
}

.stat-label {
  margin: 0.25rem 0 0;
  color: var(--ink-700);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

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

.coverage-grid {
  margin: 1.75rem 0 1.35rem;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.9rem;
}

.coverage-grid li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.55rem;
  text-align: center;
  padding: 0.78rem 0.88rem;
  border: 1px solid #c6d2e3;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  box-shadow: 0 7px 16px rgba(6, 25, 53, 0.05);
  font-weight: 600;
  color: #2e4565;
  line-height: 1.2;
}

.proof-strip {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.proof-strip p {
  margin: 0;
  padding: 1rem 1.05rem;
  border: 1px solid #c8d4e5;
  border-radius: var(--radius);
  background: linear-gradient(170deg, #ffffff 0%, #f2f7ff 100%);
  color: #294665;
  font-weight: 500;
  line-height: 1.45;
}

.coverage-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.results-insight {
  margin: 1.15rem 0 1.35rem;
  border: 1px solid #c6d2e3;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff 0%, #f3f7fd 100%);
  box-shadow: 0 12px 24px rgba(8, 27, 53, 0.08);
  padding: 1rem 1.1rem 0.95rem;
}

.results-insight figcaption {
  margin: 0 0 0.75rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4a6487;
}

.insight-metrics {
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.insight-metrics div {
  display: grid;
  gap: 0.22rem;
}

.insight-metrics dt {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 600;
  color: #304968;
}

.insight-metrics dd {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.6rem;
}

.insight-metrics meter {
  width: 100%;
  height: 0.66rem;
}

.insight-metrics dd span {
  font-size: 0.75rem;
  font-weight: 700;
  color: #2f4463;
  min-width: 2.1rem;
  text-align: right;
}

.results-support,
.tagline {
  max-width: 56ch;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.95fr);
  gap: 1.9rem;
  align-items: stretch;
}

.about-editorial-copy {
  max-width: 58ch;
}

.about-editorial-copy p {
  margin: 0 0 1rem;
  font-size: 1.04rem;
}

.credibility-card {
  position: relative;
  padding: 1.45rem 1.45rem 1.35rem;
  border-color: #b7c7dc;
  background:
    radial-gradient(circle at 100% 0%, rgba(17, 45, 88, 0.08), transparent 55%),
    linear-gradient(158deg, #ffffff 0%, #f5f8fe 52%, #edf2fb 100%);
  box-shadow: 0 20px 36px rgba(9, 27, 54, 0.14);
}

.credibility-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.6);
  pointer-events: none;
}

.credibility-card-header {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.3rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid #d2ddeb;
}

.card-eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
  font-weight: 700;
  color: #5f7898;
}

.credibility-card h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2.1vw, 1.5rem);
  line-height: 1.2;
}

.card-role {
  margin: 0;
  color: #385172;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.founder-metadata dd {
  font-weight: 700;
}

.credibility-abstract {
  margin: 0.95rem 0;
  border: 1px solid #cfdae9;
  border-radius: calc(var(--radius) - 3px);
  height: 74px;
  background:
    linear-gradient(112deg, rgba(157, 178, 206, 0.35) 0%, rgba(197, 214, 235, 0.08) 50%, rgba(255, 255, 255, 0.5) 100%),
    repeating-linear-gradient(90deg, transparent 0, transparent 20px, rgba(93, 126, 165, 0.14) 20px, rgba(93, 126, 165, 0.14) 21px),
    repeating-linear-gradient(0deg, transparent 0, transparent 14px, rgba(93, 126, 165, 0.12) 14px, rgba(93, 126, 165, 0.12) 15px);
}

.credibility-metadata {
  margin: 0;
  display: grid;
  gap: 0.72rem;
}

.credibility-metadata div {
  display: grid;
  grid-template-columns: minmax(130px, 0.9fr) minmax(0, 1.3fr);
  gap: 0.8rem;
  padding-top: 0.72rem;
  border-top: 1px solid #d8e2ef;
}

.credibility-metadata dt,
.credibility-metadata dd {
  margin: 0;
}

.credibility-metadata dt {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #607b9d;
}

.credibility-metadata dd {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
  color: #173255;
}

.cta-band .cta-inner {
  position: relative;
  text-align: center;
  z-index: 1;
}

.cta-band p {
  max-width: 54ch;
  margin-inline: auto;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 7.6rem 0 6rem;
}

.cta-band::before,
.cta-band::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.cta-band::before {
  inset: 0;
  background:
    radial-gradient(circle at 16% 28%, rgba(193, 214, 240, 0.14) 0, transparent 44%),
    radial-gradient(circle at 86% 68%, rgba(206, 223, 245, 0.12) 0, transparent 38%),
    repeating-linear-gradient(90deg, transparent 0, transparent 54px, rgba(173, 197, 225, 0.08) 54px, rgba(173, 197, 225, 0.08) 55px);
}

.cta-band::after {
  right: -8%;
  top: 26%;
  width: 40%;
  height: 46%;
  border: 1px solid rgba(197, 217, 241, 0.14);
  border-radius: 999px;
  transform: rotate(-8deg);
}

#contact {
  position: relative;
  overflow: hidden;
  padding: 7rem 0 7.8rem;
  background:
    radial-gradient(circle at 82% 12%, rgba(45, 82, 128, 0.08) 0, transparent 45%),
    linear-gradient(180deg, #f7faff 0%, #f1f6fc 100%);
}

#contact::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(224, 235, 247, 0.24));
}

.contact-motif {
  height: 74px;
  margin: 0.95rem 0 1rem;
  border: 1px solid #cad8eb;
  border-radius: calc(var(--radius) - 1px);
  background:
    linear-gradient(112deg, rgba(165, 186, 213, 0.3) 0%, rgba(200, 216, 236, 0.09) 45%, rgba(255, 255, 255, 0.64) 100%),
    repeating-linear-gradient(90deg, transparent 0, transparent 22px, rgba(96, 132, 171, 0.14) 22px, rgba(96, 132, 171, 0.14) 23px),
    repeating-linear-gradient(0deg, transparent 0, transparent 16px, rgba(96, 132, 171, 0.11) 16px, rgba(96, 132, 171, 0.11) 17px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.contact-card {
  position: relative;
  padding: 1.7rem;
  display: grid;
  gap: 1.05rem;
  border-color: #bfd0e5;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 255, 0.96));
  box-shadow: 0 18px 30px rgba(9, 27, 54, 0.1);
}

.contact-layout {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 1.1rem;
  align-items: stretch;
}

.contact-logo {
  width: 88px;
  height: 88px;
  object-fit: contain;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-links a {
  color: var(--navy-800);
  font-weight: 600;
}

.contact-form {
  border-color: #b8c9df;
  background: linear-gradient(160deg, #ffffff 0%, #f3f8ff 100%);
  box-shadow: 0 18px 30px rgba(9, 27, 54, 0.1);
}

.contact-form h3 {
  margin: 0 0 0.2rem;
  font-size: 1.1rem;
}

.form-field {
  display: grid;
  gap: 0.4rem;
}

.form-field label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #2d4566;
}

.form-field input {
  width: 100%;
  border: 1px solid #c2d3e7;
  border-radius: 6px;
  padding: 0.72rem 0.78rem;
  font: inherit;
  color: var(--ink-900);
  background: #ffffff;
}

.form-field input:focus-visible {
  outline: 2px solid #8ea9ca;
  outline-offset: 1px;
  border-color: #8ea9ca;
}

.contact-form .btn {
  margin-top: 0.2rem;
  width: 100%;
}

.site-footer {
  background:
    linear-gradient(180deg, #07142d 0%, #040d1f 100%);
  color: #dbe6f6;
  padding: 4.25rem 0 1.5rem;
}

.footer-grid {
  grid-template-columns: 1.6fr 0.95fr 1.1fr;
  gap: 1.75rem;
  align-items: start;
}

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

.footer-brand img {
  width: 66px;
  height: 66px;
}

.site-footer h3 {
  margin: 0 0 0.85rem;
  color: var(--white);
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer p,
.site-footer li,
.site-footer a {
  font-size: 0.95rem;
  line-height: 1.6;
}

.site-footer p {
  margin: 0;
  max-width: 38ch;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 0.58rem;
}

.footer-bottom {
  margin-top: 2.35rem;
  border-top: 1px solid rgba(202, 219, 241, 0.2);
  padding-top: 1.15rem;
  font-size: 0.84rem;
  color: #aebed5;
}

@media (max-width: 980px) {
  .primary-nav {
    position: absolute;
    top: 100%;
    right: 1rem;
    width: min(320px, calc(100% - 2rem));
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: #07152d;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.32);
    flex-direction: column;
    align-items: stretch;
    transform: scale(0.98);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }

  .mobile-toggle {
    display: inline-block;
  }

  .nav-cta {
    margin-left: 0;
  }

  .service-grid,
  .method-grid,
  .stats-grid,
  .support-image-grid,
  .coverage-grid,
  .proof-strip,
  .method-cta-grid,
  .contact-layout,
  .about-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem 1rem 1rem 2.9rem;
  }

  .timeline-path {
    left: 2.1rem;
    right: auto;
    top: 1.8rem;
    bottom: 1.8rem;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, #9cb1cc, #b9c8db);
  }

  .timeline-milestone {
    position: relative;
  }

  .milestone-node {
    position: absolute;
    left: -2rem;
    top: 0.1rem;
  }

  .milestone-title {
    margin-top: 0;
  }

  .section {
    padding: 5rem 0;
  }

  .differentiation-layout {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .differentiation-intro h2,
  .differentiation-intro .intro,
  .section-dark .closing-copy {
    max-width: none;
  }

  .feature-stack {
    gap: 1rem;
  }

  .feature-tile {
    padding: 1.1rem 1.15rem;
  }

  .service-grid {
    gap: 1.5rem;
  }

  .service-card {
    padding: 1.8rem 1.4rem 1.65rem;
  }

  .premium-stats {
    grid-template-columns: 1fr;
  }

  .service-card p {
    margin-bottom: 0.65rem;
  }

  .hero-background-landing {
    background-position: 72% center;
    background-size: auto 108%;
  }

  .hero-background-sky {
    background-position: 62% top;
    background-size: auto 125%;
  }

  .hero-nav-lines::before {
    width: 74%;
    inset: auto -26% 22% auto;
  }
}


@media (max-width: 620px) {
  .hero {
    min-height: 80vh;
  }

  .hero-content {
    padding-top: 6.4rem;
  }

  .hero-background-landing {
    background-position: 68% center;
    background-size: auto 120%;
    opacity: 0.52;
  }

  .hero-background-sky {
    background-position: 58% top;
    background-size: auto 140%;
    opacity: 0.36;
  }

  .hero-overlay {
    background: linear-gradient(135deg, rgba(3, 11, 26, 0.9) 8%, rgba(4, 15, 36, 0.72) 54%, rgba(4, 15, 36, 0.82) 100%);
  }

  .credibility-row {
    display: grid;
    gap: 0.5rem;
  }

  .credibility-row li {
    border-left: 0;
    padding-left: 0;
  }

  .service-grid {
    gap: 1.2rem;
  }

  .service-card {
    padding: 1.6rem 1.25rem 1.5rem;
  }

  .service-card::before {
    right: 0.9rem;
    top: 1.05rem;
    width: 52px;
  }

  .service-card .card-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 1rem;
  }

  .service-card ul {
    gap: 0.4rem;
  }

  .credibility-card {
    padding: 1.2rem;
  }

  .credibility-metadata div {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }
}
