:root {
  --bg-0: #04080d;
  --bg-1: #08121a;
  --bg-2: #0d1f2b;
  --panel: rgba(10, 26, 35, 0.75);
  --panel-solid: #0b1f2a;
  --line: rgba(120, 247, 255, 0.24);
  --line-soft: rgba(120, 247, 255, 0.11);
  --text: #eafcff;
  --muted: rgba(223, 243, 248, 0.74);
  --teal: #53f4ff;
  --violet: #b86bff;
  --green: #9cff7b;
  --yellow: #ffe66a;
  --pink: #cf5cff;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  --glow-cyan: 0 0 0 1px rgba(83, 244, 255, 0.22), 0 0 36px rgba(83, 244, 255, 0.2);
  --glow-pink: 0 0 0 1px rgba(184, 107, 255, 0.26), 0 0 34px rgba(184, 107, 255, 0.22);
  --glow-violet: 0 0 0 1px rgba(184, 107, 255, 0.32), 0 0 44px rgba(184, 107, 255, 0.28);
  --glow-lime: 0 0 0 1px rgba(156, 255, 123, 0.2), 0 0 30px rgba(156, 255, 123, 0.16);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --content-width: min(1200px, calc(100% - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Bricolage Grotesque", sans-serif;
  background:
    radial-gradient(circle at 15% 15%, rgba(83, 244, 255, 0.16), transparent 30%),
    radial-gradient(circle at 80% 8%, rgba(207, 92, 255, 0.18), transparent 28%),
    radial-gradient(circle at 12% 80%, rgba(156, 255, 123, 0.1), transparent 26%),
    radial-gradient(circle at 72% 68%, rgba(255, 230, 106, 0.1), transparent 28%),
    linear-gradient(150deg, var(--bg-0) 0%, var(--bg-1) 45%, #04060a 100%);
  overflow-x: hidden;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.15;
  background-image: radial-gradient(rgba(255, 255, 255, 0.55) 0.4px, transparent 0.4px);
  background-size: 3px 3px;
  mix-blend-mode: soft-light;
}

#pulse-grid {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.46;
}

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

img {
  max-width: 100%;
  display: block;
}

.ambient {
  position: fixed;
  width: 34rem;
  height: 34rem;
  border-radius: 999px;
  filter: blur(95px);
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
  transition: transform 320ms ease;
}

.ambient--one {
  top: -11rem;
  right: -8rem;
  background: rgba(207, 92, 255, 0.28);
}

.ambient--two {
  top: 18rem;
  left: -12rem;
  background: rgba(83, 244, 255, 0.26);
}

.site-header,
.ticker,
.section,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  width: var(--content-width);
  margin: 0 auto;
  padding-top: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.38rem 0.65rem 0.38rem 0.4rem;
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: var(--glow-violet);
}

.brand__mark {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 0.75rem;
  box-shadow: 0 0 24px rgba(207, 92, 255, 0.38);
}

.brand__text {
  display: grid;
  gap: 0.18rem;
}

.brand__name {
  font-family: "IBM Plex Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.89rem;
}

.brand__tag {
  color: var(--muted);
  font-size: 0.8rem;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.18rem;
  padding: 0.3rem;
  border-radius: 999px;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
  box-shadow: var(--glow-violet);
}

.site-nav a {
  padding: 0.5rem 0.62rem;
  border-radius: 999px;
  color: rgba(238, 251, 255, 0.86);
  font-size: 0.82rem;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: linear-gradient(130deg, rgba(207, 92, 255, 0.18), rgba(83, 244, 255, 0.14));
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1), 0 0 18px rgba(83, 244, 255, 0.2);
}

.nav-cta {
  background: linear-gradient(130deg, rgba(207, 92, 255, 0.28), rgba(83, 244, 255, 0.22));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--glow-violet);
}

.site-nav a.is-current {
  color: #fff;
  background: linear-gradient(130deg, rgba(207, 92, 255, 0.18), rgba(83, 244, 255, 0.14));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.ticker {
  width: 100%;
  margin-top: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(90deg, rgba(83, 244, 255, 0.08), rgba(207, 92, 255, 0.08));
  overflow: hidden;
}

.ticker__track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 0.72rem 0;
  animation: ticker-scroll 34s linear infinite;
}

.ticker__track span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(240, 252, 255, 0.92);
}

.ticker__track span::after {
  content: "//";
  margin-left: 1.4rem;
  color: rgba(255, 230, 106, 0.75);
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0%);
  }

  to {
    transform: translateX(-50%);
  }
}

