: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 {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.main-nav a[aria-current="page"] {
  color: var(--cyan);
}

.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 transparent;
  background:
    linear-gradient(#050b14, #050b14) padding-box,
    linear-gradient(90deg, var(--blue), #3b82f6, var(--cyan)) border-box;
  box-shadow: 0 0 34px rgba(37, 99, 235, 0.24);
}

.button-gradient {
  border: 0;
  background: linear-gradient(100deg, #1d4ed8, #2563eb 56%, #0fbaa7);
  box-shadow: 0 18px 42px rgba(37, 99, 235, 0.28), 0 0 34px rgba(45, 212, 191, 0.16);
}

.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(980px, 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: 930px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(54px, 6.7vw, 88px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.08;
  text-transform: uppercase;
}

.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%, 660px);
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 24px;
  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,
.slab,
.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: -6%;
  top: 19%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle at 56% 42%, rgba(37, 99, 235, 0.11), transparent 55%);
}

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

.slab {
  border: 1px solid rgba(80, 119, 196, 0.34);
  border-radius: 999px;
  background: linear-gradient(110deg, rgba(4, 8, 17, 0.98), rgba(11, 25, 48, 0.94) 44%, rgba(1, 2, 7, 0.98));
  box-shadow: 32px 42px 90px rgba(0, 0, 0, 0.85), inset 0 1px rgba(255, 255, 255, 0.05);
  transform: rotate(-50deg);
}

.slab-one {
  width: 980px;
  height: 122px;
  left: 39%;
  top: 7%;
}

.slab-two {
  width: 900px;
  height: 115px;
  right: -18%;
  bottom: 10%;
}

.sphere {
  border-radius: 50%;
  filter: drop-shadow(0 26px 40px rgba(0, 0, 0, 0.65));
  animation: slowFloat 6s ease-in-out infinite;
}

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

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

.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);
}

@keyframes slowFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

.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: 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: 1.25fr 1fr 0.72fr 1.35fr;
  gap: 44px;
  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;
}

.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;
}

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

.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 {
  padding: clamp(30px, 5vw, 58px);
}

.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::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 {
  margin: 0;
  font-size: clamp(48px, 6vw, 78px);
  line-height: 0.95;
}

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

.founder-profile-card dl {
  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-screen {
  position: absolute;
  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;
  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;
  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 {
  min-height: 210px;
  padding: 26px;
}

.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);
}

.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;
}

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

.contact-page-main::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(48, 240, 216, 0.12), transparent 28%),
    radial-gradient(circle at 90% 4%, rgba(37, 99, 235, 0.12), transparent 24%);
  pointer-events: none;
}

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

/* Clean split layout */
.contact-split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}

.contact-split-info h1 {
  font-size: clamp(48px, 6.5vw, 80px);
  text-transform: uppercase;
  line-height: 1.0;
  margin: 0 0 18px;
}

.contact-split-info > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
  margin: 0 0 44px;
  max-width: 340px;
}

.contact-split-links {
  display: grid;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}

.contact-split-links a {
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s;
}

.contact-split-links a:hover {
  color: var(--cyan);
}

.contact-split-links span {
  color: var(--dim);
  font-size: 13px;
  margin-top: 2px;
}

.contact-split-form {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04), 0 28px 70px rgba(0, 0, 0, 0.22);
}

.contact-hero {
  text-align: center;
  margin-bottom: 48px;
}

.contact-hero h1 {
  font-size: clamp(38px, 5vw, 64px);
  text-transform: uppercase;
  line-height: 1.08;
  margin: 0;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.contact-hero > p:not(.eyebrow) {
  max-width: 560px;
  margin: 20px auto 0;
  color: var(--muted);
}

.contact-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.contact-highlights span {
  border: 1px solid rgba(48, 240, 216, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  padding: 9px 15px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
}

.contact-panel {
  grid-template-columns: 0.9fr 1.1fr;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.02);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

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

.contact-card {
  border: 1px solid rgba(48, 240, 216, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(45, 212, 191, 0.11), rgba(37, 99, 235, 0.1));
  padding: 24px;
}

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

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

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

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

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

.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 {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

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

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

.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: 1fr auto;
  align-items: flex-start;
  gap: clamp(40px, 6vw, 80px);
  padding: clamp(64px, 8vw, 108px) var(--gutter) clamp(52px, 6vw, 80px);
}

.svc-hero h1 {
  font-size: clamp(52px, 7.5vw, 90px);
  text-transform: uppercase;
  line-height: 0.98;
  margin: 0 0 28px;
}

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

.svc-hero-visual {
  width: clamp(130px, 16vw, 220px);
  opacity: 0.38;
  padding-top: 12px;
  flex-shrink: 0;
}

.svc-hero-visual svg {
  width: 100%;
  height: auto;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.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);
}

@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;
  }
}

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

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

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

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

.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;
  }

  .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%;
  }
}

@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;
  }

  .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: translateX(28%);
  }

  .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-hero {
    text-align: left;
  }

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

  .contact-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .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;
  }
}
