@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Space+Mono:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap");

:root {
  --bg: #050707;
  --panel: rgba(8, 14, 15, 0.78);
  --panel-2: rgba(11, 20, 22, 0.9);
  --ink: #f3f6f4;
  --muted: #9b9f9f;
  --dim: #666d6d;
  --cyan: #00f6f2;
  --cyan-soft: rgba(0, 246, 242, 0.16);
  --cyan-line: rgba(0, 246, 242, 0.34);
  --danger: #ff2727;
  --line: rgba(163, 255, 252, 0.16);
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.58);
  --mono: "Space Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Space Grotesk", Inter, ui-sans-serif, system-ui, sans-serif;
  --asset-hero-molecule: url("/hero-lattice.png");
  --asset-satellite: url("/satellite-space.png");
  --asset-molecule-cluster: url("/polymer-formation.png");
  --asset-tech-map: url("/hero-lattice.png");
  --asset-drone: url("/drone-dusk.png");
  --asset-leadership: url("/founder-arv.png");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 4%, rgba(0, 246, 242, 0.2), transparent 16rem),
    radial-gradient(circle at 72% 16%, rgba(0, 246, 242, 0.1), transparent 22rem),
    linear-gradient(180deg, #050707 0%, #080909 46%, #040505 100%);
  font-family: var(--sans);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  opacity: 0.28;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 120px 120px, 120px 120px, 5px 5px;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), transparent 32%, rgba(0, 0, 0, 0.74)),
    radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.58) 76%);
}

body.loaded .loader {
  opacity: 0;
  pointer-events: none;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: #020303;
  transition: opacity 0.35s ease;
}

.loader span {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(0, 246, 242, 0.18);
  border-top-color: var(--cyan);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

#stars {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.55;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.shell {
  width: min(1630px, calc(100% - 88px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 98px;
  padding: 0 clamp(32px, 3.2vw, 66px);
  border-bottom: 1px solid rgba(0, 246, 242, 0.12);
  background: rgba(3, 5, 5, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.brand-logo {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  overflow: hidden;
  border: 1px solid var(--cyan-line);
  background: rgba(0, 246, 242, 0.08);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: screen;
}

.brand-text {
  display: grid;
  gap: 4px;
}

.brand-text strong {
  color: var(--ink);
  font-family: var(--mono);
  font-size: 1.65rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-text small,
.eyebrow,
nav a,
.button,
.mission-chip span,
.metric-strip span,
.mockup-stats span,
.footer,
.fault-list,
.benefit-readout,
label {
  font-family: var(--mono);
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-text small,
.eyebrow {
  color: var(--cyan);
  font-size: 0.86rem;
  font-weight: 800;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 46px);
}

nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
  transition: color 0.2s ease, transform 0.2s ease;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

nav a:hover {
  color: var(--cyan);
  transform: translateY(-1px);
}

nav a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  min-width: 150px;
  justify-content: center;
  color: var(--cyan);
  border: 1px solid var(--cyan-line);
  background: rgba(0, 246, 242, 0.08);
}

.nav-cta::after {
  display: none;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--cyan-line);
  background: rgba(0, 246, 242, 0.06);
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 6px auto;
  background: var(--cyan);
}

.cinematic-frame {
  position: relative;
}

.cinematic-frame::before,
.cinematic-frame::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  pointer-events: none;
  border-color: var(--cyan-line);
}

.cinematic-frame::before {
  left: 24px;
  bottom: 30px;
  border-left: 1px solid;
  border-bottom: 1px solid;
}

.cinematic-frame::after {
  right: 24px;
  top: 30px;
  border-right: 1px solid;
  border-top: 1px solid;
}

.hero {
  min-height: calc(100vh - 98px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(64px, 8vw, 110px) clamp(38px, 5vw, 86px);
}

.hero #material-canvas {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.43;
  filter: blur(0.2px) saturate(1.2);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 67% 30%, rgba(0, 246, 242, 0.22), transparent 18rem),
    var(--asset-hero-molecule) center right 4% / min(62vw, 980px) auto no-repeat,
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.28) 58%, rgba(0, 0, 0, 0.8)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.58), transparent 38%, rgba(0, 0, 0, 0.34));
  opacity: 0.92;
}

.hero-copy {
  width: min(1260px, 100%);
  display: grid;
  gap: 28px;
}

h1,
h2,
h3,
p,
blockquote {
  margin: 0;
}

