:root {
  --ink: #18211f;
  --muted: #60716e;
  --paper: #f5f8f6;
  --white: #ffffff;
  --green: #24a86b;
  --green-dark: #0a6d50;
  --blue: #19336d;
  --cyan: #1ca5ff;
  --amber: #f2b84b;
  --line: rgba(24, 33, 31, 0.12);
  --shadow: 0 24px 70px rgba(18, 39, 35, 0.14);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 132px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 40;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--cyan));
  box-shadow: 0 0 20px rgba(36, 168, 107, 0.35);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid transparent;
  background: rgba(248, 251, 247, 0.82);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 28px rgba(24, 33, 31, 0.08);
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #334541;
  font-size: 13px;
  font-weight: 700;
}

.site-nav a {
  padding: 10px 10px;
  border-radius: 999px;
}

.site-nav a:hover {
  background: rgba(36, 168, 107, 0.1);
  color: var(--green-dark);
}

.site-nav a.is-active {
  background: #10231f;
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(390px, 0.97fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  min-height: calc(100vh - 76px);
  padding: clamp(30px, 5vw, 72px) clamp(18px, 5vw, 72px) 44px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 10%, rgba(28, 165, 255, 0.18), transparent 30%),
    radial-gradient(circle at 20% 88%, rgba(36, 168, 107, 0.16), transparent 34%),
    linear-gradient(130deg, #f7faf7 0%, #eef7f2 50%, #edf5fb 100%);
}

.hero__content {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: 58px;
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  max-width: 980px;
  margin-bottom: 18px;
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.2;
}

.lead {
  max-width: 660px;
  color: #344642;
  font-size: 19px;
}

.hero__actions,
.hero__actions + .trust-strip {
  margin-top: 22px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button--primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(36, 168, 107, 0.28);
}

.button--ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.button--on-dark {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-strip span,
.feature-pills span,
.industry-grid span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #37524c;
  font-size: 13px;
  font-weight: 800;
}

.trust-strip span {
  padding: 8px 12px;
}

.hero__visual {
  position: relative;
  display: grid;
  gap: 14px;
  min-height: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.5)),
    rgba(255, 255, 255, 0.64);
  box-shadow: 0 32px 90px rgba(25, 51, 109, 0.14);
  backdrop-filter: blur(18px);
  animation: floatPanel 8s ease-in-out infinite;
}

.showcase-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 10px 12px;
}

.showcase-shell__chrome {
  display: flex;
  gap: 6px;
}

.showcase-shell__chrome span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #c9d9d4;
}

.showcase-shell__chrome span:nth-child(1) {
  background: #ff766d;
}

.showcase-shell__chrome span:nth-child(2) {
  background: #f4c75d;
}

.showcase-shell__chrome span:nth-child(3) {
  background: var(--green);
}

.showcase-shell__label {
  display: grid;
  gap: 2px;
  text-align: right;
}

.showcase-shell__label strong {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.1;
}

.showcase-shell__label small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.ops-dashboard {
  position: relative;
  width: 100%;
  padding: 18px;
  border: 1px solid rgba(24, 33, 31, 0.08);
  border-radius: 14px;
  background:
    radial-gradient(circle at 86% 18%, rgba(28, 165, 255, 0.18), transparent 30%),
    radial-gradient(circle at 16% 72%, rgba(36, 168, 107, 0.12), transparent 32%),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 52px rgba(24, 33, 31, 0.08);
  overflow: hidden;
}

.ops-dashboard::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(25, 51, 109, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25, 51, 109, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 86%);
  content: "";
  pointer-events: none;
}

.ops-dashboard__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.ops-dashboard__top strong {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(36, 168, 107, 0.12);
  color: var(--green-dark);
  font-size: 12px;
  text-transform: uppercase;
}

.ops-dashboard__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.ops-dashboard__grid article {
  position: relative;
  min-height: 118px;
  padding: 16px;
  border: 1px solid rgba(24, 33, 31, 0.1);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(36, 168, 107, 0.07), rgba(28, 165, 255, 0.08)),
    var(--white);
  overflow: hidden;
}

.ops-dashboard__grid article::after {
  position: absolute;
  right: 12px;
  top: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(28, 165, 255, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(36, 168, 107, 0.22) 0 18%, transparent 19%),
    rgba(28, 165, 255, 0.06);
  content: "";
}

