:root {
  --ink: #071d49;
  --muted: #607090;
  --paper: #f7faf8;
  --white: #ffffff;
  --teal: #00b9bf;
  --mint: #00f0d8;
  --gold: #e6a018;
  --coral: #dd6554;
  --line: rgba(7, 29, 73, 0.14);
  --shadow: 0 18px 50px rgba(7, 29, 73, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(7, 19, 26, 0.78), rgba(7, 19, 26, 0));
}

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

.brand-logo {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  object-fit: contain;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(12px, 2.4vw, 30px);
  font-size: 0.9rem;
  font-weight: 700;
}

nav a {
  color: rgba(255, 255, 255, 0.84);
}

nav a:hover {
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: #07131a;
  padding: 124px clamp(20px, 6vw, 86px) 92px;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.96;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(0deg, var(--paper), rgba(247, 250, 248, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(3.25rem, 8vw, 7.6rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 700px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
}

.button.primary {
  background: var(--mint);
  color: var(--ink);
}

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

.button.dark {
  background: var(--ink);
  color: var(--white);
}

.hero-strip {
  position: absolute;
  z-index: 2;
  right: clamp(20px, 6vw, 86px);
  bottom: 30px;
  display: flex;
  max-width: min(760px, calc(100% - 40px));
  flex-wrap: wrap;
  gap: 10px;
  color: #dffcf5;
}

.hero-strip span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(5, 18, 24, 0.5);
  font-size: 0.85rem;
  font-weight: 700;
}

section {
  padding: clamp(64px, 9vw, 118px) clamp(20px, 6vw, 86px);
}

.section-band {
  background: var(--white);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: end;
}

.intro p:last-child {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.section-heading {
  max-width: 870px;
  margin-bottom: 36px;
}

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

.service-grid article {
  min-height: 280px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(13, 37, 44, 0.06);
}

.service-grid p,
.timeline span,
.career-copy p,
.responsibilities,
.contact p,
footer {
  color: var(--muted);
}

.icon {
  position: relative;
  display: block;
  width: 46px;
  height: 46px;
  margin-bottom: 26px;
  border-radius: 50%;
  background: #e9f7f3;
}

.icon::before,
.icon::after {
  content: "";
  position: absolute;
}

.icon.cable::before {
  inset: 21px 7px;
  height: 4px;
  background: var(--teal);
}

.icon.cable::after {
  width: 10px;
  height: 10px;
  left: 18px;
  top: 18px;
  border-radius: 50%;
  background: var(--gold);
}

.icon.splice::before {
  width: 28px;
  height: 4px;
  left: 9px;
  top: 21px;
  background: var(--coral);
  transform: rotate(-28deg);
}

.icon.splice::after {
  width: 28px;
  height: 4px;
  left: 9px;
  top: 21px;
  background: var(--teal);
  transform: rotate(28deg);
}

.icon.test::before {
  width: 24px;
  height: 24px;
  left: 11px;
  top: 11px;
  border: 3px solid var(--teal);
  border-radius: 50%;
}

.icon.test::after {
  width: 14px;
  height: 3px;
  right: 6px;
  bottom: 9px;
  background: var(--gold);
  transform: rotate(42deg);
}

.icon.network::before {
  width: 8px;
  height: 8px;
  left: 9px;
  top: 19px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 14px -10px 0 var(--gold), 24px 8px 0 var(--coral);
}

.icon.network::after {
  width: 28px;
  height: 20px;
  left: 9px;
  top: 13px;
  border-top: 3px solid rgba(15, 139, 130, 0.7);
  border-bottom: 3px solid rgba(15, 139, 130, 0.7);
  transform: skewY(-25deg);
}

.operations-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
}

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

.timeline li {
  position: relative;
  min-height: 92px;
  padding: 0 0 0 76px;
  counter-increment: step;
}

.timeline li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
}

.timeline strong,
.timeline span {
  display: block;
}

.timeline strong {
  font-size: 1.12rem;
}

.stat-panel {
  display: grid;
  gap: 14px;
}

.stat-panel div {
  padding: 24px;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
}

.stat-panel div:nth-child(2) {
  background: var(--teal);
}

.stat-panel div:nth-child(3) {
  background: var(--gold);
  color: var(--ink);
}

.stat-panel strong,
.stat-panel span {
  display: block;
}

.stat-panel strong {
  font-size: 2.2rem;
  line-height: 1;
}

.stat-panel span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
}

.stat-panel div:nth-child(3) span {
  color: rgba(7, 29, 73, 0.72);
}

.careers {
  background: #eef5f2;
}

.job-advert {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.job-summary p {
  margin: 0 0 24px;
  font-size: 1.08rem;
  color: var(--muted);
}

.job-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 26px;
}

.job-meta span {
  min-height: 70px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
}

.job-meta strong {
  display: block;
  color: var(--ink);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.job-panel {
  display: grid;
  gap: 10px;
  padding: 28px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.job-panel h3,
.job-panel p {
  margin: 0;
}

.job-panel p,
.job-panel span {
  color: rgba(255, 255, 255, 0.78);
}

.job-panel a {
  color: var(--mint);
  font-size: 1.18rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.job-details {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
  gap: 20px;
  margin-top: 34px;
}

.job-details article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.job-details h3 {
  margin-bottom: 18px;
}

.responsibilities {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.responsibilities li {
  min-height: 58px;
  padding: 14px 14px 14px 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfa;
}

.responsibilities li::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: -28px;
  margin-right: 16px;
  border-radius: 50%;
  background: var(--mint);
}

.requirements {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.requirements li::marker {
  color: var(--teal);
}

.equal-opportunity {
  display: inline-flex;
  margin: 34px 0 0;
  padding: 10px 14px;
  border-left: 4px solid var(--gold);
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 410px);
  gap: clamp(26px, 6vw, 76px);
  align-items: center;
}

.contact-card {
  display: grid;
  gap: 12px;
  padding: 28px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.contact-card a,
.contact-card span {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-card a:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

footer {
  padding: 28px clamp(20px, 6vw, 86px);
  border-top: 1px solid var(--line);
  background: var(--white);
  font-size: 0.9rem;
}

footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro,
  .operations-layout,
  .job-advert,
  .job-details,
  .contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    padding-top: 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand small,
  nav a:nth-child(2),
  nav a:nth-child(3) {
    display: none;
  }

  nav {
    gap: 12px;
    font-size: 0.84rem;
  }

  .hero {
    min-height: 90vh;
    padding-top: 116px;
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(3rem, 16vw, 5.4rem);
  }

  .hero-strip {
    left: 20px;
    right: 20px;
    justify-content: flex-start;
  }

  .service-grid,
  .job-meta {
    grid-template-columns: 1fr;
  }

  .service-grid article {
    min-height: auto;
  }

  .timeline li {
    padding-left: 62px;
  }

  .timeline li::before {
    width: 44px;
    height: 44px;
  }
}
