:root {
  --bg: #050b14;
  --panel: #0b1422;
  --panel-2: #111c2e;
  --line: rgba(141, 181, 255, 0.16);
  --text: #f7f8fb;
  --muted: #b8c5d8;
  --dim: #7e8da6;
  --cyan: #2dd4bf;
  --blue: #2563eb;
  --purple: #4f46e5;
  --white: #ffffff;
  --pink: #38bdf8;
  --orange: #14b8a6;
  --radius: 8px;
  --container: 1180px;
  --gutter: clamp(22px, 4.8vw, 72px);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 36%, rgba(37, 99, 235, 0.16), transparent 30%),
    radial-gradient(circle at 96% 65%, rgba(45, 212, 191, 0.075), transparent 24%),
    linear-gradient(180deg, #040812, #071221 48%, #050914);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.55;
}

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

button {
  font: inherit;
}

svg {
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: clamp(34px, 5vw, 76px);
  padding: 46px var(--gutter) 0;
}

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

.brand-logo {
  display: block;
  width: clamp(190px, 20vw, 285px);
  height: auto;
  filter: drop-shadow(0 0 18px rgba(37, 99, 235, 0.2));
}

.brand small,
.eyebrow {
  display: block;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(34px, 4vw, 64px);
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.main-nav a[aria-current="page"] {
  color: var(--cyan);
  text-shadow: 0 0 18px rgba(45, 212, 191, 0.26);
}

.main-nav > a[aria-current="page"]::after,
.nav-dropdown > a[aria-current="page"]::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(45, 212, 191, 0), var(--cyan), rgba(45, 212, 191, 0));
  box-shadow: 0 0 16px rgba(45, 212, 191, 0.42);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 8px 0;
  margin: -8px 0;
}

.nav-dropdown > a::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 4px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: -18px;
  right: -18px;
  top: 100%;
  height: 18px;
}

.subnav {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 40;
  width: 320px;
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(13, 27, 47, 0.98), rgba(5, 11, 20, 0.98)),
    var(--bg);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42), 0 0 34px rgba(45, 212, 191, 0.08);
  padding: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.subnav-section {
  display: grid;
  gap: 4px;
}

.subnav-section + .subnav-section {
  border-top: 1px solid rgba(141, 181, 255, 0.14);
  padding-top: 10px;
}

.subnav-label {
  display: block;
  padding: 4px 10px 3px;
  color: var(--cyan);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-dropdown:hover .subnav,
.nav-dropdown:focus-within .subnav {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.subnav a {
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.subnav a.subnav-feature {
  display: grid;
  gap: 3px;
  border: 1px solid rgba(45, 212, 191, 0.2);
  background:
    linear-gradient(145deg, rgba(45, 212, 191, 0.1), rgba(37, 99, 235, 0.08)),
    rgba(255, 255, 255, 0.03);
  color: #ffffff;
  padding: 13px 14px;
}

.subnav a.subnav-feature small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}

.subnav a:hover,
.subnav a:focus,
.subnav a[aria-current="page"] {
  background: rgba(45, 212, 191, 0.09);
  color: #ffffff;
}

.button {
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-radius: 8px;
  padding: 0 32px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.button-ghost {
  border: 1px solid rgba(96, 165, 250, 0.62);
  background: #050b14;
  box-shadow: 0 0 34px rgba(37, 99, 235, 0.2);
}

.button-gradient {
  border: 0;
  background: var(--blue);
  box-shadow: 0 18px 42px rgba(37, 99, 235, 0.26);
}

.button i {
  width: 13px;
  height: 13px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  background: transparent;
  transform: rotate(45deg);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero-section {
  position: relative;
  min-height: 860px;
  display: grid;
  align-items: start;
  overflow: hidden;
  padding: 142px var(--gutter) 44px;
  background:
    radial-gradient(circle at 72% 47%, rgba(37, 99, 235, 0.2), transparent 28%),
    radial-gradient(circle at 91% 52%, rgba(45, 212, 191, 0.1), transparent 22%),
    linear-gradient(90deg, rgba(1, 4, 11, 0.98) 0%, rgba(4, 10, 24, 0.92) 38%, rgba(7, 18, 33, 0.86) 100%);
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  background: linear-gradient(180deg, transparent, rgba(5, 9, 20, 0.98));
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 5;
  width: min(560px, 100%);
  margin: 0;
  justify-self: stretch;
}

.hero-copy .eyebrow {
  margin: 0 0 58px;
  background: linear-gradient(90deg, #60a5fa, #3b82f6 48%, var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 18px;
  letter-spacing: 0.38em;
}

.hero-copy .eyebrow::after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  margin-top: 18px;
  background: linear-gradient(90deg, var(--blue), #3b82f6, var(--cyan));
}

.hero-copy h1 {
  max-width: 500px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(46px, 5.3vw, 68px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.04;
  text-transform: none;
  text-shadow: 0 0 28px rgba(96, 165, 250, 0.12);
}

.hero-copy h1 span {
  display: inline-block;
  background: linear-gradient(90deg, #60a5fa, var(--blue) 46%, var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy > p:not(.eyebrow) {
  width: min(100%, 520px);
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 21px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 50px;
}

.explore-link {
  position: relative;
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  gap: 28px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.explore-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 42px;
  bottom: 8px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), #60a5fa, var(--cyan));
}

.explore-link i {
  width: 16px;
  height: 16px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 0;
  margin-top: 48px;
}

.hero-proof div {
  min-width: 278px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0 34px 0 0;
  margin-right: 34px;
}

.hero-proof div:last-child {
  border-right: 0;
  margin-right: 0;
}

.hero-proof svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-proof div:nth-child(1) svg { color: #60a5fa; }
.hero-proof div:nth-child(2) svg { color: var(--cyan); }
.hero-proof div:nth-child(3) svg { color: #93c5fd; }

.hero-proof strong,
.hero-proof small {
  display: block;
}

.hero-proof strong {
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-proof small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.48;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 9px 9px;
  mask-image: radial-gradient(circle at 74% 48%, #000 0 370px, transparent 560px), linear-gradient(90deg, transparent, #000 38%, #000);
}

.grid-field,
.orbit,
.logo-wave,
.sphere {
  position: absolute;
  display: block;
}

.grid-field {
  inset: 0;
  background:
    radial-gradient(circle at 2px 2px, rgba(113, 143, 219, 0.3) 1px, transparent 1.8px) 0 0 / 18px 18px;
  opacity: 0.35;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 15%, #000 82%, transparent 100%),
    radial-gradient(circle at 75% 52%, #000 0 430px, transparent 620px);
}

.orbit {
  border: 1px solid rgba(96, 165, 250, 0.42);
  border-radius: 50%;
  box-shadow: 0 0 65px rgba(37, 99, 235, 0.18);
}

.orbit-one {
  right: 1%;
  top: 7%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle at 56% 42%, rgba(37, 99, 235, 0.11), transparent 55%);
}

.orbit-two {
  right: -8%;
  top: 16%;
  width: 720px;
  height: 720px;
  border-color: rgba(45, 212, 191, 0.26);
  clip-path: inset(0 0 0 23%);
}

.logo-wave {
  right: -2%;
  top: 5%;
  z-index: 1;
  width: min(1120px, 76vw);
  height: min(760px, 54vw);
  overflow: visible;
  filter:
    drop-shadow(0 0 52px rgba(37, 99, 235, 0.13))
    drop-shadow(0 24px 52px rgba(0, 0, 0, 0.5));
  opacity: 0.96;
}

.logo-wave path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.logo-wave-outline {
  mask: url("#heroLogoWaveHollow");
  stroke: url("#heroLogoWaveBorder");
  stroke-width: 8.7;
  opacity: 0.9;
}

.tech-constellation {
  position: absolute;
  right: -2%;
  top: 2%;
  z-index: 2;
  width: min(1120px, 76vw);
  height: 720px;
  color: #60a5fa;
}

.tech-constellation::before {
  content: "";
  position: absolute;
  inset: 6% 4% 6% 2%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 52% 16%, rgba(34, 211, 238, 0.16), transparent 16%),
    radial-gradient(circle at 55% 48%, rgba(37, 99, 235, 0.12), transparent 36%);
  filter: blur(2px);
  pointer-events: none;
}

.tech-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.tech-wave,
.tech-orbit,
.tech-line-soft {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tech-orbit {
  stroke: rgba(96, 165, 250, 0.26);
  stroke-width: 1.25;
  filter: drop-shadow(0 0 10px rgba(37, 99, 235, 0.22));
}

.orbit-mid {
  stroke: rgba(45, 212, 191, 0.12);
}

.orbit-low {
  stroke: rgba(37, 99, 235, 0.16);
}

.tech-wave {
  stroke: url("#techWaveGradient");
  filter: url("#techGlow");
}

.tech-wave-outer {
  stroke-width: 2.35;
}

.tech-wave-inner {
  stroke-width: 2.7;
}

.tech-line-soft {
  stroke: rgba(45, 212, 191, 0.13);
  stroke-width: 1;
}

.tech-node {
  fill: #93c5fd;
  filter: url("#nodeGlow");
  opacity: 0.78;
}

.star-flash {
  transform-origin: center;
}

.tech-service-card {
  position: absolute;
  z-index: 3;
  width: 282px;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: start;
  border: 1px solid rgba(170, 206, 255, 0.2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 16% 18%, rgba(96, 165, 250, 0.11), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(4, 10, 20, 0.54);
  box-shadow:
    0 18px 52px rgba(0, 0, 0, 0.34),
    inset 0 1px rgba(255, 255, 255, 0.13),
    inset 0 -1px rgba(141, 181, 255, 0.08);
  backdrop-filter: blur(20px) saturate(145%);
  -webkit-backdrop-filter: blur(20px) saturate(145%);
  padding: 20px;
  overflow: hidden;
}

.tech-service-card::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.68), transparent);
}

.tech-card-managed {
  left: 31%;
  top: 27%;
}

.tech-card-security {
  right: 4%;
  top: 27%;
}

.tech-card-cloud {
  left: 45%;
  top: 66%;
}

.tech-card-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(96, 165, 250, 0.18);
  border-radius: 15px;
  background:
    linear-gradient(145deg, rgba(37, 99, 235, 0.22), rgba(96, 165, 250, 0.08)),
    rgba(255, 255, 255, 0.035);
  color: #60a5fa;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08), 0 0 28px rgba(37, 99, 235, 0.18);
}

.tech-card-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(96, 165, 250, 0.34));
}

.tech-service-card h2 {
  margin: 0;
  color: #ffffff;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.12;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.08);
}

.tech-service-card p {
  display: block;
  margin: 10px 0 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.48;
}

.tech-service-card strong {
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid rgba(141, 181, 255, 0.16);
  padding-top: 13px;
  color: var(--cyan);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tech-service-card strong i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(45, 212, 191, 0.85);
}

.sphere {
  display: none;
  border-radius: 50%;
  filter: drop-shadow(0 26px 40px rgba(0, 0, 0, 0.65));
}

.sphere-magenta {
  width: 260px;
  height: 260px;
  right: 8%;
  top: 34%;
  background: radial-gradient(circle at 34% 24%, #60a5fa, #2563eb 45%, #071a3d 78%);
}

.sphere-blue {
  width: 98px;
  height: 98px;
  right: 34%;
  top: 32%;
  background: radial-gradient(circle at 28% 18%, #93c5fd, #2563eb 38%, #081b45 78%);
}

.sphere-teal {
  width: 150px;
  height: 150px;
  right: 33%;
  bottom: 12%;
  background: radial-gradient(circle at 30% 24%, #8fffee, var(--cyan) 45%, #0f766e);
  box-shadow: 0 0 70px rgba(45, 212, 191, 0.24);
}

@media (prefers-reduced-motion: reduce) {
  .tech-constellation,
  .tech-wave,
  .tech-wave-shine,
  .star-flash,
  .tech-service-card,
  .tech-service-card::after {
    animation: none;
  }

  .tech-wave-shine,
  .tech-service-card::after {
    opacity: 0;
  }
}

.services-section {
  max-width: calc(var(--container) + var(--gutter) * 2);
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 28px;
  margin: 0 auto;
  padding: 70px var(--gutter) 42px;
}

.section-lead h2 {
  margin: 0;
  font-size: 25px;
  line-height: 1.28;
}

.accent-line {
  display: block;
  width: 50px;
  height: 2px;
  margin-top: 26px;
  background: var(--cyan);
}

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

.service-card,
.why-panel,
.why-card,
.cta-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04), 0 26px 60px rgba(0, 0, 0, 0.24);
}

.service-card {
  position: relative;
  min-height: 295px;
  display: flex;
  flex-direction: column;
  padding: 30px 20px 18px;
}

.service-card svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.62);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-dot {
  position: absolute;
  top: 72px;
  right: 31px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot-blue { background: var(--blue); }
.dot-purple { background: var(--purple); }
.dot-teal { background: var(--cyan); }
.dot-orange { background: var(--orange); }
.dot-pink { background: var(--pink); }

.service-card h3 {
  margin: 45px 0 20px;
  font-size: 17px;
  line-height: 1.38;
}

.service-card p {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height 220ms ease, margin 220ms ease, opacity 180ms ease, transform 220ms ease;
}

.service-card.is-expanded p {
  max-height: 140px;
  margin: 0 0 18px;
  opacity: 1;
  transform: translateY(0);
}

.service-card button {
  width: 28px;
  height: 28px;
  margin-top: auto;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.service-card.is-expanded button {
  border-color: var(--cyan);
  background: var(--cyan);
  color: #04111f;
  transform: rotate(45deg);
}

.choose-section {
  max-width: calc(var(--container) + var(--gutter) * 2);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  margin: 0 auto;
  padding: 28px var(--gutter) 18px;
}

.choose-copy,
.choose-signal,
.proof-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04), 0 26px 60px rgba(0, 0, 0, 0.22);
}

.choose-copy {
  padding: clamp(28px, 4vw, 48px);
}

.choose-copy h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.05;
  text-transform: uppercase;
}

.choose-copy p:not(.eyebrow) {
  max-width: 880px;
  margin: 20px 0 0;
  color: var(--muted);
}

.choose-copy p:nth-of-type(2) {
  color: #e8eef8;
  font-weight: 700;
}

.choose-signal {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background:
    radial-gradient(circle at 66% 34%, rgba(45, 212, 191, 0.18), transparent 28%),
    linear-gradient(145deg, rgba(37, 99, 235, 0.16), rgba(255, 255, 255, 0.025));
}

.choose-signal::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -84px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(45, 212, 191, 0.18);
  border-radius: 50%;
}

.choose-signal span,
.choose-signal i,
.choose-signal b {
  position: absolute;
  display: block;
}

.choose-signal span {
  left: 48px;
  top: 74px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 24%, #93c5fd, var(--blue) 52%, #071b45);
  box-shadow: 0 28px 62px rgba(37, 99, 235, 0.34);
}

.choose-signal i {
  right: 62px;
  top: 158px;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 24%, #99f6e4, var(--cyan) 52%, #0f766e);
  box-shadow: 0 24px 52px rgba(45, 212, 191, 0.28);
}

.choose-signal b {
  left: 50px;
  right: 50px;
  bottom: 62px;
  height: 118px;
  border: 1px solid rgba(141, 181, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(45, 212, 191, 0.14), transparent 70%),
    rgba(5, 11, 20, 0.48);
}

.proof-section {
  max-width: calc(var(--container) + var(--gutter) * 2);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 auto;
  padding: 0 var(--gutter) 34px;
}

.proof-card {
  position: relative;
  min-height: 280px;
  padding: 28px;
  overflow: hidden;
}

.proof-card::after {
  content: "";
  position: absolute;
  right: -58px;
  top: -58px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(45, 212, 191, 0.15);
  border-radius: 50%;
}

.proof-card-featured {
  background:
    radial-gradient(circle at 82% 8%, rgba(45, 212, 191, 0.18), transparent 36%),
    linear-gradient(145deg, rgba(37, 99, 235, 0.18), rgba(255, 255, 255, 0.032));
}

.proof-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(45, 212, 191, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--cyan);
}

.proof-icon svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proof-calendar {
  color: #111827;
  background: linear-gradient(145deg, #f8fafc, #9fb6d8);
}

.proof-handshake {
  color: var(--cyan);
}

.proof-shield {
  color: #93c5fd;
}

.proof-card h3 {
  margin: 36px 0 14px;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.2;
}

.proof-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.testimonial-section {
  max-width: calc(var(--container) + var(--gutter) * 2);
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 28px;
  margin: 0 auto;
  padding: 28px var(--gutter) 36px;
}

.testimonial-lead h2 {
  max-width: 260px;
  margin: 0;
  font-size: 27px;
  line-height: 1.22;
}

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

.testimonial-card {
  position: relative;
  min-height: 245px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 82% 6%, rgba(45, 212, 191, 0.11), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
  padding: 24px;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04), 0 24px 60px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.testimonial-card::after {
  content: "";
  position: absolute;
  right: -44px;
  top: -44px;
  width: 118px;
  height: 118px;
  border: 1px solid rgba(45, 212, 191, 0.16);
  border-radius: 50%;
}

.testimonial-card-featured {
  background:
    radial-gradient(circle at 85% 2%, rgba(45, 212, 191, 0.16), transparent 36%),
    linear-gradient(145deg, rgba(37, 99, 235, 0.16), rgba(255, 255, 255, 0.035));
}

.rating {
  color: var(--cyan);
  font-size: 13px;
  letter-spacing: 0.12em;
}

.testimonial-card p {
  position: relative;
  z-index: 1;
  margin: 22px 0 24px;
  color: #e8eef8;
  font-size: 15px;
  line-height: 1.6;
}

.testimonial-card footer {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3px;
  margin-top: auto;
}

.testimonial-card strong {
  color: #ffffff;
  font-size: 14px;
}

.testimonial-card span {
  color: var(--dim);
  font-size: 12px;
}

.why-panel {
  max-width: calc(var(--container) + var(--gutter) * 2);
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  margin: 0 auto 18px;
  padding: 58px var(--gutter) 28px;
}

.why-intro h2 {
  margin: 0;
  font-size: 27px;
  line-height: 1.25;
}

.why-intro > p:not(.eyebrow) {
  margin: 36px 0 50px;
  color: var(--muted);
  font-size: 14px;
}

.why-intro a {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.why-card {
  min-height: 365px;
  padding: 28px 22px 24px;
}

.mini-scene {
  position: relative;
  height: 118px;
  margin-bottom: 28px;
  border-radius: 0 0 50% 50%;
  background: radial-gradient(ellipse at center bottom, rgba(255, 255, 255, 0.12), transparent 55%);
}

.mini-scene span,
.mini-scene i {
  position: absolute;
  display: block;
}

.mini-scene span {
  left: 34%;
  top: 28px;
  width: 58px;
  height: 58px;
  border-radius: 50% 50% 46% 46%;
  background: radial-gradient(circle at 35% 25%, #5f6468, #1d2020 56%, #080909);
  box-shadow: 0 22px 32px rgba(0, 0, 0, 0.55);
}

.mini-scene i {
  right: 18%;
  bottom: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.scene-one i { background: radial-gradient(circle at 30% 22%, #93c5fd, var(--blue) 48%, #071b45); }
.scene-two i { background: radial-gradient(circle at 30% 22%, #a5b4fc, var(--purple) 48%, #111c4d); }
.scene-three i { background: radial-gradient(circle at 30% 22%, #8fffee, var(--cyan) 48%, #0f766e); }
.scene-four i { background: radial-gradient(circle at 30% 22%, #bae6fd, var(--pink) 48%, #0c4a6e); }

.mini-line {
  display: block;
  width: 70px;
  height: 2px;
  margin-bottom: 20px;
}

.line-blue { background: var(--blue); }
.line-purple { background: var(--purple); }
.line-teal { background: var(--cyan); }
.line-pink { background: var(--pink); }

.why-card h3 {
  margin: 0 0 18px;
  font-size: 17px;
}

.why-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.cta-panel {
  max-width: calc(var(--container) + var(--gutter) * 2);
  display: grid;
  grid-template-columns: 270px 1fr auto;
  align-items: center;
  gap: 28px;
  margin: 18px auto 0;
  padding: 26px var(--gutter);
}

.cta-orbit {
  position: relative;
  height: 105px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.42), transparent 62%);
}

.cta-orbit span {
  position: absolute;
  left: 50%;
  top: 12px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #93c5fd, #2563eb 52%, #071b45);
  transform: translateX(-50%);
  filter: drop-shadow(0 24px 36px rgba(37, 99, 235, 0.42));
}

.cta-panel h2 {
  margin: 0;
  font-size: 27px;
  line-height: 1.25;
}

.quick-contact-section {
  max-width: calc(var(--container) + var(--gutter) * 2);
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  align-items: center;
  gap: 28px;
  margin: 18px auto 0;
  padding: 34px var(--gutter);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 82% 18%, rgba(45, 212, 191, 0.12), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04), 0 26px 60px rgba(0, 0, 0, 0.22);
}

.quick-contact-copy h2 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
}

.quick-contact-copy p:not(.eyebrow) {
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--muted);
}

.quick-contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  gap: 12px;
  align-items: end;
}

.quick-contact-form label {
  display: grid;
  gap: 8px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quick-contact-form input {
  width: 100%;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  color: #ffffff;
  font: inherit;
  padding: 12px 14px;
  outline: none;
}

.quick-contact-form input:focus {
  border-color: rgba(45, 212, 191, 0.58);
  box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.12);
}

.quick-contact-form .button {
  min-height: 58px;
}

/* ── Home page: services bento ── */

.home-svc-section {
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin: clamp(72px, 9vw, 112px) auto 0;
  padding: 0 var(--gutter);
}

.home-svc-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(28px, 3.5vw, 44px);
}

.home-svc-header h2 {
  font-size: clamp(28px, 4vw, 50px);
  text-transform: uppercase;
  line-height: 1.0;
  margin: 6px 0 0;
}

.home-svc-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  align-self: flex-end;
  padding-bottom: 4px;
  flex-shrink: 0;
}

.home-svc-all i {
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  flex-shrink: 0;
}

.home-svc-bento {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: auto auto;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.home-svc-cell {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(22px, 2.8vw, 40px);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #ffffff;
  min-height: 210px;
  transition: background 250ms ease;
}

.home-svc-cell:hover {
  background: rgba(45, 212, 191, 0.04);
}

.home-svc-cell--primary {
  grid-row: 1 / 3;
  min-height: 0;
  justify-content: flex-end;
}

.home-svc-num {
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: var(--cyan);
  margin-bottom: 18px;
}

.home-svc-cell--primary .home-svc-num {
  margin-bottom: auto;
}

.home-svc-cell svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.42);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 16px;
}

.home-svc-cell--primary svg {
  width: 56px;
  height: 56px;
  opacity: 0.44;
  margin-bottom: 24px;
}

.home-svc-cell h3 {
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 0.025em;
  margin: 0 0 9px;
}

.home-svc-cell--primary h3 {
  font-size: clamp(20px, 2.4vw, 30px);
}

.home-svc-cell p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.home-svc-cell--primary p {
  font-size: 15px;
  max-width: 340px;
  margin-bottom: 24px;
}

.home-svc-arrow {
  display: block;
  width: 17px;
  height: 17px;
  border-top: 2px solid rgba(255, 255, 255, 0.22);
  border-right: 2px solid rgba(255, 255, 255, 0.22);
  transform: rotate(45deg);
  margin-top: 18px;
  transition: border-color 220ms ease, transform 220ms ease;
  flex-shrink: 0;
}

.home-svc-cell--primary .home-svc-arrow {
  width: 20px;
  height: 20px;
  margin-top: 0;
}

.home-svc-cell:hover .home-svc-arrow {
  border-color: var(--cyan);
  transform: rotate(45deg) translate(3px, -3px);
}

/* ── Home page: stats strip ── */

.home-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: clamp(72px, 9vw, 112px) 0 0;
}

.home-stat {
  padding: clamp(32px, 4.5vw, 62px) var(--gutter);
  border-right: 1px solid var(--line);
}

.home-stat:last-child {
  border-right: none;
}

.home-stat-n {
  display: block;
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #ffffff;
}

.home-stat-n sup {
  font-size: 0.42em;
  vertical-align: super;
  letter-spacing: 0;
}

.home-stat-l {
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-top: 14px;
}

.home-stat-d {
  display: block;
  font-size: 13px;
  color: var(--dim);
  margin-top: 6px;
  max-width: 240px;
}

/* ── Home page: why section ── */

.home-why {
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin: clamp(72px, 9vw, 112px) auto 0;
  padding: 0 var(--gutter);
}

.home-why-head {
  margin-bottom: clamp(36px, 4.5vw, 56px);
}

.home-why-head h2 {
  font-size: clamp(28px, 3.8vw, 50px);
  text-transform: uppercase;
  line-height: 1.05;
  margin: 6px 0 0;
}

.home-why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.home-why-item {
  padding: clamp(26px, 3vw, 42px) clamp(18px, 2.2vw, 32px) clamp(26px, 3vw, 42px) 0;
  border-right: 1px solid var(--line);
}

.home-why-item:nth-child(n+2) {
  padding-left: clamp(18px, 2.2vw, 32px);
}

.home-why-item:last-child {
  border-right: none;
  padding-right: 0;
}

.home-why-n {
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: var(--cyan);
  margin-bottom: 18px;
}

.home-why-item h3 {
  font-size: clamp(14px, 1.6vw, 18px);
  text-transform: uppercase;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.025em;
  margin: 0 0 11px;
}

.home-why-item p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

/* ── Home page: plans ── */

.home-plans {
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin: clamp(72px, 9vw, 112px) auto 0;
  padding: 0 var(--gutter);
}

.home-plans-intro {
  max-width: 620px;
  margin: 0 0 clamp(28px, 3.5vw, 44px);
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.home-plans-grid.svc-tier-grid {
  margin-bottom: 24px;
}

.home-plan-desc {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.svc-tier.is-recommended .home-plan-desc {
  color: rgba(255, 255, 255, 0.86);
}

.home-plans-note {
  margin: 0;
  color: var(--dim);
  font-size: 12.5px;
  font-style: italic;
}

/* ── Home page: reviews ── */

.home-reviews {
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin: clamp(72px, 9vw, 112px) auto 0;
  padding: 0 var(--gutter);
}

.home-reviews-head {
  margin-bottom: clamp(36px, 4.5vw, 56px);
}

.home-reviews-head h2 {
  font-size: clamp(28px, 3.8vw, 50px);
  text-transform: uppercase;
  line-height: 1.05;
  margin: 6px 0 0;
}

.home-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.home-review {
  position: relative;
  padding: clamp(28px, 3.5vw, 48px) clamp(20px, 2.5vw, 36px) clamp(28px, 3.5vw, 48px) 0;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.home-review:nth-child(n+2) {
  padding-left: clamp(20px, 2.5vw, 36px);
}

.home-review:last-child {
  border-right: none;
  padding-right: 0;
}

.home-review-mark {
  display: block;
  font-size: 72px;
  line-height: 0.75;
  color: var(--cyan);
  opacity: 0.15;
  margin-bottom: 18px;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  user-select: none;
}

.home-review--accent .home-review-mark {
  opacity: 0.28;
}

.home-review .rating {
  color: var(--cyan);
  font-size: 12px;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}

.home-review blockquote {
  font-size: clamp(15px, 1.6vw, 19px);
  line-height: 1.62;
  color: #dce6f5;
  font-weight: 500;
  margin: 0 0 auto;
  padding: 0;
}

.home-review--accent blockquote {
  color: #ffffff;
}

.home-review cite {
  display: grid;
  gap: 5px;
  margin-top: 28px;
  font-style: normal;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.home-review-name {
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
}

.home-review-co {
  color: var(--dim);
  font-size: 12px;
}

/* ── Home page: final CTA ── */

.home-final-cta {
  border-top: 1px solid var(--line);
  margin-top: clamp(72px, 9vw, 112px);
  background:
    radial-gradient(circle at 10% 50%, rgba(37, 99, 235, 0.2), transparent 44%),
    radial-gradient(circle at 90% 50%, rgba(45, 212, 191, 0.1), transparent 40%);
}

.home-final-cta-inner {
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.home-final-cta h2 {
  font-size: clamp(24px, 3.6vw, 48px);
  text-transform: uppercase;
  line-height: 1.08;
  margin: 0;
  max-width: 680px;
}

/* ── end home layout ── */

.site-footer {
  max-width: calc(var(--container) + var(--gutter) * 2);
  display: grid;
  grid-template-columns: minmax(230px, 1.25fr) minmax(135px, 0.78fr) minmax(110px, 0.7fr) minmax(190px, 1.05fr) minmax(135px, 0.78fr);
  gap: 34px;
  margin: 0 auto;
  padding: 58px var(--gutter) 46px;
}

.site-footer p,
.site-footer a,
.site-footer address {
  color: var(--muted);
  font-size: 13px;
}

.footer-logo-img {
  display: block;
  width: clamp(190px, 18vw, 260px);
  height: auto;
  filter: drop-shadow(0 0 18px rgba(37, 99, 235, 0.14));
}

.site-footer h2 {
  margin: 0 0 20px;
  color: var(--cyan);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer nav,
.site-footer address {
  display: grid;
  align-content: start;
  gap: 10px;
  font-style: normal;
}

.footer-brand p {
  max-width: 280px;
  margin: 22px 0 0;
}

.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  margin-top: 6px;
  padding-top: 20px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(201, 209, 224, 0.72);
  font-size: 12px;
}

.page-header {
  position: static;
  padding-bottom: 28px;
  background: var(--bg);
}

.page-main {
  max-width: calc(1020px + var(--gutter) * 2);
  margin: 0 auto;
  padding: 82px var(--gutter) 100px;
}

.page-hero {
  max-width: 780px;
  margin-bottom: 34px;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.08;
  text-transform: uppercase;
}

.page-hero p:not(.eyebrow) {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--muted);
}

.content-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
  padding: clamp(24px, 4vw, 48px);
}

.content-panel h2 {
  margin: 0 0 12px;
}

.content-panel p {
  margin: 0 0 18px;
  color: var(--muted);
}

.content-panel p:last-child {
  margin-bottom: 0;
}

.legal-content h2:not(:first-child) {
  margin-top: 30px;
}

.legal-content a {
  color: var(--cyan);
}

.about-page-main {
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 6vw, 82px) var(--gutter) 100px;
}

.about-page-main::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 16% 6%, rgba(45, 212, 191, 0.12), transparent 28%),
    radial-gradient(circle at 86% 28%, rgba(37, 99, 235, 0.13), transparent 31%);
  pointer-events: none;
}

.about-page-main > * {
  position: relative;
  z-index: 1;
}

/* ── Sleek about page layout ── */

.about-hero {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-start;
  gap: clamp(48px, 7vw, 96px);
  padding: clamp(64px, 8vw, 108px) var(--gutter) clamp(52px, 6vw, 80px);
}

.about-hero h1 {
  font-size: clamp(44px, 6.5vw, 82px);
  text-transform: uppercase;
  line-height: 0.98;
  margin: 0 0 24px;
}

.about-hero p:not(.eyebrow) {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.65;
  margin: 0;
}

.about-hero-stat {
  text-align: right;
  padding-top: 18px;
  flex-shrink: 0;
}

.about-stat-number {
  display: block;
  font-size: clamp(72px, 10vw, 116px);
  font-weight: 900;
  line-height: 0.88;
  color: rgba(255, 255, 255, 0.1);
  letter-spacing: -0.03em;
}

.about-stat-label {
  display: block;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 14px;
}

.about-stat-desc {
  display: block;
  color: var(--dim);
  font-size: 12px;
  line-height: 1.5;
  margin-top: 6px;
  max-width: 160px;
  margin-left: auto;
}

.about-detail-list {
  margin: 0;
  display: grid;
  gap: 0;
}

.about-detail-list > div {
  border-top: 1px solid var(--line);
  padding: 14px 0;
}

.about-detail-list dt {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.about-detail-list dd {
  margin: 0;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
}

.about-principles-section {
  padding: clamp(52px, 6vw, 80px) var(--gutter);
}

.about-principles-header {
  margin-bottom: 44px;
}

.about-principles-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  text-transform: uppercase;
  line-height: 1.06;
  margin: 8px 0 0;
}

.about-principles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.about-principle {
  padding: 36px 32px 36px 0;
  border-right: 1px solid var(--line);
}

.about-principle:first-child {
  padding-left: 0;
}

.about-principle:nth-child(2) {
  padding-left: 32px;
}

.about-principle:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: 32px;
}

.about-principle > span {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  display: block;
}

.about-principle h2 {
  font-size: clamp(18px, 2vw, 24px);
  text-transform: uppercase;
  margin: 20px 0 14px;
  line-height: 1.15;
}

.about-principle p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 1080px) {
  .about-hero {
    grid-template-columns: 1fr;
  }

  .about-hero-stat {
    text-align: left;
  }

  .about-stat-desc {
    margin-left: 0;
    max-width: none;
  }

  .about-principles-grid {
    grid-template-columns: 1fr;
  }

  .about-principle,
  .about-principle:nth-child(2),
  .about-principle:last-child {
    padding: 32px 0;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .about-principle:last-child {
    border-bottom: none;
  }
}

/* ── end about layout ── */

.about-founder {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.62fr);
  align-items: stretch;
  gap: 24px;
  margin-bottom: 24px;
}

.about-founder-copy,
.founder-profile-card,
.about-work-panel,
.about-principles article,
.about-handshake-cta {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.022)),
    rgba(255, 255, 255, 0.02);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04), 0 28px 70px rgba(0, 0, 0, 0.22);
}

