:root {
  --bg-base: #02070b;
  --bg-elev: #07131b;
  --surface: rgba(4, 17, 25, 0.8);
  --surface-strong: rgba(5, 22, 33, 0.94);
  --border: rgba(29, 211, 236, 0.18);
  --text-main: #eefcff;
  --text-muted: #a7c4cf;
  --accent-1: #10d4e6;
  --accent-2: #1597d3;
  --accent-3: #0a66bd;
  --ink: #06090d;
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.54);
  --shadow-md: 0 18px 38px rgba(0, 0, 0, 0.38);
  --radius-xl: 10px;
  --radius-lg: 8px;
  --radius-md: 7px;
  --container: min(1180px, calc(100vw - 2.4rem));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(900px 620px at 74% 12%, rgba(16, 212, 230, 0.14), transparent 68%),
    radial-gradient(780px 560px at 12% 30%, rgba(21, 151, 211, 0.16), transparent 72%),
    linear-gradient(135deg, #02070b 0%, #061521 50%, #02070b 100%);
  overflow-x: hidden;
}

body::selection {
  color: var(--ink);
  background: #10d4e6;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  z-index: -1;
  background-image:
    linear-gradient(rgba(246, 241, 232, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 241, 232, 0.035) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, black 0%, transparent 82%);
}

body::after {
  z-index: -3;
  background:
    linear-gradient(115deg, rgba(16, 212, 230, 0.13), transparent 38%),
    linear-gradient(245deg, rgba(10, 102, 189, 0.16), transparent 42%);
}

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

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

.ambient {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(118, 217, 255, 0.08) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(246, 241, 232, 0.04) 0 1px, transparent 1px 100%);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, black, transparent 78%);
}

.scene-canvas {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.58;
}

.orb {
  display: none;
}

.container {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid rgba(246, 241, 232, 0.1);
  background: rgba(5, 7, 10, 0.74);
  backdrop-filter: blur(18px) saturate(140%);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(16, 212, 230, 0.5), rgba(10, 102, 189, 0.45), transparent);
  opacity: 0.72;
}

.site-header.scrolled {
  border-color: rgba(16, 212, 230, 0.26);
  background: rgba(5, 7, 10, 0.92);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: "Syne", "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-mark {
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 8px;
  background: #02070b url("../mobologo.png") center / cover no-repeat;
  box-shadow: 0 0 0 1px rgba(16, 212, 230, 0.5), 0 0 24px rgba(16, 212, 230, 0.28);
  animation: pulseGlow 3.8s ease-in-out infinite;
}

.site-nav {
  margin-left: auto;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.76rem;
  border-radius: 7px;
  color: var(--text-muted);
  font-size: 0.87rem;
  font-weight: 700;
  transition: color 0.25s ease, background 0.25s ease;
}

.site-nav a:hover {
  color: var(--text-main);
  background: rgba(246, 241, 232, 0.08);
}

.site-nav a.active {
  color: var(--text-main);
  background: rgba(16, 212, 230, 0.13);
  box-shadow: inset 0 0 0 1px rgba(16, 212, 230, 0.28);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.4rem;
  border: 1px solid rgba(246, 241, 232, 0.24);
  border-radius: 8px;
  color: var(--text-main);
  background: rgba(18, 26, 37, 0.95);
  cursor: pointer;
}

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

main {
  padding-top: 74px;
}

.page-hero,
.hero {
  position: relative;
  padding: 4.8rem 0 4.2rem;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(9, 16, 28, 0.42) 100%);
  mask-image: linear-gradient(180deg, black 24%, transparent 100%);
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 2rem 0 auto;
  height: 62%;
  pointer-events: none;
  background:
    radial-gradient(55% 62% at 28% 34%, rgba(16, 212, 230, 0.16), transparent 68%),
    radial-gradient(42% 52% at 78% 22%, rgba(10, 102, 189, 0.18), transparent 72%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.42rem 0.68rem;
  border: 1px solid rgba(16, 212, 230, 0.34);
  border-radius: 6px;
  color: #b8f7ff;
  background: rgba(16, 212, 230, 0.08);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  background: linear-gradient(140deg, var(--accent-1), var(--accent-2));
  box-shadow: 0 0 0 5px rgba(16, 212, 230, 0.1);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Syne", "Segoe UI", sans-serif;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 12.8ch;
  margin-top: 1.2rem;
  font-size: clamp(2.35rem, 5vw, 4.45rem);
  line-height: 0.98;
}

