:root {
  color-scheme: dark;
  --bg: #05070d;
  --panel: rgba(10, 17, 29, 0.74);
  --panel-strong: rgba(13, 24, 39, 0.92);
  --text: #f5f8ff;
  --muted: #aab8ca;
  --line: rgba(153, 217, 255, 0.18);
  --cyan: #40d8ff;
  --green: #64f0ac;
  --pink: #ff5fb7;
  --amber: #ffd166;
  --red: #ff6b6b;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(64, 216, 255, 0.18), transparent 28rem),
    radial-gradient(circle at 84% 12%, rgba(255, 95, 183, 0.16), transparent 30rem),
    linear-gradient(135deg, #05070d 0%, #08131a 42%, #120b18 100%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

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

#signal-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.78;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 9, 17, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero-actions,
.logos-band,
.panel-top,
.metric-grid,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: 186px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(64, 216, 255, 0.55);
  border-radius: 7px;
  background: linear-gradient(135deg, rgba(64, 216, 255, 0.22), rgba(255, 95, 183, 0.2));
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.74rem;
}

.nav-links {
  gap: 6px;
}

.nav-links a,
.nav-cta {
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 7px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a:hover,
.nav-cta:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta {
  border: 1px solid rgba(100, 240, 172, 0.36);
  color: var(--green);
}

.hero,
.section {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  min-height: calc(100vh - 84px);
  padding: 70px 0 48px;
}

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

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

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.75rem, 4.85vw, 4.35rem);
}

h2 {
  max-width: 860px;
  font-size: clamp(2.1rem, 4.6vw, 4.5rem);
}

h3 {
  font-size: 1.45rem;
  line-height: 1.1;
}

.hero-lede,
.section p,
.service-card p,
.proof-grid p,
address {
  color: var(--muted);
}

.hero-lede {
  max-width: 690px;
  margin: 20px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button.primary {
  background: linear-gradient(135deg, var(--cyan), var(--green));
  color: #031016;
  box-shadow: 0 16px 34px rgba(64, 216, 255, 0.24);
}

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

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

.hero-stats div,
.command-panel,
.service-card,
.proof-grid article,
.funnel-map,
.contact-form,
blockquote {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-stats div {
  min-height: 104px;
  padding: 16px;
}

.hero-stats dt {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.3rem);
  font-weight: 800;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.command-panel {
  position: relative;
  min-height: 570px;
  padding: 18px;
  overflow: hidden;
}

.command-panel::before {
  position: absolute;
  inset: 60px 30px auto;
  height: 280px;
  content: "";
  border: 1px solid rgba(64, 216, 255, 0.2);
  background:
    linear-gradient(90deg, transparent 48%, rgba(64, 216, 255, 0.24) 49%, transparent 51%),
    linear-gradient(0deg, transparent 48%, rgba(100, 240, 172, 0.18) 49%, transparent 51%);
  transform: perspective(520px) rotateX(58deg);
}

.panel-top {
  position: relative;
  z-index: 1;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.status {
  color: var(--green);
}

.orbital {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(330px, 88%);
  aspect-ratio: 1;
  margin: 38px auto 24px;
  place-items: center;
  border: 1px solid rgba(64, 216, 255, 0.28);
  border-radius: 50%;
  animation: pulseRing 4s ease-in-out infinite;
}

.orbital::before,
.orbital::after {
  position: absolute;
  inset: 13%;
  content: "";
  border: 1px solid rgba(255, 95, 183, 0.24);
  border-radius: 50%;
}

.orbital::after {
  inset: 28%;
  border-color: rgba(100, 240, 172, 0.3);
}

.core {
  display: grid;
  width: 118px;
  height: 118px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.92), rgba(64, 216, 255, 0.32) 42%, rgba(255, 95, 183, 0.08));
  color: #02060b;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
}

.orbital span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(6, 11, 20, 0.88);
  color: var(--text);
  font-weight: 800;
  transform: rotate(calc(var(--i) * 90deg)) translateX(150px) rotate(calc(var(--i) * -90deg));
}

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

