:root {
  color-scheme: light;
  --ink: #081729;
  --muted: #52667a;
  --line: #d9e2eb;
  --paper: #f7f9fc;
  --surface: #ffffff;
  --navy: #081729;
  --blue: #1264e8;
  --cyan: #54e3f0;
  --soft-blue: #eaf2ff;
  --soft-cyan: #e7fbfd;
  --max: 1220px;
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  color: #fff;
  background: var(--navy);
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(207, 217, 225, 0.86);
  background: rgba(247, 249, 252, 0.92);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--navy);
  border: 1px solid var(--navy);
  font-size: 0.9rem;
  letter-spacing: 0;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.45rem;
}

.desktop-nav a,
.mobile-nav a {
  color: #294052;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 650;
}

.desktop-nav a:hover,
.mobile-nav a:hover,
.footer-links a:hover {
  color: var(--blue);
}

.nav-contact {
  padding: 0.62rem 1rem;
  color: #fff !important;
  border: 1px solid var(--blue);
  border-radius: 999px;
  background: var(--blue);
}

.mobile-nav {
  display: none;
  position: relative;
}

.mobile-nav summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav div {
  position: absolute;
  top: 2.2rem;
  right: 0;
  width: min(18rem, calc(100vw - 2rem));
  padding: 1rem;
  display: grid;
  gap: 0.8rem;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 18px 50px rgba(9, 26, 42, 0.13);
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to right, #000 0%, transparent 68%);
}

.hero-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2rem), var(--max));
  min-height: 690px;
  margin: 0 auto;
  padding: 6.5rem 0 5.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: 4.5rem;
}

.eyebrow {
  margin: 0 0 1.3rem;
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 11ch;
  margin-bottom: 1.6rem;
  font-size: clamp(3.2rem, 6.4vw, 6.2rem);
  font-weight: 760;
}

h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 740;
}

h3 {
  margin-bottom: 0.8rem;
  font-size: 1.35rem;
}

.hero-copy {
  max-width: 650px;
  margin: 0;
  color: #c9d6e2;
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.button {
  min-height: 48px;
  padding: 0.78rem 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 760;
  line-height: 1.2;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  color: #041523;
  background: var(--cyan);
}

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

.button-dark {
  color: #fff;
  background: var(--navy);
}

.hero-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(84, 227, 240, 0.32);
  border-radius: 28px;
  background: #071626;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.hero-visual img {
  width: 100%;
  min-height: 440px;
  display: block;
  object-fit: cover;
  object-position: 58% center;
}

