:root {
  --bg: #080b12;
  --bg-top: #0d1220;
  --bg-mid: #111931;
  --surface: rgba(10, 14, 23, 0.82);
  --surface-soft: rgba(18, 26, 46, 0.72);
  --panel: #dfe7f5;
  --panel-line: rgba(11, 15, 24, 0.12);
  --text: #edf3ff;
  --muted: #9aa7c2;
  --muted-strong: #6b7998;
  --line: rgba(182, 197, 232, 0.14);
  --line-soft: rgba(182, 197, 232, 0.08);
  --accent: #72a8ff;
  --accent-soft: #9ec2ff;
  --accent-alt: #8af1de;
  --glow: rgba(114, 168, 255, 0.28);
  --shadow: 0 35px 90px rgba(1, 4, 11, 0.42);
  --max-width: 1280px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  background:
    radial-gradient(circle at 14% 18%, rgba(138, 241, 222, 0.08), transparent 18%),
    radial-gradient(circle at 82% 14%, rgba(114, 168, 255, 0.18), transparent 22%),
    radial-gradient(circle at 70% 78%, rgba(114, 168, 255, 0.1), transparent 24%),
    linear-gradient(180deg, #0a0e18 0%, var(--bg-top) 24%, var(--bg-mid) 58%, var(--bg) 100%);
}

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

body::before {
  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: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 92%);
}

body::after {
  background:
    radial-gradient(circle at 50% -10%, rgba(114, 168, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 30%);
  opacity: 0.85;
}

.site-noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.3) 0 0.6px, transparent 0.8px),
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.25) 0 0.6px, transparent 0.8px),
    radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.22) 0 0.6px, transparent 0.8px);
  background-size: 160px 160px;
}

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

.site-shell {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 1rem 0 2.5rem;
}

