:root {
  --ink: #111827;
  --muted: #5b6472;
  --line: #dce2ea;
  --surface: #ffffff;
  --soft: #f4f7fb;
  --navy: #0b1320;
  --steel: #24364b;
  --teal: #168a7a;
  --teal-bright: #2dd4bf;
  --amber: #c47f2c;
  --shadow: 0 18px 40px rgba(17, 24, 39, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--surface);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
}

.sr-only {
  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: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
}

.brand-name,
.footer-brand {
  display: block;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.1;
}

.brand-line {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  border-radius: 6px;
  color: var(--steel);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 10px 12px;
}

.site-nav a:hover,
.site-nav a.active {
  background: var(--soft);
  color: var(--teal);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
}

.nav-toggle-line {
  display: block;
  width: 19px;
  height: 2px;
  background: var(--navy);
}

main {
  overflow: hidden;
}

.section-band,
.content-section,
.split-section,
.process-section,
.operations-layout,
.about-section,
.contact-section,
.page-hero,
.cta-band {
  padding-left: clamp(20px, 5vw, 72px);
  padding-right: clamp(20px, 5vw, 72px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  min-height: calc(100vh - 80px);
  padding-top: clamp(48px, 8vw, 96px);
  padding-bottom: clamp(56px, 7vw, 88px);
  background:
    linear-gradient(120deg, rgba(11, 19, 32, 0.96), rgba(36, 54, 75, 0.92)),
    radial-gradient(circle at 70% 20%, rgba(45, 212, 191, 0.2), transparent 30%);
  color: #f8fafc;
}

.hero h1,
.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 5.9rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-text,
.page-hero p {
  max-width: 760px;
  color: rgba(248, 250, 252, 0.78);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero .eyebrow,
.cta-band .eyebrow {
  color: var(--teal-bright);
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 6px;
  font-weight: 800;
  padding: 12px 18px;
  transition: transform 160ms ease, background 160ms ease;
}

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

.button.primary {
  background: var(--teal-bright);
  color: var(--navy);
}

.button.secondary {
  border: 1px solid rgba(248, 250, 252, 0.34);
  color: #f8fafc;
}

.button.light {
  background: #f8fafc;
  color: var(--navy);
}

.operations-panel {
  border: 1px solid rgba(248, 250, 252, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel-top {
  display: flex;
  gap: 8px;
  padding: 16px;
  border-bottom: 1px solid rgba(248, 250, 252, 0.16);
}

.panel-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(248, 250, 252, 0.7);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(248, 250, 252, 0.14);
}

.metric-grid article {
  min-height: 150px;
  padding: 24px;
  background: rgba(11, 19, 32, 0.62);
}

.metric-grid strong {
  display: block;
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.metric-grid span {
  color: rgba(248, 250, 252, 0.72);
}

.content-section {
  padding-top: clamp(64px, 9vw, 112px);
  padding-bottom: clamp(64px, 9vw, 112px);
}

.content-section.compact {
  padding-top: clamp(40px, 6vw, 72px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading h2,
.split-section h2,
.process-section h2,
.operations-layout h2,
.about-section h2,
.contact-card h2,
.contact-notes h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-heading p,
.split-section p,
.operations-layout p,
.about-copy p,
.contact-card p,
.contact-notes {
  color: var(--muted);
}

.card-grid {
  display: grid;
  gap: 18px;
}

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

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

.service-card,
.service-list article,
.process-grid article,
.contact-card,
.contact-notes {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: clamp(22px, 3vw, 32px);
}

.service-card h2,
.service-card h3,
.service-list h2,
.process-grid h3 {
  margin: 0 0 12px;
  color: var(--navy);
  line-height: 1.12;
}

.service-card p,
.service-list p,
.process-grid p {
  margin: 0;
  color: var(--muted);
}

.card-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.split-section,
.about-section,
.contact-section,
.operations-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 6vw, 76px);
  padding-top: clamp(56px, 8vw, 96px);
  padding-bottom: clamp(56px, 8vw, 96px);
  background: var(--soft);
}

.split-section.muted {
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.check-list {
  display: grid;
  gap: 14px;
}

.check-list p {
  margin: 0;
  border-left: 4px solid var(--teal);
  background: var(--surface);
  padding: 18px 20px;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: clamp(44px, 7vw, 72px);
  padding-bottom: clamp(44px, 7vw, 72px);
  background: var(--navy);
  color: #f8fafc;
}

.cta-band h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.page-hero {
  padding-top: clamp(56px, 8vw, 104px);
  padding-bottom: clamp(48px, 7vw, 88px);
  background: var(--navy);
  color: #f8fafc;
}

.page-hero h1 {
  font-size: clamp(2.3rem, 5vw, 4.8rem);
}

.service-list {
  display: grid;
  gap: 16px;
}

.process-section {
  padding-top: clamp(56px, 8vw, 96px);
  padding-bottom: clamp(56px, 8vw, 96px);
  background: var(--soft);
}

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

.process-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--navy);
  color: #ffffff;
  font-weight: 900;
}

.flow-map {
  display: grid;
  grid-template-columns: repeat(5, minmax(100px, 1fr));
  gap: 10px;
  align-self: center;
}

.flow-map div {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--navy);
  font-weight: 900;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}

.pill-list span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
  color: var(--steel);
  font-weight: 800;
  padding: 10px 14px;
}

.about-copy {
  display: grid;
  gap: 18px;
}

.about-copy p {
  margin: 0;
}

.contact-section {
  background: #ffffff;
}

.email-link {
  display: inline-block;
  margin: 8px 0 18px;
  color: var(--teal);
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  font-weight: 900;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.contact-notes ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.contact-notes li + li {
  margin-top: 10px;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: 34px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #ffffff;
}

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

.footer-links {
  display: grid;
  gap: 8px;
  color: var(--muted);
  text-align: right;
}

.footer-links a {
  color: var(--teal);
  font-weight: 800;
}

@media (max-width: 980px) {
  .hero,
  .split-section,
  .about-section,
  .contact-section,
  .operations-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

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

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
  }

  .brand {
    min-width: 0;
  }

  .brand-line {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    padding: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .hero h1,
  .page-hero h1 {
    line-height: 1.03;
  }

  .metric-grid,
  .card-grid.three,
  .card-grid.two,
  .process-grid,
  .flow-map {
    grid-template-columns: 1fr;
  }

  .metric-grid article {
    min-height: 112px;
  }

  .cta-band,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    text-align: left;
  }
}