.about-founder-copy {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 5vw, 58px);
}

.about-founder-copy::after {
  content: "";
  position: absolute;
  right: -92px;
  bottom: -112px;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(96, 165, 250, 0.18);
  border-radius: 50%;
  box-shadow: inset 0 0 72px rgba(37, 99, 235, 0.08);
  pointer-events: none;
}

.about-founder-copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 5.8vw, 72px);
  line-height: 1.04;
  text-transform: uppercase;
}

.about-founder-copy p {
  max-width: 770px;
  margin: 18px 0 0;
  color: var(--muted);
}

.about-founder-copy .founder-intro {
  margin-top: 28px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
}

.founder-profile-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 30px;
  overflow: hidden;
}

.founder-profile-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(113, 143, 219, 0.08) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(90deg, rgba(113, 143, 219, 0.08) 1px, transparent 1px) 0 0 / 28px 28px;
  mask-image: linear-gradient(180deg, #000, transparent 72%);
  pointer-events: none;
}

.founder-profile-card::after {
  content: "";
  position: absolute;
  right: -86px;
  top: -82px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(45, 212, 191, 0.18);
  border-radius: 50%;
}

.profile-orbit {
  position: relative;
  min-height: 190px;
  margin-bottom: auto;
}

.profile-orbit span,
.profile-orbit i {
  position: absolute;
  display: block;
  border-radius: 50%;
}

.profile-orbit span {
  left: 18%;
  top: 38px;
  width: 112px;
  height: 112px;
  background: radial-gradient(circle at 30% 24%, #93c5fd, var(--blue) 52%, #071b45);
  box-shadow: 0 28px 60px rgba(37, 99, 235, 0.32);
}

.profile-orbit i {
  right: 20%;
  top: 94px;
  width: 74px;
  height: 74px;
  background: radial-gradient(circle at 30% 24%, #99f6e4, var(--cyan) 52%, #0f766e);
  box-shadow: 0 22px 52px rgba(45, 212, 191, 0.24);
}

.founder-profile-card h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(48px, 6vw, 78px);
  line-height: 0.95;
}

.founder-profile-card > p {
  position: relative;
  z-index: 1;
  max-width: 360px;
  margin: 18px 0 28px;
  color: var(--muted);
}

.founder-profile-card dl {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin: 0;
}

.founder-profile-card dl div {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.founder-profile-card dt {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.founder-profile-card dd {
  margin: 4px 0 0;
  color: #ffffff;
  font-weight: 800;
}

.about-work-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1fr);
  align-items: center;
  gap: 34px;
  margin-bottom: 18px;
  padding: clamp(24px, 4vw, 42px);
}

.about-work-panel h2 {
  max-width: 670px;
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.about-work-panel p:not(.eyebrow) {
  max-width: 700px;
  margin: 20px 0 0;
  color: var(--muted);
}

.laptop-visual {
  position: relative;
  min-height: 330px;
  border: 1px solid rgba(141, 181, 255, 0.16);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 70% 20%, rgba(45, 212, 191, 0.16), transparent 30%),
    linear-gradient(145deg, rgba(37, 99, 235, 0.14), rgba(255, 255, 255, 0.028));
  overflow: hidden;
}

.laptop-visual::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(96, 165, 250, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, transparent 0 22%, rgba(96, 165, 250, 0.22) 22% 22.5%, transparent 22.5% 62%, rgba(45, 212, 191, 0.18) 62% 62.5%, transparent 62.5%),
    linear-gradient(180deg, transparent 0 42%, rgba(96, 165, 250, 0.18) 42% 42.5%, transparent 42.5% 74%, rgba(45, 212, 191, 0.14) 74% 74.5%, transparent 74.5%);
  opacity: 0.78;
}

.laptop-visual::after {
  content: "";
  position: absolute;
  right: 12%;
  top: 18%;
  width: 78px;
  height: 78px;
  border: 1px solid rgba(45, 212, 191, 0.24);
  border-radius: 50%;
  box-shadow: 0 0 38px rgba(45, 212, 191, 0.12);
}

.laptop-screen {
  position: absolute;
  z-index: 1;
  left: 14%;
  top: 22%;
  width: 68%;
  height: 42%;
  border: 1px solid rgba(45, 212, 191, 0.35);
  border-radius: var(--radius);
  background: rgba(4, 12, 28, 0.74);
  padding: 28px;
}

.laptop-screen span {
  display: block;
  height: 8px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(184, 197, 216, 0.32);
}

.laptop-screen span:nth-child(1) {
  width: 54%;
  background: rgba(45, 212, 191, 0.56);
}

.laptop-screen span:nth-child(2) {
  width: 82%;
}

.laptop-screen span:nth-child(3) {
  width: 66%;
}

.laptop-base {
  position: absolute;
  z-index: 1;
  left: 8%;
  right: 8%;
  bottom: 20%;
  height: 28px;
  border-radius: 0 0 34px 34px;
  background: linear-gradient(90deg, rgba(141, 181, 255, 0.22), rgba(45, 212, 191, 0.18));
}

.hand {
  position: absolute;
  z-index: 1;
  bottom: 10%;
  width: 110px;
  height: 64px;
  border-radius: 54px 54px 18px 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.28), rgba(141, 181, 255, 0.08));
}

.hand-left {
  left: 8%;
  transform: rotate(10deg);
}

.hand-right {
  right: 9%;
  transform: rotate(-12deg);
}

.about-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.about-principles article {
  position: relative;
  min-height: 210px;
  padding: 26px;
  overflow: hidden;
}

.about-principles article::after {
  content: "";
  position: absolute;
  right: -32px;
  top: -32px;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(96, 165, 250, 0.14);
  border-radius: 50%;
}

.about-principles span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.about-principles h2 {
  margin: 36px 0 14px;
  font-size: 23px;
}

.about-principles p {
  margin: 0;
  color: var(--muted);
}

.about-handshake-cta {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 28px clamp(24px, 4vw, 42px);
}

.handshake-visual {
  display: grid;
  place-items: center;
  min-height: 128px;
  border-radius: var(--radius);
  background: radial-gradient(circle at center, rgba(45, 212, 191, 0.18), transparent 62%);
}

.handshake-visual svg {
  width: 126px;
  height: 92px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 24px rgba(45, 212, 191, 0.24));
}

.about-handshake-cta h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
}

.about-handshake-cta p:not(.eyebrow) {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--muted);
}

/* Open, editorial About page redesign */
.about-page-main {
  max-width: none;
  margin: 0;
  padding: clamp(72px, 8vw, 118px) var(--gutter) 108px;
  background:
    radial-gradient(circle at 14% 12%, rgba(45, 212, 191, 0.11), transparent 28%),
    radial-gradient(circle at 86% 8%, rgba(96, 165, 250, 0.13), transparent 30%),
    linear-gradient(180deg, rgba(5, 11, 20, 0.96), rgba(5, 11, 20, 0.99));
}

.about-page-main::before {
  background-image:
    radial-gradient(circle at 1px 1px, rgba(96, 165, 250, 0.18) 1px, transparent 0),
    linear-gradient(115deg, transparent 0 18%, rgba(96, 165, 250, 0.055) 18.15%, transparent 18.3% 100%);
  background-size: 18px 18px, 100% 100%;
  opacity: 0.38;
}

.about-founder,
.about-work-panel,
.about-principles,
.about-handshake-cta {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-left: auto;
  margin-right: auto;
}

.about-founder {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  align-items: end;
  gap: clamp(42px, 7vw, 96px);
  margin-bottom: clamp(58px, 8vw, 92px);
  padding-bottom: clamp(46px, 7vw, 76px);
  border-bottom: 1px solid rgba(141, 181, 255, 0.16);
}

.about-founder-copy,
.founder-profile-card,
.about-work-panel,
.about-principles article,
.about-handshake-cta {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.about-founder-copy {
  padding: 0;
}

.about-founder-copy::after {
  right: auto;
  left: clamp(360px, 45vw, 620px);
  bottom: -66px;
  width: 260px;
  height: 260px;
  border-color: rgba(45, 212, 191, 0.12);
  opacity: 0.75;
}

.about-founder-copy h1 {
  max-width: 820px;
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.98;
  text-transform: none;
}

.about-founder-copy p {
  max-width: 720px;
}

.about-founder-copy .founder-intro {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
  font-weight: 500;
}

.founder-profile-card {
  min-height: 0;
  padding: 0 0 0 28px;
  border-left: 1px solid rgba(141, 181, 255, 0.18);
}

.founder-profile-card::before,
.founder-profile-card::after {
  display: none;
}

.profile-orbit {
  min-height: 120px;
  margin: 0 0 26px;
}

.profile-orbit::before {
  content: "";
  position: absolute;
  inset: 8px auto auto 0;
  width: 150px;
  height: 86px;
  border: 1px solid rgba(96, 165, 250, 0.18);
  border-radius: 999px;
  transform: rotate(-15deg);
}

.profile-orbit span {
  left: 24px;
  top: 22px;
  width: 62px;
  height: 62px;
  background: radial-gradient(circle at 30% 24%, #93c5fd, var(--blue) 54%, #071b45);
  box-shadow: 0 24px 52px rgba(37, 99, 235, 0.24);
}

.profile-orbit i {
  left: 102px;
  right: auto;
  top: 62px;
  width: 38px;
  height: 38px;
  background: radial-gradient(circle at 30% 24%, #99f6e4, var(--cyan) 54%, #0f766e);
  box-shadow: 0 18px 44px rgba(45, 212, 191, 0.2);
}

.founder-profile-card h2 {
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 800;
}

.founder-profile-card > p {
  max-width: 330px;
  margin-bottom: 34px;
}

.founder-profile-card dl {
  gap: 0;
}

.founder-profile-card dl div {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 14px;
  align-items: baseline;
  padding: 14px 0;
}

.founder-profile-card dd {
  margin: 0;
}

.about-work-panel {
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.8fr);
  gap: clamp(42px, 7vw, 90px);
  margin-bottom: clamp(56px, 8vw, 90px);
  padding: 0 0 clamp(52px, 7vw, 78px);
  border-bottom: 1px solid rgba(141, 181, 255, 0.16);
}

.about-work-panel h2 {
  max-width: 760px;
  font-size: clamp(34px, 4.6vw, 58px);
  font-weight: 750;
  text-transform: none;
}

.about-work-panel p:not(.eyebrow) {
  max-width: 720px;
  font-size: 17px;
  line-height: 1.72;
}

.laptop-visual {
  min-height: 300px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.laptop-visual::before {
  inset: 18px;
  border-color: rgba(96, 165, 250, 0.12);
  border-radius: 24px;
  opacity: 0.54;
}

.laptop-screen {
  left: 8%;
  top: 20%;
  width: 80%;
  height: 44%;
  border-color: rgba(45, 212, 191, 0.28);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(4, 12, 28, 0.54);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.about-principles {
  gap: clamp(24px, 4vw, 48px);
  margin-bottom: clamp(56px, 8vw, 92px);
  padding-bottom: clamp(48px, 7vw, 76px);
  border-bottom: 1px solid rgba(141, 181, 255, 0.16);
}

.about-principles article {
  min-height: 0;
  padding: 0;
}

.about-principles article::after {
  display: none;
}

.about-principles span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.about-principles span::after {
  content: "";
  width: 42px;
  height: 1px;
  background: rgba(45, 212, 191, 0.34);
}

.about-principles h2 {
  margin: 28px 0 14px;
  color: #ffffff;
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 750;
  line-height: 1.12;
}

.about-principles p {
  max-width: 360px;
  line-height: 1.7;
}

.about-handshake-cta {
  grid-template-columns: 120px minmax(0, 1fr) auto;
  padding: 0;
}

.handshake-visual {
  min-height: 92px;
  border-radius: 0;
  background: transparent;
}

.handshake-visual svg {
  width: 112px;
  height: 82px;
  stroke-width: 3.2;
  opacity: 0.9;
}

.about-handshake-cta h2 {
  max-width: 760px;
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 760;
  line-height: 1.02;
  text-transform: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
}

.contact-list,
.contact-form {
  display: grid;
  gap: 14px;
  align-content: start;
}

.contact-list a,
.contact-list span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 15px 16px;
  color: #ffffff;
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  padding: 10px 12px;
  font: inherit;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(45, 212, 191, 0.58);
  box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.12);
}

.contact-form select option {
  background: #0d1a2b;
  color: #ffffff;
}

.contact-form textarea {
  min-height: 148px;
  resize: vertical;
}

.contact-form .button {
  width: 100%;
  justify-content: center;
}

.form-status {
  display: none;
  margin: -0.2rem 0 0;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.45;
}

.form-status:not(:empty) {
  display: block;
}

.form-status[data-state="success"] {
  border-color: rgba(43, 214, 172, 0.42);
  background: rgba(43, 214, 172, 0.1);
  color: #bff8e9;
}

.form-status[data-state="error"] {
  border-color: rgba(255, 124, 124, 0.44);
  background: rgba(255, 124, 124, 0.1);
  color: #ffd6d6;
}

.form-status[data-state="pending"] {
  border-color: rgba(69, 142, 255, 0.42);
  background: rgba(69, 142, 255, 0.1);
  color: #d6e6ff;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.contact-page-main {
  position: relative;
  max-width: none;
  margin: 0;
  padding: 0 var(--gutter) 52px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 22%, rgba(45, 212, 191, 0.13), transparent 30%),
    radial-gradient(circle at 82% 10%, rgba(96, 165, 250, 0.14), transparent 28%),
    radial-gradient(circle at 72% 78%, rgba(15, 185, 205, 0.08), transparent 34%);
}

.contact-page-main::before,
.contact-page-main::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.contact-page-main::before {
  background-image:
    radial-gradient(circle at 1px 1px, rgba(96, 165, 250, 0.2) 1px, transparent 0),
    linear-gradient(115deg, transparent 0 18%, rgba(96, 165, 250, 0.08) 18.15%, transparent 18.3% 100%);
  background-size: 18px 18px, 100% 100%;
  opacity: 0.58;
}

.contact-page-main::after {
  background:
    linear-gradient(90deg, rgba(5, 11, 20, 0.88), transparent 22%, transparent 78%, rgba(5, 11, 20, 0.9)),
    linear-gradient(180deg, rgba(5, 11, 20, 0.82), transparent 24%, rgba(5, 11, 20, 0.92));
}

.contact-page-main > * {
  position: relative;
  z-index: 1;
}

.contact-hero {
  margin-bottom: 0;
}

.contact-hero-tech {
  max-width: calc(var(--container) + var(--gutter) * 2);
  min-height: 330px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 48px) 0 12px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 0.95fr);
  align-items: center;
  gap: clamp(32px, 6vw, 92px);
  text-align: left;
}

.contact-hero-copy h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 0.98;
  text-transform: uppercase;
}

.contact-hero-copy > p:not(.eyebrow) {
  max-width: 430px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.45;
}

.contact-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.contact-highlights span {
  border: 1px solid rgba(48, 240, 216, 0.3);
  border-radius: 999px;
  background: rgba(5, 11, 20, 0.68);
  padding: 9px 15px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 0 24px rgba(45, 212, 191, 0.08);
}

.contact-signal-visual {
  position: relative;
  min-height: 248px;
  border: 1px solid rgba(96, 165, 250, 0.22);
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(145deg, rgba(9, 20, 36, 0.9), rgba(4, 9, 18, 0.74)),
    radial-gradient(circle at 50% 38%, rgba(45, 212, 191, 0.17), transparent 42%);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.06),
    0 34px 90px rgba(0, 0, 0, 0.34),
    0 0 48px rgba(37, 99, 235, 0.14);
}

.contact-signal-visual::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(96, 165, 250, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(37, 99, 235, 0.16);
}