.metric-grid article {
  min-height: 116px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.045);
}

.metric-grid small,
.metric-grid span {
  display: block;
  color: var(--muted);
}

.metric-grid strong {
  display: block;
  margin: 6px 0 2px;
  color: var(--cyan);
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
}

.logos-band {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 46px;
  padding: 14px;
  justify-content: space-between;
  gap: 10px;
  border-block: 1px solid var(--line);
  color: rgba(245, 248, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section {
  padding: 84px 0;
}

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

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

.service-card,
.proof-grid article {
  min-height: 264px;
  padding: 22px;
}

.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::after {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 88px;
  height: 88px;
  content: "";
  border-right: 1px solid rgba(64, 216, 255, 0.22);
  border-bottom: 1px solid rgba(64, 216, 255, 0.22);
}

.icon {
  display: inline-grid;
  width: 46px;
  height: 34px;
  margin-bottom: 42px;
  place-items: center;
  border: 1px solid rgba(100, 240, 172, 0.36);
  border-radius: 6px;
  color: var(--green);
  font-weight: 800;
}

.service-card p {
  margin: 14px 0 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 28px;
  align-items: center;
}

.split p {
  max-width: 650px;
  margin: 22px 0 0;
  font-size: 1.05rem;
}

.process-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.process-list div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.process-list strong {
  color: var(--cyan);
}

.process-list span {
  color: var(--muted);
}

.funnel-map {
  padding: 18px;
}

.funnel-row {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) 72px;
  gap: 12px;
  align-items: center;
  min-height: 78px;
  padding: 12px;
  border-bottom: 1px solid var(--line);
}

.funnel-row:last-child {
  border-bottom: 0;
}

.funnel-row span {
  color: var(--muted);
  font-size: 0.86rem;
}

.funnel-row strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.08rem, 2vw, 1.46rem);
}

.funnel-row em {
  color: var(--amber);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 800;
  text-align: right;
  text-transform: uppercase;
}

.proof {
  padding-top: 72px;
}

.proof-grid article {
  min-height: 210px;
}

.proof-grid strong {
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
}

blockquote {
  margin: 18px 0 0;
  padding: clamp(22px, 4vw, 42px);
}

blockquote p {
  margin: 0;
  max-width: 960px;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.5rem, 3.8vw, 3.2rem);
  line-height: 1.05;
}

cite {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: 28px;
  align-items: start;
}

address {
  margin-top: 28px;
  font-style: normal;
}

address a {
  color: var(--cyan);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 22px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font: inherit;
  outline: none;
  padding: 12px 13px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(64, 216, 255, 0.72);
  box-shadow: 0 0 0 3px rgba(64, 216, 255, 0.12);
}

.site-footer {
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 38px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

@keyframes pulseRing {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(64, 216, 255, 0.12);
  }

  50% {
    box-shadow: 0 0 0 18px rgba(64, 216, 255, 0);
  }
}

@media (max-width: 980px) {
  .site-header {
    position: relative;
    top: 0;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .split,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .command-panel {
    min-height: 560px;
  }

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

@media (max-width: 680px) {
  .site-header {
    width: min(100% - 22px, 1180px);
  }

  .brand {
    min-width: 0;
  }

  .brand small,
  .nav-cta {
    display: none;
  }

  .hero,
  .section {
    width: min(100% - 22px, 1180px);
  }

  h1 {
    font-size: clamp(2.9rem, 16vw, 4.4rem);
  }

  .hero-stats,
  .metric-grid,
  .service-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .logos-band {
    width: min(100% - 22px, 1180px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    text-align: center;
  }

  .command-panel {
    min-height: 500px;
    padding: 14px;
  }

  .orbital {
    width: min(280px, 84vw);
  }

  .orbital span {
    transform: rotate(calc(var(--i) * 90deg)) translateX(126px) rotate(calc(var(--i) * -90deg));
  }

  .funnel-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .funnel-row em {
    text-align: left;
  }

  .site-footer {
    display: grid;
    gap: 8px;
  }
}
