:root {
  --ink: #f7f3ff;
  --muted: #bdb4d5;
  --dim: #7f7897;
  --void: #05050d;
  --panel: rgba(18, 16, 33, 0.82);
  --panel-strong: rgba(30, 24, 54, 0.92);
  --line: rgba(177, 125, 255, 0.22);
  --purple: #9a63ff;
  --violet: #6d43ff;
  --cyan: #5fe6ff;
  --green: #67f0aa;
  --hot: #ff4f9a;
  --amber: #ffc76d;
  --shadow: 0 24px 80px rgba(6, 5, 20, 0.54);
  --radius-lg: 34px;
  --radius-md: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(154, 99, 255, 0.32), transparent 30rem),
    radial-gradient(circle at 88% 12%, rgba(95, 230, 255, 0.16), transparent 26rem),
    linear-gradient(135deg, #080715 0%, #080814 36%, #101020 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.23;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

.section-shell {
  width: min(1180px, calc(100vw - 42px));
  margin: 0 auto;
}

.site-header {
  width: min(1220px, calc(100vw - 28px));
  position: sticky;
  top: 14px;
  z-index: 20;
  margin: 14px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 7, 18, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(154, 99, 255, 0.14);
  border: 1px solid rgba(177, 125, 255, 0.36);
  box-shadow: 0 0 32px rgba(154, 99, 255, 0.55);
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-size: 1.02rem; letter-spacing: -0.03em; }
.brand-copy small { color: var(--muted); text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.64rem; }

.site-nav { display: flex; align-items: center; gap: 6px; }
.site-nav a, .nav-toggle {
  border: 0;
  border-radius: 999px;
  padding: 11px 14px;
  color: var(--muted);
  background: transparent;
  font: 600 0.92rem "Space Grotesk", sans-serif;
}
.site-nav a:hover { color: var(--ink); background: rgba(255,255,255,0.07); }
.site-nav .nav-cta {
  color: #080711;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  box-shadow: 0 12px 32px rgba(95, 230, 255, 0.18);
}
.nav-toggle { display: none; color: var(--ink); cursor: pointer; }

.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  align-items: center;
  gap: 38px;
  padding: 74px 0 42px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d5c7ff;
}
.eyebrow span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 20px rgba(103, 240, 170, 0.9);
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(3.4rem, 7.2vw, 7.2rem);
  line-height: 0.9;
  letter-spacing: -0.078em;
}
h2 {
  margin-bottom: 14px;
  font-size: clamp(2.1rem, 4vw, 4.7rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
}
h3 { font-size: 1.38rem; line-height: 1.05; letter-spacing: -0.04em; }
p { color: var(--muted); line-height: 1.65; }

.hero-lede { max-width: 720px; font-size: 1.22rem; }
.hero-actions, .founder-links, .contact-card { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid var(--line);
}
.button.primary { color: #070711; background: linear-gradient(135deg, var(--cyan), #b992ff 60%, #ffffff); }
.button.secondary { color: var(--ink); background: rgba(255,255,255,0.07); }

.signal-strip {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.signal-strip div, .trust-band, .service-card, .engagement-card, .lab-card, .contact-section, .founder-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.035));
  box-shadow: var(--shadow);
}
.signal-strip div {
  min-height: 118px;
  border-radius: var(--radius-md);
  padding: 18px;
}
.signal-strip strong, .signal-strip span { display: block; }
.signal-strip strong { font-size: 1.08rem; margin-bottom: 8px; }
.signal-strip span { color: var(--muted); font-size: 0.92rem; line-height: 1.45; }

