:root {
  --ink: #f5f7fa;
  --muted: #9caabc;
  --dim: #667384;
  --blue: #1e63d4;
  --blue-bright: #2f7bff;
  --blue-soft: #76a8ff;
  --base: #080b0f;
  --surface: #0d1219;
  --surface-2: #101722;
  --line: #263140;
  --line-soft: rgba(151, 174, 203, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--base);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--base);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

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

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

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: var(--blue-bright);
  color: white;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  background: white;
  color: #080b0f;
  padding: 12px 18px;
  font-weight: 700;
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 14px;
}

.shell {
  width: min(100% - 96px, 1240px);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 82px;
  border-bottom: 1px solid rgba(173, 193, 217, 0.15);
  background: rgba(6, 9, 13, 0.87);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(100% - 96px, 1340px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 178px;
  height: 44px;
}

.brand img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  color: #dfe5ec;
  font-size: 15px;
  font-weight: 550;
}

.desktop-nav a:not(.nav-contact) {
  position: relative;
  padding-block: 30px;
}

.desktop-nav a:not(.nav-contact)::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--blue-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-contact {
  border: 1px solid rgba(82, 143, 239, 0.7);
  padding: 11px 20px;
  color: white;
  transition:
    background 180ms ease,
    border-color 180ms ease;
}

.nav-contact:hover,
.nav-contact:focus-visible {
  border-color: var(--blue-bright);
  background: rgba(47, 123, 255, 0.14);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 800px;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
  background: #06090d;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 57% center;
  animation: hero-breathe 12s ease-in-out infinite alternate;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(66, 108, 161, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(66, 108, 161, 0.1) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: linear-gradient(90deg, black 0%, black 47%, transparent 70%);
  mask-image: linear-gradient(90deg, black 0%, black 47%, transparent 70%);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 7, 11, 0.08) 0%, rgba(4, 7, 11, 0.02) 43%, transparent 62%),
    linear-gradient(180deg, rgba(5, 8, 12, 0.42) 0%, transparent 36%, rgba(5, 8, 12, 0.52) 100%);
}

.hero-line {
  position: absolute;
  top: 82px;
  bottom: 0;
  left: 60%;
  width: 2px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(47, 123, 255, 0.4) 18%,
    var(--blue-bright) 52%,
    rgba(47, 123, 255, 0.22) 86%,
    transparent 100%
  );
  box-shadow: 0 0 18px rgba(47, 123, 255, 0.55);
  transform: skewX(-14deg);
  transform-origin: top;
}

.hero-line span {
  position: absolute;
  top: 12%;
  left: -3px;
  width: 7px;
  height: 70px;
  border-radius: 999px;
  background: white;
  box-shadow:
    0 0 12px white,
    0 0 30px var(--blue-bright);
  opacity: 0.8;
  animation: line-scan 4.5s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  min-height: 800px;
  padding-top: 82px;
}