.ops-dashboard__grid small,
.ops-dashboard__grid span {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.ops-dashboard__grid small {
  font-size: 12px;
}

.ops-dashboard__grid strong {
  display: block;
  margin: 10px 0 7px;
  color: var(--blue);
  font-size: 34px;
  line-height: 1;
}

.ops-dashboard__grid span {
  font-size: 13px;
}

.service-orbit {
  position: relative;
  z-index: 1;
  min-height: 132px;
  margin-top: 14px;
  border: 1px solid rgba(24, 33, 31, 0.09);
  border-radius: 14px;
  background:
    radial-gradient(circle at center, rgba(36, 168, 107, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.64), rgba(238, 246, 255, 0.74));
  overflow: hidden;
}

.service-orbit::before,
.service-orbit::after {
  position: absolute;
  inset: 22px 18%;
  border: 1px solid rgba(25, 51, 109, 0.13);
  border-radius: 50%;
  content: "";
}

.service-orbit::after {
  inset: 42px 28%;
  border-color: rgba(36, 168, 107, 0.16);
}

.service-orbit__core,
.service-orbit__node {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-weight: 950;
}

.service-orbit__core {
  left: 50%;
  top: 50%;
  width: 74px;
  height: 74px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #10231f);
  box-shadow: 0 18px 36px rgba(25, 51, 109, 0.2);
  transform: translate(-50%, -50%);
}

.service-orbit__node {
  min-width: 62px;
  height: 30px;
  padding: 0 12px;
  color: #17352d;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(24, 33, 31, 0.12);
  font-size: 12px;
  box-shadow: 0 12px 28px rgba(24, 33, 31, 0.08);
  animation: signalBeat 4.2s ease-in-out infinite;
}

.service-orbit__node--network {
  left: 13%;
  top: 20%;
}

.service-orbit__node--cloud {
  right: 14%;
  top: 18%;
  animation-delay: 0.4s;
}

.service-orbit__node--security {
  left: 18%;
  bottom: 18%;
  animation-delay: 0.8s;
}

.service-orbit__node--apps {
  right: 18%;
  bottom: 18%;
  animation-delay: 1.2s;
}

.ops-dashboard__flow {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.ops-dashboard__flow span {
  position: relative;
  display: block;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--cyan), var(--green));
  background-size: 220% 100%;
  animation: flowPulse 4.8s linear infinite;
}

.ops-dashboard__flow i {
  position: absolute;
  right: 12px;
  top: 50%;
  color: var(--white);
  font-size: 10px;
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateY(-50%);
}

.ops-dashboard__flow .flow-a {
  width: 82%;
}

.ops-dashboard__flow .flow-b {
  width: 64%;
}

.ops-dashboard__flow .flow-c {
  width: 74%;
}

.showcase-screens {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(138px, 0.7fr);
  gap: 14px;
}

.screen-card {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(24, 33, 31, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 46px rgba(25, 51, 109, 0.09);
}

.screen-card img {
  width: 100%;
  height: 130px;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
}

.screen-card--phone img {
  height: 130px;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(25, 51, 109, 0.13));
}

.screen-card figcaption {
  color: #425852;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(18px, 5vw, 72px);
  background: var(--line);
}

.stats-band article {
  padding: 26px clamp(18px, 3vw, 34px);
  background: #10231f;
  color: var(--white);
}

.stats-band strong,
.stats-band span {
  display: block;
}

.stats-band strong {
  margin-bottom: 8px;
  font-size: 18px;
}

.stats-band span {
  color: rgba(255, 255, 255, 0.72);
}

.executive-brief {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  padding: clamp(72px, 8vw, 120px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f8f6 100%);
}

.executive-brief__copy {
  max-width: 680px;
}

.executive-brief__copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.brief-metrics {
  display: grid;
  gap: 12px;
}

.brief-metrics article {
  display: grid;
  grid-template-columns: minmax(160px, 0.42fr) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 20px 22px;
  border: 1px solid rgba(24, 33, 31, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 46px rgba(24, 33, 31, 0.06);
}

.brief-metrics strong {
  color: var(--blue);
  font-size: 20px;
  line-height: 1.15;
}

.brief-metrics span {
  color: var(--muted);
  font-weight: 750;
}

.section,
.split-section,
.product,
.proof,
.contact {
  padding: clamp(64px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.section__heading {
  max-width: 840px;
  margin-bottom: 34px;
}

.section__heading--center {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

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

.service-card,
.module-card,
.proof__list article,
.contact__panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(24, 33, 31, 0.07);
}

.service-card {
  min-height: 360px;
  padding: 26px;
}

.service-card__icon {
  display: inline-grid;
  place-items: center;
  min-width: 52px;
  height: 42px;
  margin-bottom: 22px;
  padding: 0 10px;
  border-radius: 8px;
  background: #e8f5ed;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
}

.service-card p,
.module-card p,
.split-section__content p,
.product__copy p,
.contact__content p,
.process-grid p,
.package-grid p,
.faq-grid p,
.pain-grid p,
.decision-grid p,
.final-cta p {
  color: var(--muted);
}

.service-card ul,
.package-grid ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  color: #3d514c;
  font-size: 14px;
  font-weight: 750;
  list-style: none;
}

.service-card li,
.package-grid li {
  position: relative;
  padding-left: 18px;
}

.service-card li::before,
.package-grid li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "•";
}

.split-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: clamp(28px, 6vw, 86px);
  background: #ffffff;
}