h1 {
  max-width: 1280px;
  font-size: 8.4rem;
  line-height: 0.93;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 span,
blockquote em,
.case-display h2,
.mission-line article:nth-child(2) h3 {
  color: var(--cyan);
  font-style: normal;
  text-shadow: 0 0 28px rgba(0, 246, 242, 0.34);
}

h2 {
  max-width: 980px;
  font-size: 4.4rem;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  font-size: 2rem;
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lede,
.section-copy p,
.section-header p,
.page-hero p,
.form-card p,
.contact-card p,
.timeline-item p,
.photo-proof p,
.benefit-grid p,
.pain-grid p,
.use-list p,
.faq p,
.mission-line p,
.case-display p {
  color: var(--muted);
  font-size: 1.24rem;
  line-height: 1.75;
}

.lede {
  max-width: 980px;
}

.hero-actions,
.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.button {
  min-height: 58px;
  min-width: 210px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid var(--cyan-line);
  color: var(--cyan);
  background: rgba(0, 246, 242, 0.055);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: rgba(0, 246, 242, 0.12);
  box-shadow: 0 0 42px rgba(0, 246, 242, 0.18);
}

.button:active {
  transform: translateY(0) scale(0.985);
}

.button.primary {
  color: #001313;
  font-weight: 950;
  background: var(--cyan);
  border-color: var(--cyan);
}

.button.secondary {
  background: rgba(5, 9, 9, 0.74);
}

.quote-section {
  min-height: 76vh;
  display: grid;
  place-items: center;
  gap: 34px;
  padding: 100px clamp(28px, 7vw, 140px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.section-mark {
  width: 74px;
  height: 6px;
  background: var(--cyan);
  box-shadow: 0 0 24px rgba(0, 246, 242, 0.42);
}

blockquote {
  max-width: 1480px;
  font-size: 5.2rem;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: 0;
}

.quote-section p {
  color: var(--muted);
  font-family: var(--mono);
  text-transform: uppercase;
}

.section {
  padding: clamp(84px, 10vw, 150px) 0;
}

.section-copy,
.section-header,
.page-hero {
  display: grid;
  gap: 24px;
}

.problem-layout,
.prototype,
.contact-layout,
.demo-lab,
.grid-two {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(42px, 7vw, 120px);
  align-items: center;
}

.fault-list {
  display: grid;
  gap: 22px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: var(--danger);
  font-size: 1.15rem;
}

.fault-list li {
  position: relative;
  padding-left: 40px;
}

.fault-list li::before {
  content: "!";
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid var(--danger);
  border-radius: 50%;
  font-size: 0.8rem;
}

.molecule-panel {
  position: relative;
  min-height: 650px;
  border: 1px solid var(--cyan-line);
  background:
    linear-gradient(rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.72)),
    var(--asset-molecule-cluster) center / cover no-repeat,
    linear-gradient(rgba(0, 246, 242, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 246, 242, 0.035) 1px, transparent 1px),
    rgba(0, 20, 21, 0.12);
  background-size: auto, cover, 46px 46px, 46px 46px, auto;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.molecule-cluster {
  position: absolute;
  inset: 0;
  opacity: 0.38;
  filter: drop-shadow(0 0 18px rgba(0, 246, 242, 0.42));
}

.molecule-cluster span {
  position: absolute;
  width: 230px;
  aspect-ratio: 1;
  border: 2px solid rgba(0, 246, 242, 0.88);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent 46%),
    rgba(0, 246, 242, 0.08);
  clip-path: polygon(50% 0, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  animation: drift 6s ease-in-out infinite;
}

.molecule-cluster span:nth-child(1) { left: 14%; top: 10%; }
.molecule-cluster span:nth-child(2) { left: 54%; top: 9%; animation-delay: -1s; }
.molecule-cluster span:nth-child(3) { left: 32%; top: 38%; width: 320px; animation-delay: -2s; }
.molecule-cluster span:nth-child(4) { left: 64%; top: 46%; animation-delay: -3s; }

.molecule-cluster i {
  position: absolute;
  height: 2px;
  width: 280px;
  background: rgba(0, 246, 242, 0.56);
  transform-origin: left;
}

.molecule-cluster i:nth-of-type(1) { left: 28%; top: 28%; transform: rotate(18deg); }
.molecule-cluster i:nth-of-type(2) { left: 48%; top: 34%; transform: rotate(118deg); }
.molecule-cluster i:nth-of-type(3) { left: 41%; top: 60%; transform: rotate(-28deg); }
.molecule-cluster i:nth-of-type(4) { left: 58%; top: 49%; transform: rotate(42deg); }

@keyframes drift {
  50% { transform: translateY(-18px) rotate(7deg); }
}

.solution-overlay {
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 7%;
  padding: 34px 40px;
  border: 1px solid rgba(0, 246, 242, 0.24);
  background: rgba(5, 10, 11, 0.82);
  backdrop-filter: blur(12px);
}

.solution-overlay strong {
  display: block;
  margin-top: 14px;
  max-width: 820px;
  font-size: 1.45rem;
  line-height: 1.45;
}

.methodology {
  min-height: 86vh;
}

.mission-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 6vw, 86px);
  margin-top: clamp(60px, 9vw, 130px);
}

.mission-line::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 72px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.mission-line article {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.icon,
.panel-number,
.avatar {
  display: grid;
  place-items: center;
  width: 146px;
  height: 146px;
  margin-bottom: 34px;
  color: var(--cyan);
  border: 1px solid var(--cyan-line);
  background: rgba(0, 246, 242, 0.06);
  font-family: var(--mono);
  font-weight: 900;
}

.use-case-console {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(44px, 6vw, 98px);
  align-items: stretch;
}

.use-menu {
  display: grid;
  gap: 12px;
}

.use-menu article {
  min-height: 140px;
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 26px 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.018);
  font-family: var(--mono);
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.use-menu article:hover {
  transform: translateX(4px);
  border-color: rgba(0, 246, 242, 0.44);
}

.use-menu article.active {
  border-color: var(--cyan);
  box-shadow: inset 6px 0 0 var(--cyan), 0 0 42px rgba(0, 246, 242, 0.1);
  background: rgba(0, 246, 242, 0.08);
}

.use-menu span {
  color: var(--dim);
  font-weight: 900;
}

.use-menu strong {
  color: var(--cyan);
  font-size: 1.12rem;
}

.case-display {
  position: relative;
  min-height: 680px;
  padding: clamp(38px, 4vw, 64px);
  overflow: hidden;
  border: 1px solid rgba(0, 246, 242, 0.2);
  background:
    linear-gradient(90deg, rgba(5, 8, 9, 0.86), rgba(5, 8, 9, 0.38) 56%, rgba(5, 8, 9, 0.78)),
    radial-gradient(circle at 74% 24%, rgba(0, 246, 242, 0.16), transparent 21rem),
    rgba(16, 24, 25, 0.46);
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.case-display[data-case="drone"] {
  background:
    linear-gradient(90deg, rgba(5, 8, 9, 0.9), rgba(5, 8, 9, 0.48) 58%, rgba(5, 8, 9, 0.78)),
    var(--asset-drone) center / cover no-repeat,
    rgba(16, 24, 25, 0.46);
}

.case-display[data-case="satellite"] {
  background:
    linear-gradient(90deg, rgba(5, 8, 9, 0.88), rgba(5, 8, 9, 0.5) 58%, rgba(5, 8, 9, 0.82)),
    var(--asset-satellite) center / cover no-repeat,
    rgba(16, 24, 25, 0.46);
}

.case-display[data-case="defence"] {
  background:
    linear-gradient(90deg, rgba(5, 8, 9, 0.9), rgba(5, 8, 9, 0.42) 58%, rgba(5, 8, 9, 0.82)),
    var(--asset-tech-map) center / cover no-repeat,
    rgba(16, 24, 25, 0.46);
}

.case-display[data-case="space"] {
  background:
    linear-gradient(90deg, rgba(5, 8, 9, 0.9), rgba(5, 8, 9, 0.48) 58%, rgba(5, 8, 9, 0.82)),
    var(--asset-molecule-cluster) center / cover no-repeat,
    rgba(16, 24, 25, 0.46);
}

.case-display.is-switching {
  animation: consoleSwitch 0.32s ease;
}

@keyframes consoleSwitch {
  0% { opacity: 0.44; transform: translateY(6px); }
  100% { opacity: 1; transform: translateY(0); }
}

.drone-silhouette {
  position: absolute;
  inset: 18% 2% 10%;
  opacity: 0.22;
  background:
    radial-gradient(ellipse at 80% 48%, rgba(255, 255, 255, 0.42), transparent 7%),
    linear-gradient(9deg, transparent 38%, rgba(190, 210, 210, 0.55) 39% 45%, transparent 46%),
    linear-gradient(174deg, transparent 40%, rgba(200, 210, 210, 0.55) 41% 47%, transparent 48%),
    linear-gradient(90deg, transparent 4%, rgba(160, 170, 170, 0.8) 12% 86%, transparent 94%);
  clip-path: polygon(0 46%, 58% 30%, 100% 39%, 78% 54%, 45% 58%, 0 54%);
}

.case-display[data-case="satellite"] .drone-silhouette {
  inset: 18% 0 14%;
  opacity: 0.22;
  clip-path: none;
  background:
    radial-gradient(circle at 50% 50%, rgba(210, 230, 230, 0.58), transparent 11%),
    linear-gradient(90deg, transparent 4%, rgba(150, 170, 170, 0.66) 5% 42%, transparent 43% 57%, rgba(150, 170, 170, 0.66) 58% 95%, transparent 96%);
}

.case-display[data-case="defence"] .drone-silhouette {
  opacity: 0.2;
  background:
    linear-gradient(135deg, rgba(0, 246, 242, 0.2), transparent),
    radial-gradient(circle at 50% 42%, rgba(0, 246, 242, 0.55), transparent 4%),
    repeating-linear-gradient(40deg, rgba(0, 246, 242, 0.2), rgba(0, 246, 242, 0.2) 2px, transparent 2px, transparent 34px);
  clip-path: none;
}

.case-display[data-case="space"] .drone-silhouette {
  opacity: 0.28;
  background:
    radial-gradient(circle at 45% 42%, rgba(220, 240, 240, 0.62), transparent 20%),
    radial-gradient(circle at 55% 52%, rgba(0, 246, 242, 0.4), transparent 26%),
    repeating-linear-gradient(120deg, rgba(0, 246, 242, 0.18), rgba(0, 246, 242, 0.18) 2px, transparent 2px, transparent 48px);
  clip-path: polygon(20% 0, 82% 8%, 96% 72%, 40% 100%, 4% 50%);
}

.case-display h2,
.case-display p,
.benefit-readout {
  position: relative;
  z-index: 1;
}

.case-display p {
  max-width: 980px;
  margin-top: 30px;
}

.benefit-readout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 32px;
  margin-top: 160px;
  align-items: end;
}

.benefit-readout ul {
  display: grid;
  gap: 18px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.benefit-readout li::before {
  content: ">";
  margin-right: 16px;
  color: var(--cyan);
}

.benefit-readout aside {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.55);
}

.benefit-readout aside p {
  color: var(--cyan);
  margin: 0;
  font-family: var(--mono);
  font-size: 0.96rem;
}

.benefit-readout aside span {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted);
}

.prototype {
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1fr);
}

.material-classes {
  padding-top: 40px;
}

.material-grid,
.principle-grid,
.leader-grid,
.origin-grid {
  display: grid;
  gap: 34px;
}

.material-grid {
  grid-template-columns: repeat(3, 1fr);
}

.material-grid article,
.principle-grid article,
.leader-card,
.thesis-block,
.direct-coordinates {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.018);
  box-shadow: var(--shadow);
}

