:root {
  --void: #000;
  --bone: #fff;
  --ash: #bdbdbd;
  --smoke: #9a9a9a;
  --plum: #8052ff;
  --amber: #ffb829;
  --lichen: #15846e;
  --font-acronym: "Space Grotesk", Inter, "Helvetica Neue", Arial, sans-serif;
  --content-width: min(1200px, calc(100vw - 48px));
  --header-height: 76px;
  --radius-pill: 24px;
  --hero-size: clamp(4rem, 6.6vw, 6.4rem);
  --display-size: clamp(3rem, 5vw, 4.875rem);
  --body-size: 0.9375rem;
  --body-muted: var(--ash);
  --section-gap: 60px;
  --track: rgba(255,255,255,0.08);
}

* { box-sizing: border-box; }
html { background: #000; }
body {
  margin: 0;
  min-height: 100vh;
  background: #000;
  color: var(--bone);
  font-family: var(--font-acronym);
  overflow-x: hidden;
  cursor: auto;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 10100;
  background: #000;
  display: grid;
  place-items: center;
  transition: opacity 800ms ease, visibility 800ms ease;
}
.site-loader.is-loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.site-loader__inner {
  width: min(92vw, 460px);
  display: grid;
  gap: 16px;
  align-items: center;
  justify-items: start;
}
.site-loader__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
}
.site-loader__mark,
.brand__mark {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  position: relative;
}
.site-loader__mark::before,
.brand__mark::before,
.site-loader__mark::after,
.brand__mark::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1.4px solid var(--plum);
  transform: rotate(45deg) scale(0.9);
}
.site-loader__mark::after,
.brand__mark::after {
  inset: 3px;
  border-color: var(--bone);
  transform: rotate(0deg);
}
.site-loader__title {
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  font-weight: 200;
}
.site-loader__status {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--ash);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.site-loader__status span:nth-child(2),
.site-loader__status span:nth-child(3),
.site-loader__status span:nth-child(4) { color: var(--amber); }

.scene {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: #000;
}
.scene::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
}
.scene::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 1;
  background: transparent;
}
.scene canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.header-blur-block {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  z-index: 1000;
  background: rgba(255,255,255,0.06);
}
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 12px 0 18px;
}
.site-header__inner,
.section,
.footer {
  width: var(--content-width);
  margin: 0 auto;
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.125rem;
  font-weight: 600;
  z-index: 2;
}
.brand__name { letter-spacing: 0.021em; }
.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav a,
.footer__nav a,
.footer__nav button {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 0;
  color: var(--smoke);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.021em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease;
}
.nav a:hover,
.nav a:focus-visible,
.footer__nav a:hover,
.footer__nav a:focus-visible,
.footer__nav button:hover,
.footer__nav button:focus-visible { color: var(--bone); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 14px 16px;
  border-radius: var(--radius-pill);
  background: var(--plum);
  color: var(--bone);
  border: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.btn-primary:hover,
.btn-primary:focus-visible { filter: brightness(1.08); }

.scroll-shell {
  position: relative;
  z-index: 2;
}
.scroll-viewport {
  position: fixed;
  inset: 0;
  overflow: hidden;
  contain: content;
}
.scroll-content {
  will-change: transform;
}
.asscrollbar {
  position: fixed;
  top: 0;
  right: 0;
  width: 20px;
  height: 100vh;
  z-index: 9999;
  opacity: 0.9;
}
.asscrollbar__track {
  position: absolute;
  top: 18px;
  right: 8px;
  bottom: 18px;
  width: 2px;
  background: var(--track);
}
.asscrollbar__thumb {
  position: absolute;
  top: 18px;
  right: 7px;
  width: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.05);
}