.contact-signal-visual::after {
  content: "";
  position: absolute;
  inset: auto -10% 0;
  height: 42%;
  background: radial-gradient(ellipse at center, rgba(45, 212, 191, 0.16), transparent 64%);
  opacity: 0.82;
}

.signal-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(53, 223, 255, 0.28) 1px, transparent 0);
  background-size: 18px 18px;
  opacity: 0.42;
}

.contact-signal-map {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.signal-orbit {
  fill: none;
  stroke: rgba(96, 165, 250, 0.24);
  stroke-width: 2;
}

.signal-orbit--wide {
  stroke: rgba(45, 212, 191, 0.12);
}

.signal-wave,
.signal-trace {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.signal-wave {
  stroke: url(#contactSignalGradient);
  stroke-width: 4;
  filter: url(#contactGlow);
}

.signal-wave--outer {
  stroke-width: 2.5;
  opacity: 0.64;
}

.signal-trace {
  stroke: rgba(96, 165, 250, 0.28);
  stroke-width: 1.6;
}

.signal-node circle {
  fill: #dffcff;
  stroke: var(--cyan);
  stroke-width: 2;
  filter: url(#contactGlow);
}

.signal-spark {
  fill: none;
  stroke: #ffffff;
  stroke-width: 2.5;
  stroke-linecap: round;
  filter: url(#contactGlow);
  transform-origin: center;
}

.signal-status {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  border: 1px solid rgba(96, 165, 250, 0.22);
  border-radius: 12px;
  background: rgba(5, 11, 20, 0.78);
  padding: 0 15px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
}

.signal-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(45, 212, 191, 0.9);
}

.signal-status--left {
  left: 7%;
  top: 18%;
}

.signal-status--right {
  right: 7%;
  bottom: 16%;
}

.contact-panel {
  display: grid;
}

.contact-panel-tech {
  max-width: calc(var(--container) + var(--gutter) * 2);
  grid-template-columns: minmax(250px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(16px, 2.4vw, 26px);
  margin: -8px auto 0;
  padding: clamp(16px, 2.6vw, 28px);
  border: 1px solid rgba(141, 181, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.074), rgba(255, 255, 255, 0.026)),
    rgba(5, 11, 20, 0.66);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.05),
    0 34px 86px rgba(0, 0, 0, 0.28);
}

.contact-sidebar,
.next-steps {
  display: grid;
  gap: 14px;
  align-content: start;
}

.contact-card,
.next-steps {
  border: 1px solid rgba(96, 165, 250, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(45, 212, 191, 0.08), rgba(37, 99, 235, 0.06)),
    rgba(255, 255, 255, 0.032);
}

.contact-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
}

.contact-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 3px;
  height: 44px;
  background: var(--cyan);
  box-shadow: 0 0 24px rgba(45, 212, 191, 0.48);
}

.contact-card h2,
.next-steps h2,
.contact-form-header h2 {
  color: #ffffff;
}

.contact-card h2 {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.16;
  overflow-wrap: anywhere;
}

.contact-card h2 a {
  color: inherit;
  text-decoration: none;
}

.contact-card h2 a:hover {
  color: var(--cyan);
}

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

.contact-card small {
  display: block;
  margin-bottom: 9px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-list a,
.contact-list span {
  display: grid;
  gap: 4px;
  background: rgba(255, 255, 255, 0.035);
}

.contact-list a small,
.contact-list span small {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.next-steps {
  padding: 22px;
}

.next-steps h2 {
  margin: 0 0 14px;
  font-size: 20px;
}

.next-steps ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.contact-split-form {
  border: 1px solid rgba(141, 181, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(13, 27, 48, 0.82), rgba(5, 11, 20, 0.78)),
    rgba(255, 255, 255, 0.02);
  padding: clamp(22px, 3vw, 36px);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), 0 28px 70px rgba(0, 0, 0, 0.25);
}

.contact-form-tech {
  position: relative;
  overflow: hidden;
  gap: 17px;
}

.contact-form-tech::before {
  content: "";
  position: absolute;
  left: clamp(26px, 4vw, 44px);
  right: clamp(26px, 4vw, 44px);
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  box-shadow: 0 0 22px rgba(45, 212, 191, 0.42);
}

.contact-form-header {
  display: grid;
  gap: 7px;
  margin-bottom: 6px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(141, 181, 255, 0.14);
}

.contact-form-header h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.08;
  text-transform: uppercase;
}

.contact-form-tech input,
.contact-form-tech textarea {
  border-color: rgba(141, 181, 255, 0.2);
  background: rgba(2, 6, 14, 0.58);
}

.contact-form-tech input::placeholder,
.contact-form-tech textarea::placeholder {
  color: rgba(213, 224, 242, 0.46);
}

.contact-form-tech .button {
  margin-top: 4px;
  min-height: 58px;
}

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

@media (prefers-reduced-motion: reduce) {
  .contact-signal-visual,
  .signal-wave,
  .signal-node circle,
  .signal-spark,
  .signal-status {
    animation: none;
  }
}

.services-page-main {
  max-width: calc(var(--container) + var(--gutter) * 2);
  position: relative;
  overflow: hidden;
}

.services-page-main::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 16% 5%, rgba(45, 212, 191, 0.14), transparent 27%),
    radial-gradient(circle at 83% 17%, rgba(37, 99, 235, 0.14), transparent 28%);
  pointer-events: none;
}

.services-page-main > * {
  position: relative;
  z-index: 1;
}

.services-hero {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.65fr);
  align-items: center;
  gap: clamp(28px, 5vw, 76px);
}

.services-hero > div,
.service-detail-card > div {
  min-width: 0;
}

.services-hero h1 {
  max-width: 820px;
}

.service-orbit-card {
  position: relative;
  min-height: 360px;
  border: 1px solid rgba(141, 181, 255, 0.16);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 64% 28%, rgba(45, 212, 191, 0.18), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04), 0 30px 80px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.service-orbit-card .orbit-ring {
  position: absolute;
  right: -82px;
  top: 38px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(45, 212, 191, 0.22);
  border-radius: 50%;
}

.service-orbit-card .orbit-node {
  position: absolute;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.36);
}

.node-one {
  right: 84px;
  top: 72px;
  background: radial-gradient(circle at 30% 24%, #93c5fd, var(--blue) 52%, #071b45);
}

.node-two {
  right: 42px;
  bottom: 62px;
  background: radial-gradient(circle at 30% 24%, #99f6e4, var(--cyan) 52%, #0f766e);
}

.node-three {
  left: 54px;
  bottom: 86px;
  background: radial-gradient(circle at 30% 24%, #bfdbfe, #1d4ed8 52%, #071b45);
}

.service-monitor {
  position: absolute;
  left: 54px;
  top: 74px;
  width: min(58%, 300px);
  height: 164px;
  border: 1px solid rgba(141, 181, 255, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(45, 212, 191, 0.13), transparent 70%),
    rgba(4, 12, 28, 0.72);
  padding: 28px;
}

.service-monitor i,
.service-monitor b {
  display: block;
  border-radius: 999px;
}

.service-monitor i {
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  border: 10px solid rgba(45, 212, 191, 0.2);
  border-right-color: var(--cyan);
}

.service-monitor b {
  width: 100%;
  height: 7px;
  margin-top: 12px;
  background: rgba(184, 197, 216, 0.24);
}

.service-monitor b:nth-of-type(2) {
  width: 76%;
}

.service-monitor b:nth-of-type(3) {
  width: 52%;
  background: rgba(45, 212, 191, 0.42);
}

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

.service-detail-card {
  position: relative;
  min-height: 330px;
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    linear-gradient(120deg, rgba(37, 99, 235, 0.08), transparent 58%);
  padding: clamp(24px, 3vw, 34px);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), 0 24px 70px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.service-detail-card::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(45, 212, 191, 0.16);
  border-radius: 50%;
}

.service-detail-card.is-featured {
  background:
    radial-gradient(circle at 84% 14%, rgba(45, 212, 191, 0.16), transparent 32%),
    linear-gradient(145deg, rgba(37, 99, 235, 0.2), rgba(255, 255, 255, 0.035));
}

.service-detail-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(45, 212, 191, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--cyan);
}

.service-detail-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-detail-card span,
.tier-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-detail-card h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
}

.service-detail-card p {
  margin: 0;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 20px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.text-link::after {
  content: "";
  width: 10px;
  height: 10px;
  margin-left: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.service-detail-card .service-summary {
  margin-bottom: 16px;
  color: #ffffff;
  font-weight: 800;
}

.service-page-main {
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.service-page-main::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 16% 8%, rgba(45, 212, 191, 0.12), transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(37, 99, 235, 0.14), transparent 30%);
  pointer-events: none;
}

.service-page-main > * {
  position: relative;
  z-index: 1;
}

/* ── Sleek service page layout ── */

.svc-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.36fr);
  align-items: center;
  gap: clamp(40px, 7vw, 112px);
  padding: clamp(54px, 7vw, 92px) var(--gutter) clamp(50px, 6vw, 76px);
}

.svc-hero h1 {
  max-width: 940px;
  margin: 0 0 22px;
  font-size: clamp(56px, 6vw, 88px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.94;
  text-transform: none;
}

.svc-hero p:not(.eyebrow) {
  font-size: clamp(18px, 1.45vw, 22px);
  color: var(--muted);
  max-width: 590px;
  line-height: 1.5;
  margin: 0;
}

.svc-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.svc-hero-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(45, 212, 191, 0.24);
  border-radius: 999px;
  background: rgba(45, 212, 191, 0.055);
  color: rgba(232, 246, 255, 0.92);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.svc-hero-visual {
  width: clamp(220px, 20vw, 320px);
  opacity: 1;
  padding-top: 0;
  flex-shrink: 0;
}

.svc-hero-visual svg {
  display: block;
  width: 100%;
  height: auto;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.5;
  filter: drop-shadow(0 0 46px rgba(45, 212, 191, 0.22));
}

.svc-plan-signal {
  display: grid;
  gap: 22px;
}

.svc-plan-signal span {
  display: grid;
  grid-template-columns: 88px minmax(90px, 1fr);
  align-items: center;
  gap: 16px;
  color: rgba(232, 246, 255, 0.92);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.svc-plan-signal span:nth-child(2) {
  transform: translateX(18px);
}

.svc-plan-signal span:nth-child(3) {
  transform: translateX(36px);
}

.svc-plan-signal i {
  position: relative;
  display: block;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(45, 212, 191, 0.9), rgba(37, 99, 235, 0.26));
}

.svc-plan-signal i::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 50%;
  width: 22px;
  height: 22px;
  border: 5px solid rgba(45, 212, 191, 0.54);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 34px rgba(45, 212, 191, 0.28);
}

.svc-rule {
  height: 1px;
  background: var(--line);
  margin: 0 var(--gutter);
}

.svc-body {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: clamp(48px, 7vw, 100px);
  padding: clamp(52px, 6vw, 80px) var(--gutter);
}

.svc-body-prose .eyebrow {
  display: block;
  margin-bottom: 20px;
}

.svc-body-prose p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 18px;
  max-width: 600px;
}

.svc-body-prose p:last-child {
  margin-bottom: 0;
}

.svc-focus-label {
  display: block;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--cyan);
  margin-bottom: 0;
}

.svc-focus-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.svc-focus-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
}

.svc-focus-list li:first-child {
  border-top: 1px solid var(--line);
  margin-top: 24px;
}

.svc-focus-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(45, 212, 191, 0.5);
}

.svc-also {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 20px;
  padding: 22px var(--gutter);
}

.svc-also-label {
  color: var(--dim);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-right: 6px;
}

.svc-also a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s;
}

.svc-also a:hover {
  color: var(--cyan);
}

.svc-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(36px, 5vw, 56px) var(--gutter);
}

.svc-cta h2 {
  margin: 0;
  font-size: clamp(20px, 2.6vw, 30px);
  line-height: 1.2;
  text-transform: uppercase;
}

/* Service plan tier table */
.svc-tiers {
  padding: clamp(52px, 6vw, 80px) var(--gutter);
}

.svc-tiers-intro {
  margin-bottom: 52px;
  max-width: 600px;
}

.svc-tiers-intro h2 {
  font-size: clamp(28px, 4vw, 44px);
  text-transform: uppercase;
  line-height: 1.06;
  margin: 8px 0 16px;
}

.svc-tiers-intro p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.svc-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.svc-tier {
  padding: 36px 32px 36px 0;
  border-right: 1px solid var(--line);
}

.svc-tier:first-child {
  padding-left: 0;
}

.svc-tier:nth-child(2) {
  padding-left: 32px;
}

.svc-tier:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: 32px;
}

.svc-tier-label {
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 10px;
}

.svc-tier h3 {
  font-size: clamp(20px, 2.4vw, 28px);
  text-transform: uppercase;
  margin: 0 0 28px;
  line-height: 1.1;
}

.svc-tier ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.svc-tier li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.svc-tier li:last-child {
  border-bottom: none;
}

.svc-tier li::before {
  content: "";
  width: 5px;
  height: 5px;
  min-width: 5px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0.65;
}

.svc-tier.is-recommended .svc-tier-label {
  color: #ffffff;
}

.svc-tier.is-recommended h3 {
  color: var(--cyan);
}

.svc-tier.is-recommended li {
  color: #ffffff;
}

.svc-tier.is-recommended li::before {
  opacity: 1;
  box-shadow: 0 0 10px rgba(45, 212, 191, 0.5);
}

.svc-tier-meter {
  display: flex;
  gap: 4px;
  margin: 2px 0 8px;
}

.svc-tier-meter span {
  height: 4px;
  flex: 1;
  border-radius: 2px;
  background: rgba(45, 212, 191, 0.14);
}

.svc-tier-meter span.is-filled {
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(45, 212, 191, 0.45);
}

.svc-tier-level {
  display: block;
  margin: 0 0 22px;
  color: var(--dim);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.svc-tier.is-recommended .svc-tier-level {
  color: rgba(255, 255, 255, 0.72);
}

/* Full feature comparison table */
.svc-compare {
  margin-top: 48px;
}

.svc-compare summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 86px;
  border: 1px solid rgba(141, 181, 255, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(45, 212, 191, 0.08), rgba(37, 99, 235, 0.08)),
    rgba(255, 255, 255, 0.025);
  padding: 20px 22px;
  cursor: pointer;
  list-style: none;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.svc-compare summary::-webkit-details-marker {
  display: none;
}

.svc-compare summary:hover {
  border-color: rgba(45, 212, 191, 0.42);
  background:
    linear-gradient(145deg, rgba(45, 212, 191, 0.12), rgba(37, 99, 235, 0.1)),
    rgba(255, 255, 255, 0.03);
  transform: translateY(-1px);
}

.svc-compare summary:focus-visible {
  outline: 3px solid rgba(45, 212, 191, 0.24);
  outline-offset: 3px;
}

.svc-compare summary span {
  display: grid;
  gap: 6px;
}

.svc-compare summary strong {
  color: #ffffff;
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 900;
  letter-spacing: 0;
}

.svc-compare summary small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.svc-compare summary i {
  position: relative;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  background: rgba(45, 212, 191, 0.1);
}

.svc-compare summary i::before,
.svc-compare summary i::after {
  content: "";
  position: absolute;
  background: var(--cyan);
  border-radius: 999px;
  transition: transform 0.18s ease;
}

.svc-compare summary i::before {
  width: 18px;
  height: 2px;
}

.svc-compare summary i::after {
  width: 2px;
  height: 18px;
}

.svc-compare[open] summary {
  border-color: rgba(45, 212, 191, 0.34);
}

.svc-compare[open] summary i::after {
  transform: rotate(90deg);
}

.svc-compare:not([open]) > .svc-matrix-wrap {
  display: none;
}

.svc-matrix-wrap {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow-x: auto;
}

.svc-matrix {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 14px;
}

.svc-matrix thead th {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-align: left;
  text-transform: uppercase;
}

.svc-matrix thead th:not(:first-child) {
  text-align: center;
  color: var(--cyan);
}

.svc-matrix tbody th {
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  text-align: left;
}

.svc-matrix tbody td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  color: var(--dim);
  font-size: 13px;
  text-align: center;
}

.svc-matrix tbody tr:last-child th,
.svc-matrix tbody tr:last-child td {
  border-bottom: none;
}

.svc-matrix tbody tr:hover th,
.svc-matrix tbody tr:hover td {
  background: rgba(45, 212, 191, 0.045);
}

.svc-matrix td.is-yes {
  color: var(--cyan);
  font-size: 16px;
  font-weight: 700;
}

.svc-matrix td.is-no {
  color: var(--dim);
  opacity: 0.5;
}

.svc-matrix td.is-text {
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.svc-matrix .is-recommended {
  background: rgba(45, 212, 191, 0.055);
}

.svc-addons,
.svc-compliance {
  padding: clamp(52px, 6vw, 80px) var(--gutter);
}

.svc-addons .svc-tiers-intro,
.svc-compliance .svc-tiers-intro {
  margin-bottom: 38px;
}

/* Add-on service list */
.svc-addons-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(42px, 7vw, 96px);
  row-gap: 0;
  margin-top: 4px;
}

.svc-addon {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  padding: 22px 0;
  background: transparent;
}

.svc-addon::before {
  display: none;
}

.svc-addon::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(45, 212, 191, 0.28), rgba(141, 181, 255, 0.08), transparent);
}

.svc-addon:nth-last-child(-n + 2)::after {
  display: none;
}

.svc-addon-type {
  display: inline-flex;
  align-items: center;
  margin: 0 0 6px;
  color: var(--cyan);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.svc-addon-type::before {
  display: none;
}

.svc-addon h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: clamp(16px, 1.55vw, 19px);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.svc-addon p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.svc-addons-note {
  position: relative;
  margin: 28px 0 0;
  color: var(--dim);
  font-size: 13px;
  line-height: 1.6;
}

.svc-addons-note::before {
  display: none;
}

/* Compliance program list */
.svc-compliance-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.svc-compliance-list li {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 118px;
  padding: 4px 0 18px;
  color: var(--text);
  font-size: clamp(14px, 1.35vw, 16px);
  font-weight: 800;
  line-height: 1.32;
}

.svc-compliance-list li::before {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(45, 212, 191, 0.42);
}

.svc-compliance-list li::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), rgba(37, 99, 235, 0.7), rgba(45, 212, 191, 0));
  opacity: 0.84;
}

@media (max-width: 1080px) {
  .svc-body {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .svc-tier-grid {
    grid-template-columns: 1fr;
  }

  .svc-tier,
  .svc-tier:nth-child(2),
  .svc-tier:last-child {
    padding: 32px 0;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .svc-tier:last-child {
    border-bottom: none;
  }

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

@media (max-width: 700px) {
  .svc-hero {
    grid-template-columns: 1fr;
  }

  .svc-hero-visual {
    display: none;
  }

  .svc-addons-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .svc-addon:nth-last-child(-n + 2)::after {
    display: block;
  }

  .svc-addon:last-child::after {
    display: none;
  }

  .svc-compliance-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .svc-compliance-list li {
    min-height: auto;
  }

  .svc-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── end sleek service layout ── */

/* Design 2 service plan polish */
.service-plan-tech {
  max-width: none;
  margin: 0;
  padding: 0 var(--gutter) 104px;
  background:
    radial-gradient(circle at 16% 16%, rgba(45, 212, 191, 0.13), transparent 30%),
    radial-gradient(circle at 82% 9%, rgba(96, 165, 250, 0.14), transparent 28%),
    radial-gradient(circle at 74% 72%, rgba(37, 99, 235, 0.09), transparent 34%);
}

.service-plan-tech::before,
.service-plan-tech::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.service-plan-tech::before {
  background-image:
    radial-gradient(circle at 1px 1px, rgba(96, 165, 250, 0.2) 1px, transparent 0),
    linear-gradient(115deg, transparent 0 15%, rgba(96, 165, 250, 0.07) 15.15%, transparent 15.3% 100%);
  background-size: 18px 18px, 100% 100%;
  opacity: 0.58;
}

.service-plan-tech::after {
  background:
    linear-gradient(90deg, rgba(5, 11, 20, 0.9), transparent 24%, transparent 76%, rgba(5, 11, 20, 0.9)),
    linear-gradient(180deg, rgba(5, 11, 20, 0.82), transparent 26%, rgba(5, 11, 20, 0.94));
}

.svc-hero-tech,
.svc-tiers-tech,
.svc-body-tech,
.svc-also-tech,
.svc-cta-tech {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-left: auto;
  margin-right: auto;
}

.svc-hero-tech {
  min-height: 620px;
  grid-template-columns: minmax(0, 0.78fr) minmax(390px, 0.95fr);
  align-items: center;
  gap: clamp(34px, 6vw, 90px);
  padding: clamp(86px, 10vw, 132px) 0 52px;
}

.svc-hero-tech h1 {
  max-width: 760px;
  font-size: clamp(54px, 7vw, 94px);
}

.svc-hero-tech p:not(.eyebrow) {
  max-width: 500px;
  font-size: clamp(17px, 1.6vw, 21px);
}

.svc-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 560px;
  margin-top: 34px;
}

.svc-hero-metrics span {
  min-height: 88px;
  display: grid;
  gap: 4px;
  align-content: center;
  border: 1px solid rgba(96, 165, 250, 0.18);
  border-radius: var(--radius);
  background: rgba(5, 11, 20, 0.62);
  padding: 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
}

.svc-hero-metrics strong {
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
}

.svc-command-visual {
  position: relative;
  min-height: 420px;
  border: 1px solid rgba(96, 165, 250, 0.22);
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(145deg, rgba(9, 20, 36, 0.92), rgba(4, 9, 18, 0.74)),
    radial-gradient(circle at 50% 40%, rgba(45, 212, 191, 0.17), transparent 44%);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.06),
    0 34px 90px rgba(0, 0, 0, 0.34),
    0 0 52px rgba(37, 99, 235, 0.14);
}

.svc-command-visual::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(96, 165, 250, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 62px rgba(37, 99, 235, 0.16);
}

.svc-command-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(53, 223, 255, 0.28) 1px, transparent 0);
  background-size: 18px 18px;
  opacity: 0.44;
}