.hero-copy {
  width: min(590px, 49%);
  padding-top: 30px;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 26px;
  color: var(--blue-soft);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.status-dot {
  display: inline-block;
  flex: none;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4aa0ff;
  box-shadow: 0 0 0 5px rgba(47, 123, 255, 0.1), 0 0 16px #2f7bff;
  animation: status-pulse 2.8s ease-in-out infinite;
}

.hero h1 {
  max-width: 620px;
  margin: 0;
  color: #f7f9fb;
  font-size: clamp(54px, 5.2vw, 78px);
  font-weight: 670;
  letter-spacing: -0.052em;
  line-height: 0.98;
}

.hero h1 span {
  display: block;
  color: #b9c8db;
}

.hero-lead {
  max-width: 520px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  border: 1px solid transparent;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 620;
  letter-spacing: -0.01em;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button span {
  display: inline-block;
  font-size: 22px;
  line-height: 0;
  transition: transform 180ms ease;
}

.button:hover span,
.button:focus-visible span {
  transform: translateX(4px);
}

.button:active {
  transform: translateY(1px);
}

.button-primary {
  border-color: var(--blue-bright);
  background: linear-gradient(110deg, #1259d2, #2f7bff);
  box-shadow: 0 12px 36px rgba(17, 83, 193, 0.25);
  color: white;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(110deg, #236ce1, #4389ff);
  box-shadow: 0 14px 42px rgba(18, 89, 210, 0.36);
}

.button-secondary {
  border-color: rgba(47, 123, 255, 0.72);
  background: rgba(5, 10, 16, 0.58);
  color: #eaf0f7;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--blue-bright);
  background: rgba(47, 123, 255, 0.12);
}

.capability-line {
  display: flex;
  max-width: 580px;
  align-items: center;
  gap: 13px;
  margin-top: 38px;
  color: #8593a5;
  font-size: 13px;
  white-space: nowrap;
}

.capability-line i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 8px var(--blue-bright);
}

.signal {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 12px;
  background:
    linear-gradient(
        110deg,
        transparent 0 20%,
        var(--blue-bright) 21% 28%,
        transparent 29% 40%,
        var(--blue-bright) 41% 47%,
        transparent 48%
      )
      center / 100% 100% no-repeat;
}

.sector-strip {
  border-bottom: 1px solid var(--line-soft);
  background: #0b1016;
}

.sector-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.sector-inner p {
  margin: 0;
  color: #677587;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sector-inner div {
  display: flex;
  align-items: center;
  gap: 0;
}

.sector-inner span {
  min-width: 190px;
  border-left: 1px solid var(--line);
  padding: 10px 30px;
  color: #ccd4de;
  font-size: 14px;
  text-align: center;
}

.section {
  position: relative;
  padding: 118px 0;
}

.services-section,
.process-section {
  background:
    radial-gradient(circle at 8% 0%, rgba(33, 92, 180, 0.08), transparent 34%),
    var(--base);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 58px;
}

.section-heading h2,
.solution-copy h2,
.building-copy h2,
.about-grid h2,
.contact-section h2 {
  margin: 0;
  color: #f2f5f8;
  font-size: clamp(38px, 4.2vw, 58px);
  font-weight: 640;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.section-heading .section-kicker,
.solution-copy .section-kicker,
.building-copy .section-kicker,
.about-grid .section-kicker,
.contact-section .section-kicker {
  margin-bottom: 20px;
}

.section-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 288px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(15, 22, 31, 0.62);
  padding: 30px;
  transition:
    background 220ms ease,
    transform 220ms ease;
}

.service-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, rgba(47, 123, 255, 0.12), transparent 48%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.service-card:hover {
  z-index: 2;
  background: #111a25;
  transform: translateY(-4px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-meta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-code {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(47, 123, 255, 0.48);
  color: var(--blue-soft);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.service-number {
  color: #445062;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
}

.service-card h3 {
  position: relative;
  margin: 42px 0 14px;
  color: #ecf1f7;
  font-size: 22px;
  font-weight: 610;
  letter-spacing: -0.025em;
}

.service-card p {
  position: relative;
  max-width: 310px;
  margin: 0;
  color: #8996a8;
  font-size: 14px;
  line-height: 1.7;
}

.card-line {
  position: absolute;
  right: 30px;
  bottom: 24px;
  left: 30px;
  height: 1px;
  background: linear-gradient(90deg, var(--blue-bright), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms ease;
}

.service-card:hover .card-line {
  transform: scaleX(1);
}

.solution-section {
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: #0b1016;
}

.solution-grid,
.building-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: 86px;
}

.solution-image-wrap {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0a0f15;
}

.solution-image-wrap::after {
  position: absolute;
  inset: 0;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.solution-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.solution-image-wrap:hover img {
  transform: scale(1.025);
}

.image-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(124, 159, 203, 0.28);
  background: rgba(5, 10, 16, 0.84);
  padding: 12px 14px;
  color: #a9b7c7;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.11em;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.solution-copy {
  padding-right: 20px;
}

.solution-intro {
  margin: 28px 0 38px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.check-list {
  margin: 0 0 38px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding: 17px 0;
  color: #d3dbe5;
  font-size: 14px;
}

.check-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.check-list span {
  color: var(--blue-soft);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--blue);
  padding-bottom: 7px;
  color: #eaf0f7;
  font-size: 14px;
  font-weight: 600;
}

.text-link span {
  color: var(--blue-soft);
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translate(3px, -3px);
}

.building-section {
  background:
    linear-gradient(90deg, rgba(18, 29, 42, 0.54), transparent 42%),
    #090d12;
}

.building-grid {
  grid-template-columns: minmax(420px, 0.92fr) minmax(0, 1.08fr);
}

.building-copy {
  padding-right: 25px;
}

.building-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 0 0 38px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.building-features div {
  min-height: 132px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 19px;
  background: rgba(14, 21, 30, 0.45);
}

.building-features span {
  color: #dce4ed;
  font-size: 14px;
  font-weight: 610;
}

.building-features p {
  margin: 9px 0 0;
  color: #8290a2;
  font-size: 13px;
  line-height: 1.55;
}

.building-image {
  min-height: 650px;
}

.building-image img {
  min-height: 650px;
}

.data-overlay {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: grid;
  min-width: 170px;
  border: 1px solid rgba(84, 145, 245, 0.43);
  background: rgba(7, 12, 18, 0.88);
  padding: 18px;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.data-overlay span {
  color: #7f8da0;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.data-overlay strong {
  margin-top: 8px;
  color: var(--blue-soft);
  font-size: 30px;
  font-weight: 620;
}

.data-overlay i {
  color: #aeb9c6;
  font-size: 11px;
  font-style: normal;
}

.process-section {
  border-top: 1px solid var(--line-soft);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.process-grid article {
  position: relative;
  min-height: 250px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 26px;
}

.process-grid article::before {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 46px;
  height: 2px;
  content: "";
  background: var(--blue-bright);
  box-shadow: 0 0 16px rgba(47, 123, 255, 0.5);
}

.process-grid article > span {
  color: var(--blue-soft);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
}

.process-grid h3 {
  margin: 72px 0 14px;
  color: #e8edf4;
  font-size: 20px;
  font-weight: 610;
}

.process-grid p {
  margin: 0;
  color: #8290a2;
  font-size: 13px;
  line-height: 1.7;
}

.about-section {
  border-top: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 82% 40%, rgba(34, 99, 208, 0.13), transparent 32%),
    #0c1219;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.about-copy {
  border-left: 1px solid var(--line);
  padding-left: 48px;
}

.about-copy p {
  margin: 0;
  color: #8f9cad;
  font-size: 15px;
  line-height: 1.8;
}

.about-copy .about-lead {
  margin-bottom: 24px;
  color: #d2dbe5;
  font-size: 20px;
  line-height: 1.55;
}

.principles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.principles span {
  border: 1px solid var(--line);
  padding: 10px 14px;
  color: #aab6c5;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(80, 134, 225, 0.26);
  border-bottom: 1px solid var(--line);
  padding: 105px 0;
  background:
    linear-gradient(120deg, #101925 0%, #0c121a 58%, #0a0e14 100%);
}

.contact-glow {
  position: absolute;
  top: -190px;
  right: 8%;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: rgba(25, 96, 224, 0.21);
  filter: blur(90px);
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 90px;
}

.contact-grid > div:first-child {
  max-width: 730px;
}

.contact-section h2 {
  max-width: 720px;
}

.contact-section p:not(.section-kicker) {
  max-width: 610px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.contact-actions {
  min-width: 260px;
}

.button-large {
  width: 100%;
  min-height: 62px;
  justify-content: space-between;
  padding-inline: 24px;
}

.phone-link {
  display: grid;
  gap: 3px;
  margin-top: 22px;
  color: #dde5ef;
  font-size: 18px;
}

.phone-link small {
  color: #758397;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

footer {
  background: #06090d;
  padding: 66px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 0.7fr;
  gap: 80px;
  padding-bottom: 54px;
}

.footer-brand img {
  width: 176px;
  height: auto;
}

.footer-brand p {
  margin: 22px 0 0;
  color: #6f7c8d;
  font-size: 13px;
}

.footer-label {
  margin: 0 0 18px;
  color: #657386;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #b3bfcc;
  font-size: 13px;
  line-height: 1.9;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--blue-soft);
}

.footer-grid address {
  font-style: normal;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(128, 151, 180, 0.15);
  padding-top: 23px;
  color: #566273;
  font-size: 11px;
}

@keyframes line-scan {
  0%,
  12% {
    top: 8%;
    opacity: 0;
  }
  30% {
    opacity: 0.85;
  }
  76% {
    opacity: 0.65;
  }
  100% {
    top: 84%;
    opacity: 0;
  }
}

@keyframes status-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(47, 123, 255, 0.08), 0 0 10px #2f7bff;
  }
  50% {
    box-shadow: 0 0 0 8px rgba(47, 123, 255, 0.02), 0 0 20px #2f7bff;
  }
}

@keyframes hero-breathe {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.012);
  }
}

@media (max-width: 1050px) {
  .shell,
  .header-inner {
    width: min(100% - 56px, 1240px);
  }

  .hero-line {
    left: 64%;
  }

  .hero-copy {
    width: 54%;
  }

  .capability-line {
    gap: 9px;
    font-size: 11px;
  }

  .solution-grid,
  .building-grid {
    gap: 52px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 850px) {
  .site-header {
    height: 72px;
  }

  .desktop-nav {
    display: none;
  }

  .brand {
    width: 154px;
  }

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu summary {
    display: grid;
    width: 42px;
    height: 42px;
    cursor: pointer;
    list-style: none;
    place-content: center;
    gap: 5px;
    border: 1px solid var(--line);
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    display: block;
    width: 18px;
    height: 1px;
    background: #d9e1e9;
  }

  .mobile-menu nav {
    position: absolute;
    top: 52px;
    right: 0;
    display: grid;
    width: min(290px, calc(100vw - 56px));
    border: 1px solid var(--line);
    background: rgba(9, 14, 20, 0.98);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
  }

  .mobile-menu nav a {
    border-bottom: 1px solid var(--line);
    padding: 18px 20px;
    color: #dce3eb;
    font-size: 15px;
  }

  .mobile-menu nav a:last-child {
    border-bottom: 0;
    color: var(--blue-soft);
  }

  .hero,
  .hero-content {
    min-height: 760px;
  }

  .hero-content {
    align-items: flex-end;
    padding-top: 100px;
    padding-bottom: 70px;
  }

  .hero-image {
    object-position: 65% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 8, 12, 0.98) 0%, rgba(5, 8, 12, 0.83) 55%, rgba(5, 8, 12, 0.44) 100%),
      linear-gradient(0deg, rgba(5, 8, 12, 0.8), transparent 58%);
  }

  .hero-grid {
    -webkit-mask-image: linear-gradient(90deg, black, transparent);
    mask-image: linear-gradient(90deg, black, transparent);
  }

  .hero-line {
    left: 90%;
    transform: skewX(-10deg);
    opacity: 0.55;
  }

  .hero-copy {
    width: min(640px, 88%);
  }

  .hero h1 {
    font-size: clamp(48px, 8.5vw, 70px);
  }

  .sector-inner {
    min-height: 115px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    padding-block: 24px;
  }

  .sector-inner div {
    width: 100%;
  }

  .sector-inner span {
    min-width: 0;
    flex: 1;
    padding: 8px 16px;
  }

  .section {
    padding: 88px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading > p {
    max-width: 600px;
  }

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

  .solution-grid,
  .building-grid {
    grid-template-columns: 1fr;
  }

  .solution-copy {
    padding: 0;
  }

  .building-copy {
    padding: 0;
  }

  .building-image {
    order: -1;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .about-copy {
    padding-left: 30px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 44px;
  }

  .contact-actions {
    width: min(100%, 340px);
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 34px;
  }
}

@media (max-width: 580px) {
  .shell,
  .header-inner {
    width: calc(100% - 36px);
  }

  .hero,
  .hero-content {
    min-height: 720px;
  }

  .hero-content {
    padding-bottom: 48px;
  }

  .hero-image {
    object-position: 67% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 7, 11, 0.97), rgba(4, 7, 11, 0.76)),
      linear-gradient(0deg, rgba(4, 7, 11, 0.95), transparent);
  }

  .hero-line {
    left: 98%;
  }

  .hero-copy {
    width: 100%;
  }

  .eyebrow {
    font-size: 10px;
    line-height: 1.5;
  }

  .hero h1 {
    font-size: clamp(43px, 14vw, 60px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
    justify-content: space-between;
  }

  .capability-line {
    flex-wrap: wrap;
    white-space: normal;
  }

  .capability-line .signal {
    display: none;
  }

  .sector-inner div {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .sector-inner span {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding: 12px 0;
    text-align: left;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .section-heading h2,
  .solution-copy h2,
  .building-copy h2,
  .about-grid h2,
  .contact-section h2 {
    font-size: clamp(35px, 10vw, 46px);
  }

  .service-grid,
  .process-grid,
  .building-features {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 260px;
  }

  .solution-image-wrap,
  .solution-image-wrap img {
    min-height: 430px;
  }

  .building-image,
  .building-image img {
    min-height: 500px;
  }

  .data-overlay {
    right: 16px;
    bottom: 16px;
  }

  .about-copy {
    border-left: 0;
    padding-left: 0;
  }

  .contact-section {
    padding: 76px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
