:root {
  --navy-950: #06111f;
  --navy-900: #08182b;
  --navy-850: #0b2038;
  --navy-800: #0d2947;
  --blue: #2563eb;
  --blue-soft: #60a5fa;
  --cyan: #22d3ee;
  --teal: #14b8a6;
  --green: #42d77d;
  --amber: #f0b84a;
  --ink: #edf6ff;
  --muted: #a7b6cb;
  --subtle: #71839d;
  --line: rgba(148, 180, 219, 0.22);
  --panel: rgba(9, 26, 45, 0.76);
  --panel-strong: rgba(12, 34, 58, 0.92);
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(96, 165, 250, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(96, 165, 250, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, var(--navy-950), var(--navy-900) 46%, #071422);
  background-size: 72px 72px, 72px 72px, auto;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 12px clamp(20px, 5vw, 72px);
  background: rgba(6, 17, 31, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 94px;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: #c9d7ea;
  font-size: 0.94rem;
  font-weight: 600;
}

.main-nav a,
.site-footer a {
  transition: color 160ms ease;
}

.main-nav a:hover,
.site-footer a:hover {
  color: var(--cyan);
}

.header-action,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 750;
  text-align: center;
  white-space: nowrap;
}

.header-action {
  padding: 0 18px;
  color: var(--navy-950);
  background: var(--white);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 6vw, 84px);
  min-height: calc(88vh - 80px);
  align-items: center;
  padding: clamp(48px, 6vw, 84px) clamp(20px, 5vw, 72px) clamp(54px, 6vw, 84px);
  overflow: hidden;
}

.hero::before,
.hero::after,
.services::before,
.method::before,
.contact-band::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.hero::before {
  width: min(52vw, 740px);
  height: min(42vw, 520px);
  right: -8vw;
  top: 9%;
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.32), rgba(37, 99, 235, 0.08)),
    linear-gradient(90deg, transparent 0 18%, rgba(255, 255, 255, 0.12) 18% 19%, transparent 19% 100%);
  clip-path: polygon(18% 0, 100% 0, 82% 100%, 0 100%);
}

.hero::after {
  width: min(46vw, 620px);
  height: 190px;
  left: -14vw;
  bottom: 4%;
  background: linear-gradient(90deg, rgba(96, 165, 250, 0.22), rgba(20, 184, 166, 0.05));
  clip-path: polygon(0 16%, 84% 0, 100% 72%, 16% 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.remote-support h2,
.contact-band h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.04;
}

.hero h1 {
  max-width: 800px;
  color: var(--white);
  font-size: clamp(2.35rem, 5.8vw, 4.85rem);
  overflow-wrap: break-word;
}

.hero-content,
.hero-panel,
.intro > *,
.remote-support > *,
.contact-band > * {
  min-width: 0;
}

.hero-copy {
  max-width: 670px;
  margin: 20px 0 0;
  color: #c2d0e4;
  font-size: clamp(1.05rem, 1.6vw, 1.24rem);
}

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

.button {
  padding: 0 22px;
  border: 1px solid transparent;
  overflow-wrap: anywhere;
}

.button.primary {
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--cyan), var(--blue-soft));
  box-shadow: 0 16px 38px rgba(34, 211, 238, 0.2);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line);
}

.hero-panel {
  width: min(100%, 480px);
  justify-self: end;
  padding: 24px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(13, 41, 71, 0.98), rgba(6, 17, 31, 0.94)),
    var(--panel-strong);
  border: 1px solid rgba(148, 180, 219, 0.26);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.panel-topline,
.metric-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.panel-topline {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: #b7c5da;
}

.panel-topline strong {
  color: #93f8b3;
}

.signal-grid {
  display: grid;
  gap: 14px;
  margin: 22px 0;
}

.signal-grid article {
  position: relative;
  min-height: 112px;
  padding: 18px 18px 18px 52px;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(148, 180, 219, 0.22);
  border-radius: 8px;
}

.signal-grid strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.signal-grid p {
  margin: 0;
  color: #c3ccdc;
  font-size: 0.93rem;
}

.signal-dot {
  position: absolute;
  top: 22px;
  left: 18px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(66, 215, 125, 0.13);
}

.signal-dot.teal {
  background: var(--cyan);
  box-shadow: 0 0 0 7px rgba(34, 211, 238, 0.13);
}

.signal-dot.amber {
  background: var(--amber);
  box-shadow: 0 0 0 7px rgba(240, 184, 74, 0.13);
}

.metric-row {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.metric-row span {
  display: block;
  color: #b7c5da;
  font-size: 0.84rem;
}

.metric-row strong {
  display: block;
  margin-top: 4px;
  font-size: 1.2rem;
}

.section {
  padding: clamp(64px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.62fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: end;
  background:
    linear-gradient(120deg, rgba(12, 34, 58, 0.9), rgba(9, 26, 45, 0.68)),
    linear-gradient(180deg, rgba(34, 211, 238, 0.05), transparent);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro::after {
  content: "";
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 0;
  width: min(34vw, 420px);
  height: 74%;
  background:
    linear-gradient(135deg, rgba(96, 165, 250, 0.16), rgba(34, 211, 238, 0.04)),
    repeating-linear-gradient(90deg, transparent 0 24px, rgba(255, 255, 255, 0.08) 24px 25px);
  clip-path: polygon(30% 0, 100% 0, 78% 100%, 0 100%);
  pointer-events: none;
}

.section h2,
.remote-support h2,
.contact-band h2 {
  max-width: 860px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.75rem);
}

.intro p:last-child {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #c3d1e5;
  font-size: 1.08rem;
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 34px;
}

.services {
  position: relative;
  overflow: hidden;
}

.services::before {
  width: min(58vw, 790px);
  height: 240px;
  right: -22vw;
  top: 54px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.2), rgba(34, 211, 238, 0.06));
  clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
}

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

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 244px;
  padding: 0 24px 24px;
  background: linear-gradient(180deg, rgba(13, 41, 71, 0.8), rgba(8, 24, 43, 0.92));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
}

