:root {
  --ink: #10222d;
  --graphite: #27343c;
  --muted: #61727b;
  --line: #dbe4e4;
  --surface: #f7faf8;
  --white: #ffffff;
  --deep: #07141b;
  --deep-2: #0d2530;
  --emerald: #176c5b;
  --teal: #37c8c3;
  --sky: #8ec9da;
  --gold: #c99a3f;
  --shadow: 0 24px 60px rgba(9, 20, 24, 0.18);
  --radius: 8px;
}

* {
  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.55;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.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;
}

.mobile-only {
  display: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 18px 56px;
  color: var(--white);
  background: rgba(7, 20, 27, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 180ms ease, min-height 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(7, 20, 27, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: grid;
  gap: 1px;
  max-width: 320px;
}

.brand-name {
  color: var(--white);
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.brand-subtitle {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.67rem;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.77rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.86);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--white);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 740px;
  color: var(--white);
  overflow: hidden;
}

.hero-image,
.hero-overlay,
.contact-image,
.contact-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image,
.contact-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 14, 20, 0.93) 0%, rgba(5, 14, 20, 0.72) 36%, rgba(5, 14, 20, 0.28) 68%, rgba(5, 14, 20, 0.48) 100%),
    linear-gradient(180deg, rgba(5, 14, 20, 0.35), rgba(5, 14, 20, 0.84));
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 740px;
  max-width: 1220px;
  margin: 0 auto;
  padding: 150px 32px 96px;
}

.eyebrow,
.section-kicker,
.mission-label {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: 5.25rem;
  line-height: 0.98;
  font-weight: 900;
}

.hero h1 .h-line {
  display: block;
}

.hero h1 .h-accent {
  color: var(--teal);
}

.hero-copy {
  max-width: 540px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: var(--deep);
  background: var(--teal);
  border: 1px solid var(--teal);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.proof-band {
  position: relative;
  z-index: 2;
  margin-top: -1px;
  color: var(--white);
  background: linear-gradient(90deg, #0c242e, #12343d);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1220px;
  margin: 0 auto;
  padding: 26px 32px;
}

.proof-item {
  display: grid;
  gap: 2px;
  min-height: 72px;
  padding: 0 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.proof-item:first-child {
  border-left: 0;
  padding-left: 0;
}

.proof-item strong {
  color: var(--teal);
  font-size: 1.6rem;
  line-height: 1;
}

.proof-item span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.section {
  padding: 92px 0;
}

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

.section-inner {
  width: min(1220px, calc(100% - 64px));
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 74px;
  align-items: center;
}

.section-copy h2,
.section-heading h2,
.industries-copy h2,
.contact-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: 2.65rem;
  line-height: 1.12;
  font-weight: 900;
}

.section-copy p,
.section-heading p:last-child,
.industries-copy p,
.contact-copy p,
.service-card p,
.why-item p,
.mission-block p,
.mission-block li {
  color: var(--muted);
  font-size: 1rem;
}

.section-copy > p:not(.section-kicker),
.industries-copy > p {
  max-width: 650px;
  margin: 22px 0 0;
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.about-points span,
.industry-list span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--graphite);
  font-weight: 800;
}

.about-points span {
  padding: 9px 12px;
  font-size: 0.84rem;
}

.image-panel {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 3 / 2;
  background: #dfe8e7;
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mission-band {
  padding: 86px 0;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(7, 20, 27, 0.96), rgba(9, 31, 39, 0.98)),
    var(--deep);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading-centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.mission-band .section-heading h2,
.contact-copy h2 {
  color: var(--white);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
}

.mission-block {
  padding: 10px 0 10px 42px;
  border-left: 2px solid rgba(55, 200, 195, 0.58);
}

.mission-block h3 {
  max-width: 520px;
  margin: 0;
  color: var(--white);
  font-size: 1.55rem;
  line-height: 1.25;
}

.mission-block p,
.mission-block li {
  color: rgba(255, 255, 255, 0.76);
}

.mission-block ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding-left: 18px;
}

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

.service-card,
.why-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-card {
  min-height: 286px;
  padding: 28px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(55, 200, 195, 0.55);
  box-shadow: 0 18px 42px rgba(14, 46, 51, 0.12);
}

.service-number {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--emerald);
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 900;
}

.service-card h3,
.why-item h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1.28;
}

.service-card p,
.why-item p {
  margin: 14px 0 0;
}