.material-grid article {
  min-height: 520px;
  display: grid;
  align-content: start;
  gap: 30px;
  padding: 54px;
}

.material-grid article div {
  align-self: end;
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 70px;
}

.material-grid article div span {
  color: var(--cyan);
  font-family: var(--mono);
  text-transform: uppercase;
}

.material-grid article div strong {
  color: var(--muted);
  font-weight: 500;
  line-height: 1.5;
}

.mockup,
.lab-panel,
.visual-card {
  overflow: hidden;
  border: 1px solid rgba(0, 246, 242, 0.2);
  background: rgba(0, 12, 13, 0.45);
  box-shadow: var(--shadow);
}

.mockup {
  min-height: 540px;
  display: grid;
  grid-template-rows: 42px 1fr auto;
}

.mockup-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
}

.mockup-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
}

.mockup canvas,
.lab-panel canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.mockup-stats {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  gap: 14px;
  padding: 16px;
  border-top: 1px solid var(--line);
}

.mockup-stats span,
.mockup-stats strong {
  font-size: 0.9rem;
}

.proof-grid,
.benefit-grid,
.pain-grid,
.founder-grid,
.admin-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.about-hero,
.contact-hero {
  min-height: 74vh;
  display: grid;
  align-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.thesis-block {
  width: min(1320px, calc(100% - 88px));
  padding: 74px 84px;
}

.thesis-block h2 {
  font-size: 2.6rem;
}

.thesis-block p {
  max-width: 1260px;
  color: var(--muted);
  font-size: 1.35rem;
  line-height: 1.8;
  margin-top: 34px;
}

.origin-grid {
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.origin-grid article {
  padding: 30px 10px;
}

.origin-grid p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.35rem;
  line-height: 1.8;
  margin-top: 28px;
}

.leader-grid {
  grid-template-columns: 1fr 1fr;
}

.leader-card {
  padding: 0 0 36px;
}

.leader-card h3,
.leader-card p,
.leader-card blockquote {
  margin-left: 34px;
  margin-right: 34px;
}

.leader-card h3 {
  margin-top: 34px;
}

.leader-card blockquote {
  margin-top: 34px;
  padding-left: 24px;
  border-left: 4px solid var(--cyan);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.5;
}

.leader-visual {
  height: 520px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.portrait-one,
.portrait-two {
  background:
    linear-gradient(135deg, rgba(0, 246, 242, 0.18), transparent 42%),
    url("/founder-william.png") center / cover no-repeat,
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.2), transparent 10%),
    repeating-linear-gradient(130deg, rgba(0, 246, 242, 0.18), rgba(0, 246, 242, 0.18) 2px, transparent 2px, transparent 34px),
    radial-gradient(circle at 50% 50%, rgba(0, 246, 242, 0.12), transparent 34%),
    #090d0d;
}