.technology-section {
  padding: clamp(72px, 8vw, 118px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background:
    radial-gradient(circle at 12% 20%, rgba(36, 168, 107, 0.24), transparent 34%),
    radial-gradient(circle at 88% 8%, rgba(28, 165, 255, 0.2), transparent 32%),
    linear-gradient(135deg, #10231f 0%, #142b46 52%, #101f1c 100%);
}

.technology-section .eyebrow {
  color: #89e5c0;
}

.technology-section .section__heading p:not(.eyebrow) {
  max-width: 880px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.vendor-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 36px 0;
}

.vendor-cloud span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 900;
}

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

.logo-stage {
  position: relative;
  overflow: hidden;
  margin: 0 0 28px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.05);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.2);
}

.logo-stage::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 0%, rgba(137, 229, 192, 0.12) 45%, transparent 58%);
  content: "";
  transform: translateX(-120%);
  animation: scanLight 6.5s ease-in-out infinite;
  pointer-events: none;
}

.logo-stage__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.logo-stage__header strong {
  color: #89e5c0;
  font-size: 11px;
}

.logo-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: logoDrift 28s linear infinite;
}

.wordmark {
  display: inline-grid;
  place-items: center;
  min-width: 150px;
  height: 74px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 22px;
  font-weight: 950;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.wordmark--cisco {
  color: #7bdcff;
}

.wordmark--dell {
  color: #a7d8ff;
  letter-spacing: 0.08em;
}

.wordmark--hpe {
  color: #6ff0c0;
}

.wordmark--lenovo {
  color: #ff7b7b;
}

.wordmark--apple {
  color: #f6f8fb;
}

.wordmark--microsoft {
  color: #b7dcff;
}

.wordmark--google {
  color: #ffd66b;
}

.wordmark--fortinet {
  color: #ff9a8c;
}

.wordmark--ubnt,
.wordmark--synology {
  color: #d5f4e2;
}

.signal-video {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.signal-video span {
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(137, 229, 192, 0.2), rgba(28, 165, 255, 0.95), rgba(137, 229, 192, 0.2));
  transform-origin: left;
  animation: signalBeat 2.4s ease-in-out infinite;
}

.signal-video span:nth-child(2) {
  animation-delay: 0.18s;
}

.signal-video span:nth-child(3) {
  animation-delay: 0.36s;
}

.signal-video span:nth-child(4) {
  animation-delay: 0.54s;
}

.signal-video span:nth-child(5) {
  animation-delay: 0.72s;
}

.technology-grid article {
  min-height: 330px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

@keyframes floatPanel {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes flowPulse {
  from {
    background-position: 0% 0;
  }

  to {
    background-position: 220% 0;
  }
}

@keyframes logoDrift {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes scanLight {
  0%,
  42% {
    transform: translateX(-120%);
  }

  70%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes signalBeat {
  0%,
  100% {
    opacity: 0.35;
    transform: scaleX(0.52);
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

.technology-grid__label {
  margin-bottom: 18px;
  color: #89e5c0 !important;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.technology-grid p:not(.technology-grid__label) {
  color: rgba(255, 255, 255, 0.72);
}

.device-lab {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: center;
  padding: clamp(72px, 8vw, 118px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 80% 25%, rgba(28, 165, 255, 0.16), transparent 32%),
    linear-gradient(180deg, #f7faf8 0%, #ffffff 100%);
}

.device-lab__copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.device-lab__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.device-lab__tags span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: #37524c;
  font-size: 13px;
  font-weight: 900;
}

.device-scene {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(24, 33, 31, 0.08);
  border-radius: 22px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.88), rgba(238, 246, 255, 0.72)),
    var(--white);
  box-shadow: 0 32px 90px rgba(25, 51, 109, 0.12);
  overflow: hidden;
}

.device-scene::before {
  position: absolute;
  inset: 42px;
  border: 1px dashed rgba(36, 168, 107, 0.28);
  border-radius: 50%;
  content: "";
}

.device-scene::after {
  position: absolute;
  inset: auto 12% 54px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), var(--cyan), transparent);
  content: "";
  animation: flowPulse 5s linear infinite;
}

.rack-device,
.switch-device,
.access-point,
.laptop-device,
.cloud-node {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(24, 33, 31, 0.1);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 50px rgba(25, 51, 109, 0.12);
}

.rack-device strong,
.switch-device strong,
.access-point strong,
.laptop-device strong,
.cloud-node strong {
  color: #314842;
  font-size: 12px;
  font-weight: 950;
}

.rack-device {
  left: 9%;
  top: 12%;
  width: 190px;
  height: 250px;
  padding: 18px;
  border-radius: 16px;
}

.rack-device span {
  width: 100%;
  height: 42px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, #142b46 0 64%, #24a86b 64% 69%, #233f5c 69%);
}

.switch-device {
  right: 9%;
  top: 18%;
  grid-template-columns: repeat(8, 1fr);
  gap: 7px;
  width: 280px;
  height: 96px;
  padding: 18px;
  border-radius: 16px;
}

.switch-device i {
  width: 20px;
  height: 16px;
  border-radius: 4px;
  background: linear-gradient(180deg, #19336d, #1ca5ff);
}

.switch-device strong {
  grid-column: 1 / -1;
}

.access-point {
  right: 14%;
  bottom: 17%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
}

.access-point span {
  width: 58px;
  height: 58px;
  border: 10px solid rgba(28, 165, 255, 0.28);
  border-radius: 50%;
  box-shadow: 0 0 0 16px rgba(36, 168, 107, 0.1);
}

.laptop-device {
  left: 12%;
  bottom: 13%;
  width: 235px;
  height: 140px;
  border-radius: 14px;
}

.laptop-device span {
  width: 170px;
  height: 86px;
  border: 10px solid #142b46;
  border-bottom-width: 16px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(36, 168, 107, 0.25), rgba(28, 165, 255, 0.25)),
    #f7faf8;
}

.cloud-node {
  left: 43%;
  top: 42%;
  width: 150px;
  height: 118px;
  border-radius: 22px;
}

.cloud-node span {
  width: 70px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  box-shadow: -18px 10px 0 rgba(28, 165, 255, 0.28), 18px 10px 0 rgba(36, 168, 107, 0.22);
}

.split-section__media {
  display: grid;
  place-items: center;
  min-height: 440px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 70% 20%, rgba(28, 165, 255, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(25, 51, 109, 0.08), rgba(36, 168, 107, 0.12)),
    #f7faf8;
}

.split-section__media img {
  width: min(460px, 82%);
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 22px 32px rgba(25, 51, 109, 0.13));
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  content: "✓";
  display: grid;
  place-items: center;
  font-size: 12px;
}

.solution-path {
  padding: clamp(72px, 8vw, 118px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f8f6 100%);
}

.solution-path .section__heading p:not(.eyebrow),
.portfolio-section .section__heading p:not(.eyebrow) {
  max-width: 900px;
  color: var(--muted);
  font-size: 18px;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.path-grid article {
  position: relative;
  min-height: 360px;
  padding: 26px;
  border: 1px solid rgba(24, 33, 31, 0.1);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 246, 255, 0.72)),
    var(--white);
  box-shadow: 0 22px 54px rgba(24, 33, 31, 0.07);
  overflow: hidden;
}

.path-grid article::after {
  position: absolute;
  right: -24px;
  bottom: -26px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(28, 165, 255, 0.2);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(36, 168, 107, 0.18) 0 18%, transparent 19%),
    rgba(28, 165, 255, 0.06);
  content: "";
}