.svc-command-map {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.svc-orbit {
  fill: none;
  stroke: rgba(96, 165, 250, 0.22);
  stroke-width: 2;
}

.svc-orbit-wide {
  stroke: rgba(45, 212, 191, 0.12);
}

.svc-command-wave,
.svc-command-trace {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svc-command-wave {
  stroke: url(#svcSignal);
  stroke-width: 4;
  filter: url(#svcGlow);
}

.svc-command-wave-soft {
  stroke-width: 2.5;
  opacity: 0.65;
}

.svc-command-trace {
  stroke: rgba(96, 165, 250, 0.26);
  stroke-width: 1.6;
}

.svc-map-nodes circle {
  fill: #dffcff;
  stroke: var(--cyan);
  stroke-width: 2;
  filter: url(#svcGlow);
}

.svc-floating-card {
  position: absolute;
  z-index: 2;
  min-width: 172px;
  border: 1px solid rgba(96, 165, 250, 0.22);
  border-radius: 12px;
  background: rgba(5, 11, 20, 0.78);
  padding: 16px 18px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.25);
}

.svc-floating-card span {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(45, 212, 191, 0.9);
}

.svc-floating-card strong,
.svc-floating-card small {
  display: block;
}

.svc-floating-card strong {
  color: #ffffff;
  font-size: 15px;
}

.svc-floating-card small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.svc-floating-card-one {
  left: 7%;
  top: 17%;
}

.svc-floating-card-two {
  right: 7%;
  top: 32%;
}

.svc-floating-card-three {
  left: 34%;
  bottom: 9%;
}

.svc-tiers-tech,
.svc-body-tech,
.svc-also-tech,
.svc-cta-tech {
  border: 1px solid rgba(141, 181, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.024)),
    rgba(5, 11, 20, 0.64);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), 0 30px 78px rgba(0, 0, 0, 0.24);
}

.svc-tiers-tech {
  display: grid;
  grid-template-columns: minmax(260px, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(22px, 4vw, 44px);
  padding: clamp(22px, 4vw, 42px);
}

.svc-tiers-tech .svc-tiers-intro {
  margin: 0;
  max-width: 390px;
}

.svc-tiers-tech .svc-tier-grid {
  border: 0;
  gap: 14px;
}

.svc-tiers-tech .svc-tier {
  position: relative;
  overflow: hidden;
  min-height: 370px;
  border: 1px solid rgba(96, 165, 250, 0.17);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(45, 212, 191, 0.07), rgba(37, 99, 235, 0.06)),
    rgba(255, 255, 255, 0.026);
  padding: 26px 22px;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.svc-tiers-tech .svc-tier::after {
  content: "";
  position: absolute;
  right: -58px;
  top: -58px;
  width: 142px;
  height: 142px;
  border: 1px solid rgba(45, 212, 191, 0.15);
  border-radius: 50%;
}

.svc-tiers-tech .svc-tier:hover {
  transform: translateY(-3px);
  border-color: rgba(45, 212, 191, 0.34);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.svc-tiers-tech .svc-tier.is-recommended {
  border-color: rgba(45, 212, 191, 0.4);
  background:
    radial-gradient(circle at 86% 12%, rgba(45, 212, 191, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(37, 99, 235, 0.2), rgba(255, 255, 255, 0.035));
}

.svc-tiers-tech .svc-tier.is-recommended::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  box-shadow: 0 0 22px rgba(45, 212, 191, 0.42);
}

.svc-tiers-tech .svc-tier h3 {
  margin-bottom: 22px;
}

.svc-tiers-tech .svc-tier li {
  border-color: rgba(141, 181, 255, 0.13);
}

.svc-body-tech {
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.65fr);
  gap: clamp(20px, 3vw, 34px);
  margin-top: 22px;
  padding: clamp(22px, 4vw, 42px);
}

.svc-process-panel h2 {
  max-width: 620px;
  margin: 0 0 24px;
  color: #ffffff;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.04;
  text-transform: uppercase;
}

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

.svc-process-grid article,
.svc-scope-card {
  border: 1px solid rgba(96, 165, 250, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.028);
}

.svc-process-grid article {
  min-height: 210px;
  padding: 22px;
}

.svc-process-grid span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.svc-process-grid h3 {
  margin: 34px 0 12px;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.14;
}

.svc-process-grid p {
  margin: 0;
  color: var(--muted);
}

.svc-scope-card {
  padding: 24px;
}

.svc-also-tech {
  display: grid;
  grid-template-columns: minmax(240px, 0.45fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 30px);
  margin-top: 22px;
  padding: clamp(22px, 4vw, 36px);
}

.svc-also-heading h2 {
  margin: 10px 0 0;
  color: #ffffff;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.08;
}

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

.svc-also-grid a {
  position: relative;
  min-height: 134px;
  display: grid;
  align-content: end;
  border: 1px solid rgba(96, 165, 250, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(45, 212, 191, 0.07), rgba(37, 99, 235, 0.055)),
    rgba(255, 255, 255, 0.026);
  padding: 18px;
  color: #ffffff;
  overflow: hidden;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.svc-also-grid a::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 18px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(45, 212, 191, 0.26);
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(45, 212, 191, 0.12);
}

.svc-also-grid a:hover {
  transform: translateY(-2px);
  border-color: rgba(45, 212, 191, 0.35);
}

.svc-also-grid strong,
.svc-also-grid small {
  position: relative;
  z-index: 1;
  display: block;
}

.svc-also-grid strong {
  font-size: 15px;
  line-height: 1.16;
}

.svc-also-grid small {
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.svc-cta-tech {
  position: relative;
  overflow: hidden;
  margin-top: 22px;
  padding: clamp(28px, 4vw, 44px);
  background:
    radial-gradient(circle at 82% 30%, rgba(45, 212, 191, 0.16), transparent 30%),
    linear-gradient(145deg, rgba(37, 99, 235, 0.16), rgba(255, 255, 255, 0.026)),
    rgba(5, 11, 20, 0.7);
}

.svc-cta-tech::after {
  content: "";
  position: absolute;
  right: -96px;
  top: -142px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(45, 212, 191, 0.16);
  border-radius: 50%;
}

.svc-cta-tech h2 {
  max-width: 620px;
  font-size: clamp(28px, 4.4vw, 50px);
}

.svc-cta-tech .button {
  position: relative;
  z-index: 1;
}

@media (max-width: 1180px) {
  .svc-hero-tech,
  .svc-tiers-tech,
  .svc-body-tech,
  .svc-also-tech {
    grid-template-columns: 1fr;
  }

  .svc-tiers-tech .svc-tiers-intro {
    max-width: 640px;
  }

  .svc-tiers-tech .svc-tier-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  .service-plan-tech {
    padding-bottom: 64px;
  }

  .svc-hero-tech {
    min-height: 0;
    padding-top: 58px;
  }

  .svc-hero-tech h1 {
    font-size: clamp(40px, 12vw, 66px);
  }

  .svc-command-visual {
    min-height: 310px;
  }

  .svc-floating-card {
    display: none;
  }

  .svc-tiers-tech .svc-tier-grid,
  .svc-process-grid,
  .svc-also-grid {
    grid-template-columns: 1fr;
  }

  .svc-tiers-tech .svc-tier {
    min-height: 0;
  }

  .svc-also-grid a {
    min-height: 112px;
  }

  .svc-cta-tech {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .svc-hero-metrics {
    grid-template-columns: 1fr;
  }

  .svc-hero-metrics span {
    min-height: 70px;
  }

  .svc-command-visual {
    min-height: 250px;
  }

  .svc-tiers-tech,
  .svc-body-tech,
  .svc-also-tech,
  .svc-cta-tech {
    padding: 18px;
  }

  .svc-process-grid article,
  .svc-scope-card {
    padding: 18px;
  }

  .svc-cta-tech .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .svc-command-visual,
  .svc-command-wave,
  .svc-map-nodes circle,
  .svc-floating-card {
    animation: none;
  }
}

.single-service-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: stretch;
  gap: 24px;
  margin-bottom: 24px;
}

.single-service-hero > div:first-child,
.single-service-visual,
.single-service-panel,
.single-service-list,
.service-next-step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.022)),
    rgba(255, 255, 255, 0.02);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04), 0 28px 70px rgba(0, 0, 0, 0.22);
}

.single-service-hero > div:first-child {
  padding: clamp(30px, 5vw, 58px);
}

.single-service-hero h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 1.02;
  text-transform: uppercase;
}

.single-service-hero p:not(.eyebrow) {
  max-width: 700px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.single-service-visual {
  display: grid;
  place-items: center;
  min-height: 390px;
  background:
    radial-gradient(circle at 58% 38%, rgba(45, 212, 191, 0.18), transparent 30%),
    linear-gradient(145deg, rgba(37, 99, 235, 0.18), rgba(255, 255, 255, 0.02));
}

.single-service-visual svg {
  width: 160px;
  height: 160px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 28px rgba(45, 212, 191, 0.24));
}

.single-service-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  margin-bottom: 18px;
}

.single-service-panel,
.single-service-list {
  padding: clamp(24px, 4vw, 42px);
}

.single-service-panel h2,
.single-service-list h2,
.service-next-step h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.12;
}

.single-service-panel p {
  margin: 20px 0 0;
  color: var(--muted);
}

.single-service-list ul {
  display: grid;
  gap: 13px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.single-service-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.single-service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.74em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(45, 212, 191, 0.34);
}

.service-next-step {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: clamp(24px, 4vw, 38px);
}

.pricing-matrix-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 24px;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  padding: clamp(24px, 4vw, 42px);
}

.pricing-intro h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
}

.pricing-intro p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--muted);
}

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

.tier-card {
  border: 1px solid rgba(141, 181, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  padding: 24px 20px;
}

.tier-card-featured {
  border-color: rgba(45, 212, 191, 0.36);
  background:
    linear-gradient(145deg, rgba(45, 212, 191, 0.12), rgba(37, 99, 235, 0.1)),
    rgba(255, 255, 255, 0.04);
}

.tier-card h3 {
  margin: 0 0 20px;
  font-size: 22px;
  line-height: 1.18;
}

.tier-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tier-card li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 13px;
}

.tier-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(45, 212, 191, 0.32);
}

.services-cta {
  margin-top: 28px;
}

/* Service card hover polish */
.service-detail-card {
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.service-detail-card:hover {
  transform: translateY(-3px);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.07), 0 36px 90px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(45, 212, 191, 0.22);
}

.service-detail-icon {
  transition: border-color 0.18s, background 0.18s;
}

.service-detail-card:hover .service-detail-icon {
  border-color: rgba(45, 212, 191, 0.46);
  background: rgba(45, 212, 191, 0.1);
}

/* Tier card hover + featured accent */
.tier-card {
  transition: border-color 0.18s, transform 0.18s;
}

.tier-card:hover {
  transform: translateY(-2px);
  border-color: rgba(45, 212, 191, 0.3);
}

.tier-card-featured {
  position: relative;
}

.tier-card-featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
}

/* "Also explore" inter-service nav */
.service-also {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
  padding: clamp(20px, 3.5vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012));
}

.service-also-label {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-also-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 10px;
}

.service-also-link {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}

.service-also-link:hover {
  border-color: rgba(45, 212, 191, 0.36);
  background: rgba(45, 212, 191, 0.07);
}

.also-cat {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.also-name {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

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

  .menu-toggle {
    display: block;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .site-header.is-open .main-nav,
  .site-header.is-open .header-cta {
    grid-column: 1 / -1;
    display: flex;
  }

  .site-header.is-open .main-nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding-top: 14px;
  }

  .site-header.is-open .nav-dropdown {
    display: grid;
    gap: 10px;
  }

  .site-header.is-open .subnav {
    position: static;
    width: min(100%, 360px);
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .hero-section {
    min-height: 850px;
  }

  .tech-constellation {
    right: -34%;
    top: 9%;
    width: 900px;
    height: 650px;
    opacity: 0.72;
  }

  .tech-service-card {
    display: none;
  }

  .hero-copy h1 {
    max-width: 760px;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 520px;
  }

  .hero-proof div {
    min-width: 0;
    border-right: 0;
    margin-right: 0;
    padding-right: 0;
  }

  .services-section,
  .why-panel,
  .cta-panel,
  .contact-grid,
  .contact-panel,
  .testimonial-section,
  .choose-section,
  .quick-contact-section,
  .about-founder,
  .about-work-panel,
  .about-handshake-cta,
  .single-service-hero,
  .single-service-body,
  .service-next-step,
  .pricing-matrix-section {
    grid-template-columns: 1fr;
  }

  .section-lead {
    max-width: 620px;
  }

  .service-grid,
  .why-grid,
  .proof-section,
  .about-principles,
  .site-footer,
  .testimonial-grid,
  .service-detail-grid,
  .tier-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-hero {
    grid-template-columns: 1fr;
  }

  .cta-orbit {
    width: 270px;
  }

  .quick-contact-form {
    grid-template-columns: 1fr;
  }

  .quick-contact-form .button {
    width: 100%;
  }

  .contact-hero-tech,
  .contact-panel-tech {
    grid-template-columns: 1fr;
  }

  .contact-hero-tech {
    min-height: 0;
  }

  .contact-signal-visual {
    min-height: 340px;
  }
}

@media (max-width: 700px) {
  .site-header {
    padding-top: 22px;
  }

  .brand-logo {
    width: clamp(170px, 45vw, 230px);
  }

  .hero-section {
    min-height: 850px;
    padding-top: 128px;
  }

  .hero-copy {
    margin: 0;
  }

  .tech-constellation {
    right: -58%;
    top: 5%;
    width: 760px;
    height: 560px;
    opacity: 0.72;
  }

  .tech-service-card {
    display: none;
  }

  .sphere-magenta {
    right: -16%;
    top: 20%;
  }

  .sphere-blue {
    right: 20%;
    top: 52%;
  }

  .service-grid,
  .why-grid,
  .proof-section,
  .about-principles,
  .site-footer,
  .testimonial-grid,
  .service-detail-grid,
  .tier-grid {
    grid-template-columns: 1fr;
  }


  .service-card,
  .why-card,
  .proof-card,
  .founder-profile-card {
    min-height: 0;
  }

  .cta-panel .button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .site-header {
    background: linear-gradient(180deg, rgba(5, 11, 20, 0.95), rgba(5, 11, 20, 0));
    padding-bottom: 24px;
  }

  .site-header.is-open {
    background: rgba(5, 11, 20, 0.96);
    padding-bottom: 20px;
  }

  .hero-section {
    min-height: 860px;
    padding-top: 128px;
    padding-bottom: 62px;
  }

  .hero-copy h1 {
    max-width: 11ch;
    font-size: clamp(40px, 11vw, 52px);
  }

  .hero-copy .eyebrow {
    margin-bottom: 34px;
    font-size: 12px;
    letter-spacing: 0.25em;
  }

  .hero-copy > p:not(.eyebrow) {
    max-width: 330px;
    margin-top: 22px;
    margin-bottom: 28px;
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
    max-width: 340px;
  }

  .explore-link {
    justify-content: flex-start;
  }

  .hero-proof {
    margin-top: 34px;
  }

  .hero-proof div {
    grid-template-columns: 34px 1fr;
    gap: 12px;
  }

  .hero-proof strong {
    font-size: 12px;
  }

  .hero-proof small {
    font-size: 13px;
  }

  .hero-bg {
    opacity: 0.72;
    transform: none;
  }

  .tech-constellation {
    right: -76%;
    top: 4%;
    width: 720px;
    height: 540px;
  }

  .sphere-magenta {
    width: 150px;
    height: 150px;
    right: -18%;
    top: 22%;
  }

  .sphere-blue {
    display: none;
  }

  .services-section,
  .why-panel,
  .testimonial-section,
  .choose-section,
  .proof-section,
  .about-page-main,
  .page-main {
    padding-top: 46px;
    padding-bottom: 48px;
  }

  .choose-copy,
  .proof-card {
    padding: 24px;
  }

  .choose-copy h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .choose-signal {
    min-height: 260px;
  }

  .choose-signal span {
    left: 36px;
    top: 42px;
    width: 82px;
    height: 82px;
  }

  .choose-signal i {
    right: 44px;
    top: 86px;
    width: 62px;
    height: 62px;
  }

  .choose-signal b {
    left: 36px;
    right: 36px;
    bottom: 42px;
    height: 86px;
  }

  .about-founder-copy,
  .founder-profile-card,
  .about-work-panel,
  .about-principles article,
  .about-handshake-cta {
    padding: 24px;
  }

  .about-founder-copy h1 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .about-founder-copy .founder-intro {
    font-size: 16px;
  }

  .profile-orbit {
    min-height: 132px;
  }

  .profile-orbit span {
    left: 10%;
    top: 18px;
    width: 88px;
    height: 88px;
  }

  .profile-orbit i {
    right: 18%;
    top: 64px;
    width: 54px;
    height: 54px;
  }

  .laptop-visual {
    min-height: 250px;
  }

  .laptop-screen {
    left: 10%;
    top: 18%;
    width: 78%;
    height: 42%;
    padding: 22px;
  }

  .hand {
    width: 86px;
    height: 50px;
  }

  .about-handshake-cta .button {
    width: 100%;
  }

  .services-hero h1 {
    font-size: clamp(34px, 9vw, 42px);
  }

  .services-page-main {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .services-page-main *,
  .services-page-main *::before,
  .services-page-main *::after {
    max-width: 100%;
  }

  .services-hero,
  .service-detail-grid,
  .pricing-matrix-section,
  .tier-grid,
  .services-cta {
    width: 100%;
    min-width: 0;
  }

  .services-hero p,
  .service-detail-card p,
  .tier-card li {
    overflow-wrap: break-word;
  }

  .services-hero h1,
  .services-hero p:not(.eyebrow) {
    width: calc(100vw - 48px);
    max-width: calc(100vw - 48px);
  }

  .service-orbit-card,
  .service-detail-card,
  .pricing-matrix-section,
  .services-cta {
    width: calc(100vw - 48px);
    max-width: calc(100vw - 48px);
  }

  .service-detail-card h2,
  .service-detail-card p,
  .tier-card h3,
  .tier-card li {
    max-width: calc(100vw - 96px);
  }

  .service-orbit-card {
    min-height: 270px;
  }

  .service-monitor {
    left: 28px;
    top: 56px;
    width: 72%;
    height: 138px;
    padding: 22px;
  }

  .service-orbit-card .orbit-ring {
    right: -115px;
    top: 42px;
    width: 260px;
    height: 260px;
  }

  .service-detail-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .single-service-hero h1 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .single-service-visual {
    min-height: 240px;
  }

  .single-service-visual svg {
    width: 112px;
    height: 112px;
  }

  .service-next-step .button {
    width: 100%;
  }

  .service-detail-card h2 {
    overflow-wrap: break-word;
  }

  .section-lead h2,
  .why-intro h2,
  .cta-panel h2 {
    font-size: clamp(24px, 8vw, 32px);
  }

  .service-card {
    min-height: 0;
    padding: 22px 18px;
  }

  .service-card h3 {
    margin-top: 22px;
  }

  .why-card {
    min-height: 0;
  }

  .mini-scene {
    height: 88px;
  }

  .cta-panel {
    padding-top: 22px;
    padding-bottom: 24px;
  }

  .quick-contact-section {
    padding: 24px;
  }

  .quick-contact-copy h2 {
    font-size: clamp(26px, 8vw, 34px);
  }
}

@media (max-width: 760px) {
  .contact-page-main {
    padding-bottom: 64px;
  }

  .contact-hero {
    text-align: left;
  }

  .contact-hero-tech {
    padding-top: 34px;
    gap: 22px;
  }

  .contact-hero-copy h1 {
    font-size: clamp(38px, 13vw, 58px);
  }

  .contact-highlights {
    justify-content: flex-start;
  }

  .contact-highlights span {
    padding: 8px 12px;
    font-size: 11px;
  }

  .contact-signal-visual {
    min-height: 220px;
  }

  .signal-status {
    display: none;
  }

  .contact-panel-tech {
    padding: 16px;
  }

  .contact-card,
  .next-steps,
  .contact-split-form {
    padding: 20px;
  }

  .contact-split {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-split-info > p:not(.eyebrow) {
    max-width: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ── Home page responsive ── */

@media (max-width: 1080px) {
  .home-svc-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .home-svc-cell--primary {
    grid-column: 1 / 3;
    grid-row: 1;
    justify-content: flex-start;
    min-height: 0;
  }

  .home-svc-cell--primary .home-svc-num {
    margin-bottom: 18px;
  }

  .home-svc-cell--primary p {
    margin-bottom: 18px;
  }

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

  .home-why-item:nth-child(2) {
    border-right: none;
    padding-right: 0;
  }

  .home-why-item:nth-child(3) {
    border-top: 1px solid var(--line);
    padding-left: 0;
  }

  .home-why-item:nth-child(4) {
    border-right: none;
    border-top: 1px solid var(--line);
    padding-right: 0;
  }

  .home-final-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
}

@media (max-width: 700px) {
  .home-reviews-grid {
    grid-template-columns: 1fr;
  }

  .home-review,
  .home-review:nth-child(n) {
    padding: 32px 0;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .home-review:last-child {
    border-bottom: none;
  }

  .home-svc-bento {
    grid-template-columns: 1fr;
  }

  .home-svc-cell--primary {
    grid-column: 1;
  }

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

  .home-stat {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .home-stat:last-child {
    border-bottom: none;
  }

  .home-why-grid {
    grid-template-columns: 1fr;
  }

  .home-why-item,
  .home-why-item:nth-child(n) {
    padding: 26px 0;
    border-right: none;
    border-top: 1px solid var(--line);
  }

  .home-why-item:first-child {
    border-top: none;
    padding-top: 26px;
  }

  .home-svc-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .home-final-cta .button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 700px) {
  .about-founder {
    grid-template-columns: 1fr;
    gap: 34px;
    align-items: start;
  }

  .founder-profile-card {
    border-left: 0;
    border-top: 1px solid rgba(141, 181, 255, 0.18);
    padding: 28px 0 0;
  }

  .about-work-panel,
  .about-handshake-cta {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .handshake-visual {
    justify-items: start;
    min-height: 72px;
  }
}

@media (max-width: 560px) {
  .about-page-main {
    padding-top: 52px;
    padding-bottom: 64px;
  }

  .about-founder-copy,
  .founder-profile-card,
  .about-work-panel,
  .about-principles article,
  .about-handshake-cta {
    padding-left: 0;
    padding-right: 0;
  }

  .about-founder-copy {
    padding-top: 0;
    padding-bottom: 0;
  }

  .about-founder-copy h1 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .about-founder-copy .founder-intro {
    font-size: 17px;
  }

  .about-principles {
    gap: 30px;
  }

  .about-principles h2 {
    margin-top: 18px;
  }

  .profile-orbit span {
    left: 18px;
    top: 20px;
    width: 66px;
    height: 66px;
  }

  .profile-orbit i {
    left: 102px;
    right: auto;
    top: 62px;
    width: 42px;
    height: 42px;
  }
}

/* Main page polish override */
.button-gradient {
  border: 1px solid rgba(45, 212, 191, 0.36);
  background: rgba(16, 28, 45, 0.96);
  color: #ffffff;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.button-gradient:hover {
  border-color: rgba(45, 212, 191, 0.62);
  background: rgba(20, 38, 58, 0.98);
}

.hero-actions .button-gradient {
  border: 0;
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(37, 99, 235, 0.26);
}

.hero-actions .button-gradient:hover,
.hero-actions .button-gradient:focus-visible {
  background: #2563eb;
  color: #ffffff;
}

.hero-section {
  min-height: 830px;
  align-items: center;
  padding: 162px var(--gutter) 72px;
  background: #050b14;
}

.hero-section::after {
  height: 190px;
  background: linear-gradient(180deg, transparent, #050b14);
}

.hero-bg::before {
  opacity: 0.34;
  background-image: radial-gradient(rgba(141, 181, 255, 0.11) 1px, transparent 1px);
  background-size: 12px 12px;
  mask-image: radial-gradient(circle at 73% 48%, #000 0 390px, transparent 610px), linear-gradient(90deg, transparent, #000 42%, #000);
}

.grid-field {
  opacity: 0.22;
}

.hero-copy {
  width: min(620px, 100%);
  margin-top: 14px;
}

.hero-copy .eyebrow {
  margin: 0 0 24px;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: var(--cyan);
  font-size: 12px;
  letter-spacing: 0.18em;
}

.hero-copy .eyebrow::after {
  width: 52px;
  height: 1px;
  margin-top: 14px;
  background: rgba(45, 212, 191, 0.58);
}

.hero-copy h1 {
  max-width: 640px;
  color: #f8fbff;
  font-family: var(--font-display);
  font-size: clamp(54px, 6.3vw, 84px);
  font-weight: 300;
  letter-spacing: 0.065em;
  line-height: 0.98;
  text-transform: uppercase;
  text-shadow:
    0 0 10px rgba(248, 251, 255, 0.2),
    0 0 26px rgba(96, 165, 250, 0.2),
    0 0 42px rgba(45, 212, 191, 0.1);
}

.hero-copy h1 span {
  display: block;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: #ffffff;
}

.hero-copy > p:not(.eyebrow) {
  width: min(100%, 560px);
  margin-top: 28px;
  color: rgba(222, 232, 246, 0.82);
  font-size: 20px;
  line-height: 1.64;
}

.hero-actions {
  gap: 34px;
  margin-top: 34px;
}

.explore-link {
  min-height: 56px;
  gap: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  letter-spacing: 0.11em;
}

.explore-link::after {
  right: 30px;
  bottom: 10px;
  height: 1px;
  background: rgba(45, 212, 191, 0.5);
}

.tech-constellation {
  right: -4%;
  top: 7%;
  width: min(1060px, 72vw);
  height: 690px;
  color: #8db5ff;
  opacity: 0.9;
}

.tech-constellation::before {
  opacity: 0.62;
  background:
    radial-gradient(circle at 52% 16%, rgba(45, 212, 191, 0.1), transparent 16%),
    radial-gradient(circle at 55% 48%, rgba(96, 165, 250, 0.09), transparent 36%);
}

.tech-wave {
  stroke: #45d6ff;
  opacity: 0.76;
}

.tech-wave-shine {
  fill: none;
  stroke: rgba(211, 250, 255, 0.94);
  stroke-width: 3.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 46 720;
  stroke-dashoffset: 760;
  filter: drop-shadow(0 0 12px rgba(45, 212, 191, 0.52)) drop-shadow(0 0 22px rgba(96, 165, 250, 0.34));
  opacity: 0;
  animation: techWaveShine 16s linear infinite;
}

.tech-wave-shine-inner {
  stroke-width: 2.45;
  stroke-dasharray: 34 660;
  animation-duration: 18s;
  animation-delay: -5s;
  opacity: 0;
}

.tech-orbit {
  stroke: rgba(141, 181, 255, 0.2);
  filter: none;
}

.orbit-mid,
.orbit-low {
  stroke: rgba(45, 212, 191, 0.12);
}

.tech-node {
  fill: #c8f7ff;
  opacity: 0.7;
}

.tech-service-card {
  width: 264px;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  border-color: rgba(141, 181, 255, 0.18);
  background:
    radial-gradient(circle at 18% 12%, rgba(141, 181, 255, 0.13), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.026)),
    rgba(5, 12, 24, 0.58);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.3),
    inset 0 1px rgba(255, 255, 255, 0.08);
  padding: 18px;
  animation: glassCardFloat 9s ease-in-out infinite;
  will-change: transform;
}

.tech-service-card::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.46), rgba(45, 212, 191, 0.28), transparent);
}

.tech-service-card::after {
  content: "";
  position: absolute;
  inset: -40% -18%;
  background: linear-gradient(112deg, transparent 36%, rgba(255, 255, 255, 0.11) 48%, rgba(45, 212, 191, 0.08) 52%, transparent 64%);
  transform: translateX(-62%);
  opacity: 0.55;
  pointer-events: none;
  animation: glassCardSheen 12s ease-in-out infinite;
}

.tech-card-managed {
  left: 33%;
  top: 30%;
  animation-delay: -1s;
}

.tech-card-security {
  right: 5%;
  top: 30%;
  animation-delay: -4s;
}

.tech-card-cloud {
  left: 47%;
  top: 66%;
  animation-delay: -7s;
}

.tech-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(96, 165, 250, 0.08);
  color: #8db5ff;
  box-shadow: none;
}

.tech-card-icon svg {
  width: 27px;
  height: 27px;
  filter: none;
}

.tech-service-card h2 {
  font-size: 17px;
  font-weight: 760;
  text-shadow: none;
}

.tech-service-card p {
  margin: 8px 0 12px;
  color: rgba(222, 232, 246, 0.68);
  font-size: 12px;
}

.tech-service-card strong {
  color: var(--cyan);
  font-size: 9px;
}

.tech-card-managed::after {
  animation-delay: -1.5s;
}

.tech-card-security::after {
  animation-delay: -5s;
}

.tech-card-cloud::after {
  animation-delay: -8s;
}

@keyframes glassCardFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -7px, 0);
  }
}

@keyframes glassCardSheen {
  0%,
  62% {
    transform: translateX(-62%);
    opacity: 0;
  }

  74% {
    opacity: 0.5;
  }

  100% {
    transform: translateX(62%);
    opacity: 0;
  }
}

@keyframes techWaveShine {
  0% {
    stroke-dashoffset: 820;
    opacity: 0;
  }

  10% {
    opacity: 0.18;
  }

  34% {
    opacity: 0.84;
  }

  58% {
    opacity: 0.18;
  }

  100% {
    stroke-dashoffset: -260;
    opacity: 0;
  }
}

.home-svc-header h2,
.home-why-head h2,
.home-reviews-head h2,
.home-final-cta h2 {
  text-transform: none;
  letter-spacing: 0;
}

.home-svc-header h2,
.home-why-head h2,
.home-reviews-head h2 {
  font-size: clamp(34px, 4.4vw, 58px);
  font-weight: 760;
  line-height: 1.02;
}

.home-svc-section,
.home-why,
.home-reviews {
  margin-top: clamp(82px, 9vw, 124px);
}

.home-svc-all {
  color: rgba(255, 255, 255, 0.78);
}

.home-svc-bento {
  border-color: rgba(141, 181, 255, 0.14);
}

.home-svc-cell {
  border-color: rgba(141, 181, 255, 0.14);
  background: rgba(255, 255, 255, 0.012);
  transition: background 180ms ease, border-color 180ms ease;
}

.home-svc-cell:hover {
  border-color: rgba(45, 212, 191, 0.28);
  background: rgba(45, 212, 191, 0.035);
}

.home-svc-cell h3,
.home-why-item h3 {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 740;
}

.home-svc-cell h3 {
  font-size: clamp(17px, 1.7vw, 22px);
}

.home-svc-cell--primary h3 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
}

.home-svc-num,
.home-why-n,
.home-stat-l {
  color: #8debdc;
}

.home-stats {
  border-color: rgba(141, 181, 255, 0.14);
}

.home-stat {
  border-color: rgba(141, 181, 255, 0.14);
}

.home-stat-n {
  font-weight: 760;
  letter-spacing: 0;
}

.home-final-cta {
  background: #06101d;
}

@media (max-width: 900px) {
  .hero-section {
    align-items: start;
    padding-top: 142px;
  }

  .hero-copy h1 {
    max-width: 760px;
  }
}

@media (max-width: 700px) {
  .hero-section {
    min-height: 820px;
    padding-top: 126px;
  }

  .hero-copy {
    margin-top: 0;
  }
}

@media (max-width: 560px) {
  .hero-copy h1 {
    max-width: 12ch;
    font-size: clamp(44px, 12vw, 58px);
  }

  .hero-copy .eyebrow {
    margin-bottom: 24px;
    color: var(--cyan);
    font-size: 11px;
    letter-spacing: 0.16em;
  }

  .hero-copy > p:not(.eyebrow) {
    max-width: 340px;
    font-size: 17px;
  }

  .hero-actions {
    margin-top: 28px;
  }
}

/* Founder hero polish */
.about-founder {
  position: relative;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  align-items: center;
  gap: clamp(38px, 6vw, 84px);
  min-height: min(620px, calc(100vh - 190px));
  margin-bottom: clamp(52px, 7vw, 86px);
  padding: clamp(38px, 5vw, 64px) 0 clamp(44px, 6vw, 72px);
  border-bottom: 1px solid rgba(141, 181, 255, 0.14);
}

.about-founder::before {
  content: "";
  position: absolute;
  inset: 8% -8% auto auto;
  width: min(42vw, 520px);
  height: min(42vw, 520px);
  border: 1px solid rgba(96, 165, 250, 0.12);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.08), transparent 62%);
  pointer-events: none;
}