.portrait-one {
  clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%);
}

.portrait-two {
  background:
    linear-gradient(145deg, rgba(0, 246, 242, 0.14), transparent 34%),
    url("/founder-arv.png") center / cover no-repeat,
    repeating-linear-gradient(35deg, rgba(0, 246, 242, 0.15), rgba(0, 246, 242, 0.15) 2px, transparent 2px, transparent 28px),
    radial-gradient(circle at 52% 42%, rgba(0, 246, 242, 0.18), transparent 28%),
    #090d0d;
}

.principle-grid {
  grid-template-columns: repeat(2, 1fr);
}

.principle-grid article {
  min-height: 260px;
  padding: 52px;
}

.photo-proof,
.benefit-grid article,
.pain-grid article,
.mission-panel,
.founder-card,
.timeline-item,
.form-card,
.contact-card,
.controls-card,
.admin-card,
.admin-list {
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: linear-gradient(180deg, rgba(0, 246, 242, 0.05), rgba(255, 255, 255, 0.018));
  box-shadow: var(--shadow);
}

.photo-proof,
.benefit-grid article,
.pain-grid article,
.mission-panel,
.founder-card,
.timeline-item {
  padding: 28px;
}

.proof-image {
  position: relative;
  display: block;
  height: 230px;
  margin: -8px -8px 24px;
  overflow: hidden;
  border: 1px solid var(--cyan-line);
}