.path-grid span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 48px;
  border-radius: 50%;
  background: #e4f5ed;
  color: var(--green-dark);
  font-weight: 950;
}

.path-grid h3,
.path-grid p {
  position: relative;
  z-index: 1;
}

.path-grid p {
  color: var(--muted);
}

.image-proof {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(0, 0.82fr));
  gap: 16px;
  margin-top: 18px;
}

.image-proof__card {
  position: relative;
  display: grid;
  min-height: 300px;
  margin: 0;
  border: 1px solid rgba(24, 33, 31, 0.1);
  border-radius: 16px;
  background:
    radial-gradient(circle at 80% 12%, rgba(28, 165, 255, 0.14), transparent 30%),
    #ffffff;
  box-shadow: 0 24px 70px rgba(24, 33, 31, 0.08);
  overflow: hidden;
}

.image-proof__card img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: contain;
  padding: 28px 24px 78px;
  filter: drop-shadow(0 22px 30px rgba(25, 51, 109, 0.14));
}

.image-proof__card--wide img {
  padding: 34px 34px 86px;
}

.image-proof__card figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: grid;
  gap: 3px;
  padding: 14px;
  border: 1px solid rgba(24, 33, 31, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
}

.image-proof__card strong,
.image-proof__card span {
  display: block;
}

.image-proof__card strong {
  color: var(--ink);
  font-size: 15px;
}

.image-proof__card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.portfolio-section {
  padding: clamp(72px, 8vw, 118px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 88% 14%, rgba(28, 165, 255, 0.16), transparent 28%),
    #ffffff;
}

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

.portfolio-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.42fr);
  align-items: center;
  gap: 26px;
  min-height: 430px;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(24, 33, 31, 0.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 26px 76px rgba(24, 33, 31, 0.08);
}

.portfolio-card > * {
  position: relative;
  z-index: 2;
}

.portfolio-card--services {
  background:
    linear-gradient(135deg, rgba(36, 168, 107, 0.1), rgba(255, 255, 255, 0.96) 42%),
    #ffffff;
}