.section {
  width: var(--content-width);
  margin: 0 auto;
  padding: 4.7rem 0;
}

.section--tight {
  padding-block: 1.3rem 3.6rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(350px, 0.95fr);
  gap: 1.25rem;
  padding-top: 3rem;
}

.hero__content,
.hero__panel,
.strip,
.section-heading,
.service-card,
.insight-card,
.proof-card,
.founder__bio,
.founder__facts,
.engagement,
.contact {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-soft);
  background: linear-gradient(170deg, rgba(11, 29, 39, 0.93), rgba(8, 19, 27, 0.72));
  box-shadow: var(--shadow), var(--glow-violet);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.hero__content::before,
.hero__panel::before,
.section-heading::before,
.insight-card::before,
.service-card::before,
.proof-card::before,
.founder__bio::before,
.founder__facts::before,
.engagement::before,
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.09), transparent 22%, transparent 78%, rgba(255, 255, 255, 0.06));
}

.hero__content {
  padding: clamp(1.5rem, 4.4vw, 3rem);
}

.hero__panel {
  padding: clamp(1rem, 2.2vw, 1.4rem);
  display: grid;
  gap: 0.95rem;
  align-content: start;
}

.eyebrow {
  margin: 0 0 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.52rem;
  font-family: "IBM Plex Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  color: rgba(156, 255, 123, 0.95);
}

.eyebrow::before {
  content: "";
  width: 1.8rem;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.8rem, 6.6vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.045em;
  max-width: 10ch;
  text-shadow: 0 0 18px rgba(207, 92, 255, 0.16);
}

.hero__lede,
.section-heading p,
.service-card p,
.insight-card p,
.proof-card p,
.founder p,
.engagement p,
.contact p,
.quote-card__copy,
.strip p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.02rem;
}

.hero__lede {
  margin: 1.3rem 0 0;
  max-width: 61ch;
}

.hero__actions {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.82rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.button--primary {
  color: #fdf7ff;
  background: linear-gradient(130deg, var(--violet), var(--pink));
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22), 0 0 34px rgba(207, 92, 255, 0.28), 0 0 16px rgba(83, 244, 255, 0.16);
}

.button--secondary {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--glow-violet);
}

.button--large {
  min-width: 14rem;
}