.command-card {
  position: relative;
  overflow: hidden;
  min-height: 590px;
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(95, 230, 255, 0.22);
  background:
    radial-gradient(circle at 50% 28%, rgba(154,99,255,0.4), transparent 16rem),
    linear-gradient(180deg, rgba(18,16,33,0.95), rgba(6,7,18,0.95));
  box-shadow: var(--shadow), inset 0 0 80px rgba(95, 230, 255, 0.06);
}
.card-topline { display: flex; gap: 8px; align-items: center; color: var(--dim); font-family: "IBM Plex Mono", monospace; font-size: 0.72rem; text-transform: uppercase; }
.card-topline span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.26); }
.card-topline span:first-child { background: var(--hot); }
.card-topline span:nth-child(2) { background: var(--amber); }
.card-topline span:nth-child(3) { background: var(--green); }
.card-topline small { margin-left: auto; }

.radar-orb {
  position: relative;
  width: min(320px, 76vw);
  aspect-ratio: 1;
  margin: 44px auto 30px;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle, rgba(177,125,255,0.25) 0 1px, transparent 1px 39px),
    conic-gradient(from 280deg, rgba(95,230,255,0.05), rgba(154,99,255,0.42), rgba(255,79,154,0.12), rgba(95,230,255,0.05));
  border: 1px solid rgba(177,125,255,0.38);
}
.radar-orb:before, .radar-orb:after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 50%;
  height: 1px;
  transform-origin: left center;
  background: linear-gradient(90deg, var(--cyan), transparent);
  animation: sweep 5s linear infinite;
}
.radar-orb:after { animation-delay: -2.5s; opacity: 0.45; }
.radar-orb i { position: absolute; width: 14px; height: 14px; border-radius: 50%; background: var(--hot); box-shadow: 0 0 22px var(--hot); }
.radar-orb i:nth-child(1) { left: 22%; top: 38%; }
.radar-orb i:nth-child(2) { right: 22%; top: 28%; background: var(--cyan); box-shadow: 0 0 22px var(--cyan); }
.radar-orb i:nth-child(3) { left: 52%; bottom: 18%; background: var(--amber); box-shadow: 0 0 22px var(--amber); }
.radar-orb i:nth-child(4) { right: 35%; top: 54%; background: var(--green); box-shadow: 0 0 22px var(--green); }
@keyframes sweep { to { transform: rotate(360deg); } }

.command-card h2 { font-size: 2.5rem; }
.command-card dl { display: grid; gap: 10px; margin: 28px 0 0; }
.command-card dl div { display: flex; justify-content: space-between; gap: 18px; padding: 12px 0; border-top: 1px solid rgba(255,255,255,0.12); }
.command-card dt { color: var(--dim); font-family: "IBM Plex Mono", monospace; text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.7rem; }
.command-card dd { margin: 0; color: var(--ink); font-weight: 700; text-align: right; }

.trust-band {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 24px;
  align-items: center;
  padding: 24px;
  border-radius: var(--radius-lg);
}
.trust-band p { margin: 0; font-size: 1.08rem; color: var(--ink); }
.trust-band div { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.trust-band span, .credential-grid span, .service-card li {
  border-radius: 999px;
  border: 1px solid rgba(177,125,255,0.24);
  background: rgba(255,255,255,0.055);
  color: #ddd4f7;
}
.trust-band span { padding: 9px 12px; font-size: 0.88rem; }

.section-heading { max-width: 780px; margin-bottom: 32px; }
.services-section, .method-section, .engagement-section, .founder-section, .labs-section, .contact-section { padding-top: 96px; }
.service-grid, .engagement-grid, .lab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card, .engagement-card, .lab-card {
  border-radius: var(--radius-md);
  padding: 24px;
  min-height: 300px;
}
.service-card small, .lab-kicker {
  display: inline-flex;
  margin-bottom: 42px;
  font-family: "IBM Plex Mono", monospace;
  color: var(--cyan);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.73rem;
}
.service-card p { min-height: 100px; }
.service-card ul { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.service-card li { padding: 7px 9px; font-size: 0.78rem; color: var(--muted); }

.method-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
}
.method-timeline article { min-height: 270px; padding: 24px; border-right: 1px solid var(--line); }
.method-timeline article:last-child { border-right: 0; }
.method-timeline span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 44px;
  border-radius: 50%;
  background: rgba(154,99,255,0.18);
  border: 1px solid rgba(177,125,255,0.35);
  font-family: "IBM Plex Mono", monospace;
}