.portfolio-card--product {
  color: var(--white);
  background:
    radial-gradient(circle at 78% 22%, rgba(28, 165, 255, 0.24), transparent 30%),
    linear-gradient(135deg, #19336d 0%, #122a50 52%, #10231f 100%);
}

.portfolio-card::after {
  display: none;
}

.portfolio-card__label {
  margin-bottom: 16px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.portfolio-card--product .portfolio-card__label {
  color: #89e5c0;
}

.portfolio-card p {
  max-width: 640px;
  color: var(--muted);
}

.portfolio-card--product p {
  color: rgba(255, 255, 255, 0.76);
}

.portfolio-card__media {
  position: relative;
  display: grid;
  place-items: center;
  align-self: stretch;
  min-height: 270px;
  border: 1px solid rgba(24, 33, 31, 0.08);
  border-radius: 18px;
  background:
    radial-gradient(circle at 44% 36%, rgba(36, 168, 107, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(238, 246, 255, 0.75), rgba(255, 255, 255, 0.4));
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.portfolio-card__media img {
  width: min(220px, 88%);
  max-height: 230px;
  object-fit: contain;
  filter: drop-shadow(0 22px 30px rgba(25, 51, 109, 0.16));
}

.portfolio-card__media--phone {
  background:
    radial-gradient(circle at 48% 34%, rgba(28, 165, 255, 0.2), transparent 30%),
    rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.portfolio-card__media--phone img {
  width: min(180px, 86%);
  max-height: 250px;
  filter: drop-shadow(0 26px 34px rgba(0, 0, 0, 0.24));
}

.portfolio-card ul {
  display: grid;
  gap: 10px;
  max-width: 560px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.portfolio-card li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 750;
}

.portfolio-card--product li {
  color: rgba(255, 255, 255, 0.88);
}

.portfolio-card li::before {
  position: absolute;
  top: 3px;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  content: "";
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 24px;
  color: var(--green-dark);
  font-weight: 900;
}

.text-link::after {
  content: "→";
}

.text-link--light {
  color: #bff4d7;
}

.product {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(28px, 6vw, 84px);
  background:
    radial-gradient(circle at 84% 16%, rgba(28, 165, 255, 0.26), transparent 28%),
    linear-gradient(135deg, #152d66 0%, #122a50 52%, #0d201d 100%);
  color: var(--white);
  overflow: hidden;
}

.product .eyebrow {
  color: #89e5c0;
}

.product__copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.product__copy p + p {
  margin-top: -4px;
}

.product-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0 8px;
}

.product-proof span {
  min-height: 88px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.product-proof strong {
  display: block;
  margin-bottom: 4px;
  color: #d9f8e6;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 6px;
}

.product-highlights article {
  min-height: 148px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
}

.product-highlights strong,
.product-highlights span {
  display: block;
}

.product-highlights strong {
  margin-bottom: 8px;
  color: #d9f8e6;
}

.product-highlights span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.product__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 620px;
  overflow: hidden;
}

.product__visual::before {
  position: absolute;
  inset: 9% 7% 7% 12%;
  border-radius: 50%;
  background: rgba(28, 165, 255, 0.2);
  content: "";
}

.product__visual img {
  position: relative;
  width: min(390px, 86%);
  max-height: 600px;
  object-fit: contain;
  filter: drop-shadow(0 34px 42px rgba(0, 0, 0, 0.28));
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 26px 0 32px;
}

.feature-pills span {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
  padding: 8px 12px;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.industry-grid span {
  display: grid;
  gap: 5px;
  min-height: 96px;
  padding: 18px;
  border-radius: var(--radius);
  text-align: left;
}

.industry-grid strong,
.industry-grid small {
  display: block;
}

.industry-grid strong {
  color: var(--ink);
  font-size: 15px;
}

.industry-grid small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.section--modules {
  background: #eef6ff;
}

.pain-section {
  background: #ffffff;
}

.pain-section .section__heading p:not(.eyebrow) {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
  font-size: 18px;
}

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

.pain-grid article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(238, 246, 255, 0.9), rgba(255, 255, 255, 1)),
    var(--white);
  box-shadow: 0 18px 48px rgba(24, 33, 31, 0.06);
}

.pain-grid span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

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

.module-card {
  min-height: 300px;
  padding: 26px;
}

.module-card--featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(180px, 0.6fr) minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(36, 168, 107, 0.08), rgba(28, 165, 255, 0.08)),
    var(--white);
}

.module-card--featured img {
  width: min(230px, 100%);
  max-height: 300px;
  object-fit: contain;
  justify-self: center;
  filter: drop-shadow(0 18px 28px rgba(25, 51, 109, 0.14));
}

.module-card__label {
  margin-bottom: 12px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.module-card__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin-top: 18px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 950;
}

.module-card__link::after {
  content: "→";
}

.process-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f3faf5 100%);
}

