:root {
  --bg: #071521;
  --bg-2: #0a1d2a;
  --panel: #0d2331;
  --text: #edf7f7;
  --muted: #9fb3ba;
  --accent: #29e0c3;
  --accent-soft: rgba(41, 224, 195, .14);
  --line: rgba(255,255,255,.10);
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
.shell { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }

.hero {
  width: 100%;
  overflow: hidden;
  background: #06131e;
  border-bottom: 1px solid var(--line);
}
.hero picture, .hero img { width: 100%; }
.hero img { height: auto; }

.status {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, #081a27 0%, #0b2230 58%, #0a1c28 100%);
}
.status__inner {
  min-height: 128px;
  display: grid;
  grid-template-columns: 210px 1fr;
  align-items: center;
  gap: 40px;
  padding-block: 26px;
}
.status__eyebrow,
.kicker {
  letter-spacing: .19em;
  font-size: .76rem;
  font-weight: 700;
  color: var(--accent);
}
.status h1 {
  margin: 0 0 6px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.05;
  font-weight: 650;
}
.status p { margin: 0; color: var(--muted); font-size: 1rem; }

.intro { padding-block: clamp(64px, 8vw, 110px); }
.intro__copy { max-width: 780px; margin-bottom: 48px; }
.intro h2, .electric h2 {
  margin: 12px 0 18px;
  font-size: clamp(2rem, 4vw, 3.65rem);
  letter-spacing: -.035em;
  line-height: 1.04;
  font-weight: 650;
}
.intro__copy p, .electric p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  line-height: 1.75;
}

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.018));
}
.service-card__number {
  display: block;
  margin-bottom: 42px;
  color: var(--accent);
  font-size: .78rem;
  letter-spacing: .14em;
  font-weight: 700;
}
.service-card h3 {
  margin: 0 0 12px;
  font-size: 1.28rem;
  font-weight: 640;
}
.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: .96rem;
}

.electric {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 14% 50%, rgba(41,224,195,.12), transparent 28%),
    #091b28;
}
.electric__inner {
  padding-block: clamp(64px, 8vw, 100px);
  display: grid;
  grid-template-columns: 150px minmax(0, 760px);
  gap: 44px;
  align-items: start;
}
.electric__mark {
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(41,224,195,.5);
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 2.1rem;
}

.footer { background: #05111a; }
.footer__inner {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--muted);
  font-size: .86rem;
}
.footer strong {
  color: var(--text);
  letter-spacing: .12em;
  font-weight: 700;
}

@media (max-width: 850px) {
  .shell { width: min(calc(100% - 32px), var(--max)); }
  .status__inner { grid-template-columns: 1fr; gap: 12px; min-height: auto; padding-block: 26px; }
  .services { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .service-card__number { margin-bottom: 28px; }
  .electric__inner { grid-template-columns: 1fr; gap: 24px; }
  .electric__mark { width: 76px; height: 76px; }
  .footer__inner { flex-direction: column; align-items: flex-start; justify-content: center; padding-block: 28px; }
}

@media (max-width: 520px) {
  .hero { padding-top: 0; }
  .intro { padding-block: 52px; }
  .service-card { padding: 24px; }
}