.about-founder-copy {
  position: relative;
  max-width: 820px;
}

.about-founder-copy::after {
  display: none;
}

.about-founder-copy .eyebrow {
  margin-bottom: 18px;
  color: #8debdc;
}

.about-founder-copy h1 {
  max-width: 760px;
  font-size: clamp(48px, 6.4vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

.about-founder-copy .founder-intro {
  max-width: 690px;
  margin-top: 28px;
  font-size: clamp(18px, 1.65vw, 22px);
  line-height: 1.48;
}

.about-founder-copy p:not(.eyebrow):not(.founder-intro) {
  max-width: 650px;
  color: rgba(210, 222, 240, 0.78);
  font-size: 16px;
  line-height: 1.72;
}

.founder-profile-card {
  position: relative;
  display: grid;
  align-content: center;
  gap: 22px;
  min-height: 420px;
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid rgba(141, 181, 255, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.022)),
    rgba(5, 11, 20, 0.46);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.06),
    0 34px 90px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.founder-profile-card::before {
  display: block;
  inset: 0;
  width: auto;
  height: auto;
  border: 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(45, 212, 191, 0.32), transparent 32%),
    radial-gradient(circle at 82% 16%, rgba(96, 165, 250, 0.14), transparent 34%);
  opacity: 0.48;
}

.founder-profile-card::after {
  display: none;
}

.founder-profile-card > * {
  position: relative;
  z-index: 1;
}

.profile-orbit {
  display: none;
}

.profile-orbit:has(img) {
  position: relative;
  display: block;
  min-height: 0;
  aspect-ratio: 4 / 5;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.22);
}

.profile-orbit:has(img)::before,
.profile-orbit:has(img) span,
.profile-orbit:has(img) i {
  display: none;
}

.profile-orbit img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-profile-heading {
  position: relative;
  display: grid;
  gap: 8px;
}

.founder-profile-heading span {
  color: #8debdc;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.founder-profile-heading h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(46px, 5vw, 72px);
  font-weight: 780;
  line-height: 0.92;
  letter-spacing: 0;
}

.founder-profile-card > p {
  max-width: 320px;
  margin: 0;
  color: rgba(210, 222, 240, 0.76);
  font-size: 15px;
  line-height: 1.6;
}

.founder-profile-card dl {
  position: relative;
  display: grid;
  gap: 0;
  margin: 8px 0 0;
  padding-top: 8px;
  border-top: 1px solid rgba(141, 181, 255, 0.14);
}

.founder-profile-card dl div {
  grid-template-columns: 104px 1fr;
  padding: 13px 0;
}

@media (max-width: 900px) {
  .about-founder {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .founder-profile-card {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .about-founder {
    padding-top: 10px;
    gap: 28px;
  }

  .about-founder-copy h1 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .founder-profile-card {
    padding: 24px 20px;
    border-radius: 14px;
  }

  .founder-profile-heading h2 {
    font-size: 46px;
  }
}

/* Home quick action CTA */
.home-final-cta {
  position: relative;
  overflow: hidden;
}

.home-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 24%, rgba(45, 212, 191, 0.12), transparent 30%),
    radial-gradient(circle at 88% 68%, rgba(96, 165, 250, 0.14), transparent 32%);
  pointer-events: none;
}

.home-final-cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
}

.home-final-copy {
  max-width: 720px;
}

.home-final-copy .eyebrow {
  margin-bottom: 16px;
  color: #8debdc;
}

.home-final-copy p:not(.eyebrow) {
  max-width: 540px;
  margin: 18px 0 0;
  color: rgba(210, 222, 240, 0.76);
  font-size: clamp(16px, 1.45vw, 18px);
  line-height: 1.6;
}

.home-quick-card {
  border: 1px solid rgba(141, 181, 255, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.078), rgba(255, 255, 255, 0.026)),
    rgba(5, 11, 20, 0.58);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.06),
    0 28px 74px rgba(0, 0, 0, 0.26);
}

.home-quick-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 34px);
}

.home-quick-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.home-quick-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-quick-form input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(141, 181, 255, 0.18);
  border-radius: 10px;
  background: rgba(1, 7, 16, 0.58);
  color: #ffffff;
  padding: 0 16px;
  font: inherit;
  letter-spacing: 0;
  outline: none;
}

.home-quick-form input::placeholder {
  color: rgba(210, 222, 240, 0.42);
}

.home-quick-form input:focus {
  border-color: rgba(45, 212, 191, 0.62);
  box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.12);
}

.home-quick-form .form-status {
  margin: 0;
}

.home-quick-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.home-quick-actions .button {
  flex: 1 1 220px;
  justify-content: center;
}

.home-quick-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.home-quick-link {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: color 160ms ease;
}

.home-quick-link:hover {
  color: #8debdc;
}

@media (max-width: 900px) {
  .home-final-cta-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .home-quick-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .home-quick-actions .button {
    flex-basis: auto;
    width: 100%;
  }

  .home-quick-link {
    text-align: center;
  }
}

/* About page clean profile refinement */
.about-page-main {
  background:
    radial-gradient(circle at 18% 8%, rgba(45, 212, 191, 0.08), transparent 30%),
    radial-gradient(circle at 84% 14%, rgba(96, 165, 250, 0.1), transparent 32%),
    linear-gradient(180deg, rgba(5, 11, 20, 0.98), rgba(5, 11, 20, 1));
}

.about-founder {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  align-items: center;
  gap: clamp(44px, 7vw, 96px);
}

.about-founder::before {
  opacity: 0.52;
}

.about-founder-copy h1 {
  max-width: 720px;
  font-weight: 760;
}

.about-founder-copy .founder-intro {
  color: rgba(255, 255, 255, 0.88);
}

.founder-profile-card {
  display: grid;
  align-content: center;
  gap: 20px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.founder-profile-card::before,
.founder-profile-card::after {
  display: none;
}

.profile-orbit {
  display: none;
}

.profile-orbit:has(img) {
  display: block;
  max-width: 320px;
  aspect-ratio: 4 / 5;
  margin: 0 0 8px;
  border: 0;
  border-radius: 18px;
  background: transparent;
  box-shadow: 0 30px 76px rgba(0, 0, 0, 0.24);
}

.founder-profile-heading {
  gap: 10px;
}

.founder-profile-heading span {
  color: rgba(141, 235, 220, 0.92);
}

.founder-profile-heading h2 {
  font-size: clamp(50px, 5.2vw, 78px);
  font-weight: 740;
}

.founder-profile-card > p {
  max-width: 300px;
  color: rgba(210, 222, 240, 0.74);
}

.founder-profile-card dl {
  gap: 12px;
  margin: 8px 0 0;
  padding: 0;
  border-top: 0;
}

.founder-profile-card dl div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  padding: 0;
}

.founder-profile-card dt {
  color: rgba(141, 235, 220, 0.72);
}

.founder-profile-card dd {
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 900px) {
  .founder-profile-card {
    padding-top: 0;
  }
}

@media (max-width: 560px) {
  .founder-profile-card {
    padding: 0;
  }

  .profile-orbit:has(img) {
    max-width: 100%;
  }
}

/* Compact home quick request */
.home-final-cta {
  margin-top: clamp(54px, 7vw, 82px);
  background:
    linear-gradient(180deg, rgba(5, 11, 20, 0.98), rgba(6, 16, 29, 1));
}

.home-final-cta-inner {
  padding: clamp(34px, 5vw, 58px) var(--gutter);
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.9fr);
  gap: clamp(24px, 4vw, 48px);
}

.home-final-copy .eyebrow {
  margin-bottom: 10px;
}

.home-final-copy h2,
.home-final-cta h2 {
  max-width: 520px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.02;
  text-transform: none;
  letter-spacing: 0;
}

.home-final-copy p:not(.eyebrow) {
  margin-top: 10px;
  max-width: 360px;
  font-size: 15px;
}

.home-quick-card {
  border-radius: 14px;
}

.home-quick-form {
  gap: 12px;
  padding: clamp(16px, 2.2vw, 24px);
}

.home-quick-fields {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.home-quick-form label {
  gap: 6px;
  font-size: 10px;
}

.home-quick-form input {
  min-height: 46px;
  border-radius: 8px;
  padding: 0 13px;
  font-size: 14px;
}

.home-quick-actions {
  gap: 12px;
}

.home-quick-actions .button {
  min-height: 48px;
  flex: 0 1 190px;
}

.home-quick-link {
  font-size: 13px;
}

@media (max-width: 700px) {
  .home-final-cta-inner {
    grid-template-columns: 1fr;
    padding-top: 34px;
    padding-bottom: 38px;
  }

  .home-quick-fields {
    grid-template-columns: 1fr;
  }
}

/* About page sharper section polish */
.about-founder-copy h1 {
  max-width: 680px;
}

.about-work-panel {
  position: relative;
  align-items: center;
}

.about-work-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(30px, 4vw, 46px);
  height: 1px;
  background: linear-gradient(90deg, rgba(45, 212, 191, 0), rgba(45, 212, 191, 0.42), rgba(96, 165, 250, 0));
  opacity: 0.62;
  pointer-events: none;
}

.about-work-panel > div:first-child {
  position: relative;
  padding-left: clamp(18px, 2vw, 28px);
}

.about-work-panel > div:first-child::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 2px;
  height: min(78%, 280px);
  background: linear-gradient(180deg, rgba(45, 212, 191, 0.86), rgba(96, 165, 250, 0.12));
  border-radius: 999px;
  box-shadow: 0 0 26px rgba(45, 212, 191, 0.22);
}

.about-work-panel h2 {
  max-width: 620px;
  font-size: clamp(34px, 4.1vw, 54px);
  line-height: 1.04;
}

.about-signal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin-top: 30px;
}

.about-signal-list span {
  position: relative;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-signal-list span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: #2dd4bf;
  box-shadow: 0 0 18px rgba(45, 212, 191, 0.72);
  vertical-align: 1px;
}

.about-principles {
  position: relative;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-principles::before {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  top: 18px;
  height: 1px;
  background: linear-gradient(90deg, rgba(96, 165, 250, 0.1), rgba(45, 212, 191, 0.34), rgba(96, 165, 250, 0.1));
  pointer-events: none;
}

.about-principles article {
  position: relative;
  padding-top: 22px;
}

.about-principles article::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: rgba(45, 212, 191, 0.92);
  box-shadow:
    0 0 0 6px rgba(45, 212, 191, 0.08),
    0 0 26px rgba(45, 212, 191, 0.52);
}

.about-principles h2 {
  margin-top: 22px;
  font-size: clamp(22px, 2.2vw, 30px);
}

.about-handshake-cta {
  align-items: center;
  gap: clamp(22px, 4vw, 46px);
}

.about-handshake-cta h2 {
  max-width: 560px;
}

@media (max-width: 760px) {
  .about-principles {
    grid-template-columns: 1fr;
  }

  .about-principles::before {
    left: 6px;
    top: 10px;
    bottom: 0;
    width: 1px;
    height: auto;
    right: auto;
    background: linear-gradient(180deg, rgba(45, 212, 191, 0.36), rgba(96, 165, 250, 0.08));
  }

  .about-principles article {
    padding-top: 0;
    padding-left: 30px;
  }

  .about-principles article::before {
    top: 4px;
  }

  .about-work-panel > div:first-child {
    padding-left: 18px;
  }
}

@media (max-width: 900px) {
  .about-founder,
  .about-work-panel,
  .about-handshake-cta {
    grid-template-columns: 1fr;
  }

  .about-founder-copy,
  .founder-profile-card,
  .about-work-panel > div:first-child {
    width: 100%;
  }
}

/* Consistent page title start */
:root {
  --page-start: clamp(20px, 2.4vw, 32px);
}

.page-header {
  padding-bottom: 18px;
}

.page-main,
.about-page-main,
.contact-page-main {
  padding-top: var(--page-start);
}

.about-founder {
  min-height: auto;
  padding-top: 0;
}

.about-founder-copy .eyebrow {
  margin-bottom: 4px;
}

.contact-split,
.contact-hero,
.svc-hero,
.single-service-hero {
  padding-top: 0;
}

.svc-hero {
  padding-top: var(--page-start);
}

.svc-hero-tech {
  min-height: 540px;
  padding-top: var(--page-start);
}

.contact-page-main--tech {
  padding-top: 0;
}

.contact-hero-tech {
  min-height: 300px;
  padding-top: var(--page-start);
}

.hero-section {
  padding-top: clamp(108px, 10vw, 126px);
}

@media (max-width: 700px) {
  :root {
    --page-start: 24px;
  }

  .page-header {
    padding-bottom: 14px;
  }

  .about-page-main {
    padding-top: var(--page-start);
  }

  .about-founder {
    padding-top: 0;
  }

  .hero-section {
    padding-top: 108px;
  }

  .contact-hero-tech {
    min-height: auto;
  }
}

/* Minimal home quick request */
.home-quick-form {
  padding: clamp(14px, 2vw, 20px);
}

.home-quick-fields {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 48px;
  align-items: end;
  gap: 10px;
}

.home-quick-submit {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(45, 212, 191, 0.36);
  border-radius: 8px;
  background: rgba(37, 99, 235, 0.92);
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.24);
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.home-quick-submit:hover,
.home-quick-submit:focus-visible {
  border-color: rgba(45, 212, 191, 0.72);
  background: #1d4ed8;
  transform: translateY(-1px);
  outline: none;
}

.home-quick-submit:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.home-quick-submit i {
  position: relative;
  display: block;
  width: 24px;
  height: 18px;
}

.home-quick-submit i::before,
.home-quick-submit i::after {
  content: "";
  position: absolute;
  border-color: currentColor;
}

.home-quick-submit i::before {
  left: 2px;
  top: 8px;
  width: 18px;
  border-top: 2px solid currentColor;
}

.home-quick-submit i::after {
  right: 2px;
  top: 4px;
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
}

@media (max-width: 760px) {
  .home-quick-fields {
    grid-template-columns: minmax(0, 1fr) 48px;
  }

  .home-quick-fields label {
    grid-column: 1 / -1;
  }

  .home-quick-fields label:last-of-type {
    grid-column: 1;
  }

  .home-quick-submit {
    grid-column: 2;
  }
}

/* Final Draft contact split */
.contact-page-main {
  min-height: calc(100svh - 136px);
  padding: clamp(18px, 2vw, 28px) var(--gutter) clamp(46px, 5vw, 72px);
  background:
    radial-gradient(circle at 14% 18%, rgba(45, 212, 191, 0.14), transparent 28%),
    radial-gradient(circle at 78% 16%, rgba(37, 99, 235, 0.16), transparent 34%),
    linear-gradient(115deg, #061520 0%, #050b14 42%, #07172c 100%);
}

.contact-page-main::before {
  opacity: 0.22;
  background-image: radial-gradient(circle at 1px 1px, rgba(141, 181, 255, 0.16) 1px, transparent 0);
  background-size: 14px 14px;
}

.contact-page-main::after {
  background:
    linear-gradient(90deg, rgba(5, 11, 20, 0.7), transparent 36%, rgba(4, 10, 20, 0.38) 100%),
    linear-gradient(180deg, rgba(5, 11, 20, 0.28), rgba(5, 11, 20, 0.76));
}

.contact-split {
  width: min(100%, 1520px);
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1fr);
  gap: clamp(44px, 5.2vw, 84px);
  align-items: start;
}

.contact-split-info {
  padding-top: clamp(8px, 1.2vw, 18px);
}

.contact-split-info .eyebrow {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 12px;
  letter-spacing: 0.2em;
}

.contact-split-info h1 {
  max-width: 7ch;
  margin: 0 0 24px;
  color: #f8fbff;
  font-size: clamp(58px, 5.8vw, 96px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
  text-transform: uppercase;
}

.contact-split-info > p:not(.eyebrow) {
  max-width: 500px;
  margin: 0;
  color: rgba(213, 224, 242, 0.82);
  font-size: clamp(17px, 1.25vw, 21px);
  font-weight: 700;
  line-height: 1.48;
}

.contact-split-links {
  display: grid;
  gap: 14px;
  max-width: 700px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(141, 181, 255, 0.18);
}

.contact-split-links a {
  width: fit-content;
  color: #ffffff;
  font-size: clamp(17px, 1.15vw, 21px);
  font-weight: 900;
}

.contact-split-links a:hover,
.contact-split-links a:focus-visible {
  color: var(--cyan);
  outline: none;
}

.contact-split-links span {
  margin-top: 4px;
  color: rgba(184, 197, 216, 0.68);
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 800;
}

.contact-split-form {
  gap: 15px;
  padding: clamp(28px, 2.4vw, 38px);
  border-color: rgba(141, 181, 255, 0.24);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    rgba(12, 24, 43, 0.74);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.08),
    0 34px 96px rgba(0, 0, 0, 0.26);
}

.contact-split-form .form-row {
  gap: 16px;
}

.contact-form label {
  gap: 8px;
  color: #f7f8fb;
  font-size: clamp(13px, 0.95vw, 16px);
  font-weight: 900;
  letter-spacing: 0;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  min-height: 54px;
  border-color: rgba(141, 181, 255, 0.24);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
  padding: 12px 16px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
}

.contact-form textarea {
  min-height: 158px;
  padding-top: 14px;
}

.contact-form textarea::placeholder,
.contact-form input::placeholder {
  color: rgba(255, 255, 255, 0.43);
  font-weight: 800;
}

.contact-form .button {
  min-height: 60px;
  margin-top: 0;
  border: 0;
  border-radius: 10px;
  background: #2563eb;
  color: #ffffff;
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 900;
  box-shadow: 0 24px 54px rgba(37, 99, 235, 0.24);
}

.contact-form .button:hover,
.contact-form .button:focus-visible {
  background: #1d4ed8;
  color: #ffffff;
  outline: none;
}

.contact-form .button i {
  width: 16px;
  height: 16px;
  border-width: 3px;
}

/* Pull the hero cybersecurity card inside the viewport on desktop/tablet. */
.tech-card-security {
  right: clamp(70px, 8vw, 132px);
}

/* Design 2 text shine accents */
.hero-copy h1 .hero-title-line {
  display: block;
  color: #ffffff;
}

.hero-copy h1 .hero-it-highlight,
.text-shine-accent {
  position: relative;
  display: inline-block;
  background:
    linear-gradient(
      105deg,
      #f8fbff 0%,
      #f8fbff 14%,
      #9ff7ea 28%,
      #8debdc 72%,
      #f8fbff 88%,
      #f8fbff 100%
    );
  background-size: 175% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow:
    0 0 18px rgba(45, 212, 191, 0.1),
    0 0 28px rgba(96, 165, 250, 0.08);
  vertical-align: baseline;
  animation: textShineAccent 12s ease-in-out infinite;
}

.home-stat-n.text-shine-accent {
  display: block;
}

.hero-copy h1 .hero-it-highlight::after {
  display: none;
}