.hero__stats {
  margin-top: 1.9rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.hero__stats article,
.engagement__cards article {
  padding: 0.95rem 0.92rem 1.05rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.hero__stats strong,
.engagement__cards h3 {
  display: block;
  margin-bottom: 0.25rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.quote-card::after {
  content: "";
  position: absolute;
  inset: -55%;
  background: conic-gradient(from 90deg, transparent, rgba(255, 230, 106, 0.23), transparent, rgba(83, 244, 255, 0.22), transparent);
  animation: spin 12s linear infinite;
  opacity: 0.45;
  pointer-events: none;
}

.quote-card {
  position: relative;
  overflow: hidden;
  padding: 1.05rem 1.1rem 1.15rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(165deg, rgba(11, 29, 39, 0.9), rgba(8, 19, 27, 0.68));
  box-shadow: 0 0 0 1px rgba(207, 92, 255, 0.16), 0 0 26px rgba(83, 244, 255, 0.12);
}

@keyframes spin {
  to {
    transform: rotate(1turn);
  }
}

.quote-card > * {
  position: relative;
  z-index: 1;
}

.quote-card__eyebrow {
  margin: 0;
  font-family: "IBM Plex Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.75rem;
  color: rgba(255, 230, 106, 0.9);
}

.quote-card__quote {
  margin: 0.65rem 0 0;
  font-size: clamp(1.95rem, 4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.quote-card__copy {
  margin: 0.92rem 0 0;
}

.swatches {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.swatches img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.hero-partner-strip {
  display: grid;
  gap: 0.8rem;
  padding: 1.05rem;
  border-radius: 22px;
  border: 1px solid rgba(184, 107, 255, 0.22);
  background: linear-gradient(165deg, rgba(11, 29, 39, 0.88), rgba(8, 19, 27, 0.68));
  box-shadow: var(--glow-violet);
}

.hero-partner-strip h3 {
  margin: 0;
  font-size: 1.08rem;
}

.hero-partner-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.hero-partner-strip__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero-partner-strip__chips span {
  padding: 0.55rem 0.78rem;
  border-radius: 999px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
}

.strip {
  padding: 1.22rem 1.4rem;
}

.strip p {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.48rem);
}

.section-heading {
  padding: 1.55rem;
  margin-bottom: 1rem;
}

.section-heading h2,
.founder h2,
.engagement h2,
.contact h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.3vw, 3.9rem);
  line-height: 0.97;
  letter-spacing: -0.045em;
}

.section-heading p {
  max-width: 68ch;
}

.section-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.article-shell {
  max-width: 82ch;
}

.article-meta {
  margin-top: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(223, 243, 248, 0.72);
}

.article-meta a {
  color: rgba(255, 230, 106, 0.95);
}

.prose {
  display: grid;
  gap: 0.9rem;
}

.prose h2 {
  margin: 0.35rem 0 0;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  line-height: 1.05;
}

.prose p,
.prose li {
  color: var(--muted);
  line-height: 1.72;
}

.prose ul {
  margin: 0.2rem 0 0;
  padding-left: 1.12rem;
}

.article-link {
  margin-top: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: "IBM Plex Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
  color: rgba(255, 230, 106, 0.95);
}

.article-link::after {
  content: ">";
}

.filter-toolbar {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.filter-search {
  width: min(100%, 32rem);
  border-radius: 999px;
  border: 1px solid rgba(120, 247, 255, 0.23);
  background: rgba(8, 23, 31, 0.72);
  color: var(--text);
  font: inherit;
  padding: 0.8rem 1rem;
}

.filter-search::placeholder {
  color: rgba(223, 243, 248, 0.52);
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-chip {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.45rem 0.72rem;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.filter-chip.is-active {
  border-color: rgba(184, 107, 255, 0.56);
  color: rgba(238, 223, 255, 0.98);
  box-shadow: 0 0 0 1px rgba(184, 107, 255, 0.26), 0 0 20px rgba(184, 107, 255, 0.16);
}

.filter-chip:hover,
.filter-chip:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--glow-violet);
}

.is-hidden {
  display: none !important;
}

.leadership-grid {
  display: grid;
  grid-template-columns: minmax(270px, 0.8fr) minmax(0, 1.2fr);
  gap: 1rem;
  align-items: stretch;
}

.leadership-portrait {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(184, 107, 255, 0.22);
  background: rgba(8, 21, 29, 0.65);
  box-shadow: var(--glow-violet);
}

.leadership-portrait img {
  width: 100%;
  height: 100%;
  min-height: 24rem;
  object-fit: cover;
}

.leadership-strip {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.leadership-photo {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(184, 107, 255, 0.18);
  background: rgba(8, 21, 29, 0.58);
  box-shadow: 0 0 0 1px rgba(184, 107, 255, 0.08);
}

.leadership-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.leadership-photo figcaption {
  margin: 0;
  padding: 0.6rem 0.7rem 0.72rem;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.45;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.team-card {
  padding: 1.2rem;
  border-radius: 22px;
  border: 1px solid rgba(184, 107, 255, 0.2);
  background: linear-gradient(170deg, rgba(11, 29, 39, 0.9), rgba(8, 19, 27, 0.7));
  box-shadow: var(--glow-violet);
}

.team-card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.team-card p {
  margin: 0.65rem 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.assessment-cta {
  border-radius: 24px;
  border: 1px solid rgba(255, 230, 106, 0.25);
  padding: 1.2rem;
  background:
    radial-gradient(circle at top right, rgba(255, 230, 106, 0.2), transparent 34%),
    radial-gradient(circle at bottom left, rgba(83, 244, 255, 0.16), transparent 32%),
    rgba(255, 255, 255, 0.03);
  box-shadow: var(--glow-lime);
}

.assessment-cta h3 {
  margin: 0;
  font-size: 1.3rem;
}

.assessment-cta p {
  margin: 0.7rem 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.assessment-cta .button {
  margin-top: 0.95rem;
}

.card-grid,
.insight-grid,
.proof-grid,
.founder,
.engagement__cards,
.contact {
  display: grid;
  gap: 0.95rem;
}

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

.insight-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.insight-card {
  padding: 1.55rem;
  border-radius: 22px;
  transform-style: preserve-3d;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.service-card:hover,
.insight-card:hover {
  border-color: rgba(120, 247, 255, 0.33);
  box-shadow: var(--shadow), var(--glow-pink);
  transform: translateY(-3px);
}

.service-card__label,
.insight-card__topic {
  margin: 0 0 0.62rem;
  font-family: "IBM Plex Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  color: rgba(255, 230, 106, 0.93);
}

.service-card h3,
.insight-card h3,
.proof-card h3,
.founder__role,
.engagement__cards h3 {
  margin: 0;
}

.service-card h3,
.insight-card h3,
.proof-card h3 {
  font-size: 1.42rem;
  line-height: 1.2;
}

.service-card p,
.insight-card p,
.proof-card p {
  margin-top: 0.75rem;
}

.service-card ul,
.insight-card ul,
.founder__facts ul {
  margin: 0.9rem 0 0;
  padding-left: 1.08rem;
  line-height: 1.68;
  color: rgba(239, 251, 255, 0.94);
}

.section--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  align-items: start;
  gap: 0.95rem;
}

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

.proof-card,
.founder__bio,
.founder__facts,
.engagement,
.contact {
  padding: 1.5rem;
}

.founder {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.founder__role {
  margin-top: 0.6rem;
  font-family: "IBM Plex Mono", monospace;
  color: rgba(255, 230, 106, 0.95);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.founder__facts ul {
  margin-top: 0;
}

.engagement__cards {
  margin-top: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.contact {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-list--spaced {
  margin-top: 1rem;
}

.faq-item {
  border-radius: 18px;
  border: 1px solid rgba(120, 247, 255, 0.2);
  background: linear-gradient(170deg, rgba(11, 29, 39, 0.86), rgba(8, 19, 27, 0.66));
  padding: 0.95rem 1rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  line-height: 1.4;
}

.faq-item summary::marker {
  color: var(--yellow);
}

.faq-item p {
  margin: 0.7rem 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.apollo-loop {
  margin-top: 1rem;
  padding: 1.2rem;
  border-radius: 22px;
  border: 1px solid rgba(184, 107, 255, 0.22);
  background:
    radial-gradient(circle at 50% 50%, rgba(207, 92, 255, 0.2), transparent 48%),
    linear-gradient(165deg, rgba(11, 29, 39, 0.88), rgba(8, 19, 27, 0.72));
  box-shadow: var(--glow-violet);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  align-items: center;
}

.apollo-loop__hub {
  grid-column: 1 / -1;
  text-align: center;
  padding: 0.95rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 230, 106, 0.24);
  background: rgba(8, 24, 32, 0.65);
}

.apollo-loop__hub h3 {
  margin: 0;
  font-size: 1.26rem;
}

.apollo-loop__hub p {
  margin: 0.4rem 0 0;
  color: var(--muted);
}

.apollo-loop__stage {
  min-height: 8rem;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 0.3rem;
  padding: 0.8rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.apollo-loop__stage strong {
  font-family: "IBM Plex Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
}

.apollo-loop__stage span {
  color: rgba(255, 230, 106, 0.94);
  font-weight: 600;
}

.apollo-loop__stage--opportunity {
  box-shadow: 0 0 0 1px rgba(83, 244, 255, 0.2), 0 0 24px rgba(83, 244, 255, 0.16);
}

.apollo-loop__stage--voyager {
  box-shadow: 0 0 0 1px rgba(156, 255, 123, 0.2), 0 0 24px rgba(156, 255, 123, 0.14);
}

.apollo-loop__stage--perseverance {
  box-shadow: 0 0 0 1px rgba(255, 230, 106, 0.2), 0 0 24px rgba(255, 230, 106, 0.14);
}

.mission-report {
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-soft);
  background: linear-gradient(170deg, rgba(11, 29, 39, 0.93), rgba(8, 19, 27, 0.72));
  box-shadow: var(--shadow), var(--glow-violet);
}

.mission-report__header h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.98;
}

.mission-report__header p {
  margin: 0.8rem 0 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 70ch;
}

.mission-report__grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.mission-metrics {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.mission-metrics li {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
  padding: 0.72rem;
  display: grid;
  gap: 0.22rem;
  text-align: center;
}

.mission-metrics strong {
  font-family: "IBM Plex Mono", monospace;
  font-size: 1.08rem;
  color: rgba(255, 230, 106, 0.95);
}

.mission-metrics span {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.mission-report__grid section {
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(120, 247, 255, 0.2);
  background: linear-gradient(170deg, rgba(11, 29, 39, 0.86), rgba(8, 19, 27, 0.66));
}

.mission-report__grid h3 {
  margin: 0;
  font-size: 1.1rem;
}

.mission-report__grid ul {
  margin: 0.7rem 0 0;
  padding-left: 1.05rem;
}

.mission-report__grid li {
  color: var(--muted);
  line-height: 1.65;
}

.mission-report__quote {
  margin-top: 1rem;
}

/* ── Reusable media / image placeholder component ── */
.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line-soft);
  background: rgba(8, 21, 29, 0.6);
  box-shadow: var(--glow-violet);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-frame--wide {
  aspect-ratio: 16 / 9;
}

.media-frame--landscape {
  aspect-ratio: 3 / 2;
}

.media-frame--square {
  aspect-ratio: 1 / 1;
}

.media-figure {
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.media-figure figcaption {
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.media-band {
  margin-top: 1.1rem;
}

.card-media {
  margin-bottom: 1.1rem;
}

.network-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding: 1rem 0 0;
}

.network-strip span {
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  box-shadow: 0 0 0 1px rgba(83, 244, 255, 0.08);
  color: rgba(239, 251, 255, 0.95);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.capability-matrix,
.operating-model-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
  margin-top: 1rem;
}

.capability-matrix article,
.operating-model-grid article {
  padding: 1.2rem;
  border-radius: 22px;
  border: 1px solid rgba(184, 107, 255, 0.2);
  background: linear-gradient(170deg, rgba(11, 29, 39, 0.9), rgba(8, 19, 27, 0.68));
  box-shadow: var(--glow-violet);
}

.capability-matrix h3,
.operating-model-grid h3 {
  margin: 0;
  font-size: 1.26rem;
  line-height: 1.15;
}

.capability-matrix p,
.operating-model-grid p {
  margin: 0.72rem 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.sales-bullets {
  margin-top: 1rem;
  display: grid;
  gap: 0.75rem;
}

.sales-bullets article {
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid rgba(120, 247, 255, 0.2);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
}

.sales-bullets h3 {
  margin: 0;
  font-size: 1.02rem;
}

.sales-bullets p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Hamburger toggle ── */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.3rem;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(130deg, rgba(207, 92, 255, 0.28), rgba(83, 244, 255, 0.22));
  box-shadow: var(--glow-violet);
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 260ms ease, opacity 260ms ease;
  transform-origin: center;
}

.nav-toggle[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.nav-toggle[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.site-footer {
  width: var(--content-width);
  margin: 0 auto;
  padding: 0 0 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  color: rgba(223, 243, 248, 0.72);
  font-family: "IBM Plex Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.74rem;
}

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

.footer-legal {
  flex-basis: 100%;
  margin: 0.4rem 0 0;
  text-transform: none;
  letter-spacing: normal;
  font-size: 0.72rem;
  color: rgba(223, 243, 248, 0.6);
}

.footer-legal a {
  color: rgba(223, 243, 248, 0.85);
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: #fff;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
  }

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

  .mission-report__grid {
    grid-template-columns: 1fr;
  }

  .mission-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .capability-matrix,
  .operating-model-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .leadership-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  /* ── Layout ── */
  .section {
    padding-block: 2.8rem;
  }

  .section--tight {
    padding-block: 0.8rem 2.4rem;
  }

  /* ── Header: brand + toggle in a row, nav panel below ── */
  .site-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding-top: 0.85rem;
  }

  .brand__tag {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  /* Nav collapses by default, opens on toggle */
  #primary-nav,
  .site-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    width: 100%;
    gap: 0.3rem;
    margin-top: 0.4rem;
    padding: 0.6rem;
    border-radius: 20px;
  }

  #primary-nav.is-open,
  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.82rem 1rem;
    font-size: 0.96rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
  }

  .nav-cta {
    background: linear-gradient(130deg, rgba(207, 92, 255, 0.3), rgba(83, 244, 255, 0.24));
    border-color: rgba(255, 255, 255, 0.18);
    text-align: center;
  }

  /* ── Hero ── */
  .hero__panel {
    display: none;
  }

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

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  /* ── Grids ── */
  .hero__stats,
  .card-grid,
  .insight-grid,
  .proof-grid,
  .engagement__cards {
    grid-template-columns: 1fr;
  }

  .contact {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact a {
    width: 100%;
    justify-content: center;
  }

  .apollo-loop,
  .capability-matrix,
  .operating-model-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .mission-metrics {
    grid-template-columns: 1fr;
  }

  .leadership-strip {
    grid-template-columns: 1fr;
  }

  /* ── Typography ── */
  .section-heading h2,
  .founder h2,
  .engagement h2,
  .contact h2 {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
  }

  .strip p {
    font-size: clamp(1rem, 4vw, 1.2rem);
  }

  /* ── Ticker ── */
  .ticker__track {
    animation-duration: 24s;
  }

  /* ── Footer ── */
  .site-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 2.5rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: clamp(2.2rem, 11vw, 3rem);
  }

  .mission-report__header h2 {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

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

  .hero__actions {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