.site-header {
  position: sticky;
  top: 1rem;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 1.6rem;
  background: rgba(8, 11, 18, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.95rem;
  background:
    linear-gradient(135deg, rgba(114, 168, 255, 0.3), transparent 52%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 12px 30px rgba(0, 0, 0, 0.26);
}

.brand-text {
  display: grid;
  gap: 0.15rem;
}

.brand-text strong {
  font-family: "Syne", sans-serif;
  font-size: 1.03rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand-text span {
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.63rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: inline-flex;
  justify-self: center;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
}

.site-nav a,
.header-cta {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    border-color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.header-cta:hover,
.header-cta:focus-visible,
.primary-link:hover,
.primary-link:focus-visible,
.impact-link:hover,
.impact-link:focus-visible,
.contact-link:hover,
.contact-link:focus-visible {
  transform: translateY(-1px);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.header-cta {
  border: 1px solid rgba(114, 168, 255, 0.3);
  background: linear-gradient(135deg, rgba(114, 168, 255, 0.18), rgba(114, 168, 255, 0.06));
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

main {
  padding-top: 1.5rem;
}

.section-tag {
  margin: 0;
  color: var(--accent-soft);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-tag-dark {
  color: rgba(11, 15, 24, 0.48);
}

.section-tag-light {
  color: rgba(11, 15, 24, 0.45);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(1.6rem, 4vw, 3.8rem);
  align-items: center;
  min-height: calc(100vh - 8rem);
  padding: clamp(2.2rem, 5vw, 4rem) 0 3rem;
}

.hero-copy h1,
.manifesto h2,
.impact-grid h2,
.contact-panel h2 {
  margin: 0;
  letter-spacing: -0.07em;
  line-height: 0.92;
}

.hero-copy h1 {
  margin-top: 1rem;
  max-width: 8ch;
  font-family: "Syne", sans-serif;
  font-size: clamp(4.5rem, 10vw, 8.4rem);
  font-weight: 800;
}

.hero-copy h1 span {
  display: inline-block;
  margin: 0 0.08em;
  color: var(--accent-soft);
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
}

.hero-lead,
.hero-note,
.manifesto-body p,
.capability-head p,
.impact-copy p,
.contact-note,
.stage-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.hero-lead {
  max-width: 36rem;
  margin-top: 1.5rem;
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 2rem;
}

.primary-link,
.impact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.55rem;
  padding: 0.95rem 1.3rem;
  border-radius: 999px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.primary-link {
  border: 1px solid rgba(114, 168, 255, 0.34);
  background:
    linear-gradient(135deg, rgba(114, 168, 255, 0.2), rgba(138, 241, 222, 0.08)),
    rgba(255, 255, 255, 0.03);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 18px 40px rgba(0, 0, 0, 0.2);
}

.hero-note {
  max-width: 26rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.74rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.1rem;
}

.hero-strip span,
.capability-meta span {
  padding: 0.72rem 0.92rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: #cbd7f1;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-stage {
  position: relative;
}

.stage-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(182, 197, 232, 0.14);
  border-radius: 2rem;
  background:
    radial-gradient(circle at 20% 18%, rgba(138, 241, 222, 0.08), transparent 20%),
    radial-gradient(circle at 84% 16%, rgba(114, 168, 255, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(18, 24, 42, 0.94), rgba(7, 10, 17, 0.98));
  box-shadow: var(--shadow);
}

.stage-header,
.stage-footer {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 1rem 1.1rem;
}

.stage-header {
  border-bottom: 1px solid rgba(182, 197, 232, 0.1);
}

.stage-header span {
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: rgba(237, 243, 255, 0.28);
}

.stage-header p {
  margin: 0 0 0 auto;
  color: rgba(237, 243, 255, 0.55);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stage-field {
  position: relative;
  min-height: 34rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(114, 168, 255, 0.06), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent 30%);
}

.field-glow,
.field-grid,
.field-ring,
.field-beam,
.field-slab,
.field-chip {
  position: absolute;
}

.field-glow {
  inset: auto;
  width: 24rem;
  height: 24rem;
  left: 50%;
  top: 48%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle, rgba(114, 168, 255, 0.42) 0%, rgba(114, 168, 255, 0.08) 32%, transparent 68%);
  filter: blur(36px);
  opacity: 0.9;
}

.field-grid {
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.92), transparent 82%);
}

.field-ring {
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 60px rgba(114, 168, 255, 0.05);
  animation: orbit-spin 28s linear infinite;
}

.ring-one {
  width: min(28rem, 72%);
  aspect-ratio: 1;
}

.ring-two {
  width: min(18rem, 48%);
  aspect-ratio: 1;
  animation-duration: 20s;
  animation-direction: reverse;
}

.field-beam {
  left: 50%;
  top: 50%;
  width: 56%;
  height: 0.9rem;
  transform: translate(-50%, -50%) rotate(-18deg);
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(138, 241, 222, 0.42), rgba(114, 168, 255, 0.92), transparent);
  filter: blur(2px);
  box-shadow:
    0 0 36px rgba(114, 168, 255, 0.4),
    0 0 110px rgba(138, 241, 222, 0.16);
  animation: beam-pulse 5.4s ease-in-out infinite;
}

.field-slab {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1.6rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03)),
    rgba(10, 14, 23, 0.42);
  backdrop-filter: blur(10px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 20px 40px rgba(0, 0, 0, 0.16);
}

.slab-one {
  width: 42%;
  height: 7rem;
  left: 12%;
  top: 23%;
  transform: rotate(-16deg);
  animation: drift 9.5s ease-in-out infinite;
}

.slab-two {
  width: 50%;
  height: 8rem;
  right: 10%;
  bottom: 16%;
  transform: rotate(12deg);
  animation: drift 8.5s ease-in-out infinite reverse;
}

.field-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(7, 10, 17, 0.62);
  color: #d7e5ff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(16px);
}

.chip-one {
  top: 16%;
  right: 11%;
}

.chip-two {
  bottom: 24%;
  left: 9%;
}

.chip-three {
  right: 13%;
  bottom: 12%;
}

.stage-footer {
  border-top: 1px solid rgba(182, 197, 232, 0.1);
}

.stage-footer p {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.manifesto {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
  padding: 3rem 0 1.5rem;
}

.manifesto h2 {
  max-width: 8ch;
  font-family: "Syne", sans-serif;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  font-weight: 700;
}

.manifesto-body {
  display: grid;
  gap: 1.2rem;
  max-width: 40rem;
  padding-top: 0.35rem;
}

.capability-rail {
  margin-top: 2.2rem;
  border-top: 1px solid var(--line);
}

.capability-row {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1.2fr) minmax(12rem, 0.8fr);
  gap: 1.2rem 2rem;
  align-items: center;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
}

.capability-index {
  color: rgba(237, 243, 255, 0.34);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.capability-head {
  display: grid;
  gap: 0.55rem;
}

.capability-head h3 {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.05em;
}

.capability-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.65rem;
}

.impact-panel {
  padding: 3rem 0;
}

.impact-shell {
  padding: clamp(1.7rem, 3vw, 2.3rem);
  border: 1px solid var(--panel-line);
  border-radius: 2rem;
  background:
    radial-gradient(circle at 86% 18%, rgba(114, 168, 255, 0.16), transparent 22%),
    linear-gradient(180deg, #edf3ff 0%, #dce5f6 100%);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.18);
}

.impact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  gap: 1.8rem 2.5rem;
  align-items: start;
  margin-top: 1rem;
  color: #0b0f18;
}

.impact-grid h2 {
  max-width: 11ch;
  font-family: "Syne", sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.7rem);
  font-weight: 700;
}