.proof-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.proof-image.cohort {
  background:
    linear-gradient(135deg, rgba(0, 246, 242, 0.24), rgba(0, 0, 0, 0.2)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.13) 18px, transparent 18px, transparent 34px);
}

.proof-image.certificate {
  background:
    linear-gradient(180deg, rgba(245, 245, 238, 0.95), rgba(204, 210, 210, 0.82)),
    linear-gradient(135deg, transparent 0 62%, rgba(0, 246, 242, 0.18) 62%);
}

.proof-image.research {
  background:
    linear-gradient(135deg, rgba(0, 246, 242, 0.16), transparent),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08) 1px, transparent 1px, transparent 18px);
}

.faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

details {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

summary {
  cursor: pointer;
  font-size: 1.45rem;
  font-weight: 850;
}

details p {
  margin-top: 16px;
}

.final-cta,
.page-hero {
  padding: clamp(76px, 10vw, 150px) 0;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.58fr);
  gap: clamp(42px, 7vw, 120px);
  align-items: start;
}

.form-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 26px;
}

.form-card .full,
.form-card button,
.form-status {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 0.84rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  color: var(--ink);
  border: 1px solid rgba(0, 246, 242, 0.18);
  background: rgba(0, 0, 0, 0.34);
  padding: 12px 14px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 246, 242, 0.08);
}

.contact-layout {
  align-items: start;
}

.contact-console {
  display: grid;
  grid-template-columns: minmax(260px, 0.46fr) minmax(0, 1fr);
  gap: 70px;
  align-items: start;
}

