:root {
  --ink: #101828;
  --text: #344054;
  --muted: #667085;
  --line: #e4e7ec;
  --soft-line: #eef2f6;
  --paper: #f8fafc;
  --white: #ffffff;
  --navy: #0b1f36;
  --blue: #146ebe;
  --blue-dark: #0b4e8a;
  --teal: #13a6a1;
  --amber: #d99a21;
  --green: #2e7d57;
  --shadow: 0 20px 60px rgba(16, 24, 40, 0.12);
  --soft-shadow: 0 14px 36px rgba(16, 24, 40, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.68;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

canvas {
  display: block;
}

.container,
.nav-wrap {
  width: min(1168px, calc(100% - 36px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(228, 231, 236, 0.88);
  box-shadow: 0 8px 28px rgba(16, 24, 40, 0.06);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--ink);
  font-weight: 900;
}

.brand span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(20, 110, 190, 0.25);
}

.brand strong {
  font-size: 21px;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
  margin: 0 0 0 auto;
  padding: 0;
  list-style: none;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  border-radius: 999px;
  transition: width 180ms ease;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 12px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

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

#heroCanvas,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-shade {
  background:
    radial-gradient(circle at 78% 26%, rgba(19, 166, 161, 0.34), transparent 30%),
    radial-gradient(circle at 48% 86%, rgba(217, 154, 33, 0.17), transparent 26%),
    linear-gradient(90deg, rgba(6, 20, 36, 0.96), rgba(8, 42, 72, 0.82) 55%, rgba(6, 20, 36, 0.48)),
    linear-gradient(0deg, rgba(6, 20, 36, 0.72), transparent 48%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 380px;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 15px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: currentColor;
  border-radius: 999px;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero h1,
.hero h2 {
  color: var(--white);
}

h1 {
  max-width: 850px;
  font-size: clamp(42px, 5.6vw, 72px);
  line-height: 1.02;
  font-weight: 900;
}

h2 {
  font-size: clamp(31px, 3.4vw, 46px);
  line-height: 1.14;
  font-weight: 900;
}

h3 {
  font-size: 21px;
  line-height: 1.25;
  font-weight: 900;
}

.lead {
  max-width: 720px;
  margin: 24px 0 0;
  font-size: 20px;
  line-height: 1.58;
  color: rgba(255, 255, 255, 0.84);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--teal));
  box-shadow: 0 14px 30px rgba(20, 110, 190, 0.28);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.72);
}

.profile-card {
  position: relative;
  padding: 34px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.profile-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--amber));
}

.profile-avatar {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  margin-bottom: 23px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--teal));
  font-size: 29px;
  font-weight: 900;
  border-radius: 24px;
  box-shadow: 0 16px 32px rgba(20, 110, 190, 0.24);
}

.profile-card h2 {
  font-size: 29px;
}

.profile-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.profile-card ul {
  display: grid;
  gap: 13px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.profile-card li {
  display: flex;
  gap: 11px;
  align-items: center;
  color: var(--ink);
  font-weight: 800;
}

.profile-card i {
  color: var(--blue);
}

.section-pad,
.section-band {
  padding: 88px 0;
}

.section-band {
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0), rgba(248, 250, 252, 1)),
    var(--paper);
}

.section-head {
  max-width: 790px;
  margin-bottom: 38px;
}

.section-head h2 {
  margin-bottom: 14px;
}

.section-head p {
  margin-top: 0;
}

.section-head p,
.capability-copy p,
.contact p,
.delivery-grid p,
.timeline p,
.module-grid p,
.cert-list li,
.barcode-grid p,
.barcode-detail li,
.barcode-cards p {
  color: var(--muted);
}

.metrics {
  padding: 40px 0;
  background: var(--white);
}

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

.metrics article {
  display: grid;
  align-content: center;
  min-height: 142px;
  padding: 26px;
  text-align: center;
  border: 1px solid var(--soft-line);
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--soft-shadow);
}

.metrics strong {
  display: block;
  color: var(--blue);
  font-size: 42px;
  line-height: 1;
}

.metrics span {
  display: block;
  margin-top: 9px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

.module-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -10px 0 30px;
}

.module-summary span {
  padding: 10px 14px;
  color: var(--blue-dark);
  background: #eef7ff;
  border: 1px solid #cde7ff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
}

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