.page-hero h1 {
  margin-top: 1rem;
  max-width: 15ch;
  font-size: clamp(2rem, 4.6vw, 3.45rem);
  line-height: 1.02;
}

.page-hero .container {
  padding: 1.1rem 0;
}

.hero .accent {
  display: inline-block;
  color: transparent;
  background: linear-gradient(130deg, #eefcff 4%, #10d4e6 42%, #1597d3 76%, #0a66bd 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero p,
.page-hero p {
  max-width: 58ch;
  margin-top: 1.15rem;
  color: #b9c1cd;
  font-size: 1.06rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.8rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.91rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

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

.btn-primary {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: linear-gradient(130deg, #10d4e6, #1597d3 54%, #0a66bd);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.34);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 15%, rgba(255, 255, 255, 0.35) 50%, transparent 85%);
  transform: translateX(-150%);
  transition: transform 0.8s ease;
}

.btn-primary:hover {
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.42);
}

.btn-primary:hover::after {
  transform: translateX(150%);
}

.btn-ghost {
  border-color: rgba(246, 241, 232, 0.22);
  color: #efe8da;
  background: rgba(246, 241, 232, 0.06);
}

.btn-ghost:hover {
  border-color: rgba(16, 212, 230, 0.52);
  background: rgba(246, 241, 232, 0.1);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
  margin-top: 1.6rem;
  color: var(--text-muted);
  font-size: 0.84rem;
}

.hero-proof span {
  padding: 0.58rem 0.72rem;
  border: 1px solid rgba(246, 241, 232, 0.14);
  border-radius: 7px;
  background: rgba(246, 241, 232, 0.045);
}

.hero-proof strong {
  margin-right: 0.25rem;
  color: var(--text-main);
}

.hero-panel,
.glass-panel,
.card,
.stat,
.process-step,
.cta-band,
.table-wrap,
.code-window {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.hero-panel {
  min-height: 470px;
  padding: 1.15rem;
  border: 1px solid rgba(246, 241, 232, 0.2);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(168deg, rgba(17, 24, 34, 0.98), rgba(8, 12, 18, 0.96)),
    linear-gradient(155deg, rgba(16, 212, 230, 0.18), rgba(10, 102, 189, 0.12));
  box-shadow: var(--shadow-lg);
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(246, 241, 232, 0.5), rgba(118, 217, 255, 0.28), transparent 60%);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  pointer-events: none;
}

.hero-panel::before {
  content: "";
  position: absolute;
  top: -22%;
  right: -28%;
  width: 56%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(16, 212, 230, 0.18), rgba(10, 102, 189, 0.12));
  transform: rotate(20deg);
}

.panel-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  color: #e4dccb;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.chip {
  flex: 0 0 auto;
  padding: 0.28rem 0.66rem;
  border: 1px solid rgba(132, 229, 187, 0.36);
  border-radius: 6px;
  color: #c2f2dd;
  background: rgba(12, 23, 38, 0.72);
  font-size: 0.74rem;
}

.signal-board {
  position: relative;
  height: 220px;
  margin: 1rem 0;
  border: 1px solid rgba(246, 241, 232, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(246, 241, 232, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(246, 241, 232, 0.05) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(118, 217, 255, 0.17), transparent 56%),
    rgba(255, 255, 255, 0.025);
  background-size: 36px 36px, 36px 36px, auto, auto;
}

.signal-board::selection {
  background: transparent;
}

.signal-board::before,
.signal-board::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 72%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(118, 217, 255, 0.75), transparent);
  transform: translate(-50%, -50%) rotate(28deg);
}