.direct-coordinates {
  display: grid;
  gap: 38px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.direct-coordinates div {
  display: grid;
  gap: 12px;
}

.direct-coordinates span {
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
}

.direct-coordinates a,
.direct-coordinates p {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 1.22rem;
  line-height: 1.55;
}

.map-chip {
  min-height: 260px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.map-chip i {
  width: 24px;
  height: 24px;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(0, 246, 242, 0.1);
}

.transmission-form {
  padding: 76px;
}

.transmission-form input,
.transmission-form select,
.transmission-form textarea {
  min-height: 80px;
  font-family: var(--mono);
  font-size: 1.16rem;
}

.transmission-form textarea {
  min-height: 240px;
}

.contact-card {
  padding: 34px;
  display: grid;
  gap: 18px;
}

.contact-card a,
.founder-card a {
  color: var(--cyan);
}

.fine {
  font-size: 0.9rem;
}

.founder-grid {
  grid-template-columns: repeat(2, 1fr);
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 110px minmax(0, 0.35fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.timeline-item span {
  color: var(--cyan);
  font-weight: 900;
}

.demo-lab {
  align-items: stretch;
}

.lab-panel {
  min-height: 560px;
}

.controls-card {
  padding: 28px;
  display: grid;
  gap: 22px;
}

input[type="range"] {
  accent-color: var(--cyan);
}

.readouts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.readouts span {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  color: var(--muted);
}

.admin-grid {
  grid-template-columns: repeat(3, 1fr);
}

.admin-card,
.admin-list {
  padding: 24px;
}

.admin-list {
  grid-column: 1 / -1;
}

.admin-list pre {
  white-space: pre-wrap;
  color: var(--muted);
}

.footer {
  justify-content: space-between;
  padding: 36px 0 56px;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.62s ease, transform 0.62s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .brand-text strong {
    font-size: 1.2rem;
  }

  h1 {
    font-size: 5.5rem;
  }

  h2 {
    font-size: 3.25rem;
  }

  blockquote {
    font-size: 3.65rem;
  }

  .menu-button {
    display: block;
  }

  nav {
    position: absolute;
    left: 22px;
    right: 22px;
    top: 98px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 16px;
    border: 1px solid var(--cyan-line);
    background: rgba(3, 5, 5, 0.97);
  }

  nav.open {
    display: flex;
  }

  .problem-layout,
  .prototype,
  .contact-layout,
  .demo-lab,
  .grid-two,
  .final-cta,
  .use-case-console,
  .contact-console,
  .origin-grid,
  .leader-grid {
    grid-template-columns: 1fr;
  }

  .mission-line,
  .proof-grid,
  .benefit-grid,
  .pain-grid,
  .admin-grid,
  .material-grid,
  .principle-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mission-line::before {
    display: none;
  }

  .benefit-readout {
    grid-template-columns: 1fr;
    margin-top: 70px;
  }

  .molecule-panel,
  .case-display {
    min-height: 520px;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(100% - 28px, 1630px);
  }

  .topbar {
    min-height: 78px;
    padding: 0 18px;
  }

  nav {
    top: 78px;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .brand-text strong {
    font-size: 1rem;
  }

  .brand-text small {
    display: none;
  }

  .hero {
    min-height: calc(100vh - 78px);
    padding: 54px 18px;
  }

  h1 { font-size: 3.6rem; }
  h2 { font-size: 2.65rem; }
  h3 { font-size: 1.55rem; }
  blockquote { font-size: 2.55rem; }

  .button {
    width: 100%;
    min-width: 0;
  }

  .mission-line,
  .proof-grid,
  .benefit-grid,
  .pain-grid,
  .founder-grid,
  .admin-grid,
  .form-card,
  .readouts,
  .material-grid,
  .principle-grid {
    grid-template-columns: 1fr;
  }

  .icon {
    width: 96px;
    height: 96px;
  }

  .mockup-stats {
    grid-template-columns: 1fr 1fr;
  }

  .molecule-panel,
  .case-display,
  .mockup {
    min-height: 430px;
  }

  .case-display {
    padding: 24px;
  }

  .thesis-block {
    width: min(100% - 28px, 1320px);
    padding: 34px 22px;
  }

  .transmission-form {
    padding: 24px;
  }

  .leader-visual {
    height: 360px;
  }

  .material-grid article,
  .principle-grid article {
    min-height: auto;
    padding: 28px;
  }
}

/* Replit mission-control clone layer */
body {
  background: #030303;
  font-family: var(--sans);
}

body::before {
  z-index: -2;
  opacity: 0.18;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 4px 4px, 100% 4px;
}

body::after {
  z-index: -1;
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 246, 242, 0.08), transparent 26rem),
    linear-gradient(90deg, rgba(0, 0, 0, 0.76), transparent 35%, rgba(0, 0, 0, 0.78));
}

.topbar {
  min-height: 86px;
  padding: 0 34px;
  background: rgba(1, 1, 1, 0.88);
  border-bottom: 1px solid rgba(163, 255, 252, 0.14);
  backdrop-filter: blur(14px);
}

.brand {
  gap: 14px;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
}

.brand-text strong,
h1,
h2,
h3,
blockquote {
  font-family: var(--display);
}

.brand-text strong {
  color: var(--ink);
  font-size: 1.45rem;
  letter-spacing: 0.08em;
}

.brand-text small {
  display: none;
}

nav {
  gap: 44px;
}

nav a {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
}

.nav-cta {
  min-width: 150px;
  padding: 17px 28px;
  border: 1px solid rgba(0, 246, 242, 0.36);
  background: rgba(0, 246, 242, 0.08);
}

.hero {
  min-height: calc(100vh - 86px);
  padding: 72px min(5vw, 80px);
  isolation: isolate;
}

.hero #material-canvas {
  display: none;
}

.hero-scrim {
  background:
    var(--asset-hero-molecule) center / cover no-repeat,
    linear-gradient(180deg, rgba(3, 3, 3, 0.16), rgba(3, 3, 3, 0.82) 72%, #030303),
    linear-gradient(90deg, rgba(3, 3, 3, 0.8), rgba(3, 3, 3, 0.36) 52%, rgba(3, 3, 3, 0.88));
  background-blend-mode: screen, normal, normal;
  opacity: 0.42;
}

.hero-copy {
  width: min(1100px, 100%);
  gap: 30px;
}

.eyebrow {
  letter-spacing: 0.2em;
}

.hero .eyebrow::before {
  content: "~";
  margin-right: 10px;
}

h1 {
  max-width: 1180px;
  font-size: 7.8rem;
  line-height: 0.9;
  font-weight: 800;
  text-transform: uppercase;
}

h1 span {
  display: inline;
  color: transparent;
  background: linear-gradient(90deg, var(--cyan), rgba(0, 246, 242, 0.45));
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 36px rgba(0, 246, 242, 0.42);
}

.lede {
  max-width: 760px;
  color: rgba(235, 238, 236, 0.66);
  font-size: 1.13rem;
  line-height: 1.78;
}

.button {
  min-height: 58px;
  min-width: 232px;
  border-radius: 0;
  letter-spacing: 0.1em;
}

.button.primary {
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: none;
}

.button.primary::after {
  content: ">";
  display: inline-block;
  margin-left: 10px;
}

.quote-section {
  min-height: 78vh;
  background: #030303;
}

blockquote {
  font-weight: 500;
  letter-spacing: 0;
}

blockquote em {
  font-family: var(--sans);
  font-weight: 600;
}

.problem-layout {
  align-items: center;
}

.molecule-panel {
  background:
    linear-gradient(rgba(3, 3, 3, 0.04), rgba(3, 3, 3, 0.62)),
    var(--asset-molecule-cluster) center / cover no-repeat,
    rgba(8, 14, 15, 0.7);
  background-size: auto, cover, auto;
  min-height: 650px;
}

.molecule-cluster {
  display: none;
}

.solution-overlay {
  left: 6%;
  right: 6%;
  bottom: 7%;
  background: rgba(3, 3, 3, 0.86);
}

.mission-line {
  position: relative;
  align-items: start;
}

.mission-line::before {
  content: "";
  position: absolute;
  left: 11%;
  right: 11%;
  top: 72px;
  height: 1px;
  background: rgba(0, 246, 242, 0.48);
}

.mission-line article {
  background: transparent;
  border: 0;
  box-shadow: none;
  text-align: center;
}

.mission-line .icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 34px;
  background: rgba(10, 22, 23, 0.64);
  border: 1px solid rgba(0, 246, 242, 0.32);
  color: var(--cyan);
  font-family: var(--mono);
}

.case-display {
  background-size: cover;
  background-position: center;
}

.case-display[data-case="drone"] {
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.9), rgba(3, 3, 3, 0.42) 58%, rgba(3, 3, 3, 0.82)),
    var(--asset-drone) center / cover no-repeat;
}