main {
  position: relative;
}
.anchor-target {
  position: relative;
  top: calc(-1 * var(--header-height));
}
.section {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--header-height) + 32px) 0 80px;
}
.section--tall {
  display: grid;
  align-items: center;
}
.section-label {
  margin-bottom: 12px;
  color: var(--bone);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(58vw, 1fr);
  align-items: center;
  gap: 4px;
}
.hero__copy {
  max-width: 360px;
  position: relative;
  z-index: 3;
}
.hero__title,
.section h2,
.footer__title {
  margin: 0;
  font-size: var(--hero-size);
  line-height: 0.81;
  letter-spacing: -0.04em;
  font-weight: 200;
}
.section h2,
.footer__title { font-size: var(--display-size); }
.hero__title span,
.section h2 span,
.footer__title span,
.body-copy__heading span { display: block; }
.hero__body,
.section p,
.footer__body,
.body-copy {
  max-width: 26rem;
  color: var(--body-muted);
  font-size: var(--body-size);
  line-height: 1.5;
  letter-spacing: 0.025em;
  text-shadow: none;
}
.hero__body { margin: 14px 0 22px; }
.hero__body p,
.section p,
.footer__body p,
.body-copy p { margin: 0 0 14px; }
.body-copy { max-width: 43rem; }
.mobile-blur {
  backdrop-filter: blur(0px);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__stage {
  position: relative;
  min-height: 82vh;
  overflow: visible;
  z-index: 1;
}
.hero__stage::before,
.hero__stage::after {
  content: "";
  position: absolute;
  pointer-events: none;
  display: none;
}

.introduction {
  display: grid;
  align-items: end;
  justify-items: end;
}
.introduction__card,
.manifesto__copy,
.footer__inner {
  width: min(460px, 100%);
}
.body-copy__heading {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 200;
}

.manifesto-grid {
  display: grid;
  gap: var(--section-gap);
}
.manifesto-grid .section {
  min-height: auto;
  padding-top: 0;
  padding-bottom: 0;
}
.manifesto {
  display: grid;
  align-items: center;
}
.manifesto.items-end { justify-items: end; }
.manifesto.items-start { justify-items: start; }
.manifesto__copy { max-width: 420px; }
.center-callout {
  display: grid;
  place-items: center;
  text-align: center;
}
.center-callout .body-copy { max-width: 38rem; }

.proof-list,
.team-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.proof-list li,
.team-list li {
  color: var(--ash);
  font-size: 0.9375rem;
  line-height: 1.5;
  letter-spacing: 0.025em;
}
.proof-list li::before,
.team-list li::before {
  content: "•";
  margin-right: 10px;
  color: var(--amber);
}

.footer {
  min-height: 100vh;
  display: grid;
  align-items: end;
  padding: calc(var(--header-height) + 32px) 0 28px;
}
.footer__inner {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(300px, 470px) 1fr;
  gap: 24px;
  align-items: end;
}
.footer__meta {
  display: grid;
  gap: 14px;
  justify-items: end;
  align-content: end;
}
.footer__copyright {
  color: var(--ash);
  font-size: 0.82rem;
  line-height: 1.45;
  text-align: right;
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.scroll-shell.native-scroll .scroll-viewport {
  position: relative;
  inset: auto;
  overflow: visible;
}

.scroll-shell.native-scroll .scroll-content {
  transform: none !important;
}

.scroll-shell.native-scroll .asscrollbar {
  display: none;
}

.deck-investor .section,
.deck-partner .section {
  min-height: auto;
  padding: calc(var(--header-height) + 28px) 0 72px;
}

.deck-investor .hero,
.deck-partner .hero {
  min-height: calc(100vh - 120px);
  grid-template-columns: minmax(320px, 480px) minmax(420px, 1fr);
  gap: 28px;
  align-items: center;
}

.deck-investor .hero__copy,
.deck-partner .hero__copy {
  max-width: 480px;
}

.deck-investor .hero__body,
.deck-partner .hero__body {
  max-width: 30rem;
}

.deck-investor .hero__stage,
.deck-partner .hero__stage {
  min-height: 48vh;
}

.deck-investor .introduction,
.deck-partner .introduction,
.deck-investor .manifesto.items-end,
.deck-investor .manifesto.items-start,
.deck-partner .manifesto.items-end,
.deck-partner .manifesto.items-start {
  justify-items: start;
  align-items: start;
}

.deck-investor .introduction__card,
.deck-partner .introduction__card,
.deck-investor .manifesto__copy,
.deck-partner .manifesto__copy,
.deck-investor .center-callout .body-copy,
.deck-partner .center-callout .body-copy {
  width: min(620px, 100%);
  max-width: 620px;
}

.deck-investor .section h2,
.deck-investor .body-copy__heading,
.deck-investor .footer__title,
.deck-partner .section h2,
.deck-partner .body-copy__heading,
.deck-partner .footer__title {
  font-size: clamp(3rem, 5.4vw, 4.6rem);
  line-height: 0.94;
}

.deck-investor .section p,
.deck-investor .body-copy,
.deck-investor .footer__body,
.deck-partner .section p,
.deck-partner .body-copy,
.deck-partner .footer__body {
  max-width: 38rem;
  font-size: 1rem;
  line-height: 1.62;
}

.deck-investor .manifesto-grid,
.deck-partner .manifesto-grid {
  gap: 0;
}

.deck-investor .center-callout,
.deck-partner .center-callout {
  place-items: start;
  text-align: left;
}

.deck-investor .footer,
.deck-partner .footer {
  min-height: auto;
  padding: calc(var(--header-height) + 28px) 0 40px;
}

.deck-investor .footer__inner,
.deck-partner .footer__inner {
  grid-template-columns: 1fr;
  gap: 22px;
}

.deck-investor .footer__meta,
.deck-partner .footer__meta {
  justify-items: start;
  text-align: left;
}

.deck-investor .footer__copyright,
.deck-partner .footer__copyright,
.deck-investor .footer__nav,
.deck-partner .footer__nav {
  text-align: left;
  justify-content: flex-start;
}

.deck-sales .section,
.deck-sales .footer {
  width: min(1240px, calc(100vw - 48px));
}

.deck-sales .section,
.deck-sales .footer {
  padding-top: calc(var(--header-height) + 20px);
}

.deck-sales .section {
  padding-bottom: 64px;
}

.deck-sales .hero.section {
  padding-bottom: 42px;
}

.deck-sales .hero {
  min-height: auto;
  grid-template-columns: minmax(360px, 620px) minmax(320px, 1fr);
  gap: 40px;
  align-items: start;
}

.deck-sales .hero__copy,
.deck-sales .hero__actions--stacked,
.deck-sales .proof-strip {
  max-width: 620px;
}

.deck-sales .hero__body,
.deck-sales .section-copy,
.deck-sales .manifesto__copy,
.deck-sales .center-callout .body-copy {
  max-width: 680px;
}

.deck-sales .hero__body,
.deck-sales .section p,
.deck-sales .body-copy,
.deck-sales .footer__body,
.deck-sales .proof-list li,
.deck-sales .team-list li {
  font-size: 1rem;
  line-height: 1.58;
  color: rgba(255,255,255,0.86);
  text-shadow: 0 1px 14px rgba(0,0,0,0.46);
}

.deck-sales .hero__title {
  line-height: 0.76;
  letter-spacing: -0.05em;
}

.deck-sales .hero__body {
  margin: 8px 0 16px;
}

.deck-sales .section-copy,
.deck-sales .manifesto__copy,
.deck-sales .center-callout .body-copy,
.deck-sales .footer__inner > div:first-child,
.deck-sales .hero__copy {
  position: relative;
}

.deck-sales .section-copy::before,
.deck-sales .manifesto__copy::before,
.deck-sales .center-callout .body-copy::before,
.deck-sales .footer__inner > div:first-child::before,
.deck-sales .hero__copy::before {
  content: "";
  position: absolute;
  left: -28px;
  right: -24px;
  top: -18px;
  bottom: -18px;
  border-radius: 32px;
  background: radial-gradient(circle at 20% 20%, rgba(0,0,0,0.72), rgba(0,0,0,0.40) 52%, rgba(0,0,0,0.08) 78%, rgba(0,0,0,0) 100%);
  z-index: -1;
  pointer-events: none;
}

.deck-sales .hero__actions--stacked {
  gap: 12px;
}

.deck-sales .proof-strip {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 26px;
}

.deck-sales .proof-chip,
.deck-sales .stat-card,
.deck-sales .step-card,
.deck-sales .value-card,
.deck-sales .faq-card,
.deck-sales .stack-list,
.deck-sales .pricing-card {
  padding: 22px;
}

.deck-sales .proof-chip h3,
.deck-sales .stat-card h3,
.deck-sales .step-card h3,
.deck-sales .value-card h3,
.deck-sales .faq-card h3,
.deck-sales .stack-list h3,
.deck-sales .pricing-card h3 {
  font-size: clamp(1.45rem, 1.9vw, 2rem);
  line-height: 1;
}

.deck-sales .section-shell {
  gap: 24px;
}

.deck-sales .section-copy {
  gap: 14px;
}

.deck-sales .body-copy__heading,
.deck-sales .section h2,
.deck-sales .footer__title {
  font-size: clamp(3rem, 5vw, 4.7rem);
  line-height: 0.94;
}

.deck-sales .manifesto-grid {
  gap: 20px;
}

.deck-sales .footer {
  min-height: auto;
  padding-bottom: 36px;
}

.deck-sales .footer__inner {
  gap: 18px;
}

.deck-sales .footer__title,
.deck-sales .footer__body,
.deck-sales .footer__cta-group {
  max-width: 760px;
}

@media (max-width: 1080px) {
  .deck-sales .hero {
    grid-template-columns: minmax(320px, 560px) minmax(240px, 1fr);
    gap: 28px;
  }
}

@media (max-width: 900px) {
  .scroll-viewport { position: relative; inset: auto; overflow: visible; }
  .scroll-content { transform: none !important; }
  .asscrollbar { display: none; }
  .site-header {
    padding: 10px 0 12px;
  }
  .site-header__inner {
    gap: 12px;
    align-items: center;
    justify-content: space-between;
  }
  .brand {
    gap: 8px;
    font-size: 0.98rem;
  }
  .nav { display: none; }
  .site-header .btn-primary {
    min-height: 36px;
    padding: 11px 14px;
    font-size: 0.68rem;
    letter-spacing: 0.045em;
  }
  .hero,
  .footer__inner {
    grid-template-columns: 1fr;
  }
  .section {
    min-height: auto;
    padding: calc(var(--header-height) + 12px) 0 56px;
  }
  .hero {
    gap: 18px;
    align-items: start;
  }
  .hero__copy {
    max-width: 100%;
  }
  .hero__title {
    font-size: clamp(3.7rem, 17vw, 5.15rem);
    line-height: 0.86;
  }
  .hero__body {
    max-width: 22rem;
    margin: 12px 0 18px;
    text-shadow: 0 1px 18px rgba(0, 0, 0, 0.34);
  }
  .mobile-blur {
    max-width: 22rem;
    padding: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
  }
  .hero__stage { min-height: 20vh; }
  .introduction,
  .manifesto.items-end,
  .manifesto.items-start { justify-items: start; }
  .introduction__card,
  .manifesto__copy,
  .footer__meta { width: 100%; }
  .footer__meta { justify-items: start; }
  .footer__copyright,
  .footer__nav { text-align: left; justify-content: flex-start; }
  .body-copy,
  .center-callout .body-copy {
    max-width: 100%;
  }
  .center-callout {
    place-items: start;
    text-align: left;
  }
  .footer__inner {
    gap: 18px;
  }

  .deck-sales .section,
  .deck-sales .footer {
    width: min(100vw - 24px, 1240px);
  }

  .deck-sales .hero {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .deck-sales .hero__stage {
    min-height: 14vh;
  }

  .deck-sales .proof-strip {
    grid-template-columns: 1fr;
    margin-top: 16px;
    gap: 12px;
  }

  .deck-sales .section {
    padding-top: calc(var(--header-height) + 10px);
    padding-bottom: 48px;
  }

  .deck-sales .hero.section {
    padding-bottom: 28px;
  }

  .deck-sales .hero__copy,
  .deck-sales .hero__body,
  .deck-sales .hero__actions--stacked,
  .deck-sales .proof-strip,
  .deck-sales .section-copy,
  .deck-sales .manifesto__copy,
  .deck-sales .center-callout .body-copy,
  .deck-sales .footer__title,
  .deck-sales .footer__body,
  .deck-sales .footer__cta-group {
    max-width: 100%;
  }

  .deck-sales .hero__body {
    margin: 10px 0 14px;
  }

  .deck-sales .hero__actions--stacked,
  .deck-sales .section-shell {
    gap: 10px;
  }

  .deck-sales .section-copy::before,
  .deck-sales .manifesto__copy::before,
  .deck-sales .center-callout .body-copy::before,
  .deck-sales .footer__inner > div:first-child::before,
  .deck-sales .hero__copy::before {
    left: -12px;
    right: -12px;
    top: -12px;
    bottom: -12px;
    border-radius: 26px;
  }
}

@media (max-width: 680px) {
  :root { --content-width: min(100vw - 32px, 1200px); }
  .site-loader__status { gap: 6px; }
  .site-header__inner {
    gap: 10px;
  }
  .brand {
    font-size: 0.92rem;
  }
  .site-header .btn-primary {
    min-height: 34px;
    padding: 10px 12px;
    font-size: 0.64rem;
  }
  .hero__title {
    font-size: clamp(3.1rem, 16vw, 4.3rem);
    line-height: 0.88;
  }
  .hero__body,
  .section p,
  .footer__body,
  .body-copy,
  .proof-list li,
  .team-list li { font-size: 0.92rem; }
  .section h2,
  .footer__title,
  .body-copy__heading {
    font-size: clamp(2.25rem, 11vw, 3rem);
    line-height: 0.96;
  }
  .hero__stage {
    min-height: 16vh;
  }
  .btn-primary { min-height: 40px; }

  .deck-sales .hero__title {
    font-size: clamp(3.05rem, 15vw, 4.15rem);
    line-height: 0.84;
  }

  .deck-sales .hero__stage {
    min-height: 9vh;
  }

  .deck-sales .section,
  .deck-sales .footer {
    width: min(100vw - 20px, 1240px);
  }

  .deck-sales .section {
    padding-bottom: 42px;
  }

  .deck-sales .hero.section {
    padding-bottom: 22px;
  }

  .deck-sales .body-copy__heading,
  .deck-sales .section h2,
  .deck-sales .footer__title {
    font-size: clamp(2.3rem, 10.5vw, 3.15rem);
    line-height: 0.95;
  }

  .deck-sales .hero__body,
  .deck-sales .section p,
  .deck-sales .body-copy,
  .deck-sales .footer__body,
  .deck-sales .proof-list li,
  .deck-sales .team-list li {
    font-size: 0.94rem;
    line-height: 1.56;
  }
}

@media (max-width: 420px) {
  :root { --content-width: min(100vw - 24px, 1200px); }
  .brand__name {
    max-width: 8.2rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .hero__title {
    font-size: clamp(2.85rem, 15vw, 3.9rem);
  }
  .mobile-blur {
    padding: 0;
  }
}