.delivery-standard {
  padding: clamp(72px, 8vw, 118px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(180deg, #f3faf5 0%, #ffffff 100%);
}

.delivery-standard .section__heading p:not(.eyebrow) {
  max-width: 860px;
  color: var(--muted);
  font-size: 18px;
}

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

.deliverable-grid article {
  position: relative;
  min-height: 330px;
  padding: 28px;
  border: 1px solid rgba(24, 33, 31, 0.1);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 20px 54px rgba(24, 33, 31, 0.07);
  overflow: hidden;
}

.deliverable-grid article::after {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 74px;
  height: 92px;
  border: 1px solid rgba(25, 51, 109, 0.14);
  border-radius: 10px;
  background:
    linear-gradient(#e6f2ee 0 0) 14px 22px / 46px 5px no-repeat,
    linear-gradient(#e6f2ee 0 0) 14px 38px / 36px 5px no-repeat,
    linear-gradient(#e6f2ee 0 0) 14px 54px / 44px 5px no-repeat,
    rgba(238, 246, 255, 0.74);
  content: "";
}

.deliverable-grid span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.deliverable-grid p {
  color: var(--muted);
}

.assurance-section {
  padding: 0 clamp(18px, 5vw, 72px) clamp(72px, 8vw, 118px);
  background: #ffffff;
}

.assurance-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(34px, 5vw, 58px);
  border-radius: 22px;
  color: var(--white);
  background:
    radial-gradient(circle at 92% 12%, rgba(28, 165, 255, 0.2), transparent 30%),
    #10231f;
  box-shadow: 0 32px 90px rgba(16, 35, 31, 0.18);
}

.assurance-panel .eyebrow {
  color: #89e5c0;
}

.assurance-panel p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
}

.assurance-list {
  display: grid;
  gap: 12px;
}

.assurance-list article {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
}

.assurance-list strong,
.assurance-list span {
  display: block;
}

.assurance-list span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.72);
}

.architecture-section {
  padding: clamp(72px, 8vw, 116px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background:
    radial-gradient(circle at 18% 18%, rgba(36, 168, 107, 0.22), transparent 32%),
    radial-gradient(circle at 82% 20%, rgba(28, 165, 255, 0.18), transparent 28%),
    #10231f;
}

.architecture-section .eyebrow {
  color: #89e5c0;
}

.architecture-map {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 70px minmax(0, 1fr) 70px minmax(0, 1fr);
  align-items: center;
  gap: 0;
}

.architecture-map article {
  min-height: 300px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
}

.architecture-map span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 40px;
  border-radius: 50%;
  background: rgba(137, 229, 192, 0.14);
  color: #bff4d7;
  font-weight: 900;
}

.architecture-map p {
  color: rgba(255, 255, 255, 0.72);
}

.architecture-line {
  height: 2px;
  background: linear-gradient(90deg, rgba(137, 229, 192, 0.2), rgba(28, 165, 255, 0.9), rgba(137, 229, 192, 0.2));
}

.process-grid,
.package-grid,
.faq-grid {
  display: grid;
  gap: 16px;
}

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

.process-grid article,
.package-grid article,
.faq-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(24, 33, 31, 0.07);
}

.process-grid article {
  min-height: 280px;
  padding: 26px;
}

.process-grid span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 26px;
  border-radius: 50%;
  background: #e7f6ee;
  color: var(--green-dark);
  font-weight: 900;
}

.packages {
  background: #ffffff;
}

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

.package-grid article {
  min-height: 410px;
  padding: 30px;
}

.package-grid__highlight {
  border-color: rgba(36, 168, 107, 0.38) !important;
  background:
    linear-gradient(180deg, rgba(36, 168, 107, 0.1), rgba(255, 255, 255, 1) 38%),
    var(--white) !important;
}

