:root {
  color-scheme: light;
  --ink: #182027;
  --muted: #61707c;
  --line: #d8e0e6;
  --surface: #f7f9fa;
  --panel: #ffffff;
  --blue: #195ea8;
  --blue-dark: #0e3f73;
  --amber: #d58b17;
  --teal: #177c7a;
  --shadow: 0 18px 45px rgba(18, 32, 45, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--surface);
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: #fff;
  background: rgba(15, 27, 38, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

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

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  padding: 4px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  letter-spacing: 0;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

nav a {
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

nav a:hover,
nav a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: #111b24;
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 18, 27, 0.91) 0%, rgba(9, 18, 27, 0.67) 44%, rgba(9, 18, 27, 0.18) 100%),
    linear-gradient(0deg, rgba(9, 18, 27, 0.92), rgba(9, 18, 27, 0.05) 58%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin: 0 0 clamp(60px, 12vh, 130px) clamp(18px, 7vw, 92px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(44px, 8vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.hero-copy {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

.hero-actions,
.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--blue);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--blue-dark);
}

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

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.metrics article {
  min-height: 132px;
  padding: 28px clamp(18px, 3vw, 36px);
  background: #fff;
}

.metrics strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-dark);
  font-size: clamp(28px, 4vw, 42px);
}

.metrics span,
.capability p,
.quality-copy p,
.rfq-panel p,
.summary p,
footer {
  color: var(--muted);
  line-height: 1.6;
}

.section,
.inventory-section,
.rfq-section,
.contact-section {
  padding: clamp(56px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  align-items: end;
  margin-bottom: 30px;
}

.section-heading > p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.section-heading.compact {
  display: block;
}

.company-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 28px;
  align-items: stretch;
}

.company-grid img {
  display: block;
  width: 100%;
  min-height: 440px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.company-grid div {
  display: grid;
  align-content: center;
  padding: clamp(24px, 4vw, 44px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.company-grid p {
  color: var(--muted);
  line-height: 1.65;
}

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

.capability {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(18, 32, 45, 0.06);
}

.capability img {
  display: block;
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
}

.capability div {
  padding: 22px;
}

.inventory-section {
  color: #fff;
  background: #142332;
}

.inventory-section h2 {
  color: #fff;
}

.inventory-table {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
}

.table-row {
  display: grid;
  grid-template-columns: 0.8fr 1.5fr 1.35fr;
  gap: 16px;
  padding: 18px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.table-row:first-child {
  border-top: 0;
}

.table-row span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.table-head {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.quality {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
  background: #fff;
}

.team-section {
  background: #fff;
}

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

.team-card {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 22px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.team-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.team-card div {
  align-self: center;
  padding: 24px 24px 24px 0;
}

.team-card p {
  color: var(--muted);
  line-height: 1.6;
}

.team-card .role {
  margin-bottom: 12px;
  color: var(--blue-dark);
  font-weight: 700;
}

.timeline {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.timeline li {
  position: relative;
  min-height: 102px;
  padding: 24px 24px 24px 76px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  counter-increment: step;
}

.timeline li::before {
  content: counter(step);
  position: absolute;
  left: 22px;
  top: 24px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  font-weight: 700;
  background: var(--teal);
}

.timeline strong {
  display: block;
  margin-bottom: 6px;
}

.timeline span {
  color: var(--muted);
  line-height: 1.55;
}

.rfq-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 20px;
  align-items: start;
}

.rfq-panel,
.summary {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.rfq-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(24px, 5vw, 64px);
  padding: clamp(24px, 5vw, 54px);
}

form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: #31414d;
  font-size: 13px;
  font-weight: 700;
}

input,
select {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--ink);
  font: inherit;
  border: 1px solid #bfcbd3;
  border-radius: 4px;
  background: #fff;
}

input:focus,
select:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(25, 94, 168, 0.14);
}

.form-grid label {
  flex: 1 1 190px;
}

.summary {
  position: sticky;
  top: 94px;
  min-height: 260px;
  padding: 28px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
  gap: clamp(24px, 6vw, 80px);
  align-items: center;
  color: #fff;
  background: #102033;
}

.contact-section h2 {
  color: #fff;
}

.contact-section p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.65;
}

address {
  display: grid;
  gap: 12px;
  padding: 28px;
  font-style: normal;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
}

address a,
address span {
  overflow-wrap: anywhere;
}

address a {
  color: #fff;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
}

address span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.status-light {
  display: block;
  width: 12px;
  height: 12px;
  margin-bottom: 24px;
  background: var(--amber);
  box-shadow: 0 0 0 6px rgba(213, 139, 23, 0.14);
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 28px clamp(18px, 5vw, 72px);
  background: #fff;
  border-top: 1px solid var(--line);
}

footer a {
  color: var(--blue-dark);
  font-weight: 700;
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    margin-top: 180px;
  }

  .metrics,
  .capability-grid,
  .company-grid,
  .quality,
  .rfq-section,
  .rfq-panel,
  .contact-section,
  .team-grid,
  .team-card {
    grid-template-columns: 1fr;
  }

  .team-card div {
    padding: 0 24px 24px;
  }

  .section-heading {
    display: block;
  }

  .summary {
    position: static;
  }
}

@media (max-width: 620px) {
  .brand {
    min-width: 0;
  }

  nav a {
    padding: 8px 6px;
    font-size: 13px;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin-left: 16px;
  }

  h1 {
    font-size: clamp(40px, 14vw, 62px);
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }

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

  .metrics article {
    min-height: 118px;
  }

  .table-row,
  .table-head {
    grid-template-columns: 1fr;
  }

  .table-head {
    display: none;
  }
}