.signal-board::after {
  background: linear-gradient(90deg, transparent, rgba(10, 102, 189, 0.7), transparent);
  transform: translate(-50%, -50%) rotate(-28deg);
}

.signal-core {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  border: 1px solid rgba(246, 241, 232, 0.28);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(246, 241, 232, 0.13), rgba(118, 217, 255, 0.1));
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.34);
  transform: translate(-50%, -50%);
}

.signal-core span {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(132, 229, 187, 0.32);
  border-radius: 6px;
}

.signal-core strong {
  color: #dffcff;
  font-family: "Syne", "Segoe UI", sans-serif;
  font-size: 2rem;
}

.signal-node {
  position: absolute;
  z-index: 2;
  min-width: 4rem;
  padding: 0.46rem 0.6rem;
  border: 1px solid rgba(246, 241, 232, 0.18);
  border-radius: 7px;
  color: #dfe8f4;
  background: rgba(8, 13, 20, 0.86);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
}

.node-one {
  top: 26px;
  left: 32px;
}

.node-two {
  top: 34px;
  right: 26px;
}

.node-three {
  bottom: 34px;
  left: 40px;
}

.node-four {
  right: 42px;
  bottom: 28px;
}

.panel-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.75rem;
}

.panel-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.72rem;
  align-items: center;
  padding: 0.9rem 0.9rem 0.9rem 0.82rem;
  border: 1px solid rgba(246, 241, 232, 0.13);
  border-radius: 8px;
  background: rgba(8, 13, 20, 0.76);
}

.panel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  border: 1px solid rgba(246, 241, 232, 0.2);
  border-radius: 7px;
  background: linear-gradient(150deg, rgba(16, 212, 230, 0.18), rgba(10, 102, 189, 0.16));
}

.panel-icon svg {
  width: 1rem;
  height: 1rem;
  color: #d2e8ff;
}

.panel-copy {
  min-width: 0;
}

.panel-item strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 1.05rem;
}

.panel-item span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.section {
  position: relative;
  padding: 5.2rem 0;
}

.section:nth-of-type(even) {
  background: linear-gradient(180deg, rgba(246, 241, 232, 0.018), rgba(118, 217, 255, 0.018));
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: var(--container);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(246, 241, 232, 0.18), transparent);
  transform: translateX(-50%);
  pointer-events: none;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.2rem;
  margin-bottom: 1.9rem;
}

.section-head h2 {
  position: relative;
  display: inline-block;
  font-size: clamp(1.75rem, 3.6vw, 2.85rem);
}

.section-head h2::after {
  content: "";
  display: block;
  width: 58%;
  height: 2px;
  margin-top: 0.4rem;
  background: linear-gradient(90deg, rgba(16, 212, 230, 0.95), rgba(10, 102, 189, 0.42), transparent 95%);
}

.section-head p {
  max-width: 48ch;
  color: var(--text-muted);
  line-height: 1.72;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

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

.card {
  padding: 1.25rem;
  border: 1px solid rgba(246, 241, 232, 0.14);
  border-radius: var(--radius-lg);
  background: linear-gradient(170deg, rgba(18, 25, 34, 0.9), rgba(9, 14, 22, 0.92));
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.card::before,
.stat::before,
.process-step::before,
.glass-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(246, 241, 232, 0.22), transparent 42%, rgba(118, 217, 255, 0.18));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  pointer-events: none;
}

.card:hover {
  border-color: rgba(16, 212, 230, 0.36);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.5);
  transform: translateY(-6px);
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(16, 212, 230, 0.08), rgba(21, 151, 211, 0.07), rgba(10, 102, 189, 0.06));
  opacity: 0;
  transition: opacity 0.28s ease;
}

