:root {
  color-scheme: dark;
  --bg: #050609;
  --panel: rgba(12, 17, 27, 0.72);
  --panel-strong: rgba(15, 23, 36, 0.9);
  --line: rgba(150, 224, 255, 0.18);
  --text: #f5fbff;
  --muted: #aebdcc;
  --soft: #748295;
  --cyan: #5ee6ff;
  --blue: #4d8dff;
  --violet: #9f7cff;
  --green: #7af0b6;
  --amber: #ffc76a;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 16% 14%, rgba(77, 141, 255, 0.18), transparent 28rem),
    radial-gradient(circle at 78% 2%, rgba(122, 240, 182, 0.12), transparent 22rem),
    linear-gradient(180deg, #030407 0%, #070b10 42%, #050609 100%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

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

button,
input,
textarea {
  font: inherit;
}

.particle-field {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.7;
}

.site-shell {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  width: min(calc(100% - 32px), var(--max));
  margin: 16px auto 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 12px 14px;
  border: 1px solid rgba(166, 226, 255, 0.2);
  border-radius: 8px;
  background: rgba(5, 8, 13, 0.74);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  display: block;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 18px rgba(94, 230, 255, 0.26));
}

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

.brand strong {
  font-family: Manrope, sans-serif;
  font-size: 0.98rem;
}

.brand small {
  margin-top: 4px;
  color: var(--soft);
  font-size: 0.72rem;
}

.nav-links {
  justify-self: center;
  display: flex;
  gap: 6px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.nav-links a {
  padding: 10px 13px;
  border-radius: 6px;
  color: #dce9f5;
  font-size: 0.9rem;
  transition: background 180ms ease, color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(94, 230, 255, 0.12);
  color: white;
}

.header-cta {
  padding: 12px 16px;
  border-radius: 8px;
  background: #f5fbff;
  color: #061019;
  font-weight: 800;
  font-size: 0.88rem;
}

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

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

.section {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 112px 0;
}

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
  padding-top: 72px;
}

.hero-media {
  position: absolute;
  inset: 0 calc(50% - 50vw);
  overflow: hidden;
  z-index: -1;
}

.hero-media img {
  position: absolute;
  top: 0;
  right: 0;
  width: min(76vw, 1160px);
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.78;
  filter: saturate(1.1) contrast(1.05);
  animation: floatImage 14s ease-in-out infinite alternate;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 6, 9, 1) 0%, rgba(5, 6, 9, 0.92) 28%, rgba(5, 6, 9, 0.34) 66%, rgba(5, 6, 9, 0.66) 100%),
    linear-gradient(180deg, rgba(5, 6, 9, 0.1), rgba(5, 6, 9, 0.72));
}

.hero-radar {
  position: absolute;
  right: 10vw;
  top: 24vh;
  z-index: 2;
  width: 290px;
  aspect-ratio: 1;
  border: 1px solid rgba(94, 230, 255, 0.2);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94, 230, 255, 0.13), transparent 58%);
  animation: spin 28s linear infinite;
}

.hero-radar span {
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(122, 240, 182, 0.22);
  border-radius: inherit;
}

.hero-radar span:nth-child(2) {
  inset: 35%;
  border-color: rgba(159, 124, 255, 0.3);
}

.hero-radar span:nth-child(3) {
  inset: 49%;
  background: rgba(94, 230, 255, 0.9);
  box-shadow: 0 0 30px rgba(94, 230, 255, 0.9);
}

.hero-content {
  width: min(720px, 100%);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, var(--green), transparent);
}

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

h1,
h2 {
  font-family: Manrope, Inter, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 840px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 8vw, 7.5rem);
  line-height: 0.92;
  font-weight: 800;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4.7vw, 4.6rem);
  line-height: 1;
  font-weight: 800;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.08rem;
}

p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-copy {
  width: min(620px, 100%);
  margin-bottom: 34px;
  color: #dce7f1;
  font-size: 1.12rem;
}

.hero-actions,
.pill-row,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  background: linear-gradient(135deg, var(--cyan), var(--blue) 58%, var(--violet));
  color: #02050a;
  box-shadow: 0 18px 54px rgba(77, 141, 255, 0.34);
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: white;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(680px, 100%);
  margin-top: 54px;
}