.case-display[data-case="satellite"] {
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.9), rgba(3, 3, 3, 0.45) 58%, rgba(3, 3, 3, 0.82)),
    var(--asset-satellite) center / cover no-repeat;
}

.case-display[data-case="defence"] {
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.9), rgba(3, 3, 3, 0.42) 58%, rgba(3, 3, 3, 0.82)),
    var(--asset-tech-map) center / cover no-repeat;
}

.case-display[data-case="space"] {
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.9), rgba(3, 3, 3, 0.46) 58%, rgba(3, 3, 3, 0.84)),
    var(--asset-molecule-cluster) center / cover no-repeat;
}

.drone-silhouette {
  display: none;
}

.case-display h2 {
  max-width: 880px;
  color: var(--ink);
  text-shadow: none;
}

.benefit-readout {
  margin-top: 170px;
}

.material-grid article {
  min-height: 560px;
  background: rgba(3, 3, 3, 0.24);
}

.material-grid article:first-child {
  border-color: rgba(0, 246, 242, 0.64);
}

.material-grid article div {
  margin-top: 26px;
  padding: 22px;
}

@media (max-width: 980px) {
  h1 {
    font-size: 5.4rem;
  }

  .mission-line::before {
    display: none;
  }
}

@media (max-width: 680px) {
  .topbar {
    min-height: 78px;
  }

  h1 {
    font-size: 3.35rem;
  }

  .hero {
    min-height: calc(100vh - 78px);
  }

  .quote-section {
    min-height: 62vh;
  }
}