.package-grid__label {
  margin-bottom: 16px;
  color: var(--green-dark) !important;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.decision-section {
  background: #10231f;
  color: var(--white);
}

.decision-section .eyebrow {
  color: #89e5c0;
}

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

.decision-grid article {
  min-height: 300px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.decision-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.decision-grid strong {
  display: block;
  margin-top: 22px;
  color: #d9f8e6;
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  background:
    linear-gradient(120deg, rgba(36, 168, 107, 0.12), rgba(242, 184, 75, 0.12)),
    var(--paper);
}

.proof > div > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.faq {
  background: #f7fbf8;
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1080px;
  margin: 0 auto;
}

.faq-grid article {
  padding: 26px;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  padding: clamp(48px, 6vw, 80px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(100deg, rgba(36, 168, 107, 0.12), rgba(28, 165, 255, 0.12)),
    #ffffff;
}

.final-cta h2 {
  max-width: 780px;
}

.final-cta p {
  max-width: 760px;
  font-size: 18px;
}

.ai-summary {
  padding: clamp(48px, 6vw, 82px) clamp(18px, 5vw, 72px);
  background: #10231f;
  color: var(--white);
}

.ai-summary .eyebrow {
  color: #89e5c0;
}

.ai-summary h2,
.ai-summary p {
  max-width: 980px;
}

.ai-summary p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.proof__list {
  display: grid;
  gap: 14px;
}

.proof__list article {
  padding: 22px;
}

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

.proof__list span {
  margin-top: 6px;
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
  gap: clamp(24px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(rgba(11, 28, 25, 0.74), rgba(11, 28, 25, 0.74)),
    url("assets/nicelydone-cover.png") center / cover;
}

.contact .eyebrow {
  color: #89e5c0;
}

.contact__content p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.contact__panel {
  display: grid;
  gap: 12px;
  padding: 26px;
  color: var(--ink);
}

.contact__panel a {
  display: block;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--blue);
  font-size: 20px;
  font-weight: 900;
}

.contact__panel p {
  margin: 8px 0 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background: #111b19;
  font-size: 14px;
}

.site-footer a {
  color: #bfe9d1;
  font-weight: 800;
}

.nd-page {
  background: #f7fbf8;
}

.nd-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  align-items: center;
  gap: clamp(34px, 6vw, 90px);
  min-height: calc(100vh - 76px);
  padding: 56px clamp(18px, 5vw, 72px) 68px;
  background:
    radial-gradient(circle at 78% 18%, rgba(28, 165, 255, 0.18), transparent 30%),
    radial-gradient(circle at 18% 86%, rgba(36, 168, 107, 0.14), transparent 34%),
    linear-gradient(135deg, #f9fbf8 0%, #eff8f2 48%, #edf6fb 100%);
  overflow: hidden;
}

.nd-hero__content {
  max-width: 760px;
}

.nd-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.nd-hero__badges span {
  padding: 8px 12px;
  border: 1px solid rgba(24, 33, 31, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #314842;
  font-size: 13px;
  font-weight: 850;
}

.nd-hero__visual {
  position: relative;
  min-height: 650px;
}

.nd-hero__visual::before {
  position: absolute;
  inset: 8% 0 10% 10%;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(25, 51, 109, 0.92), rgba(16, 35, 31, 0.94)),
    #10231f;
  box-shadow: 0 32px 90px rgba(25, 51, 109, 0.18);
  content: "";
}

.nd-hero__phone,
.nd-hero__desktop,
.nd-hero__panel {
  position: absolute;
  z-index: 1;
}

.nd-hero__desktop {
  right: 10%;
  top: 18%;
  width: min(470px, 70%);
  border-radius: 18px;
  box-shadow: 0 28px 54px rgba(0, 0, 0, 0.22);
}

.nd-hero__phone {
  left: 7%;
  bottom: 10%;
  width: min(300px, 44%);
  filter: drop-shadow(0 34px 44px rgba(0, 0, 0, 0.28));
}

.nd-hero__panel {
  right: 5%;
  bottom: 16%;
  display: grid;
  gap: 6px;
  width: min(330px, 52%);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  color: var(--white);
}

.nd-hero__panel strong {
  font-size: 34px;
  line-height: 1;
}

.nd-hero__panel span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 800;
}

.nd-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(18px, 5vw, 72px);
  background: var(--line);
}

.nd-strip article {
  padding: 28px;
  background: #10231f;
  color: var(--white);
}

.nd-strip strong,
.nd-strip span {
  display: block;
}

.nd-strip strong {
  margin-bottom: 8px;
  font-size: 19px;
}

.nd-strip span {
  color: rgba(255, 255, 255, 0.72);
}

.nd-section,
.nd-modules,
.nd-showcase,
.nd-pricing,
.nd-cta {
  padding: clamp(72px, 8vw, 118px) clamp(18px, 5vw, 72px);
}

.nd-product-story {
  background: #ffffff;
}

.nd-product-story .section__heading p:not(.eyebrow) {
  max-width: 900px;
  color: var(--muted);
  font-size: 18px;
}

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

.nd-story-grid article,
.nd-module-card,
.nd-price-grid article,
.nd-contact-card {
  border: 1px solid rgba(24, 33, 31, 0.1);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 22px 60px rgba(24, 33, 31, 0.07);
}

.nd-story-grid article {
  min-height: 230px;
  padding: 26px;
}

.nd-story-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 21px;
  line-height: 1.15;
}

.nd-story-grid p,
.nd-module-card p,
.nd-showcase__copy p,
.nd-price-grid p,
.nd-cta p {
  color: var(--muted);
}

.nd-modules {
  background: #eef6ff;
}

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

.nd-module-card {
  min-height: 320px;
  padding: 26px;
}

.nd-module-card--feature {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(180px, 0.56fr) minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(36, 168, 107, 0.08), rgba(28, 165, 255, 0.1)),
    var(--white);
}

.nd-module-card--feature img {
  width: min(250px, 100%);
  max-height: 320px;
  justify-self: center;
  object-fit: contain;
  filter: drop-shadow(0 24px 32px rgba(25, 51, 109, 0.16));
}

.nd-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(30px, 6vw, 88px);
  background:
    radial-gradient(circle at 82% 18%, rgba(28, 165, 255, 0.16), transparent 30%),
    #ffffff;
}

.nd-showcase__media {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.nd-showcase__media img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  border-radius: 16px;
  filter: drop-shadow(0 26px 36px rgba(25, 51, 109, 0.14));
}

.nd-pricing {
  background: #f7fbf8;
}

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

.nd-price-grid article {
  min-height: 245px;
  padding: 30px;
}