.engagement-card { min-height: 230px; background: linear-gradient(160deg, rgba(38,31,70,0.84), rgba(8,8,20,0.84)); }
.engagement-card strong { color: var(--cyan); }

.founder-card {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 28px;
  padding: 30px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 12% 8%, rgba(95,230,255,0.14), transparent 22rem),
    linear-gradient(160deg, rgba(29,24,55,0.92), rgba(9,9,22,0.92));
}
.founder-title { font-size: 1.14rem; }
.founder-links a {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 700;
}
.credential-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.credential-grid span { padding: 8px 10px; font-size: 0.84rem; }

.lab-grid { grid-template-columns: repeat(2, 1fr); }
.lab-card { min-height: 360px; display: flex; flex-direction: column; justify-content: flex-end; position: relative; overflow: hidden; }
.lab-card:before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  transform: translateY(-42%);
}
.lab-card h3 { font-size: 2.2rem; }
.lab-card a { color: var(--cyan); font-weight: 800; }
.lab-card.radar { background: radial-gradient(circle at 70% 0%, rgba(255,79,154,0.28), transparent 22rem), rgba(255,255,255,0.045); }
.lab-card.evening { background: radial-gradient(circle at 30% 0%, rgba(95,230,255,0.2), transparent 22rem), rgba(255,255,255,0.045); }

.contact-section {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 30px;
  align-items: center;
  margin-top: 96px;
  margin-bottom: 54px;
  padding: 32px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 86% 20%, rgba(95,230,255,0.15), transparent 20rem),
    linear-gradient(160deg, rgba(34,25,62,0.9), rgba(8,8,20,0.94));
}
.contact-card { align-items: stretch; flex-direction: column; padding: 24px; border-radius: var(--radius-md); background: rgba(0,0,0,0.22); border: 1px solid var(--line); }
.contact-card .button { width: 100%; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 0 54px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.site-footer div { display: grid; gap: 5px; }
.site-footer strong { color: var(--ink); }
.site-footer nav { display: flex; gap: 16px; flex-wrap: wrap; }
.site-footer a { color: #d8ceff; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 120ms; }
.delay-2 { transition-delay: 220ms; }

@media (max-width: 980px) {
  .site-header { border-radius: 24px; align-items: flex-start; }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 68px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 22px;
    background: rgba(9,9,22,0.96);
    border: 1px solid var(--line);
  }
  .site-nav.open { display: flex; }
  .hero, .trust-band, .founder-card, .contact-section { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 52px; }
  .signal-strip, .service-grid, .method-timeline, .engagement-grid { grid-template-columns: 1fr 1fr; }
  .trust-band div { justify-content: flex-start; }
}

@media (max-width: 680px) {
  .section-shell { width: min(100vw - 28px, 1180px); }
  h1 { font-size: clamp(3rem, 17vw, 5.4rem); }
  .signal-strip, .service-grid, .method-timeline, .engagement-grid, .lab-grid { grid-template-columns: 1fr; }
  .method-timeline article { border-right: 0; border-bottom: 1px solid var(--line); }
  .method-timeline article:last-child { border-bottom: 0; }
  .command-card { min-height: auto; }
  .site-footer { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
.logo-showcase {
  width: min(250px, 68vw);
  margin: 6px auto 18px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(177, 125, 255, 0.36);
  box-shadow: 0 22px 70px rgba(154, 99, 255, 0.28);
}
.logo-showcase img { display: block; width: 100%; height: auto; }

.founder-logo {
  width: min(230px, 78vw);
  border-radius: 28px;
  margin: 0 0 22px;
  border: 1px solid rgba(177, 125, 255, 0.36);
  box-shadow: 0 22px 70px rgba(154, 99, 255, 0.25);
}