.module-grid article,
.barcode-detail,
.barcode-cards article,
.timeline article,
.cert-list li,
.contact-card {
  border: 1px solid var(--soft-line);
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--soft-shadow);
}

.module-grid article {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 232px;
  padding: 27px;
  overflow: hidden;
}

.module-grid article::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -42px;
  width: 118px;
  height: 118px;
  background: rgba(19, 166, 161, 0.08);
  border-radius: 50%;
}

.module-grid span {
  display: block;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

.module-grid strong {
  display: block;
  margin: 12px 0;
  color: var(--blue);
  font-size: 42px;
  line-height: 1;
}

.module-grid p {
  margin-bottom: 0;
}

.capability-grid,
.cert-grid,
.contact-grid,
.barcode-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 58px;
  align-items: start;
}

.capability-copy {
  padding: 8px 0;
}

.capability-copy p {
  margin-top: 0;
  font-size: 17px;
}

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

.delivery-grid article {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 286px;
  padding: 31px;
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(19, 166, 161, 0.28), transparent 34%),
    linear-gradient(145deg, var(--navy), var(--blue-dark));
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.delivery-grid i {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  color: var(--ink);
  background: var(--amber);
  border-radius: 17px;
  font-size: 26px;
}

.delivery-grid h3 {
  color: var(--white);
}

.delivery-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.barcode-grid {
  align-items: center;
}

.barcode-detail {
  padding: 30px;
}

.barcode-detail ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.barcode-detail li {
  position: relative;
  padding-left: 30px;
  font-weight: 800;
}

.barcode-detail li::before,
.cert-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 13px;
  height: 13px;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  border-radius: 4px;
}

.barcode-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.barcode-cards article {
  display: flex;
  flex-direction: column;
  min-height: 214px;
  padding: 26px;
}

.barcode-cards h3 {
  color: var(--blue-dark);
}

.barcode-cards p {
  margin-bottom: 0;
}

.timeline {
  display: grid;
  gap: 20px;
}

.timeline article {
  position: relative;
  display: grid;
  gap: 9px;
  padding: 30px 30px 30px 36px;
  overflow: hidden;
}

.timeline article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(180deg, var(--blue), var(--teal), var(--amber));
}

.timeline time {
  display: block;
  color: var(--blue);
  font-weight: 900;
}

.timeline p {
  margin: 0;
}

.cert-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cert-list li {
  position: relative;
  padding: 17px 20px 17px 50px;
  color: var(--text);
  font-weight: 800;
}

.cert-list li::before {
  left: 22px;
  top: 24px;
}

.contact {
  color: var(--white);
  background:
    radial-gradient(circle at 18% 12%, rgba(19, 166, 161, 0.18), transparent 28%),
    linear-gradient(135deg, var(--navy), #071422);
}

.contact h2 {
  color: var(--white);
}

.contact .eyebrow,
.contact p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-card {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 32px;
  color: var(--ink);
}

.contact-card a,
.contact-card span {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-weight: 900;
}

.contact-card i {
  color: var(--blue);
}

.contact-card .btn {
  margin-top: 12px;
  color: var(--white);
}

.footer {
  padding: 30px 0;
  color: var(--white);
  text-align: center;
  background: #071422;
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 960px) {
  .nav-wrap {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding-top: 12px;
    border-top: 1px solid var(--line);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 10px 0;
  }

  .hero-grid,
  .capability-grid,
  .cert-grid,
  .contact-grid,
  .barcode-grid {
    grid-template-columns: 1fr;
  }

  .profile-card {
    max-width: 480px;
  }

  .metrics-grid,
  .module-grid,
  .delivery-grid,
  .barcode-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid {
    padding: 76px 0;
  }

  .lead {
    font-size: 18px;
  }

  .section-pad,
  .section-band {
    padding: 62px 0;
  }

  .metrics-grid,
  .module-grid,
  .delivery-grid,
  .barcode-cards {
    grid-template-columns: 1fr;
  }

  .brand strong {
    font-size: 18px;
  }

  .profile-card,
  .delivery-grid article,
  .module-grid article,
  .barcode-detail,
  .barcode-cards article,
  .timeline article,
  .cert-list li,
  .contact-card {
    border-radius: 16px;
  }
}
