:root {
  color-scheme: light;
  --navy-950: #041321;
  --navy-900: #071b2f;
  --navy-800: #0c2b46;
  --navy-700: #16415f;
  --cyan-400: #5ee7d5;
  --cyan-500: #32cdbf;
  --sky-100: #dff7f6;
  --ink: #10283d;
  --muted: #5d7182;
  --surface: #ffffff;
  --canvas: #f4f8fb;
  --line: #dce7ee;
  --radius-lg: 1.75rem;
  --radius-md: 1.125rem;
  --shadow: 0 1.5rem 4rem rgba(4, 19, 33, 0.13);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 1.5rem;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--canvas);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(94, 231, 213, 0.2);
}

a:focus-visible {
  outline: 0.1875rem solid var(--cyan-400);
  outline-offset: 0.25rem;
  border-radius: 0.25rem;
}

img,
svg {
  display: block;
}

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

[id] {
  scroll-margin-top: 1.5rem;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.container {
  width: min(100% - 3rem, 73.5rem);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  max-width: calc(100vw - 2rem);
  padding: 0.75rem 1rem;
  transform: translateY(-200%);
  border-radius: 0.5rem;
  background: var(--surface);
  color: var(--navy-950);
  font-weight: 700;
}

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

.site-header {
  position: relative;
  z-index: 2;
  background: var(--navy-950);
  color: #ffffff;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 2rem;
  height: 2rem;
}

.brand-mark rect {
  fill: var(--cyan-400);
}

.brand-mark path {
  fill: none;
  stroke: var(--navy-950);
  stroke-width: 3;
  stroke-linecap: round;
}

.brand:hover {
  color: var(--cyan-400);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  color: #c7d7e2;
  font-size: 0.9375rem;
  font-weight: 650;
}

.site-nav a:hover {
  color: var(--cyan-400);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 5.5rem;
  background:
    radial-gradient(circle at 8% 20%, rgba(50, 205, 191, 0.17), transparent 26rem),
    linear-gradient(135deg, var(--navy-950), var(--navy-900) 58%, #0a2940);
  color: #ffffff;
}

.hero::before {
  position: absolute;
  inset: auto auto -18rem -14rem;
  width: 36rem;
  height: 36rem;
  border: 1px solid rgba(94, 231, 213, 0.14);
  border-radius: 50%;
  box-shadow:
    0 0 0 4rem rgba(94, 231, 213, 0.035),
    0 0 0 8rem rgba(94, 231, 213, 0.025);
  content: "";
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(26rem, 0.88fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 6.5rem);
}

.hero-copy {
  max-width: 42rem;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1.5rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(94, 231, 213, 0.3);
  border-radius: 999px;
  background: rgba(94, 231, 213, 0.08);
  color: #baf7ee;
  font-size: 0.875rem;
  font-weight: 700;
}

.status span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--cyan-400);
  box-shadow: 0 0 0 0.25rem rgba(94, 231, 213, 0.12);
}

.hero h1 {
  max-width: 11ch;
  margin-bottom: 1.75rem;
  font-size: clamp(3rem, 6vw, 5.3rem);
  font-weight: 780;
}

@media (min-width: 62.001rem) {
  .hero-title-word {
    white-space: nowrap;
  }
}

.hero-lead {
  max-width: 39rem;
  margin-bottom: 1.125rem;
  color: #dbe7ef;
  font-size: clamp(1.125rem, 2vw, 1.3rem);
  line-height: 1.65;
}

.hero-note {
  max-width: 36rem;
  margin-bottom: 0;
  color: #91a9ba;
  font-size: 1rem;
}

.hero-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 19, 33, 0.85), transparent 42%);
  content: "";
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
}

.hero-visual figcaption {
  position: absolute;
  z-index: 1;
  right: 1.5rem;
  bottom: 1.5rem;
  left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero-visual figcaption span {
  color: var(--cyan-400);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-visual figcaption strong {
  font-size: 1.125rem;
  font-weight: 700;
}

.capabilities {
  padding: 6.5rem 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.75fr);
  align-items: end;
  gap: 2rem 5rem;
  margin-bottom: 3rem;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -1rem;
}

.eyebrow {
  color: #087d77;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading h2,
.about-copy h2 {
  margin-bottom: 0;
  color: var(--navy-900);
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.section-heading > p:last-child {
  margin-bottom: 0.25rem;
  color: var(--muted);
  font-size: 1.0625rem;
}

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

.feature-card {
  min-width: 0;
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: 0 0.5rem 1.6rem rgba(16, 40, 61, 0.045);
}

.feature-card:hover {
  border-color: #9bded9;
  box-shadow: 0 0.75rem 2rem rgba(16, 40, 61, 0.075);
}

.feature-card svg {
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 2.75rem;
  padding: 0.625rem;
  border-radius: 0.75rem;
  background: var(--sky-100);
  fill: none;
  stroke: #087d77;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  margin-bottom: 0.75rem;
  color: var(--navy-900);
  font-size: 1.125rem;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9375rem;
}

.about {
  padding: 0 0 6.5rem;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(20rem, 0.8fr);
  gap: 1rem;
}

.about-copy,
.contact-card {
  border-radius: var(--radius-lg);
}

.about-copy {
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--navy-900);
  color: #dbe7ef;
}

.about-copy .eyebrow {
  color: var(--cyan-400);
}

.about-copy h2 {
  max-width: 14ch;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.about-copy p:last-child {
  max-width: 41rem;
  margin-bottom: 0;
  font-size: 1.0625rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: clamp(2rem, 5vw, 3.5rem);
  border: 1px solid var(--line);
  background: var(--surface);
}

.contact-card svg {
  flex: 0 0 auto;
  width: 3rem;
  height: 3rem;
  padding: 0.7rem;
  border-radius: 0.875rem;
  background: var(--sky-100);
  fill: none;
  stroke: #087d77;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card h2 {
  margin-bottom: 0.65rem;
  color: var(--navy-900);
  font-size: 1.5rem;
}

.contact-card > div {
  min-width: 0;
}

.contact-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.site-footer {
  padding: 1.75rem 0;
  border-top: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  font-size: 0.875rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
}

.footer-inner p {
  margin-bottom: 0;
}

.footer-inner strong {
  color: var(--navy-900);
}

@media (max-width: 62rem) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.8fr);
    gap: 3rem;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 7vw, 4.25rem);
  }

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

@media (max-width: 48rem) {
  .container {
    width: min(100% - 2rem, 73.5rem);
  }

  .header-inner {
    min-height: 4.5rem;
  }

  .site-nav {
    gap: 1rem;
    font-size: 0.875rem;
  }

  .hero {
    padding: 2.75rem 0 4rem;
  }

  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: none;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .hero-visual {
    aspect-ratio: 16 / 10;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .section-heading .eyebrow {
    margin-bottom: -0.5rem;
  }

  .capabilities {
    padding: 5rem 0;
  }

  .about {
    padding-bottom: 5rem;
  }
}

@media (max-width: 34rem) {
  .site-nav {
    display: none;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 13vw, 3.4rem);
  }

  .hero-lead {
    font-size: 1.0625rem;
  }

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

  .feature-card svg {
    margin-bottom: 2rem;
  }

  .contact-card {
    flex-direction: column;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