@keyframes textShineAccent {
  0% {
    background-position: 72% 50%;
  }

  46% {
    background-position: 35% 50%;
  }

  100% {
    background-position: -8% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy h1 .hero-it-highlight,
  .text-shine-accent {
    animation: none;
    background: none;
    color: #8debdc;
  }
}

/* Home scroll reveal */
.has-scroll-reveal .scroll-reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  filter: blur(5px);
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 720ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.has-scroll-reveal .scroll-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .has-scroll-reveal .scroll-reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

/* Design 2 mobile home polish */
@media (max-width: 760px) {
  .site-header {
    padding: 18px 22px 20px;
  }

  .brand-logo {
    width: min(56vw, 214px);
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
  }

  .hero-section {
    min-height: min(790px, 100svh);
    align-items: start;
    padding: 104px 22px 44px;
    overflow: hidden;
    background:
      radial-gradient(circle at 78% 58%, rgba(37, 99, 235, 0.18), transparent 30%),
      radial-gradient(circle at 88% 46%, rgba(45, 212, 191, 0.1), transparent 24%),
      linear-gradient(180deg, rgba(1, 5, 13, 0.99) 0%, rgba(5, 13, 26, 0.96) 56%, rgba(3, 10, 20, 0.99) 100%);
  }

  .hero-section::after {
    height: 136px;
  }

  .hero-bg {
    opacity: 0.88;
    transform: none;
  }

  .hero-bg::before {
    opacity: 0.22;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 76%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 76%, transparent 100%);
  }

  .grid-field {
    opacity: 0.18;
  }

  .tech-constellation {
    right: -320px;
    top: 276px;
    width: 660px;
    height: 470px;
    opacity: 0.68;
  }

  .tech-constellation::before {
    opacity: 0.36;
  }

  .tech-map {
    opacity: 0.82;
  }

  .tech-wave {
    opacity: 0.68;
  }

  .tech-orbit {
    opacity: 0.62;
  }

  .tech-node {
    opacity: 0.72;
  }

  .tech-service-card {
    display: grid;
    width: 172px;
    min-height: 0;
    grid-template-columns: 30px 1fr;
    gap: 10px;
    padding: 12px;
    border-color: rgba(141, 181, 255, 0.22);
    border-radius: 12px;
    background: rgba(5, 12, 24, 0.62);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    box-shadow:
      0 16px 36px rgba(0, 0, 0, 0.28),
      inset 0 1px rgba(255, 255, 255, 0.1);
  }

  .tech-service-card::before,
  .tech-service-card p {
    display: none;
  }

  .tech-card-icon {
    width: 30px;
    height: 30px;
    border-radius: 9px;
  }

  .tech-card-icon svg {
    width: 19px;
    height: 19px;
  }

  .tech-service-card h2 {
    font-size: 12px;
    line-height: 1.15;
  }

  .tech-service-card strong {
    margin-top: 7px;
    font-size: 7px;
    letter-spacing: 0.12em;
  }

  .tech-service-card strong i {
    width: 5px;
    height: 5px;
  }

  .tech-card-managed {
    left: 20px;
    top: 230px;
  }

  .tech-card-security {
    left: 136px;
    right: auto;
    top: 266px;
  }

  .tech-card-cloud {
    left: 78px;
    top: 352px;
  }

  .hero-copy {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 352px;
    margin-top: 0;
  }

  .hero-copy .eyebrow {
    margin-bottom: 18px;
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .hero-copy .eyebrow::after {
    width: 42px;
    margin-top: 11px;
  }

  .hero-copy h1 {
    max-width: min(100%, 354px);
    font-size: clamp(41px, 11.2vw, 52px);
    line-height: 0.96;
  }

  .hero-copy > p:not(.eyebrow) {
    max-width: 318px;
    margin-top: 18px;
    margin-bottom: 0;
    font-size: 15.5px;
    line-height: 1.55;
  }

  .hero-actions {
    width: min(100%, 318px);
    max-width: none;
    align-items: stretch;
    flex-direction: column;
    gap: 13px;
    margin-top: 25px;
  }

  .hero-actions .button {
    min-height: 54px;
    justify-content: space-between;
    padding: 0 20px;
    border-radius: 10px;
    font-size: 12px;
    letter-spacing: 0.045em;
  }

  .explore-link {
    min-height: 44px;
    justify-content: flex-start;
    gap: 14px;
    padding-left: 2px;
    font-size: 12px;
    letter-spacing: 0.05em;
  }

  .explore-link::after {
    width: 118px;
    right: auto;
    bottom: 4px;
  }

  .home-svc-section,
  .home-why,
  .home-reviews {
    margin-top: 58px;
  }

  .home-svc-header,
  .home-reviews-head {
    gap: 16px;
  }

  .home-svc-header h2,
  .home-why-head h2,
  .home-reviews-head h2 {
    max-width: 11ch;
    font-size: clamp(34px, 10.5vw, 44px);
    line-height: 1.02;
  }

  .home-svc-all {
    min-height: 44px;
    padding-bottom: 7px;
    font-size: 12px;
  }

  .home-svc-bento {
    margin-top: 26px;
    border-radius: 14px;
  }

  .home-svc-cell {
    min-height: 0;
    padding: 22px;
  }

  .home-svc-cell--primary {
    padding: 24px;
  }

  .home-svc-cell--primary h3 {
    max-width: 10ch;
    font-size: clamp(27px, 8.2vw, 36px);
  }

  .home-svc-cell p {
    font-size: 14.5px;
    line-height: 1.58;
  }

  .home-svc-cell--primary p {
    max-width: 30ch;
  }

  .home-stats {
    margin-top: 58px;
    border-radius: 14px;
  }

  .home-stat {
    padding: 24px 22px;
  }

  .home-stat-n {
    font-size: clamp(46px, 17vw, 64px);
  }

  .home-stat-l {
    margin-top: 8px;
    font-size: 12px;
  }

  .home-stat-d {
    max-width: 30ch;
    font-size: 13.5px;
  }

  .home-why-grid {
    margin-top: 24px;
  }

  .home-why-item,
  .home-why-item:nth-child(n) {
    padding: 22px 0;
  }

  .home-why-item h3 {
    font-size: 18px;
  }

  .home-why-item p {
    max-width: 32ch;
    font-size: 14.5px;
  }

  .home-reviews-grid {
    margin-top: 20px;
  }

  .home-review,
  .home-review:nth-child(n) {
    padding: 28px 0;
  }

  .home-review blockquote {
    font-size: 16px;
    line-height: 1.62;
  }
}

@media (max-width: 420px) {
  .hero-section {
    min-height: min(770px, 100svh);
    padding-top: 100px;
  }

  .hero-copy h1 {
    font-size: clamp(39px, 11vw, 49px);
  }

  .hero-copy > p:not(.eyebrow) {
    max-width: 292px;
    font-size: 15px;
  }

  .hero-actions {
    width: min(100%, 304px);
  }

  .tech-constellation {
    right: -338px;
    top: 282px;
  }

  .tech-service-card {
    width: 156px;
  }

  .tech-card-managed {
    left: 10px;
    top: 236px;
  }

  .tech-card-security {
    left: 116px;
    top: 276px;
  }

  .tech-card-cloud {
    left: 58px;
    top: 354px;
  }
}

@media (max-width: 360px) {
  .site-header,
  .hero-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-copy h1 {
    font-size: 38px;
  }

  .hero-actions .button {
    padding: 0 17px;
  }

  .tech-service-card {
    width: 148px;
    padding: 10px;
  }

  .tech-card-security {
    left: 106px;
  }

  .tech-card-cloud {
    left: 50px;
  }
}

/* About mobile polish */
@media (max-width: 760px) {
  .page-header {
    padding: 18px 22px 14px;
  }

  .about-page-main {
    --page-start: 14px;
    padding: var(--page-start) 22px 56px;
    overflow: hidden;
    background:
      radial-gradient(circle at 14% 4%, rgba(45, 212, 191, 0.1), transparent 28%),
      radial-gradient(circle at 92% 12%, rgba(96, 165, 250, 0.12), transparent 34%),
      linear-gradient(180deg, rgba(5, 11, 20, 0.99), rgba(5, 11, 20, 1));
  }

  .about-page-main::before {
    opacity: 0.18;
    background-size: 12px 12px;
  }

  .about-founder,
  .about-work-panel,
  .about-handshake-cta {
    width: 100%;
    max-width: none;
    grid-template-columns: 1fr;
  }

  .about-founder {
    gap: 26px;
    margin-bottom: 48px;
    padding: 0 0 40px;
    border-bottom: 1px solid rgba(141, 181, 255, 0.12);
  }

  .about-founder::before {
    left: auto;
    right: -42px;
    top: 40px;
    width: 190px;
    height: 190px;
    opacity: 0.28;
  }

  .about-founder-copy {
    padding: 0;
  }

  .about-founder-copy::after {
    display: none;
  }

  .about-founder-copy .eyebrow {
    margin-bottom: 9px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .about-founder-copy h1 {
    max-width: 10ch;
    font-size: clamp(39px, 11.5vw, 52px);
    line-height: 0.96;
  }

  .about-founder-copy .founder-intro {
    max-width: 31ch;
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.5;
  }

  .about-founder-copy p:not(.eyebrow):not(.founder-intro) {
    max-width: 34ch;
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.66;
  }

  .founder-profile-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 0;
  }

  .profile-orbit,
  .profile-orbit:has(img) {
    width: min(100%, 244px);
    max-width: 244px;
    margin: 0;
    border-radius: 16px;
  }

  .founder-profile-heading {
    gap: 6px;
  }

  .founder-profile-heading span {
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .founder-profile-heading h2 {
    font-size: clamp(42px, 14vw, 58px);
    line-height: 0.94;
  }

  .founder-profile-card > p {
    max-width: 29ch;
    font-size: 14.5px;
    line-height: 1.58;
  }

  .founder-profile-card dl {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 4px;
  }

  .founder-profile-card dl div {
    grid-template-columns: 88px 1fr;
    gap: 12px;
    padding: 0;
  }

  .founder-profile-card dt {
    font-size: 10px;
  }

  .founder-profile-card dd {
    font-size: 14px;
  }

  .about-work-panel {
    gap: 26px;
    margin-bottom: 50px;
    padding: 0 0 46px;
    border-bottom: 1px solid rgba(141, 181, 255, 0.12);
  }

  .about-work-panel::before {
    bottom: 0;
    opacity: 0.36;
  }

  .about-work-panel > div:first-child {
    padding-left: 15px;
  }

  .about-work-panel > div:first-child::before {
    height: 86%;
  }

  .about-work-panel h2 {
    max-width: 11ch;
    font-size: clamp(32px, 9.5vw, 43px);
  }

  .about-work-panel p:not(.eyebrow) {
    max-width: 34ch;
    font-size: 15px;
    line-height: 1.64;
  }

  .about-signal-list {
    gap: 12px 16px;
    margin-top: 22px;
  }

  .about-signal-list span {
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .laptop-visual {
    min-height: 218px;
    margin-top: 0;
    border-radius: 16px;
    opacity: 0.92;
  }

  .laptop-screen {
    left: 9%;
    top: 18%;
    width: 82%;
    height: 43%;
    padding: 20px;
  }

  .about-principles {
    gap: 0;
    margin-bottom: 50px;
    padding-left: 0;
  }

  .about-principles article,
  .about-principles article:nth-child(n) {
    padding: 0 0 26px 30px;
  }

  .about-principles article:last-child {
    padding-bottom: 0;
  }

  .about-principles span {
    font-size: 10px;
  }

  .about-principles h2 {
    margin-top: 10px;
    font-size: 23px;
  }

  .about-principles p {
    max-width: 31ch;
    margin-top: 8px;
    font-size: 14.5px;
    line-height: 1.6;
  }

  .about-handshake-cta {
    gap: 18px;
    padding: 0;
  }

  .handshake-visual {
    width: 78px;
    height: 64px;
  }

  .about-handshake-cta h2 {
    max-width: 10ch;
    font-size: clamp(31px, 9.2vw, 42px);
  }

  .about-handshake-cta p:not(.eyebrow) {
    max-width: 32ch;
    font-size: 15px;
  }

  .about-handshake-cta .button {
    width: min(100%, 318px);
    min-height: 54px;
    justify-content: space-between;
  }
}

@media (max-width: 420px) {
  .about-page-main {
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-founder-copy h1 {
    font-size: clamp(37px, 11vw, 48px);
  }

  .founder-profile-card dl div {
    grid-template-columns: 80px 1fr;
  }

  .laptop-visual {
    min-height: 196px;
  }
}

@media (max-width: 360px) {
  .page-header,
  .about-page-main {
    padding-left: 18px;
    padding-right: 18px;
  }

  .about-founder-copy h1 {
    font-size: 36px;
  }
}

/* Services mobile polish */
@media (max-width: 760px) {
  .page-header {
    padding: 18px 22px 14px;
  }

  .service-page-main,
  .services-page-main {
    width: 100%;
    max-width: none;
    padding: 14px 22px 58px;
    overflow: hidden;
    background:
      radial-gradient(circle at 12% 3%, rgba(45, 212, 191, 0.1), transparent 28%),
      radial-gradient(circle at 90% 10%, rgba(96, 165, 250, 0.12), transparent 34%),
      linear-gradient(180deg, rgba(5, 11, 20, 0.99), rgba(5, 11, 20, 1));
  }

  .service-page-main::before,
  .services-page-main::before {
    opacity: 0.2;
    background-size: 12px 12px;
  }

  .svc-hero,
  .services-hero,
  .single-service-hero {
    position: relative;
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
    margin: 0 0 38px;
    padding: 0 0 38px;
    border-bottom: 1px solid rgba(141, 181, 255, 0.12);
  }

  .svc-hero-content,
  .services-hero > div,
  .single-service-hero > div:first-child {
    position: relative;
    z-index: 1;
    width: 100%;
    min-width: 0;
    padding: 0;
  }

  .svc-hero h1,
  .services-hero h1,
  .single-service-hero h1 {
    width: 100%;
    max-width: min(11ch, 100%);
    margin: 0;
    overflow-wrap: break-word;
    font-size: clamp(38px, 11.2vw, 52px);
    font-weight: 760;
    line-height: 0.96;
    letter-spacing: 0;
    text-transform: none;
  }

  .svc-hero p:not(.eyebrow),
  .services-hero p:not(.eyebrow),
  .single-service-hero p:not(.eyebrow) {
    width: 100%;
    max-width: 33ch;
    margin-top: 18px;
    font-size: 15.5px;
    line-height: 1.58;
  }

  .svc-hero-pills {
    gap: 8px;
    margin-top: 20px;
  }

  .svc-hero-pills span {
    min-height: 32px;
    padding: 0 12px;
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .svc-hero-visual {
    display: block;
    position: absolute;
    top: -4px;
    right: -10px;
    z-index: 0;
    width: 168px;
    height: 168px;
    margin: 0;
    pointer-events: none;
  }

  .svc-hero-visual svg {
    width: 100%;
    height: 100%;
    opacity: 0.4;
    stroke-width: 1.5;
    filter: none;
  }

  .single-service-visual {
    display: grid;
    place-items: center;
    width: 92px;
    height: 92px;
    min-height: 0;
    margin: 0;
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: 18px;
    background:
      radial-gradient(circle at 54% 36%, rgba(45, 212, 191, 0.14), transparent 44%),
      rgba(5, 12, 24, 0.64);
    opacity: 1;
  }

  .single-service-visual svg {
    width: 46px;
    height: 46px;
    stroke-width: 2.2;
  }

  .svc-hero-visual--plan {
    display: none;
  }

  .svc-rule {
    margin: 0;
    background: rgba(141, 181, 255, 0.12);
  }

  .svc-body,
  .single-service-body,
  .pricing-matrix-section {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 28px;
    margin: 0;
    padding: 34px 0;
  }

  .svc-body-prose p,
  .single-service-panel p,
  .pricing-intro p:not(.eyebrow) {
    max-width: 35ch;
    font-size: 15px;
    line-height: 1.66;
  }

  .svc-focus-label {
    margin-bottom: 14px;
    font-size: 10px;
    letter-spacing: 0.15em;
  }

  .svc-focus-list li {
    gap: 12px;
    padding: 13px 0;
    font-size: 14.5px;
    line-height: 1.45;
  }

  .svc-focus-list li:first-child {
    margin-top: 0;
  }

  .svc-tiers {
    padding: 34px 0;
  }

  .svc-tiers-intro {
    margin-bottom: 24px;
  }

  .svc-tiers-intro h2,
  .single-service-panel h2,
  .single-service-list h2,
  .service-next-step h2,
  .pricing-intro h2,
  .svc-cta h2,
  .services-cta h2 {
    max-width: 12ch;
    font-size: clamp(28px, 8.5vw, 38px);
    line-height: 1.04;
    letter-spacing: 0;
    text-transform: none;
  }

  .svc-tiers-intro p {
    max-width: 35ch;
    font-size: 15px;
    line-height: 1.62;
  }

  .svc-tier-grid,
  .tier-grid,
  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid rgba(141, 181, 255, 0.12);
  }

  .svc-tier,
  .svc-tier:nth-child(2),
  .svc-tier:last-child {
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(141, 181, 255, 0.12);
  }

  .svc-tier:last-child {
    border-bottom: 0;
  }

  .svc-tier h3,
  .tier-card h3 {
    margin-bottom: 16px;
    font-size: 22px;
    line-height: 1.12;
    text-transform: none;
  }

  .svc-tier li,
  .tier-card li {
    padding: 11px 0;
    font-size: 14px;
    line-height: 1.46;
  }

  .svc-also {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px 0;
  }

  .svc-also-label {
    margin: 0 0 4px;
  }

  .svc-also a {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(141, 181, 255, 0.12);
    color: rgba(234, 240, 250, 0.86);
    font-size: 14px;
  }

  .svc-also a::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg);
    opacity: 0.78;
  }

  .svc-cta,
  .service-next-step,
  .services-cta {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 20px;
    margin: 0;
    padding: 30px 0 0;
  }

  .svc-cta .button,
  .service-next-step .button,
  .services-cta .button {
    width: min(100%, 318px);
    min-height: 54px;
    justify-content: space-between;
  }

  .service-detail-card,
  .single-service-panel,
  .single-service-list,
  .service-next-step,
  .pricing-matrix-section,
  .tier-card,
  .services-cta {
    width: 100%;
    max-width: none;
    border-radius: 16px;
    padding: 22px;
  }

  .service-detail-card {
    grid-template-columns: 52px 1fr;
    gap: 16px;
    min-height: 0;
  }

  .service-detail-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }

  .service-detail-icon svg {
    width: 26px;
    height: 26px;
  }

  .service-detail-card h2 {
    font-size: 22px;
    line-height: 1.12;
  }

  .service-detail-card p {
    max-width: 30ch;
    font-size: 14.5px;
    line-height: 1.55;
  }

  .single-service-list ul {
    gap: 10px;
    margin-top: 18px;
  }

  .single-service-list li {
    font-size: 14.5px;
    line-height: 1.56;
  }

  .service-plan-tech {
    padding: 14px 22px 58px;
  }

  .svc-hero-tech {
    min-height: 0;
    padding: 0 0 34px;
  }

  .svc-hero-tech h1 {
    font-size: clamp(38px, 11.2vw, 52px);
  }

  .svc-hero-metrics {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 24px;
  }

  .svc-hero-metrics span {
    min-height: 58px;
    grid-template-columns: 72px 1fr;
    align-items: center;
    padding: 12px 14px;
  }

  .svc-hero-metrics strong {
    font-size: 24px;
  }

  .svc-command-visual {
    min-height: 236px;
    border-radius: 16px;
  }

  .svc-command-visual::before {
    inset: 14%;
  }

  .svc-tiers-tech,
  .svc-body-tech,
  .svc-also-tech,
  .svc-cta-tech {
    border-radius: 16px;
    padding: 22px;
  }

  .svc-tiers-tech {
    gap: 26px;
    margin-top: 0;
  }

  .svc-tiers-tech .svc-tier-grid {
    gap: 12px;
    border-top: 0;
  }

  .svc-tiers-tech .svc-tier {
    min-height: 0;
    padding: 22px;
  }

  .svc-body-tech {
    margin-top: 18px;
  }

  .svc-process-panel h2,
  .svc-also-heading h2,
  .svc-cta-tech h2 {
    max-width: 12ch;
    font-size: clamp(28px, 8.5vw, 38px);
    text-transform: none;
  }

  .svc-process-grid,
  .svc-also-grid {
    grid-template-columns: 1fr;
  }

  .svc-process-grid article,
  .svc-scope-card {
    min-height: 0;
    padding: 20px;
  }

  .svc-also-tech {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .svc-also-grid a {
    min-height: 88px;
    padding: 16px;
  }

  .svc-cta-tech {
    margin-top: 18px;
  }
}

@media (max-width: 420px) {
  .service-page-main,
  .services-page-main,
  .service-plan-tech {
    padding-left: 20px;
    padding-right: 20px;
  }

  .svc-hero h1,
  .services-hero h1,
  .single-service-hero h1,
  .svc-hero-tech h1 {
    font-size: clamp(36px, 10.6vw, 48px);
  }

  .service-detail-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  .page-header,
  .service-page-main,
  .services-page-main,
  .service-plan-tech {
    padding-left: 18px;
    padding-right: 18px;
  }

  .svc-hero h1,
  .services-hero h1,
  .single-service-hero h1,
  .svc-hero-tech h1 {
    font-size: 35px;
  }
}

/* Contact mobile polish */
@media (max-width: 760px) {
  .page-header {
    padding: 18px 22px 14px;
  }

  .contact-page-main {
    width: 100%;
    max-width: none;
    min-height: auto;
    padding: 26px 22px 52px;
    overflow: hidden;
    background:
      radial-gradient(circle at 12% 3%, rgba(45, 212, 191, 0.1), transparent 28%),
      radial-gradient(circle at 90% 10%, rgba(96, 165, 250, 0.12), transparent 34%),
      linear-gradient(180deg, rgba(5, 11, 20, 0.99), rgba(5, 11, 20, 1));
  }

  .contact-page-main::before {
    opacity: 0.2;
    background-size: 12px 12px;
  }

  .contact-page-main::after {
    opacity: 0.72;
  }

  .contact-page-main--tech {
    padding: 14px 22px 58px;
  }

  .contact-hero-tech {
    width: 100%;
    max-width: none;
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 0 0 30px;
    border-bottom: 1px solid rgba(141, 181, 255, 0.12);
  }

  .contact-hero-copy .eyebrow {
    margin-bottom: 9px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .contact-hero-copy h1 {
    max-width: 10ch;
    font-size: clamp(40px, 12.5vw, 56px);
    line-height: 0.96;
    letter-spacing: 0;
    text-transform: none;
  }

  .contact-hero-copy > p:not(.eyebrow) {
    max-width: 31ch;
    margin-top: 16px;
    font-size: 15.5px;
    line-height: 1.5;
  }

  .contact-highlights {
    gap: 8px;
    margin-top: 16px;
  }

  .contact-highlights span {
    padding: 8px 11px;
    border-radius: 999px;
    font-size: 10px;
    letter-spacing: 0.07em;
  }

  .contact-signal-visual {
    min-height: 188px;
    border-radius: 16px;
  }

  .contact-signal-visual::before {
    inset: 14%;
  }

  .signal-status {
    display: none;
  }

  .contact-panel-tech,
  .contact-panel {
    width: 100%;
    max-width: none;
    grid-template-columns: 1fr;
    gap: 18px;
    margin: 26px 0 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .contact-sidebar {
    gap: 10px;
  }

  .contact-card,
  .next-steps {
    border-radius: 14px;
    padding: 18px;
  }

  .contact-card::before {
    top: 16px;
    height: 34px;
  }

  .contact-card small {
    margin-bottom: 7px;
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .contact-card h2 {
    font-size: 19px;
    line-height: 1.18;
  }

  .contact-card p {
    font-size: 13.5px;
    line-height: 1.55;
  }

  .next-steps h2 {
    margin-bottom: 10px;
    font-size: 19px;
  }

  .next-steps ol {
    gap: 8px;
    font-size: 14px;
    line-height: 1.45;
  }

  .contact-split {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-split-info {
    display: contents;
  }

  .contact-split-info .eyebrow {
    order: 1;
    margin: 0 0 8px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .contact-split-info h1 {
    order: 2;
    max-width: 8ch;
    margin: 0 0 14px;
    font-size: clamp(38px, 11.5vw, 50px);
    line-height: 0.98;
    letter-spacing: 0;
    text-transform: none;
  }

  .contact-split-info > p:not(.eyebrow) {
    order: 3;
    max-width: 33ch;
    margin: 0 0 20px;
    font-size: 15.5px;
    line-height: 1.58;
  }

  .contact-split-links {
    order: 5;
    gap: 0;
    margin-top: 22px;
    padding-top: 0;
    border-top: 1px solid rgba(141, 181, 255, 0.12);
  }

  .contact-split-links a,
  .contact-split-links span {
    display: flex;
    min-height: 44px;
    align-items: center;
    border-bottom: 1px solid rgba(141, 181, 255, 0.12);
    font-size: 14px;
    overflow-wrap: anywhere;
  }

  .contact-split-form {
    order: 4;
    width: 100%;
    border-radius: 16px;
    padding: 16px;
  }

  .contact-form-tech {
    gap: 14px;
  }

  .contact-form-tech::before {
    left: 20px;
    right: 20px;
  }

  .contact-form-header {
    gap: 5px;
    margin-bottom: 2px;
    padding-bottom: 14px;
  }

  .contact-form-header h2 {
    font-size: 28px;
    text-transform: none;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-form {
    gap: 12px;
  }

  .contact-form label {
    gap: 6px;
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    min-height: 46px;
    border-radius: 10px;
    padding: 0 14px;
    font-size: 15px;
  }

  .contact-form textarea {
    min-height: 108px;
    padding-top: 12px;
  }

  .contact-form .button,
  .contact-form-tech .button {
    width: 100%;
    min-height: 50px;
    justify-content: space-between;
    margin-top: 0;
    font-size: 14px;
  }

  .form-status:not(:empty) {
    padding: 11px 12px;
    font-size: 13px;
  }
}

@media (max-width: 420px) {
  .contact-page-main,
  .contact-page-main--tech {
    padding-left: 20px;
    padding-right: 20px;
  }

  .contact-hero-copy h1,
  .contact-split-info h1 {
    font-size: clamp(36px, 11vw, 46px);
  }

  .contact-signal-visual {
    min-height: 174px;
  }
}

@media (max-width: 360px) {
  .page-header,
  .contact-page-main,
  .contact-page-main--tech {
    padding-left: 18px;
    padding-right: 18px;
  }

  .contact-hero-copy h1,
  .contact-split-info h1 {
    font-size: 38px;
  }
}

@media (max-width: 760px) {
  .site-footer {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 20px;
    margin-top: 10px;
    padding: 30px 20px 24px;
    border-top: 1px solid rgba(96, 165, 250, 0.18);
    background:
      radial-gradient(circle at 18% 0%, rgba(45, 212, 191, 0.11), transparent 34%),
      radial-gradient(circle at 92% 22%, rgba(37, 99, 235, 0.08), transparent 32%),
      linear-gradient(180deg, rgba(7, 14, 26, 0.94), rgba(5, 11, 20, 0.99));
  }

  .footer-brand,
  .footer-bottom {
    grid-column: 1 / -1;
  }

  .footer-brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 0;
    border-bottom: 0;
  }

  .footer-brand p {
    display: none;
  }

  .footer-logo-img {
    width: clamp(156px, 48vw, 210px);
  }

  .site-footer h2 {
    margin-bottom: 7px;
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .site-footer nav,
  .site-footer address {
    gap: 7px;
    min-width: 0;
    padding-top: 16px;
    border-top: 1px solid rgba(141, 181, 255, 0.13);
  }

  .site-footer p,
  .site-footer a,
  .site-footer address {
    font-size: 12px;
    line-height: 1.35;
  }

  .site-footer a {
    width: fit-content;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .site-footer address {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 16px;
    padding-bottom: 2px;
  }

  .site-footer address h2 {
    grid-column: 1 / -1;
  }

  .site-footer nav[aria-label="Company links"] {
    grid-column: 1;
    grid-row: 3;
  }

  .footer-legal {
    grid-column: 2;
    grid-row: 3;
  }

  .site-footer nav[aria-label="Services links"] {
    grid-column: 1 / -1;
    grid-row: 4;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
    row-gap: 8px;
  }

  .site-footer nav[aria-label="Services links"] h2 {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    border-top: 1px solid rgba(141, 181, 255, 0.13);
    margin-top: 0;
    padding-top: 16px;
  }

  .footer-bottom p {
    font-size: 11px;
  }
}

@media (max-width: 380px) {
  .site-footer {
    gap: 14px 18px;
    padding: 26px 18px 22px;
  }

}

.mobile-about-title {
  display: none;
}

/* Complete mobile About page redesign */
@media (max-width: 760px) {
  .about-page-main {
    --mobile-ink: #0d1726;
    --mobile-muted: #506174;
    --mobile-line: #d9e3ee;
    --mobile-panel: #ffffff;
    --mobile-soft: #f3f7fb;
    --mobile-accent: #0f766e;
    max-width: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    color: var(--mobile-ink);
    background:
      linear-gradient(180deg, #f8fbff 0%, #eef4fa 48%, #f8fbff 100%);
  }

  .about-page-main::before {
    display: none;
  }

  .about-page-main .eyebrow {
    margin: 0 0 12px;
    color: var(--mobile-accent);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.16em;
  }

  .about-founder,
  .about-work-panel,
  .about-principles,
  .about-handshake-cta {
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .about-founder {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 0;
    padding: 0;
    border: 0;
    background: var(--mobile-panel);
  }

  .about-founder::before,
  .about-founder-copy::after {
    display: none;
  }

  .about-founder-copy {
    order: 1;
    padding: 30px 20px 28px;
    border-bottom: 1px solid var(--mobile-line);
    background:
      radial-gradient(circle at 100% 0%, rgba(15, 118, 110, 0.08), transparent 34%),
      linear-gradient(180deg, #ffffff, #f8fbff);
  }

  .mobile-about-title {
    display: block;
    max-width: 11ch;
    margin: 0 0 18px;
    color: var(--mobile-ink);
    font-size: clamp(36px, 10.5vw, 46px);
    font-weight: 850;
    line-height: 1.01;
    letter-spacing: 0;
    text-transform: none;
  }

  .about-founder-copy .founder-intro {
    max-width: 32ch;
    margin: 0;
    color: #1f2d3d;
    font-size: 17px;
    font-weight: 650;
    line-height: 1.5;
  }

  .about-founder-copy p:not(.eyebrow):not(.founder-intro) {
    max-width: 36ch;
    margin: 16px 0 0;
    color: var(--mobile-muted);
    font-size: 15px;
    line-height: 1.68;
  }

  .founder-profile-card {
    order: 2;
    display: grid;
    gap: 16px;
    min-height: 0;
    padding: 22px 20px 24px;
    border: 0;
    border-radius: 0;
    color: #ffffff;
    background:
      radial-gradient(circle at 88% 8%, rgba(45, 212, 191, 0.18), transparent 34%),
      linear-gradient(145deg, #08111f, #101b2c);
    box-shadow: none;
  }

  .founder-profile-card::before,
  .founder-profile-card::after,
  .profile-orbit {
    display: none;
  }

  .founder-profile-heading {
    display: grid;
    gap: 4px;
  }

  .founder-profile-heading span {
    color: #8debdc;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.14em;
  }

  .founder-profile-heading h2 {
    margin: 0;
    color: #ffffff;
    font-size: 54px;
    font-weight: 850;
    line-height: 0.94;
  }

  .founder-profile-card > p {
    max-width: 30ch;
    margin: 0;
    color: rgba(226, 235, 245, 0.82);
    font-size: 15px;
    line-height: 1.55;
  }

  .founder-profile-card dl {
    display: grid;
    gap: 0;
    margin: 4px 0 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(141, 181, 255, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
  }

  .founder-profile-card dl div {
    display: grid;
    grid-template-columns: minmax(82px, 0.4fr) minmax(0, 1fr);
    gap: 12px;
    align-items: baseline;
    padding: 13px 14px;
    border-bottom: 1px solid rgba(141, 181, 255, 0.12);
  }

  .founder-profile-card dl div:last-child {
    border-bottom: 0;
  }

  .founder-profile-card dt {
    color: rgba(141, 235, 220, 0.76);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
  }

  .founder-profile-card dd {
    margin: 0;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
  }

  .about-work-panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 32px 20px 34px;
    border: 0;
    border-bottom: 1px solid var(--mobile-line);
    background: var(--mobile-panel);
  }

  .about-work-panel::before,
  .about-work-panel > div:first-child::before {
    display: none;
  }

  .about-work-panel > div:first-child {
    padding: 0;
  }

  .about-work-panel h2 {
    max-width: 12ch;
    margin: 0;
    color: var(--mobile-ink);
    font-size: clamp(32px, 9vw, 40px);
    font-weight: 850;
    line-height: 1.04;
    letter-spacing: 0;
  }

  .about-work-panel p:not(.eyebrow) {
    max-width: 36ch;
    margin: 14px 0 0;
    color: var(--mobile-muted);
    font-size: 15px;
    line-height: 1.68;
  }

  .about-signal-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 20px;
  }

  .about-signal-list span {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid var(--mobile-line);
    border-radius: 8px;
    color: #172235;
    background: var(--mobile-soft);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.06em;
  }

  .about-signal-list span::before {
    width: 7px;
    height: 7px;
    margin-right: 10px;
    background: var(--mobile-accent);
    box-shadow: none;
  }

  .laptop-visual {
    min-height: 178px;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 8px;
    background:
      radial-gradient(circle at 22% 24%, rgba(45, 212, 191, 0.18), transparent 34%),
      linear-gradient(145deg, #0b1525, #172235);
    opacity: 1;
  }

  .laptop-visual::before {
    inset: 18px;
    border-color: rgba(255, 255, 255, 0.12);
    border-radius: 8px;
  }

  .laptop-screen {
    left: 10%;
    top: 24%;
    width: 80%;
    height: 38%;
    padding: 17px;
    border-radius: 8px;
    border-color: rgba(141, 235, 220, 0.32);
  }

  .about-principles {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 30px 20px;
    border: 0;
    border-bottom: 1px solid var(--mobile-line);
    background: #eef4fa;
  }

  .about-principles::before {
    display: none;
  }

  .about-principles article,
  .about-principles article:nth-child(n),
  .about-principles article:last-child {
    min-height: 0;
    padding: 16px 16px 17px;
    border: 1px solid var(--mobile-line);
    border-left: 4px solid var(--mobile-accent);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.045);
  }

  .about-principles article::before,
  .about-principles article::after {
    display: none;
  }

  .about-principles span {
    display: inline-flex;
    align-items: center;
    width: auto;
    color: var(--mobile-accent);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.14em;
  }

  .about-principles span::after {
    display: none;
  }

  .about-principles h2 {
    margin: 9px 0 7px;
    color: var(--mobile-ink);
    font-size: 22px;
    font-weight: 850;
    line-height: 1.14;
  }

  .about-principles p {
    max-width: 32ch;
    margin: 0;
    color: var(--mobile-muted);
    font-size: 14.5px;
    line-height: 1.58;
  }

  .about-handshake-cta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 30px 20px 34px;
    color: #ffffff;
    background:
      radial-gradient(circle at 88% 18%, rgba(45, 212, 191, 0.14), transparent 34%),
      linear-gradient(145deg, #08111f, #111d31);
  }

  .handshake-visual {
    justify-items: start;
    width: 74px;
    height: 56px;
    min-height: 0;
    background: transparent;
  }

  .handshake-visual svg {
    width: 74px;
    height: 56px;
    stroke: #8debdc;
  }

  .about-handshake-cta h2 {
    max-width: 11ch;
    margin: 0;
    color: #ffffff;
    font-size: clamp(32px, 9.4vw, 42px);
    font-weight: 850;
    line-height: 1.03;
  }

  .about-handshake-cta p:not(.eyebrow) {
    max-width: 32ch;
    margin: 12px 0 0;
    color: rgba(226, 235, 245, 0.78);
    font-size: 15px;
    line-height: 1.6;
  }

  .about-handshake-cta .button {
    width: 100%;
    min-height: 54px;
    justify-content: space-between;
    padding: 0 18px;
    border-radius: 8px;
  }

  .site-footer {
    margin-top: 0;
  }
}

@media (max-width: 380px) {
  .about-founder-copy,
  .founder-profile-card,
  .about-work-panel,
  .about-principles,
  .about-handshake-cta {
    padding-left: 18px;
    padding-right: 18px;
  }

  .mobile-about-title {
    font-size: 35px;
  }

  .founder-profile-card dl div {
    grid-template-columns: 78px minmax(0, 1fr);
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* Final Draft About page refresh */
.about-page-main-v2 {
  max-width: none;
  margin: 0;
  padding: clamp(54px, 6vw, 82px) var(--gutter) clamp(78px, 8vw, 112px);
  overflow: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 10%, rgba(45, 212, 191, 0.11), transparent 30%),
    radial-gradient(circle at 84% 8%, rgba(37, 99, 235, 0.14), transparent 34%),
    linear-gradient(180deg, #050b14 0%, #071221 52%, #050914 100%);
}

.about-page-main-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(141, 181, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(141, 181, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, #000, transparent 72%);
}

.about-page-main-v2 > * {
  position: relative;
  z-index: 1;
  width: min(100%, calc(var(--container) + var(--gutter) * 2));
  margin-right: auto;
  margin-left: auto;
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.62fr);
  gap: clamp(48px, 6vw, 90px);
  align-items: start;
  padding-bottom: clamp(60px, 7vw, 96px);
  border-bottom: 1px solid rgba(141, 181, 255, 0.14);
}

.about-intro-copy .eyebrow {
  margin: 0 0 16px;
}

.about-story-v2 .eyebrow,
.about-cta-v2 .eyebrow {
  margin: 0 0 18px;
}

.about-intro-copy h1 {
  max-width: 600px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(40px, 4.4vw, 60px);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.06;
  text-transform: none;
}

.about-intro-lead {
  max-width: 520px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 500;
  line-height: 1.65;
}

.about-intro-copy .button {
  margin-top: 32px;
}

.about-intro-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 560px;
  margin: 44px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid rgba(141, 181, 255, 0.14);
  list-style: none;
}

.about-intro-facts li {
  display: grid;
  gap: 12px;
}

.about-intro-facts svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-intro-facts strong {
  display: block;
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 800;
}

.about-intro-facts span {
  display: block;
  margin-top: 4px;
  color: var(--dim);
  font-size: 12.5px;
  line-height: 1.42;
}

.about-intro-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.about-intro-photo {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.about-intro-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
}

.about-intro-card-body {
  padding: clamp(22px, 2.4vw, 28px);
}

.about-intro-role {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-intro-card-body h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 26px;
  font-weight: 850;
  line-height: 1;
}

.about-intro-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
}

.about-story-v2 {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(42px, 6vw, 86px);
  padding: clamp(64px, 8vw, 98px) 0;
  border-bottom: 1px solid rgba(141, 181, 255, 0.14);
}

.about-story-v2 h2,
.about-cta-v2 h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(32px, 4.4vw, 58px);
  font-weight: 820;
  letter-spacing: 0;
  line-height: 1.04;
  text-transform: none;
}

.about-story-copy-v2 {
  display: grid;
  gap: 20px;
}

.about-story-copy-v2 p,
.about-cta-v2 p {
  margin: 0;
  color: rgba(210, 222, 240, 0.78);
  font-size: 16px;
  line-height: 1.75;
}

.about-focus-v2 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid rgba(141, 181, 255, 0.14);
}

.about-focus-v2 article {
  min-height: 280px;
  padding: clamp(34px, 4vw, 48px) clamp(22px, 3vw, 36px);
  border-right: 1px solid rgba(141, 181, 255, 0.14);
}

.about-focus-v2 article:first-child {
  padding-left: 0;
}

.about-focus-v2 article:last-child {
  border-right: 0;
  padding-right: 0;
}

.about-focus-v2 span {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.about-focus-v2 h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 820;
  line-height: 1.12;
}

.about-focus-v2 p {
  margin: 0;
  color: rgba(210, 222, 240, 0.74);
  font-size: 15px;
  line-height: 1.65;
}

.about-cta-v2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding-top: clamp(48px, 6vw, 78px);
}

.about-cta-v2 p {
  max-width: 620px;
  margin-top: 16px;
}

.about-cta-v2 .button {
  min-width: 260px;
  justify-content: center;
}

@media (max-width: 980px) {
  .about-intro,
  .about-story-v2,
  .about-cta-v2 {
    grid-template-columns: 1fr;
  }

  .about-intro-copy h1 {
    max-width: 100%;
    font-size: clamp(40px, 8.2vw, 60px);
  }

  .about-intro-lead {
    max-width: 100%;
  }

  .about-intro-facts {
    max-width: 100%;
  }

  .about-intro-card {
    max-width: 460px;
  }

  .about-focus-v2 {
    grid-template-columns: 1fr;
  }

  .about-focus-v2 article,
  .about-focus-v2 article:first-child,
  .about-focus-v2 article:last-child {
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(141, 181, 255, 0.14);
  }

  .about-focus-v2 article:last-child {
    border-bottom: 0;
  }

  .about-focus-v2 span {
    margin-bottom: 18px;
  }

  .about-cta-v2 .button {
    width: fit-content;
  }
}

@media (max-width: 760px) {
  .about-page-main-v2 {
    padding: 28px 20px 58px;
    color: var(--text);
    background:
      radial-gradient(circle at 16% 0%, rgba(45, 212, 191, 0.1), transparent 30%),
      linear-gradient(180deg, #050b14 0%, #071221 56%, #050914 100%);
  }

  .about-page-main-v2::before {
    display: block;
    opacity: 0.34;
    background-size: 42px 42px;
  }

  .about-page-main-v2 > * {
    width: min(100%, 350px);
    margin-left: 0;
    margin-right: auto;
  }

  .about-page-main-v2 .eyebrow {
    color: var(--cyan);
  }

  .about-intro {
    gap: 32px;
    padding-bottom: 44px;
  }

  .about-intro-copy h1 {
    max-width: 100%;
    color: #ffffff;
    font-size: clamp(36px, 10.5vw, 44px);
    line-height: 1.05;
    overflow-wrap: break-word;
    text-wrap: balance;
  }

  .about-intro-lead {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.58;
  }

  .about-intro-copy .button {
    margin-top: 26px;
    width: 100%;
  }

  .about-intro-facts {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 32px;
    padding-top: 22px;
  }

  .about-intro-card {
    max-width: none;
  }

  .about-intro-card-body h2 {
    font-size: 30px;
  }

  .about-story-v2 {
    gap: 24px;
    padding: 44px 0;
  }

  .about-story-v2 h2,
  .about-cta-v2 h2 {
    color: #ffffff;
    font-size: clamp(30px, 9vw, 42px);
  }

  .about-story-copy-v2 p,
  .about-cta-v2 p,
  .about-focus-v2 p {
    color: rgba(210, 222, 240, 0.78);
    font-size: 15px;
    line-height: 1.68;
  }

  .about-focus-v2 article,
  .about-focus-v2 article:first-child,
  .about-focus-v2 article:last-child {
    padding: 24px 0;
  }

  .about-focus-v2 h2 {
    color: #ffffff;
  }

  .about-cta-v2 {
    gap: 24px;
    padding-top: 42px;
  }

  .about-cta-v2 .button {
    width: 100%;
  }
}

/* Sitewide typography refresh */
:root {
  --font-display: "IBM Plex Sans", "Inter", Arial, sans-serif;
  --font-body: "IBM Plex Sans", "Inter", Arial, sans-serif;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

button,
input,
textarea,
select {
  font-family: var(--font-body);
}

h1,
h2,
h3,
.site-footer h2,
.contact-card h2,
.next-steps h2,
.contact-form-header h2,
.svc-tier h3,
.tier-card h3,
.service-card h3,
.service-detail-card h2,
.home-svc-cell h3,
.home-why-item h3,
.tech-service-card h2 {
  font-family: var(--font-display);
  letter-spacing: -0.015em;
}

h1,
.hero-copy h1,
.page-hero h1,
.about-intro-copy h1,
.about-founder-copy h1,
.contact-hero-copy h1,
.contact-split-info h1,
.services-hero h1,
.svc-hero h1,
.svc-hero-tech h1,
.single-service-hero h1 {
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.02;
  text-transform: none;
  text-shadow: none;
}

h2,
.section-lead h2,
.choose-copy h2,
.why-intro h2,
.cta-panel h2,
.quick-contact-copy h2,
.home-svc-header h2,
.home-why-head h2,
.home-reviews-head h2,
.home-final-cta h2,
.about-story-v2 h2,
.about-cta-v2 h2,
.about-work-panel h2,
.about-principles h2,
.about-handshake-cta h2,
.svc-tiers-intro h2,
.svc-process-panel h2,
.svc-also-heading h2,
.svc-cta h2,
.svc-cta-tech h2,
.pricing-intro h2 {
  font-weight: 700;
  line-height: 1.08;
  text-transform: none;
  text-shadow: none;
}

h3,
.svc-tier h3,
.tier-card h3,
.service-card h3,
.home-svc-cell h3,
.home-why-item h3,
.tech-service-card h2 {
  font-weight: 700;
  line-height: 1.12;
  text-transform: none;
}

.eyebrow,
.hero-copy .eyebrow,
.about-founder-copy .eyebrow,
.contact-split-info .eyebrow,
.contact-hero-copy .eyebrow,
.about-intro-copy .eyebrow,
.about-story-v2 .eyebrow,
.about-cta-v2 .eyebrow,
.svc-body-prose .eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

p,
li,
.hero-copy > p:not(.eyebrow),
.page-hero p:not(.eyebrow),
.about-intro-lead,
.about-founder-copy .founder-intro,
.about-founder-copy p:not(.eyebrow):not(.founder-intro),
.about-work-panel p:not(.eyebrow),
.about-handshake-cta p:not(.eyebrow),
.contact-hero-copy > p:not(.eyebrow),
.contact-split-info > p:not(.eyebrow),
.services-hero p:not(.eyebrow),
.svc-hero p:not(.eyebrow),
.svc-hero-tech p:not(.eyebrow),
.single-service-hero p:not(.eyebrow),
.svc-tiers-intro p,
.pricing-intro p:not(.eyebrow),
.home-plans-intro,
.home-final-copy p:not(.eyebrow),
.content-panel p,
.legal-content p {
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.004em;
}

.hero-copy > p:not(.eyebrow),
.page-hero p:not(.eyebrow),
.about-intro-lead,
.about-founder-copy .founder-intro,
.contact-hero-copy > p:not(.eyebrow),
.contact-split-info > p:not(.eyebrow),
.services-hero p:not(.eyebrow),
.svc-hero p:not(.eyebrow),
.svc-hero-tech p:not(.eyebrow),
.single-service-hero p:not(.eyebrow),
.svc-tiers-intro p,
.pricing-intro p:not(.eyebrow),
.home-plans-intro {
  color: rgba(224, 234, 248, 0.82);
  line-height: 1.68;
}

body h1,
body h2,
body h3 {
  font-family: var(--font-display) !important;
}

body h1 {
  font-weight: 700 !important;
  letter-spacing: -0.025em !important;
  text-transform: none !important;
  text-shadow: none !important;
}

body h2,
body h3 {
  font-weight: 700 !important;
  letter-spacing: -0.015em !important;
  text-transform: none !important;
  text-shadow: none !important;
}

/* Intentional mobile homepage hero */
@media (max-width: 560px) {
  body:has(.hero-section) .site-header {
    padding: 18px 20px 0;
    background: linear-gradient(180deg, rgba(5, 11, 20, 0.98), rgba(5, 11, 20, 0));
  }

  body:has(.hero-section) .brand-logo {
    width: min(184px, 52vw);
  }

  body:has(.hero-section) .menu-toggle {
    width: 42px;
    height: 42px;
    border-color: rgba(141, 181, 255, 0.24);
    background: rgba(8, 18, 33, 0.74);
  }

  .hero-section {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 96px 20px 24px;
    background:
      radial-gradient(circle at 86% 57%, rgba(37, 99, 235, 0.18), transparent 31%),
      radial-gradient(circle at 16% 26%, rgba(45, 212, 191, 0.09), transparent 28%),
      linear-gradient(180deg, #040a13 0%, #071120 52%, #040a13 100%);
  }

  .hero-section::after {
    height: 118px;
    background: linear-gradient(180deg, transparent, rgba(5, 11, 20, 0.96));
  }

  .hero-bg {
    opacity: 1;
  }

  .hero-bg::before {
    opacity: 0.18;
    background-size: 11px 11px;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 68%, transparent 94%);
    mask-image: linear-gradient(180deg, #000 0%, #000 68%, transparent 94%);
  }

  .grid-field {
    opacity: 0.14;
  }

  .hero-copy {
    width: 100%;
    max-width: 350px;
    margin: 0;
  }

  .hero-copy .eyebrow {
    width: fit-content;
    margin: 0 0 16px;
    border: 1px solid rgba(45, 212, 191, 0.22);
    border-radius: 999px;
    background: rgba(45, 212, 191, 0.07);
    padding: 7px 10px;
    color: #9ff7ea;
    font-size: 10px;
    letter-spacing: 0.08em;
    line-height: 1;
  }

  .hero-copy .eyebrow::after {
    display: none;
  }

  .hero-copy h1 {
    max-width: 9.6ch;
    font-size: clamp(42px, 11.8vw, 48px);
    line-height: 1.02;
    letter-spacing: -0.035em !important;
  }

  .hero-copy h1 .hero-title-line {
    display: block;
  }

  .hero-copy h1 .hero-it-highlight {
    display: inline-block;
  }

  .hero-copy > p:not(.eyebrow) {
    max-width: 338px;
    margin: 18px 0 0;
    color: rgba(224, 234, 248, 0.84);
    font-size: 15.5px;
    line-height: 1.58;
  }

  .hero-actions {
    width: 100%;
    max-width: 350px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 11px;
    margin-top: 208px;
  }

  .hero-actions .button {
    min-height: 52px;
    justify-content: space-between;
    border-radius: 8px;
    padding: 0 18px;
    font-size: 12px;
    letter-spacing: 0.03em;
  }

  .explore-link {
    min-height: 48px;
    justify-content: center;
    gap: 13px;
    border: 1px solid rgba(141, 181, 255, 0.18);
    border-radius: 8px;
    background: rgba(8, 18, 33, 0.58);
    color: rgba(239, 246, 255, 0.88);
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .explore-link::after {
    display: none;
  }

  .tech-constellation {
    z-index: 4;
    right: auto;
    left: 20px;
    top: clamp(406px, 51svh, 430px);
    bottom: auto;
    width: calc(100% - 40px);
    height: 128px;
    opacity: 1;
    pointer-events: none;
  }

  .tech-constellation::before,
  .tech-map {
    display: none;
  }

  .tech-service-card {
    display: grid;
    grid-template-columns: 26px 1fr;
    gap: 8px;
    width: calc((100% - 14px) / 2);
    min-height: 58px;
    padding: 10px;
    border-color: rgba(141, 181, 255, 0.2);
    border-radius: 8px;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
      rgba(7, 17, 31, 0.82);
    box-shadow:
      0 12px 26px rgba(0, 0, 0, 0.22),
      inset 0 1px rgba(255, 255, 255, 0.08);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    animation: none;
  }

  .tech-service-card::before,
  .tech-service-card::after,
  .tech-service-card p {
    display: none;
  }

  .tech-card-icon {
    width: 26px;
    height: 26px;
    border-radius: 7px;
  }

  .tech-card-icon svg {
    width: 16px;
    height: 16px;
  }

  .tech-service-card h2 {
    overflow: hidden;
    font-size: 11px;
    line-height: 1.1;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .tech-service-card strong {
    gap: 5px;
    margin-top: 5px;
    border-top: 0;
    padding-top: 0;
    font-size: 6.8px;
    letter-spacing: 0.08em;
    white-space: nowrap;
  }

  .tech-service-card strong i {
    width: 5px;
    height: 5px;
  }

  .tech-card-managed {
    left: 0;
    top: 0;
  }

  .tech-card-security {
    left: calc(50% + 7px);
    right: auto;
    top: 0;
  }

  .tech-card-cloud {
    left: 0;
    top: 70px;
    width: 100%;
  }
}

@media (max-width: 380px) {
  .hero-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero-copy h1 {
    font-size: clamp(39px, 11.2vw, 44px);
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 14.8px;
  }

  .hero-actions {
    margin-top: 205px;
  }

  .tech-constellation {
    left: 18px;
    top: clamp(398px, 52svh, 414px);
    bottom: auto;
    width: calc(100% - 36px);
  }
}

/* Homepage hero service icons */
.tech-service-card {
  width: auto;
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  overflow: visible;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  animation: glassCardFloat 10s ease-in-out infinite;
}

.tech-service-card::before,
.tech-service-card::after,
.tech-service-card > div {
  display: none;
}

.tech-card-icon {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(170, 206, 255, 0.28);
  border-radius: 18px;
  background:
    radial-gradient(circle at 28% 18%, rgba(210, 232, 255, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(96, 165, 250, 0.055)),
    rgba(9, 22, 42, 0.58);
  color: #a9c2ff;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.32),
    inset 0 1px rgba(255, 255, 255, 0.2),
    inset 0 -1px rgba(141, 181, 255, 0.1),
    0 0 30px rgba(37, 99, 235, 0.2);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  backdrop-filter: blur(22px) saturate(160%);
}

.tech-card-icon svg {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 0 12px rgba(96, 165, 250, 0.32));
}

.tech-card-managed {
  left: 30%;
  top: 27%;
  animation-delay: -1s;
}

.tech-card-security {
  right: 13%;
  top: 26%;
  animation-delay: -3s;
}

.tech-card-cloud {
  left: 48%;
  top: 65%;
  animation-delay: -5s;
}

.tech-card-networking {
  left: 20%;
  top: 58%;
  animation-delay: -7s;
}

.tech-card-physical {
  right: 24%;
  top: 53%;
  animation-delay: -9s;
}

@media (max-width: 1080px) {
  .tech-service-card {
    display: grid;
  }

  .tech-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 15px;
  }

  .tech-card-icon svg {
    width: 30px;
    height: 30px;
  }

  .tech-card-managed {
    left: 25%;
    top: 28%;
  }

  .tech-card-security {
    right: 13%;
    top: 30%;
  }

  .tech-card-cloud {
    left: 46%;
    top: 67%;
  }

  .tech-card-networking {
    left: 16%;
    top: 58%;
  }

  .tech-card-physical {
    right: 28%;
    top: 52%;
  }
}

@media (max-width: 760px) {
  .tech-service-card {
    width: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .tech-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .tech-card-icon svg {
    width: 24px;
    height: 24px;
  }

  .tech-card-managed {
    left: 0;
    top: 30px;
  }

  .tech-card-security {
    left: calc(25% - 11px);
    right: auto;
    top: 10px;
  }

  .tech-card-cloud {
    left: calc(50% - 22px);
    top: 34px;
    width: auto;
  }

  .tech-card-networking {
    left: calc(75% - 33px);
    top: 10px;
  }

  .tech-card-physical {
    right: 0;
    top: 30px;
  }
}

/* Final Draft homepage mobile polish */
@media (max-width: 760px) {
  body:has(.home-svc-section) {
    background:
      radial-gradient(circle at 50% 6%, rgba(37, 99, 235, 0.12), transparent 28%),
      linear-gradient(180deg, #020713 0%, #07111f 42%, #030814 100%);
  }

  body:has(.home-svc-section) .site-header {
    padding: 18px 20px 16px;
    background: linear-gradient(180deg, rgba(2, 7, 19, 0.96), rgba(2, 7, 19, 0.72));
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
  }

  body:has(.home-svc-section) .brand-logo {
    width: min(55vw, 205px);
  }

  body:has(.home-svc-section) .hero-section {
    min-height: 820px;
    display: block;
    padding: 96px 20px 36px;
    overflow: hidden;
    background:
      radial-gradient(circle at 22% 24%, rgba(45, 212, 191, 0.09), transparent 26%),
      radial-gradient(circle at 78% 46%, rgba(37, 99, 235, 0.18), transparent 32%),
      linear-gradient(180deg, rgba(2, 7, 19, 0.99), rgba(5, 15, 29, 0.98) 58%, rgba(3, 8, 18, 1));
  }

  body:has(.home-svc-section) .hero-section::after {
    height: 128px;
    background: linear-gradient(180deg, transparent, rgba(5, 11, 20, 0.92));
  }

  body:has(.home-svc-section) .hero-bg {
    opacity: 1;
  }

  body:has(.home-svc-section) .hero-bg::before {
    opacity: 0.2;
  }

  body:has(.home-svc-section) .hero-copy {
    position: relative;
    z-index: 6;
    width: 100%;
    max-width: 356px;
    margin: 0;
  }

  body:has(.home-svc-section) .hero-copy::before {
    content: "";
    position: absolute;
    left: 0;
    top: 42px;
    width: 46px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--cyan), rgba(45, 212, 191, 0));
    box-shadow: 0 0 18px rgba(45, 212, 191, 0.44);
  }

  body:has(.home-svc-section) .hero-copy .eyebrow {
    width: fit-content;
    margin: 0 0 28px;
    border: 1px solid rgba(45, 212, 191, 0.2);
    border-radius: 999px;
    background: rgba(45, 212, 191, 0.075);
    padding: 8px 11px;
    color: #9ff7ea;
    font-size: 10px;
    letter-spacing: 0.08em;
    line-height: 1;
  }

  body:has(.home-svc-section) .hero-copy .eyebrow::after {
    display: none;
  }

  body:has(.home-svc-section) .hero-copy h1 {
    max-width: 9.8ch;
    margin: 0;
    font-size: clamp(42px, 12vw, 50px);
    line-height: 0.98;
    letter-spacing: -0.035em !important;
  }

  body:has(.home-svc-section) .hero-copy > p:not(.eyebrow) {
    max-width: 335px;
    margin: 20px 0 0;
    color: rgba(224, 234, 248, 0.84);
    font-size: 15.5px;
    line-height: 1.58;
  }

  body:has(.home-svc-section) .tech-constellation {
    z-index: 4;
    left: 20px;
    right: auto;
    top: 408px;
    width: calc(100% - 40px);
    height: 112px;
    opacity: 1;
  }

  body:has(.home-svc-section) .tech-constellation::before,
  body:has(.home-svc-section) .tech-map {
    display: none;
  }

  body:has(.home-svc-section) .tech-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background:
      radial-gradient(circle at 28% 18%, rgba(210, 232, 255, 0.2), transparent 36%),
      linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(96, 165, 250, 0.06)),
      rgba(10, 24, 45, 0.68);
  }

  body:has(.home-svc-section) .hero-actions {
    width: 100%;
    max-width: 350px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 11px;
    margin-top: 196px;
  }

  body:has(.home-svc-section) .hero-actions .button,
  body:has(.home-svc-section) .explore-link {
    width: 100%;
    min-height: 52px;
    border-radius: 8px;
  }

  body:has(.home-svc-section) .hero-actions .button {
    justify-content: space-between;
    padding: 0 18px;
    font-size: 12px;
  }

  body:has(.home-svc-section) .explore-link {
    justify-content: center;
    border: 1px solid rgba(141, 181, 255, 0.18);
    background: rgba(8, 18, 33, 0.54);
    padding: 0 18px;
    color: rgba(239, 246, 255, 0.9);
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  body:has(.home-svc-section) .explore-link::after {
    display: none;
  }

  body:has(.home-svc-section) .home-svc-section,
  body:has(.home-svc-section) .home-plans,
  body:has(.home-svc-section) .home-why {
    margin-top: 56px;
    padding-right: 20px;
    padding-left: 20px;
  }

  body:has(.home-svc-section) .home-svc-header {
    display: grid;
    gap: 18px;
    margin-bottom: 22px;
  }

  body:has(.home-svc-section) .home-svc-header h2,
  body:has(.home-svc-section) .home-why-head h2 {
    font-size: clamp(32px, 9.4vw, 38px);
    line-height: 1.03;
    letter-spacing: -0.02em !important;
  }

  body:has(.home-svc-section) .home-svc-header h2 {
    max-width: 100%;
  }

  body:has(.home-svc-section) .home-why-head h2 {
    max-width: 12ch;
  }

  body:has(.home-svc-section) .home-svc-all {
    width: 100%;
    min-height: 46px;
    justify-content: space-between;
    border: 1px solid rgba(45, 212, 191, 0.18);
    border-radius: 8px;
    background: rgba(45, 212, 191, 0.045);
    padding: 0 14px;
    color: #9ff7ea;
    font-size: 11px;
  }

  body:has(.home-svc-section) .home-svc-bento {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border: 0;
    margin-top: 0;
  }

  body:has(.home-svc-section) .home-svc-cell,
  body:has(.home-svc-section) .home-svc-cell--primary {
    position: relative;
    height: 132px;
    min-height: 0;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) 18px;
    align-items: center;
    column-gap: 15px;
    row-gap: 0;
    grid-column: auto;
    grid-row: auto;
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid rgba(141, 181, 255, 0.16);
    background: transparent;
    padding: 19px 0;
    box-shadow: none;
  }

  body:has(.home-svc-section) .home-svc-cell:first-child,
  body:has(.home-svc-section) .home-svc-cell--primary:first-child {
    border-top: 1px solid rgba(141, 181, 255, 0.16);
  }

  body:has(.home-svc-section) .home-svc-cell--primary h3,
  body:has(.home-svc-section) .home-svc-cell h3 {
    max-width: none;
    margin: 0 0 5px;
    font-size: 16px;
    line-height: 1.22;
    letter-spacing: 0;
    text-transform: none;
  }

  body:has(.home-svc-section) .home-svc-cell--primary p,
  body:has(.home-svc-section) .home-svc-cell p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    max-width: none;
    margin: 0;
    color: rgba(184, 197, 216, 0.82);
    font-size: 13.5px;
    line-height: 1.48;
  }

  body:has(.home-svc-section) .home-svc-num,
  body:has(.home-svc-section) .home-svc-cell--primary .home-svc-num {
    position: absolute;
    right: 15px;
    top: 14px;
    margin: 0;
    color: rgba(45, 212, 191, 0.58);
    font-size: 10px;
  }

  body:has(.home-svc-section) .home-svc-cell svg,
  body:has(.home-svc-section) .home-svc-cell--primary svg {
    grid-row: 1 / 3;
    align-self: center;
    width: 44px;
    height: 44px;
    margin: 0;
    opacity: 1;
    stroke: #8db5ff;
  }

  body:has(.home-svc-section) .home-svc-arrow,
  body:has(.home-svc-section) .home-svc-cell--primary .home-svc-arrow {
    grid-column: 3;
    grid-row: 1 / 3;
    align-self: center;
    width: 13px;
    height: 13px;
    margin: 0;
    border-color: rgba(45, 212, 191, 0.48);
  }

  body:has(.home-svc-section) .home-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin: 56px 20px 0;
    border: 1px solid rgba(141, 181, 255, 0.14);
    border-radius: 10px;
    overflow: hidden;
    background: rgba(7, 17, 31, 0.46);
  }

  body:has(.home-svc-section) .home-stat {
    min-width: 0;
    border: 0;
    background: rgba(255, 255, 255, 0.028);
    padding: 17px 10px;
  }

  body:has(.home-svc-section) .home-stat-n {
    font-size: clamp(31px, 9.4vw, 38px);
  }

  body:has(.home-svc-section) .home-stat-l {
    margin-top: 6px;
    font-size: 9px;
    line-height: 1.25;
    letter-spacing: 0.07em;
  }

  body:has(.home-svc-section) .home-stat-d {
    display: none;
  }

  body:has(.home-svc-section) .home-why-head {
    position: relative;
    margin-bottom: 28px;
    padding-top: 18px;
  }

  body:has(.home-svc-section) .home-why-head::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 68px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--cyan), rgba(45, 212, 191, 0));
    box-shadow: 0 0 20px rgba(45, 212, 191, 0.42);
  }

  body:has(.home-svc-section) .home-why-head .eyebrow {
    width: fit-content;
    border: 1px solid rgba(45, 212, 191, 0.18);
    border-radius: 999px;
    background: rgba(45, 212, 191, 0.055);
    padding: 7px 10px;
    font-size: 9.5px;
    letter-spacing: 0.09em;
    line-height: 1;
  }

  body:has(.home-svc-section) .home-why-head h2 {
    max-width: 11ch;
    margin-top: 14px;
    font-size: clamp(38px, 11vw, 48px);
    line-height: 0.98;
    letter-spacing: -0.035em !important;
  }

  body:has(.home-svc-section) .home-why-grid {
    display: grid;
    gap: 0;
    border-top: 0;
    margin-top: 0;
  }

  body:has(.home-svc-section) .home-why-item,
  body:has(.home-svc-section) .home-why-item:nth-child(n) {
    position: relative;
    border: 0;
    border-left: 1px solid rgba(45, 212, 191, 0.24);
    padding: 0 0 28px 24px;
  }

  body:has(.home-svc-section) .home-why-item:last-child {
    padding-bottom: 0;
  }

  body:has(.home-svc-section) .home-why-item::before {
    content: "";
    position: absolute;
    left: -6px;
    top: 2px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 0 6px rgba(45, 212, 191, 0.08), 0 0 22px rgba(45, 212, 191, 0.5);
  }

  body:has(.home-svc-section) .home-why-n {
    display: none;
  }

  body:has(.home-svc-section) .home-why-item h3 {
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 1.2;
    text-transform: none;
    letter-spacing: 0;
  }

  body:has(.home-svc-section) .home-why-item p {
    max-width: 32ch;
    font-size: 14.5px;
    line-height: 1.55;
  }

  body:has(.home-svc-section) .home-plans-intro {
    margin-bottom: 22px;
    font-size: 14.5px;
    line-height: 1.58;
  }

  body:has(.home-svc-section) .home-plans-grid.svc-tier-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  body:has(.home-svc-section) .home-plans-grid .svc-tier,
  body:has(.home-svc-section) .home-plans-grid .svc-tier:nth-child(2),
  body:has(.home-svc-section) .home-plans-grid .svc-tier:last-child {
    border: 1px solid rgba(141, 181, 255, 0.14);
    border-radius: 10px;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.022)),
      rgba(7, 17, 31, 0.6);
    padding: 18px;
  }

  body:has(.home-svc-section) .home-plans-grid .svc-tier.is-recommended {
    border-color: rgba(45, 212, 191, 0.34);
    background:
      radial-gradient(circle at 82% 18%, rgba(45, 212, 191, 0.11), transparent 36%),
      linear-gradient(145deg, rgba(45, 212, 191, 0.08), rgba(37, 99, 235, 0.08)),
      rgba(7, 17, 31, 0.7);
  }

  body:has(.home-svc-section) .home-plans-grid .svc-tier h3 {
    font-size: 19px;
    line-height: 1.25;
  }

  body:has(.home-svc-section) .home-plan-desc {
    font-size: 14px;
    line-height: 1.55;
  }

  body:has(.home-svc-section) .home-plans-note {
    margin-top: 4px;
    font-size: 12.5px;
    line-height: 1.5;
  }

  body:has(.home-svc-section) .home-final-cta {
    margin-top: 58px;
    border-top: 1px solid rgba(141, 181, 255, 0.14);
    background:
      radial-gradient(circle at 22% 18%, rgba(45, 212, 191, 0.11), transparent 30%),
      linear-gradient(180deg, rgba(5, 11, 20, 0.98), rgba(7, 17, 31, 1));
  }

  body:has(.home-svc-section) .home-final-cta-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 42px 20px 48px;
  }

  body:has(.home-svc-section) .home-final-copy h2,
  body:has(.home-svc-section) .home-final-cta h2 {
    max-width: 10ch;
    font-size: clamp(34px, 10vw, 42px);
    line-height: 1.02;
  }

  body:has(.home-svc-section) .home-final-copy p:not(.eyebrow) {
    max-width: 30ch;
    font-size: 15px;
  }

  body:has(.home-svc-section) .home-quick-card {
    border-radius: 10px;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.025)),
      rgba(5, 11, 20, 0.64);
  }

  body:has(.home-svc-section) .home-quick-form {
    padding: 16px;
  }

  body:has(.home-svc-section) .home-quick-fields {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  body:has(.home-svc-section) .home-quick-fields label,
  body:has(.home-svc-section) .home-quick-fields label:last-of-type,
  body:has(.home-svc-section) .home-quick-submit {
    grid-column: auto;
  }

  body:has(.home-svc-section) .home-quick-submit {
    width: 100%;
    height: 50px;
  }

  .has-scroll-reveal body:has(.home-svc-section) .scroll-reveal {
    transform: translate3d(0, 10px, 0);
    filter: blur(1.5px);
    transition-duration: 460ms;
  }

  .has-scroll-reveal body:has(.home-svc-section) .scroll-reveal.is-visible {
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@media (max-width: 380px) {
  body:has(.home-svc-section) .hero-section {
    min-height: 800px;
    padding-right: 18px;
    padding-left: 18px;
  }

  body:has(.home-svc-section) .hero-copy h1 {
    font-size: clamp(39px, 11.5vw, 45px);
  }

  body:has(.home-svc-section) .hero-copy > p:not(.eyebrow) {
    max-width: 310px;
    font-size: 14.8px;
  }

  body:has(.home-svc-section) .tech-constellation {
    left: 18px;
    top: 404px;
    width: calc(100% - 36px);
  }

  body:has(.home-svc-section) .hero-actions {
    margin-top: 188px;
  }
}

/* Clean professional About page hero */
.about-page-main-v2 {
  padding-top: clamp(36px, 4.5vw, 60px);
}

.about-intro {
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 0.78fr);
  align-items: center;
  justify-content: space-between;
  gap: clamp(44px, 6vw, 92px);
  padding-bottom: clamp(42px, 5vw, 66px);
}

.about-intro-copy {
  max-width: 760px;
}

.about-founder-heading {
  display: flex;
  align-items: baseline;
  gap: clamp(20px, 2.6vw, 32px);
  margin-top: 14px;
}

.about-founder-heading h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(68px, 7.2vw, 108px);
  line-height: 0.8;
  letter-spacing: -0.07em !important;
}

.about-founder-heading span {
  border-left: 1px solid rgba(141, 181, 255, 0.26);
  padding-left: clamp(18px, 2vw, 28px);
  color: var(--cyan);
  font-size: clamp(13px, 1.15vw, 18px);
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.about-intro-lead {
  max-width: 920px;
  margin-top: 30px;
  color: #ffffff;
  font-size: clamp(22px, 1.75vw, 29px);
  font-weight: 700;
  line-height: 1.24;
}

.about-intro-prose {
  display: grid;
  gap: 18px;
  max-width: 760px;
  margin-top: 24px;
}

.about-intro-prose p {
  margin: 0;
  color: rgba(184, 197, 216, 0.86);
  font-size: clamp(16px, 1.22vw, 19px);
  font-weight: 600;
  line-height: 1.55;
}

.about-intro-facts {
  display: grid;
  grid-template-columns: 0.8fr 1.28fr 0.8fr;
  gap: clamp(24px, 3.2vw, 44px);
  max-width: 100%;
  margin-top: clamp(30px, 3.8vw, 46px);
  padding-top: 22px;
  border-top: 1px solid rgba(141, 181, 255, 0.22);
}

.about-intro-facts li {
  display: grid;
  min-width: 0;
  gap: 8px;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.about-intro-facts svg {
  display: none;
}

.about-intro-facts strong {
  display: block;
  color: var(--cyan);
  font-size: clamp(12px, 1vw, 15px);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-intro-facts span {
  display: block;
  color: #ffffff;
  font-size: clamp(17px, 1.35vw, 23px);
  font-weight: 700;
  line-height: 1.12;
}

.about-intro-card {
  position: relative;
  align-self: start;
  justify-self: start;
  width: min(100%, 300px);
  min-height: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.about-intro-photo {
  width: clamp(210px, 23vw, 300px);
  height: clamp(210px, 23vw, 300px);
  min-height: 0;
  aspect-ratio: 1;
  overflow: hidden;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.about-intro-photo img {
  width: 100%;
  height: 100%;
  object-position: 50% 16%;
}

.about-intro-card-body {
  display: none;
}

.about-intro-card-body h2 {
  font-size: 24px;
  letter-spacing: -0.03em !important;
}

.about-intro-card-body p {
  max-width: 180px;
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 980px) {
  .about-intro {
    grid-template-columns: minmax(150px, 0.26fr) minmax(0, 1fr);
    gap: 30px;
  }

  .about-intro-card {
    justify-self: start;
    width: min(100%, 190px);
    min-height: 0;
  }

  .about-intro-photo {
    width: clamp(150px, 20vw, 190px);
    height: clamp(150px, 20vw, 190px);
  }
}

@media (max-width: 760px) {
  .about-page-main-v2 {
    padding-top: 28px;
  }

  .about-page-main-v2 > * {
    width: min(100%, 390px);
  }

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

  .about-intro-card {
    width: min(100%, 96px);
  }

  .about-intro-photo {
    width: 96px;
    height: 96px;
  }

  .about-founder-heading {
    display: grid;
    gap: 7px;
    margin-top: 6px;
  }

  .about-founder-heading h1 {
    font-size: clamp(54px, 15vw, 64px);
  }

  .about-founder-heading span {
    border-left: 0;
    padding-left: 0;
    font-size: 11.5px;
  }

  .about-intro-lead {
    margin-top: 16px;
    font-size: clamp(18px, 4.8vw, 21px);
    line-height: 1.28;
  }

  .about-intro-prose {
    gap: 0;
    margin-top: 16px;
  }

  .about-intro-prose p {
    font-size: 14.5px;
    line-height: 1.5;
  }

  .about-intro-prose p + p {
    display: none;
  }

  .about-intro-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
    padding-top: 16px;
  }

  .about-intro-facts li {
    min-width: 0;
  }

  .about-intro-facts span {
    font-size: 14px;
    line-height: 1.18;
  }

  .about-intro-facts strong {
    font-size: 9.5px;
    letter-spacing: 0.08em;
  }
}