.card-visual {
  width: calc(100% + 48px);
  max-width: none;
  height: 148px;
  margin: 0 -24px 20px;
  object-fit: cover;
  border-bottom: 1px solid rgba(148, 180, 219, 0.2);
}

.icon-box {
  display: inline-flex;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 62px;
  height: 62px;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 13px 12px 0 0;
  color: rgba(237, 246, 255, 0.82);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(34, 211, 238, 0.18)),
    rgba(8, 24, 43, 0.64);
  border-radius: 0 8px 0 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  pointer-events: none;
}

.service-card h3,
.steps h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 1.1rem;
}

.service-card p,
.steps p,
.remote-support p,
.contact-band p {
  margin: 0;
  color: var(--muted);
}

.method {
  position: relative;
  background:
    linear-gradient(180deg, rgba(6, 17, 31, 0.2), rgba(13, 41, 71, 0.42)),
    var(--navy-900);
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.method::before {
  left: -16vw;
  top: 70px;
  width: min(48vw, 640px);
  height: 260px;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.16), rgba(96, 165, 250, 0.04));
  clip-path: polygon(0 0, 78% 18%, 100% 100%, 22% 80%);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  counter-reset: steps;
}

.steps article {
  overflow: hidden;
  min-height: 184px;
  padding: 0 24px 24px;
  background: rgba(9, 26, 45, 0.72);
  border: 1px solid var(--line);
  border-top: 3px solid var(--cyan);
}

.steps .card-visual {
  height: 172px;
}

.steps span {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--navy-950);
  background: var(--white);
  border-radius: 50%;
  font-weight: 850;
}

.remote-support {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin: clamp(54px, 7vw, 92px) clamp(20px, 5vw, 72px);
  padding: clamp(28px, 5vw, 48px);
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.12), transparent 52%),
    linear-gradient(180deg, rgba(13, 41, 71, 0.94), rgba(8, 24, 43, 0.94));
  border: 1px solid rgba(34, 211, 238, 0.28);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.remote-support::after {
  content: "";
  position: absolute;
  right: -54px;
  top: -16px;
  width: 240px;
  height: 160px;
  background: rgba(96, 165, 250, 0.16);
  clip-path: polygon(22% 0, 100% 0, 78% 100%, 0 100%);
}

.remote-support p {
  max-width: 760px;
  margin-top: 16px;
}

code {
  padding: 0.1em 0.35em;
  color: #d8f7ff;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  font-family: Consolas, Monaco, monospace;
  font-size: 0.92em;
}

.button.download {
  position: relative;
  z-index: 1;
  color: var(--navy-950);
  background: var(--cyan);
}

.contact-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(52px, 7vw, 80px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 17, 31, 0.94), rgba(13, 41, 71, 0.98)),
    var(--navy-950);
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.contact-band::before {
  right: -8vw;
  bottom: -62px;
  width: min(52vw, 700px);
  height: 240px;
  background: linear-gradient(90deg, rgba(34, 211, 238, 0.2), rgba(37, 99, 235, 0.08));
  clip-path: polygon(0 0, 100% 24%, 84% 100%, 14% 74%);
}

.contact-band img {
  width: 160px;
  margin-bottom: 26px;
}

.contact-band p {
  max-width: 650px;
  margin-top: 18px;
  color: #d7deea;
}

.button.light {
  position: relative;
  z-index: 1;
  color: var(--navy-950);
  background: var(--white);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(20px, 5vw, 72px);
  color: #9fb0c7;
  background: #050e1a;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .main-nav {
    display: none;
  }

  .hero,
  .intro,
  .remote-support,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    max-width: 680px;
    font-size: clamp(2.2rem, 6vw, 3.45rem);
  }

  .hero-copy {
    max-width: 620px;
  }

  .hero-panel {
    justify-self: stretch;
    width: 100%;
    max-width: 640px;
  }

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

  .intro::after {
    opacity: 0.36;
  }
}

@media (max-width: 680px) {
  .site-header,
  .hero,
  .section,
  .remote-support,
  .contact-band,
  .site-footer {
    width: auto;
    max-width: 100%;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
  }

  .brand img {
    width: 82px;
  }

  .header-action {
    justify-self: end;
    min-height: 40px;
    width: auto;
    max-width: 100%;
    padding: 0 14px;
    font-size: 0.86rem;
  }

  .hero {
    padding-top: 46px;
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
    white-space: normal;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2rem, 9.8vw, 2.42rem);
    overflow-wrap: anywhere;
  }

  .eyebrow,
  .section-kicker {
    overflow-wrap: anywhere;
  }

  .hero-copy {
    max-width: 100%;
    font-size: 1rem;
  }

  .hero-content,
  .hero-panel {
    width: 100%;
    max-width: 100%;
  }

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

  .service-card,
  .steps article,
  .signal-grid article {
    min-height: auto;
  }

  .intro::after,
  .hero::before,
  .hero::after,
  .services::before,
  .method::before {
    opacity: 0.42;
  }

  .contact-band .button,
  .remote-support .button {
    width: 100%;
  }
}