/* Motion restoration layer */
.hero #material-canvas {
  display: block;
  z-index: 0;
  opacity: 0.24;
  mix-blend-mode: screen;
  filter: saturate(1.2);
}

.hero-scrim {
  z-index: -1;
  background-position: 50% 50%, center, center;
  animation: heroFieldDrift 18s ease-in-out infinite alternate;
  transform: translate3d(0, var(--hero-parallax, 0px), 0);
}

.hero-copy {
  position: relative;
  z-index: 2;
  transform: translate3d(0, var(--copy-parallax, 0px), 0);
  animation: heroCopyEnter 900ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.cinematic-frame {
  animation: framePulse 4.8s ease-in-out infinite;
}

.hud-corner {
  animation: hudBlink 3.4s steps(2, end) infinite;
}

.brand-logo {
  position: relative;
  overflow: visible;
  filter: drop-shadow(0 0 12px rgba(0, 246, 242, 0.34));
}

.brand-logo::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(0, 246, 242, 0.38);
  border-radius: 50%;
  animation: orbitalPulse 2.6s ease-out infinite;
}

.scanline {
  display: block;
  opacity: 0.46;
  animation: scanSweep 6.5s linear infinite;
}

.molecule-cluster {
  display: block;
  opacity: 0.28;
  mix-blend-mode: screen;
}

.molecule-cluster span {
  animation-duration: 8s;
  animation-timing-function: ease-in-out;
}

.mission-line::before {
  transform-origin: left;
  animation: missionDraw 1.5s ease both, missionPulse 2.7s ease-in-out 1.5s infinite;
}

.mission-line .icon,
.case-display,
.material-grid article,
.use-menu article,
.principle-grid article,
.button {
  transition:
    transform 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease,
    background 240ms ease,
    opacity 240ms ease;
}

.mission-line article:hover .icon,
.material-grid article:hover,
.principle-grid article:hover {
  transform: translateY(-7px);
  border-color: rgba(0, 246, 242, 0.7);
  box-shadow: 0 0 38px rgba(0, 246, 242, 0.12);
}

.use-menu article:hover {
  transform: translateX(8px);
}

.case-display {
  position: relative;
  overflow: hidden;
}

.case-display::before {
  content: "";
  position: absolute;
  inset: -5%;
  pointer-events: none;
  background:
    linear-gradient(100deg, transparent 0 42%, rgba(0, 246, 242, 0.09) 50%, transparent 58%),
    radial-gradient(circle at var(--case-x, 68%) var(--case-y, 42%), rgba(0, 246, 242, 0.18), transparent 22rem);
  opacity: 0.52;
  transform: translate3d(var(--case-drift, 0px), 0, 0);
  animation: panelSweep 7.2s ease-in-out infinite;
}

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

.button {
  position: relative;
  overflow: hidden;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 35%, rgba(255, 255, 255, 0.34) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform 420ms ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(0, 246, 242, 0.18);
}

.button:hover::before {
  transform: translateX(120%);
}

@keyframes heroFieldDrift {
  from {
    background-position: 50% 50%, center, center;
    opacity: 0.38;
  }
  to {
    background-position: 47% 54%, center, center;
    opacity: 0.52;
  }
}

@keyframes heroCopyEnter {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, var(--copy-parallax, 0px), 0);
  }
}

@keyframes framePulse {
  50% {
    opacity: 0.58;
    box-shadow: inset 0 0 34px rgba(0, 246, 242, 0.08);
  }
}

@keyframes hudBlink {
  50% {
    opacity: 0.42;
  }
}

@keyframes orbitalPulse {
  0% {
    opacity: 0.75;
    transform: scale(0.72);
  }
  100% {
    opacity: 0;
    transform: scale(1.72);
  }
}

@keyframes scanSweep {
  from {
    transform: translateY(-12vh);
  }
  to {
    transform: translateY(112vh);
  }
}

@keyframes missionDraw {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes missionPulse {
  50% {
    box-shadow: 0 0 18px rgba(0, 246, 242, 0.5);
    opacity: 0.72;
  }
}

@keyframes panelSweep {
  0%,
  100% {
    transform: translate3d(-5%, 0, 0);
    opacity: 0.32;
  }
  50% {
    transform: translate3d(5%, 0, 0);
    opacity: 0.62;
  }
}

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