.hero-visual figcaption {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 0.85rem 1rem;
  color: #d9e6f0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(4, 18, 31, 0.78);
  backdrop-filter: blur(12px);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.value-ribbon {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 1rem 0 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.value-ribbon span {
  color: #bfcfdd;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.value-ribbon span:nth-child(2) {
  text-align: center;
}

.value-ribbon span:last-child {
  text-align: right;
}

.section {
  padding: 7rem 0;
}

.section-shell {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.section-intro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 3rem;
}

.section-intro p:last-child {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.capability-card {
  min-height: 390px;
  padding: 2.1rem;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.capability-card:hover {
  position: relative;
  z-index: 2;
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(9, 26, 42, 0.11);
}

.card-index {
  margin-bottom: 0.8rem;
  color: var(--blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.85rem;
  font-weight: 700;
}

.card-status {
  width: fit-content;
  margin-bottom: 4.2rem;
  padding: 0.25rem 0.55rem;
  color: #294052;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f6f9fb;
  font-size: 0.74rem;
  font-weight: 760;
}

.featured-card {
  border-color: #9fbff2;
  box-shadow: 0 18px 44px rgba(18, 100, 232, 0.08);
}

.capability-card p {
  margin: 0 0 1.5rem;
  color: var(--muted);
}

.card-link {
  margin-top: auto;
  color: var(--blue);
  font-weight: 750;
}

.principles {
  color: #fff;
  background: #0e2a43;
}

.principle-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 5rem;
}

.principle-list {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.principle-item {
  padding: 1.5rem;
  background: #0e2a43;
}

.principle-item strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #fff;
  font-size: 1.02rem;
}

.principle-item span {
  color: #c7d6e2;
}

.contact-band {
  background: #dfeafe;
}

.contact-layout {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
}

.contact-layout p {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.08rem;
}

.text-link {
  display: inline-block;
  padding-bottom: 0.15rem;
  color: var(--blue);
  border-bottom: 2px solid currentColor;
  text-decoration: none;
  font-weight: 760;
}

.site-footer {
  padding: 3.5rem 0;
  color: #bfced9;
  background: #071725;
}

.footer-shell {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
}

.footer-title {
  margin: 0 0 0.35rem;
  color: #fff;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.footer-shell p {
  margin: 0;
}

.legal-line {
  margin-top: 1.2rem !important;
  color: #8195a5;
  font-size: 0.85rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 0.7rem 1.4rem;
}

.footer-links a {
  color: #d4e0e8;
  text-decoration: none;
  font-size: 0.9rem;
}

.page-hero {
  padding: 6.5rem 0 5rem;
  color: #fff;
  background: var(--navy);
}

.page-hero .section-shell {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: end;
  gap: 4rem;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.6rem);
}

.page-hero p:last-child {
  max-width: 650px;
  margin: 0;
  color: #ccdae5;
  font-size: 1.15rem;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 5rem;
}

.content-grid aside {
  color: var(--muted);
}

.prose {
  max-width: 760px;
}

.prose h2 {
  margin-top: 3.2rem;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin-top: 2.2rem;
}

.prose p,
.prose li {
  color: #344b5e;
}

.prose ul {
  padding-left: 1.2rem;
}

.notice {
  margin: 2rem 0;
  padding: 1.35rem 1.5rem;
  border-left: 4px solid var(--blue);
  background: var(--soft-blue);
}

.status-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.status-table th,
.status-table td {
  padding: 1rem;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.status-table th {
  background: #edf3f7;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pill {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  color: #124a51;
  background: var(--soft-cyan);
  border: 1px solid #a5e3e8;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-list {
  display: grid;
  gap: 1.5rem;
}

.product-block {
  padding: 2rem;
  border: 1px solid var(--line);
  background: #fff;
}

.product-block p:last-child {
  margin-bottom: 0;
}

.muted-section {
  background: #eef3f8;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 6rem;
  align-items: start;
}

.story-copy {
  max-width: 700px;
}

.story-copy p {
  margin-top: 0;
  margin-bottom: 1.35rem;
  color: #344b5e;
  font-size: 1.13rem;
}

.outcomes {
  color: #fff;
  background: #0c2135;
}

.outcomes .section-intro p:last-child,
.outcomes .outcome-grid p {
  color: #bdccda;
}

.outcome-grid,
.belief-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.outcome-grid article,
.belief-grid article {
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.outcome-grid article > span,
.belief-grid article > span {
  display: block;
  margin-bottom: 4rem;
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.8rem;
  font-weight: 800;
}

.outcome-grid h3,
.belief-grid h3 {
  font-size: 1.45rem;
}

.outcome-grid p,
.belief-grid p {
  margin-bottom: 0;
}

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

.belief-grid article {
  border-color: var(--line);
  background: #fff;
}

.belief-grid article > span {
  color: var(--blue);
}

.belief-grid p {
  color: var(--muted);
}

.company-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 6rem;
  align-items: start;
}

.company-grid h2 {
  margin-top: 1.4rem;
}

.company-grid > div:last-child p {
  margin-top: 0;
  color: #344b5e;
  font-size: 1.08rem;
}

.company-grid .button {
  margin-top: 1rem;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 5rem;
  align-items: end;
}

.cta-panel h2 {
  max-width: 14ch;
}

.cta-panel p:last-child {
  max-width: 700px;
  color: #425a6e;
  font-size: 1.08rem;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.product-section {
  scroll-margin-top: 72px;
  border-bottom: 1px solid var(--line);
}

.alt-product {
  background: #eef3f8;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 6rem;
}

.product-heading {
  position: sticky;
  top: 112px;
  align-self: start;
}

.product-number {
  margin: 3rem 0 0.5rem;
  color: var(--blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-weight: 800;
}

.product-heading h2 {
  margin-bottom: 1rem;
}

.product-lead {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  font-size: 1.15rem;
}

.product-copy > h3 {
  max-width: 18ch;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.product-copy > p {
  color: #344b5e;
  font-size: 1.12rem;
}

.benefit-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.benefit-grid div {
  min-height: 180px;
  padding: 1.4rem;
  background: #fff;
}

.alt-product .benefit-grid div {
  background: #f8fafc;
}

.benefit-grid strong,
.benefit-grid span {
  display: block;
}

.benefit-grid strong {
  margin-bottom: 0.6rem;
  font-size: 1.02rem;
}

.benefit-grid span {
  color: var(--muted);
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-card {
  min-height: 310px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.contact-card h2,
.contact-card h3 {
  margin-bottom: 0.8rem;
}

.contact-card p:not(.eyebrow) {
  color: var(--muted);
}

.contact-card .text-link {
  margin-top: auto;
}

.primary-contact {
  grid-row: span 2;
  min-height: 636px;
  color: #fff;
  border-color: var(--navy);
  background: var(--navy);
}

.primary-contact h2 {
  max-width: 9ch;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
}

.primary-contact p:not(.eyebrow) {
  color: #c4d3df;
  font-size: 1.1rem;
}

.primary-contact .text-link {
  color: var(--cyan);
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .hero-shell,
  .section-intro,
  .principle-grid,
  .page-hero .section-shell,
  .content-grid,
  .story-grid,
  .company-grid,
  .cta-panel,
  .product-layout {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }

  .hero-shell {
    min-height: 0;
    padding-top: 5rem;
  }

  .hero-content {
    max-width: 760px;
  }

  .hero-visual img {
    min-height: 360px;
  }

  .capability-grid {
    grid-template-columns: 1fr;
  }

  .capability-card {
    min-height: 280px;
  }

  .card-index {
    margin-bottom: 0.8rem;
  }

  .card-status {
    margin-bottom: 2.5rem;
  }

  .outcome-grid,
  .belief-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-heading {
    position: static;
  }
}

@media (max-width: 620px) {
  .section {
    padding: 4.5rem 0;
  }

  .hero-shell {
    min-height: auto;
    padding: 4.75rem 0 4rem;
  }

  .hero-visual {
    border-radius: 18px;
  }

  .hero-visual img {
    min-height: 280px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .value-ribbon {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .value-ribbon span,
  .value-ribbon span:nth-child(2),
  .value-ribbon span:last-child {
    text-align: left;
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4.1rem);
  }

  .contact-layout,
  .footer-shell {
    align-items: start;
    grid-template-columns: 1fr;
    display: grid;
  }

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

  .outcome-grid,
  .belief-grid,
  .contact-card-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .primary-contact {
    grid-row: auto;
    min-height: 420px;
  }

  .cta-actions {
    width: 100%;
  }

  .page-hero {
    padding: 4.5rem 0 3.5rem;
  }

  .status-table,
  .status-table tbody,
  .status-table tr,
  .status-table th,
  .status-table td {
    display: block;
  }

  .status-table thead {
    display: none;
  }

  .status-table tr {
    margin-bottom: 1rem;
    border: 1px solid var(--line);
  }

  .status-table td {
    border: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .capability-card {
    transition: none;
  }
}