.industries-section {
  padding: 92px 0;
  color: var(--white);
  background: var(--deep-2);
}

.industries-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 52px;
  align-items: center;
}

.industries-copy h2,
.industries-copy p {
  color: var(--white);
}

.industries-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.industry-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
}

.industry-list span {
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
  font-size: 0.82rem;
}

.industry-image {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  aspect-ratio: 16 / 9;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
}

.industry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.why-item {
  min-height: 218px;
  padding: 28px;
}

.compliance-note {
  margin: 34px auto 0;
  max-width: 850px;
  color: var(--emerald);
  font-weight: 900;
  text-align: center;
}

.contact-section {
  position: relative;
  min-height: 630px;
  padding: 92px 0;
  color: var(--white);
  overflow: hidden;
}

.contact-overlay {
  background:
    linear-gradient(90deg, rgba(6, 18, 25, 0.96) 0%, rgba(7, 24, 31, 0.88) 48%, rgba(7, 24, 31, 0.54) 100%),
    linear-gradient(180deg, rgba(7, 20, 27, 0.16), rgba(7, 20, 27, 0.9));
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1fr);
  gap: 64px;
  align-items: center;
}

.contact-copy p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.76);
}

address {
  display: grid;
  gap: 10px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
}

address span:first-child {
  color: var(--white);
  font-weight: 900;
}

address a:hover {
  color: var(--teal);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  background: rgba(5, 18, 24, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 160ms ease, background 160ms ease;
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--teal);
}

.form-wide {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--teal);
  font-size: 0.86rem;
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 56px;
  color: rgba(255, 255, 255, 0.66);
  background: #050d11;
  font-size: 0.86rem;
}

.site-footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .site-header {
    padding-right: 32px;
    padding-left: 32px;
  }

  .site-nav {
    gap: 16px;
  }

  .hero h1 {
    font-size: 4.35rem;
  }

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

  .image-panel,
  .industry-image {
    max-width: 760px;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
    position: fixed;
    top: 13px;
    right: 18px;
    z-index: 25;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 0;
    padding: 10px;
    background: rgba(7, 20, 27, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 15px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav a::after {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: 700px;
  }

  .hero h1 {
    max-width: 620px;
    font-size: 3.55rem;
  }

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

  .proof-item:nth-child(3) {
    border-left: 0;
    padding-left: 0;
  }

  .proof-item {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 18px;
  }

  .proof-item:nth-child(1),
  .proof-item:nth-child(2) {
    border-top: 0;
    padding-top: 0;
  }

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

  .site-footer {
    flex-direction: column;
    padding-right: 32px;
    padding-left: 32px;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 70px;
    padding: 12px 18px;
  }

  .nav-toggle {
    right: auto;
    left: min(326px, calc(100% - 62px));
  }

  .brand {
    max-width: 230px;
  }

  .brand-name {
    font-size: 1.22rem;
  }

  .brand-subtitle {
    font-size: 0.56rem;
  }

  .section-inner {
    width: min(100% - 36px, 1220px);
  }

  .hero,
  .hero-inner {
    min-height: 680px;
  }

  .hero-inner {
    padding: 118px 18px 64px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 14, 20, 0.96), rgba(5, 14, 20, 0.74)),
      linear-gradient(180deg, rgba(5, 14, 20, 0.18), rgba(5, 14, 20, 0.9));
  }

  .hero h1 {
    max-width: 100%;
    font-size: 2.42rem;
    line-height: 1.03;
  }

  .mobile-only {
    display: block;
  }

  .hero-copy {
    max-width: 330px;
    font-size: 1rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .section,
  .mission-band,
  .industries-section,
  .contact-section {
    padding: 68px 0;
  }

  .section-copy h2,
  .section-heading h2,
  .industries-copy h2,
  .contact-copy h2 {
    font-size: 2.05rem;
  }

  .proof-grid,
  .service-grid,
  .why-grid,
  .industry-list,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .proof-grid {
    padding: 24px 18px;
  }

  .proof-item,
  .proof-item:first-child,
  .proof-item:nth-child(3) {
    min-height: auto;
    padding: 16px 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .proof-item:first-child {
    border-top: 0;
    padding-top: 0;
  }

  .image-panel {
    aspect-ratio: 4 / 3;
  }

  .mission-block {
    padding-left: 24px;
  }

  .service-card,
  .why-item,
  .contact-form {
    padding: 22px;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 2.32rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