.impact-copy {
  display: grid;
  gap: 1.3rem;
  padding-top: 0.35rem;
}

.impact-copy p {
  color: rgba(11, 15, 24, 0.72);
}

.impact-link {
  justify-self: start;
  border: 1px solid rgba(11, 15, 24, 0.14);
  background: rgba(11, 15, 24, 0.04);
  color: #0b0f18;
}

.contact-panel {
  display: grid;
  gap: 1rem;
  justify-items: start;
  margin-top: 0.5rem;
  padding: clamp(1.8rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: 2rem;
  background:
    linear-gradient(135deg, rgba(114, 168, 255, 0.12), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.contact-panel h2 {
  max-width: 10ch;
  color: #f3f7ff;
  font-family: "Syne", sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
}

.contact-link {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.6rem, 5vw, 3.9rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  color: var(--accent-soft);
  line-height: 0.94;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.contact-note {
  max-width: 28rem;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@keyframes orbit-spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes beam-pulse {
  0%,
  100% {
    opacity: 0.8;
    filter: blur(2px);
  }

  50% {
    opacity: 1;
    filter: blur(4px);
  }
}

@keyframes drift {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -12px;
  }
}

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

  .site-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 2rem;
  }

  .hero-copy h1 {
    max-width: 10ch;
  }

  .hero-stage {
    order: -1;
  }

  .manifesto,
  .impact-grid,
  .capability-row {
    grid-template-columns: 1fr;
  }

  .capability-row {
    gap: 0.85rem;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(calc(100% - 1rem), var(--max-width));
    padding-top: 0.5rem;
  }

  .site-header {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 0.85rem;
    padding: 0.85rem;
    border-radius: 1.3rem;
  }

  .header-cta {
    width: 100%;
    justify-content: center;
  }

  .hero {
    padding-top: 1.2rem;
    gap: 1.4rem;
  }

  .hero-copy h1 {
    font-size: clamp(3.1rem, 17vw, 4.7rem);
  }

  .hero-lead {
    font-size: 0.98rem;
  }

  .hero-actions {
    align-items: stretch;
  }

  .primary-link {
    width: 100%;
  }

  .hero-note {
    font-size: 0.68rem;
  }

  .stage-field {
    min-height: 24rem;
  }

  .slab-one {
    width: 50%;
    left: 8%;
    top: 22%;
  }

  .slab-two {
    width: 56%;
    right: 7%;
    bottom: 18%;
  }

  .chip-one {
    top: 12%;
    right: 7%;
  }

  .chip-two {
    left: 7%;
    bottom: 23%;
  }

  .chip-three {
    right: 9%;
    bottom: 10%;
  }

  .manifesto {
    padding-top: 2rem;
  }

  .manifesto h2,
  .impact-grid h2,
  .contact-panel h2 {
    max-width: none;
  }

  .capability-meta {
    gap: 0.5rem;
  }

  .hero-strip span,
  .capability-meta span {
    font-size: 0.63rem;
  }

  .contact-link {
    font-size: clamp(1.28rem, 7.4vw, 2.1rem);
  }
}