.card:hover::after {
  opacity: 1;
}

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

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.55rem;
  height: 2.55rem;
  margin-bottom: 0.95rem;
  border-radius: 8px;
  background: linear-gradient(150deg, rgba(16, 212, 230, 0.22), rgba(21, 151, 211, 0.22), rgba(10, 102, 189, 0.18));
  box-shadow: inset 0 0 0 1px rgba(246, 241, 232, 0.28), 0 10px 16px rgba(0, 0, 0, 0.22);
}

.card-icon svg {
  width: 1.3rem;
  height: 1.3rem;
  color: #f1f5fb;
}

.card h3 {
  margin-bottom: 0.46rem;
  font-size: 1.12rem;
}

.card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
}

.detail-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  padding: 0.36rem 0.55rem;
  border: 1px solid rgba(16, 212, 230, 0.18);
  border-radius: 7px;
  color: #b8f7ff;
  background: rgba(16, 212, 230, 0.055);
  font-size: 0.75rem;
  font-weight: 800;
}

.card-kicker {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(16, 212, 230, 0.14);
  color: #80edff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.card a.link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.95rem;
  color: #80edff;
  font-size: 0.88rem;
  font-weight: 800;
}

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

.grid-4 .card:nth-child(2n),
.grid-3 .card:nth-child(2n) {
  transform: translateY(0.4rem);
}

.grid-4 .card:nth-child(2n):hover,
.grid-3 .card:nth-child(2n):hover {
  transform: translateY(calc(0.4rem - 6px));
}

.stat {
  padding: 1.2rem 1rem;
  border: 1px solid rgba(246, 241, 232, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(13, 19, 28, 0.82);
}

.stat:hover,
.process-step:hover {
  border-color: rgba(16, 212, 230, 0.3);
  transform: translateY(-3px);
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.stat::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, #10d4e6, #1597d3, #0a66bd);
}

.stat .num {
  font-family: "Syne", "Segoe UI", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
}

.stat .label {
  margin-top: 0.3rem;
  color: var(--text-muted);
  font-size: 0.89rem;
}

.split,
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 1.2rem;
}

.glass-panel {
  padding: 1.25rem;
  border: 1px solid rgba(246, 241, 232, 0.16);
  border-radius: var(--radius-xl);
  background: linear-gradient(155deg, rgba(17, 25, 35, 0.9), rgba(8, 13, 20, 0.92));
  box-shadow: var(--shadow-lg);
}

.glass-panel h2,
.cta-band h3 {
  position: relative;
  z-index: 1;
}

.glass-panel::after,
.cta-band::before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(16, 212, 230, 0.13), rgba(10, 102, 189, 0));
}

.glass-panel::after {
  inset: auto -18% -52% auto;
  width: 52%;
  aspect-ratio: 1;
}

.list {
  margin: 0;
  padding-left: 1rem;
  color: var(--text-muted);
}

.list li + li {
  margin-top: 0.62rem;
}

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

.process-step {
  padding: 1rem;
  border: 1px solid rgba(246, 241, 232, 0.14);
  border-radius: 8px;
  background: rgba(12, 18, 27, 0.86);
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.process-step::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(16, 212, 230, 0.76), rgba(10, 102, 189, 0.44), transparent);
}

.process-step .idx {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.8rem;
  border-radius: 7px;
  color: #0c0f12;
  background: linear-gradient(135deg, #10d4e6, #0a66bd);
  font-size: 0.85rem;
  font-weight: 800;
}

.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.9rem;
  height: 1.9rem;
  margin-left: 0.52rem;
  border: 1px solid rgba(246, 241, 232, 0.18);
  border-radius: 7px;
  background: linear-gradient(150deg, rgba(16, 212, 230, 0.18), rgba(10, 102, 189, 0.16));
  transform: translateY(0.33rem);
}

.step-icon svg {
  width: 1rem;
  height: 1rem;
  color: #d9ebff;
}

.process-step h3 {
  margin-bottom: 0.42rem;
  font-size: 1.03rem;
}