.hero-metrics div,
.service-card,
.process-step,
.result-card,
.terminal-panel,
.contact-form,
.testimonial {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    var(--panel);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.hero-metrics div {
  padding: 18px;
}

.hero-metrics strong,
.result-card strong {
  display: block;
  color: white;
  font-family: Manrope, sans-serif;
  font-size: 2rem;
}

.hero-metrics span {
  display: block;
  margin-top: 6px;
  color: var(--soft);
  font-size: 0.86rem;
}

.proof-strip {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-block: 1px solid rgba(255, 255, 255, 0.11);
}

.proof-strip span {
  min-height: 78px;
  display: grid;
  place-items: center;
  padding: 16px;
  color: #d5e3ef;
  text-align: center;
  font-size: 0.9rem;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.proof-strip span:last-child {
  border-right: 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.62fr);
  gap: 42px;
  align-items: end;
  margin: 20px 0 44px;
}

.section-heading p {
  margin-bottom: 8px;
}

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

.service-card {
  position: relative;
  min-height: 246px;
  padding: 24px;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.service-card::after,
.result-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -44% -20%;
  height: 120px;
  background: radial-gradient(circle, rgba(94, 230, 255, 0.28), transparent 62%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.service-card:hover,
.result-card:hover {
  transform: translateY(-6px);
  border-color: rgba(94, 230, 255, 0.42);
}

.service-card:hover::after,
.result-card:hover::after {
  opacity: 1;
}

.glyph {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 32px;
  margin-bottom: 34px;
  border: 1px solid rgba(94, 230, 255, 0.28);
  border-radius: 6px;
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 800;
  background: rgba(94, 230, 255, 0.08);
}

.service-card p,
.process-step p,
.result-card p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.process-section {
  position: relative;
}

.orbital-graphic {
  position: absolute;
  right: 3%;
  top: 70px;
  width: 360px;
  aspect-ratio: 1;
  opacity: 0.5;
  pointer-events: none;
}

.orbit {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(94, 230, 255, 0.24);
  border-radius: 50%;
  transform: rotateX(68deg) rotateZ(18deg);
}

.orbit-two {
  inset: 18%;
  border-color: rgba(159, 124, 255, 0.34);
  transform: rotateX(56deg) rotateZ(-28deg);
}

.orbit-node {
  position: absolute;
  right: 26%;
  top: 45%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 30px var(--green);
  animation: pulse 2.4s ease-in-out infinite;
}

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

.founder-profile {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: 16px;
  margin: -16px 0 28px;
}

.founder-card,
.founder-bio {
  border: 1px solid rgba(122, 240, 182, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(122, 240, 182, 0.08), rgba(94, 230, 255, 0.05)),
    rgba(255, 255, 255, 0.035);
}

.founder-card {
  padding: 24px;
}

.founder-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.founder-card strong {
  display: block;
  color: white;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.05;
}

.founder-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.founder-bio {
  padding: 24px;
}

.founder-bio p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.96rem;
}

.founder-bio p:last-child {
  margin-bottom: 0;
}

.process-step {
  padding: 28px;
}

.process-step span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--amber);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.differentiator-band {
  position: relative;
  margin: 28px 0;
  padding: 86px 0;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(90deg, rgba(94, 230, 255, 0.06), rgba(159, 124, 255, 0.08), rgba(122, 240, 182, 0.04)),
    rgba(255, 255, 255, 0.025);
}

.differentiator-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.08) 45%, transparent 56%);
  transform: translateX(-72%);
  animation: sweep 9s ease-in-out infinite;
}

.differentiator-inner {
  position: relative;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.differentiator-copy {
  width: min(760px, 100%);
  margin: 20px 0 38px;
}

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

.difference-card {
  min-height: 226px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(4, 8, 12, 0.54);
}

.difference-card strong {
  display: inline-block;
  margin-bottom: 40px;
  color: var(--green);
  font-size: 0.78rem;
}

.difference-card p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.use-case-layout,
.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: 26px;
  align-items: center;
}

.terminal-panel {
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(94, 230, 255, 0.08), rgba(159, 124, 255, 0.07)),
    rgba(4, 8, 12, 0.84);
}

.terminal-bar {
  display: flex;
  gap: 7px;
  margin-bottom: 18px;
}

.terminal-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
}

.terminal-bar span:nth-child(2) {
  background: var(--violet);
}

.terminal-bar span:nth-child(3) {
  background: var(--green);
}

code {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.34);
  white-space: normal;
}

code span {
  color: var(--cyan);
  font-weight: 800;
}

code em {
  color: #c5d3df;
  font-style: normal;
}

.pill-row span {
  padding: 10px 12px;
  border: 1px solid rgba(122, 240, 182, 0.22);
  border-radius: 999px;
  color: #def8ed;
  background: rgba(122, 240, 182, 0.06);
  font-size: 0.86rem;
}

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

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

.result-card strong {
  margin-bottom: 52px;
  color: var(--cyan);
  font-size: 3.6rem;
  line-height: 1;
}

.testimonial {
  width: min(880px, 100%);
  margin: 18px auto 0;
  padding: 30px;
  text-align: center;
}

.testimonial p {
  color: white;
  font-size: 1.15rem;
}

.testimonial span {
  color: var(--soft);
}

.cta-section {
  align-items: stretch;
  padding-bottom: 90px;
}

.cta-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
}

label {
  display: grid;
  gap: 8px;
  color: #dce8f3;
  font-weight: 700;
  font-size: 0.9rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.065);
  color: white;
  outline: 0;
  padding: 14px 15px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: rgba(94, 230, 255, 0.75);
  box-shadow: 0 0 0 4px rgba(94, 230, 255, 0.12);
}

.site-footer {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 30px 0 44px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: var(--muted);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.footer-brand {
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 13px;
  align-items: center;
}

.footer-logo {
  grid-row: span 2;
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 0 18px rgba(94, 230, 255, 0.22));
}

.site-footer strong {
  color: white;
}

.footer-links a {
  color: #dce8f3;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatImage {
  from {
    transform: translate3d(0, 0, 0) scale(1.02);
  }
  to {
    transform: translate3d(0, -18px, 0) scale(1.06);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  50% {
    transform: scale(1.55);
    opacity: 0.65;
  }
}

@keyframes sweep {
  50% {
    transform: translateX(72%);
  }
  100% {
    transform: translateX(72%);
  }
}

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

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

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    grid-column: 1 / -1;
    padding: 10px;
    background: rgba(5, 8, 13, 0.96);
  }

  .nav-links.is-open {
    display: grid;
  }

  .header-cta {
    display: none;
  }

  .section-heading,
  .founder-profile,
  .use-case-layout,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .results-grid,
  .differentiator-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .site-header,
  .section,
  .proof-strip,
  .site-footer,
  .differentiator-inner {
    width: min(calc(100% - 28px), var(--max));
  }

  .section {
    padding: 78px 0;
  }

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

  h1 {
    font-size: clamp(3rem, 18vw, 4.7rem);
  }

  .hero-media img {
    width: 140vw;
    opacity: 0.46;
  }

  .hero-radar,
  .orbital-graphic {
    display: none;
  }

  .hero-metrics,
  .services-grid,
  .results-grid,
  .differentiator-grid,
  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip span {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

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