.nd-price-grid span {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nd-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(28, 165, 255, 0.22), transparent 30%),
    #10231f;
}

.nd-cta .eyebrow {
  color: #89e5c0;
}

.nd-cta p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
}

.nd-contact-card {
  display: grid;
  gap: 14px;
  padding: 26px;
  color: var(--ink);
}

.nd-contact-card a {
  color: var(--blue);
  font-size: 20px;
  font-weight: 950;
}

.nd-contact-card span {
  color: var(--muted);
  font-weight: 800;
}

@media (max-width: 1080px) {
  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 44px;
  }

  .hero,
  .split-section,
  .product,
  .proof,
  .contact,
  .executive-brief,
  .device-lab {
    grid-template-columns: 1fr;
  }

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

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

  .image-proof__card--wide {
    grid-column: 1 / -1;
  }

  .deliverable-grid,
  .assurance-panel,
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nd-hero,
  .nd-showcase,
  .nd-cta {
    grid-template-columns: 1fr;
  }

  .nd-story-grid,
  .nd-module-grid,
  .nd-price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .module-grid,
  .package-grid,
  .faq-grid,
  .pain-grid,
  .decision-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-band {
    grid-template-columns: 1fr;
  }

  .architecture-map {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .architecture-line {
    width: 2px;
    height: 36px;
    margin: 0 auto;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 68px;
  }

  .brand img {
    width: 126px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    inset: 68px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 12px;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  h1 {
    font-size: 40px;
    line-height: 1.06;
  }

  h2 {
    font-size: 34px;
    line-height: 1.08;
  }

  .lead {
    font-size: 17px;
  }

  .ops-dashboard__grid strong {
    font-size: 30px;
  }

  .hero__visual,
  .product__visual,
  .split-section__media,
  .device-scene {
    min-height: auto;
  }

  .device-scene {
    display: grid;
    gap: 14px;
    padding: 16px;
  }

  .device-scene::before,
  .device-scene::after {
    display: none;
  }

  .rack-device,
  .switch-device,
  .access-point,
  .laptop-device,
  .cloud-node {
    position: static;
    width: 100%;
    min-height: 120px;
  }

  .ops-dashboard__grid {
    grid-template-columns: 1fr;
  }

  .showcase-screens {
    grid-template-columns: 1fr;
  }

  .service-orbit {
    min-height: 150px;
  }

  .service-orbit::before {
    inset: 28px 10%;
  }

  .service-orbit::after {
    inset: 50px 22%;
  }

  .service-orbit__node {
    min-width: 56px;
    height: 28px;
    padding: 0 10px;
  }

  .service-orbit__node--network {
    left: 8%;
  }

  .service-orbit__node--cloud {
    right: 8%;
  }

  .service-orbit__node--security {
    left: 10%;
  }

  .service-orbit__node--apps {
    right: 10%;
  }

  .screen-card img,
  .screen-card--phone img {
    height: 180px;
  }

  .service-grid,
  .process-grid,
  .technology-grid,
  .path-grid,
  .image-proof,
  .portfolio-grid,
  .deliverable-grid,
  .assurance-panel,
  .module-grid,
  .nd-strip,
  .nd-story-grid,
  .nd-module-grid,
  .nd-price-grid,
  .industry-grid,
  .package-grid,
  .faq-grid,
  .pain-grid,
  .decision-grid,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .brief-metrics article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .product-proof {
    grid-template-columns: 1fr;
  }

  .product-highlights {
    grid-template-columns: 1fr;
  }

  .image-proof__card {
    min-height: 250px;
  }

  .image-proof__card img {
    min-height: 210px;
    padding: 22px 18px 82px;
  }

  .portfolio-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .portfolio-card__media,
  .portfolio-card__media--phone {
    width: 100%;
    min-height: 220px;
    margin: 22px 0 4px;
  }

  .portfolio-card__media--phone {
    min-height: 240px;
  }

  .nd-hero {
    padding-top: 42px;
  }

  .nd-hero__visual {
    min-height: 520px;
  }

  .nd-hero__visual::before {
    inset: 3% 0 4%;
  }

  .nd-hero__desktop {
    right: 7%;
    top: 12%;
    width: 76%;
  }

  .nd-hero__phone {
    left: 5%;
    bottom: 5%;
    width: 42%;
  }

  .nd-hero__panel {
    right: 5%;
    bottom: 8%;
    width: 52%;
  }

  .nd-module-card--feature,
  .nd-showcase__media {
    grid-template-columns: 1fr;
  }

  .nd-module-card--feature {
    grid-column: auto;
  }

  .logo-stage__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .wordmark {
    min-width: 132px;
    height: 64px;
    font-size: 18px;
  }

  .signal-video {
    grid-template-columns: 1fr;
  }

  .module-card--featured {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .product__visual img {
    max-height: 500px;
  }

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

@media (max-width: 420px) {
  h1 {
    font-size: 35px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 19px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .logo-track {
    transform: none;
  }
}