.process-step p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.85rem;
  border: 1px solid rgba(16, 212, 230, 0.28);
  border-radius: 10px;
  background:
    linear-gradient(130deg, rgba(16, 212, 230, 0.16), rgba(21, 151, 211, 0.12), rgba(10, 102, 189, 0.11)),
    rgba(9, 14, 22, 0.9);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.cta-band .btn {
  flex: 0 0 auto;
}

.cta-band::before {
  top: -26%;
  right: -10%;
  width: 42%;
  aspect-ratio: 1;
}

.cta-band p {
  margin: 0.45rem 0 0;
  color: #c6d7f4;
}

.cta-band h3 {
  max-width: 18ch;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.08;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.2rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.7rem;
  border: 1px solid rgba(246, 241, 232, 0.16);
  border-radius: 7px;
  color: #b8f7ff;
  background: rgba(246, 241, 232, 0.06);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.table-wrap {
  overflow: auto;
  border: 1px solid rgba(246, 241, 232, 0.16);
  border-radius: 8px;
  background: rgba(12, 22, 36, 0.88);
}

table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
}

th,
td {
  padding: 0.9rem 1rem;
  text-align: left;
}

th {
  border-bottom: 1px solid rgba(246, 241, 232, 0.16);
  color: #80edff;
  font-size: 0.8rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

td {
  border-bottom: 1px solid rgba(246, 241, 232, 0.09);
  color: var(--text-muted);
  font-size: 0.92rem;
}

tr:last-child td {
  border-bottom: 0;
}

.benchmark {
  display: grid;
  gap: 0.75rem;
}

.benchmark-row {
  display: grid;
  gap: 0.4rem;
}

.benchmark-row label {
  display: flex;
  justify-content: space-between;
  color: #b8f7ff;
  font-size: 0.84rem;
}

.bar {
  position: relative;
  height: 0.58rem;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(246, 241, 232, 0.12);
}

.bar > span {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--value, 50%);
  border-radius: inherit;
  background: linear-gradient(95deg, #10d4e6, #1597d3 52%, #0a66bd);
  animation: shimmer 6s linear infinite;
}

.code-window {
  border: 1px solid rgba(246, 241, 232, 0.18);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(19, 30, 48, 0.95), rgba(9, 16, 28, 0.98));
}

.code-window .top {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  height: 2.2rem;
  padding: 0 0.9rem;
  border-bottom: 1px solid rgba(246, 241, 232, 0.14);
}

.dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
}

.dot.red {
  background: #ff8d9d;
}

.dot.amber {
  background: #f9d17e;
}

.dot.green {
  background: #7eeab9;
}

.code-window pre {
  margin: 0;
  padding: 1rem;
  overflow: auto;
  color: #cde4ff;
  font-family: "Consolas", "SFMono-Regular", monospace;
  font-size: 0.83rem;
  line-height: 1.6;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field label {
  color: #d9d0bd;
  font-size: 0.86rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(246, 241, 232, 0.18);
  border-radius: 8px;
  color: var(--text-main);
  background: rgba(13, 24, 38, 0.82);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field input:hover,
.field textarea:hover,
.field select:hover {
  background: rgba(17, 30, 47, 0.9);
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(16, 212, 230, 0.75);
  outline: none;
  box-shadow: 0 0 0 3px rgba(16, 212, 230, 0.14);
}

.site-footer {
  position: relative;
  margin-top: 2.3rem;
  padding: 0 0 2.4rem;
  overflow: hidden;
  border-top: 1px solid rgba(16, 212, 230, 0.18);
  background:
    radial-gradient(900px 420px at 72% 0%, rgba(16, 212, 230, 0.12), transparent 68%),
    linear-gradient(180deg, rgba(2, 7, 11, 0), rgba(2, 9, 15, 0.92));
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(16, 212, 230, 0.72), rgba(10, 102, 189, 0.52), transparent);
}

.site-footer::after {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -32%;
  width: 44%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 212, 230, 0.12), transparent 66%);
  pointer-events: none;
}

.footer-shell {
  position: relative;
  z-index: 1;
  padding-top: 2rem;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.45fr) repeat(2, minmax(150px, 0.55fr)) minmax(220px, 0.8fr);
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(16, 212, 230, 0.15);
  border-radius: 10px;
  background:
    linear-gradient(165deg, rgba(5, 25, 36, 0.88), rgba(2, 10, 16, 0.92)),
    rgba(4, 17, 25, 0.88);
  box-shadow: var(--shadow-lg);
}

.footer-brand {
  padding-right: 1rem;
}

.site-footer .brand {
  color: #eefcff;
}

.footer-brand p,
.footer-action p {
  margin: 1rem 0 0;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.94rem;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.05rem;
}

.footer-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.42rem 0.62rem;
  border: 1px solid rgba(16, 212, 230, 0.22);
  border-radius: 7px;
  color: #b8f7ff;
  background: rgba(16, 212, 230, 0.07);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 0.62rem;
  min-width: 0;
}

.footer-column h4 {
  margin: 0 0 0.18rem;
  color: #80edff;
  font-family: "Syne", "Segoe UI", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a {
  color: var(--text-muted);
  font-size: 0.91rem;
  font-weight: 700;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-column a:hover {
  color: var(--text-main);
  transform: translateX(3px);
}

.footer-action {
  padding: 0.95rem;
  border: 1px solid rgba(16, 212, 230, 0.13);
  border-radius: 8px;
  background: rgba(16, 212, 230, 0.045);
}

.footer-action p {
  margin-top: 0;
  font-size: 0.88rem;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.45rem;
  margin-top: 0.2rem;
  padding: 0.68rem 0.85rem;
  border-radius: 8px;
  color: #001119 !important;
  background: linear-gradient(135deg, #10d4e6, #1597d3 58%, #0a66bd);
  font-size: 0.86rem !important;
  font-weight: 800 !important;
  box-shadow: 0 12px 24px rgba(16, 212, 230, 0.18);
}

.footer-cta:hover {
  transform: translateY(-2px) !important;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0.25rem 0;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.footer-note {
  color: var(--text-muted);
  font-size: 0.9rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  transition:
    opacity 0.72s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.72s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--delay, 0s);
}

[data-reveal="left"] {
  transform: translateX(-25px);
}

[data-reveal="right"] {
  transform: translateX(25px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

.tilt-card {
  transform-style: preserve-3d;
}

.rich-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.muted {
  color: var(--text-muted);
}

/* Logo-aligned cyan/blue brand finish */
.site-header::after,
.section-head h2::after,
.process-step::after,
.section::before {
  background: linear-gradient(90deg, transparent, rgba(16, 212, 230, 0.72), rgba(10, 102, 189, 0.52), transparent);
}

.site-header.scrolled,
.site-nav a.active,
.card:hover,
.stat:hover,
.process-step:hover {
  border-color: rgba(16, 212, 230, 0.38);
}

.site-nav a.active {
  background: rgba(16, 212, 230, 0.12);
  box-shadow: inset 0 0 0 1px rgba(16, 212, 230, 0.3);
}

.eyebrow,
.pill,
.hero-proof span,
.chip {
  border-color: rgba(16, 212, 230, 0.34);
  color: #b8f7ff;
  background: rgba(16, 212, 230, 0.08);
}

.eyebrow::before {
  background: linear-gradient(140deg, #10d4e6, #0a66bd);
  box-shadow: 0 0 0 5px rgba(16, 212, 230, 0.12);
}

.hero .accent {
  background: linear-gradient(130deg, #ffffff 4%, #10d4e6 40%, #1597d3 74%, #0a66bd 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.btn-primary,
.process-step .idx,
.bar > span,
.stat::after {
  background: linear-gradient(135deg, #10d4e6, #1597d3 58%, #0a66bd);
}

.btn-primary {
  color: #001119;
  box-shadow: 0 16px 36px rgba(16, 212, 230, 0.24);
}

.btn-ghost,
.nav-toggle,
.field input,
.field textarea,
.field select {
  border-color: rgba(16, 212, 230, 0.24);
}

.btn-ghost:hover,
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(16, 212, 230, 0.72);
  box-shadow: 0 0 0 3px rgba(16, 212, 230, 0.14);
}

.hero-panel,
.glass-panel,
.card,
.stat,
.process-step,
.cta-band,
.table-wrap,
.code-window {
  border-color: rgba(16, 212, 230, 0.15);
  background:
    linear-gradient(165deg, rgba(5, 25, 36, 0.9), rgba(2, 10, 16, 0.92)),
    rgba(4, 17, 25, 0.88);
}

.hero-panel::after,
.card::before,
.stat::before,
.process-step::before,
.glass-panel::before {
  background: linear-gradient(135deg, rgba(16, 212, 230, 0.28), transparent 42%, rgba(10, 102, 189, 0.25));
}

.card::after,
.cta-band,
.card-icon,
.panel-icon,
.step-icon {
  background: linear-gradient(135deg, rgba(16, 212, 230, 0.16), rgba(21, 151, 211, 0.12), rgba(10, 102, 189, 0.12));
}

.card a.link,
th,
.benchmark-row label,
.field label {
  color: #80edff;
}

.signal-board {
  border-color: rgba(16, 212, 230, 0.18);
  background:
    linear-gradient(90deg, rgba(16, 212, 230, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(16, 212, 230, 0.06) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(16, 212, 230, 0.2), transparent 56%),
    rgba(255, 255, 255, 0.025);
  background-size: 36px 36px, 36px 36px, auto, auto;
}

.signal-board::before,
.signal-board::after {
  background: linear-gradient(90deg, transparent, rgba(16, 212, 230, 0.8), transparent);
}

.signal-core,
.signal-node {
  border-color: rgba(16, 212, 230, 0.28);
}

.signal-core strong {
  color: #dffcff;
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 0 0 1px rgba(16, 212, 230, 0.32), 0 8px 18px rgba(0, 0, 0, 0.42);
  }

  50% {
    box-shadow: 0 0 0 1px rgba(16, 212, 230, 0.64), 0 8px 26px rgba(16, 212, 230, 0.34);
  }
}

@keyframes shimmer {
  0%,
  100% {
    filter: saturate(94%);
  }

  50% {
    filter: saturate(118%);
  }
}

@media (max-width: 1060px) {
  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .footer-action {
    grid-column: 1 / -1;
  }

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

  .hero h1 {
    max-width: 13ch;
  }

  .hero-panel {
    min-height: auto;
  }
}

@media (max-width: 960px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    max-height: 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(246, 241, 232, 0.16);
    background: rgba(8, 14, 24, 0.98);
    backdrop-filter: blur(12px);
    transition: max-height 0.3s ease;
  }

  .site-nav.open {
    max-height: 540px;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.65rem 1rem 1rem;
  }

  .site-nav li,
  .site-nav a {
    width: 100%;
  }

  .site-nav a {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100% - 1.25rem, 1180px);
  }

  .section {
    padding: 3.8rem 0;
  }

  .page-hero,
  .hero {
    padding: 4.4rem 0 3.4rem;
  }

  .grid-3,
  .grid-2,
  .process,
  .grid-4,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .page-hero h1 {
    max-width: 100%;
  }

  .hero-actions,
  .cta-band {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

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

  .signal-board {
    height: 220px;
  }

  .section-head {
    display: block;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .footer-brand {
    padding-right: 0;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .scene-canvas {
    opacity: 0.42;
  }

  .grid-4 .card:nth-child(2n),
  .grid-3 .card:nth-child(2n),
  .grid-4 .card:nth-child(2n):hover,
  .grid-3 .card:nth-child(2n):hover {
    transform: none;
  }
}

@media (max-width: 420px) {
  .brand {
    font-size: 0.84rem;
  }

  .panel-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .signal-node {
    min-width: 3.4rem;
    font-size: 0.7rem;
  }
}

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