: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;
  overflow-x: clip;
}
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; }

.brand__mark {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  position: relative;
}
.brand__mark::before,
.brand__mark::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1.4px solid var(--plum);
  transform: rotate(45deg) scale(0.9);
}
.brand__mark::after {
  inset: 3px;
  border-color: var(--bone);
  transform: rotate(0deg);
}

.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.86;
  letter-spacing: -0.04em;
  font-weight: 200;
}
.hero__title {
  line-height: 0.92;
}
.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__title > span {
  padding-bottom: 0.08em;
}
.hero__title-accent {
  color: var(--plum);
  text-shadow: 0 0 14px rgba(128, 82, 255, 0.14);
}
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero__title-accent {
    background-image: none;
    background-size: auto;
    background-position: 50% 50%;
    -webkit-background-clip: border-box;
    background-clip: border-box;
    color: var(--plum);
    -webkit-text-fill-color: var(--plum);
    animation: none;
  }
}
@keyframes heroAccentShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__title-accent {
    animation: none;
    background-position: 50% 50%;
  }
}
.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;
}

/* Project VALE is readable and scrollable even if the module/CDN never boots. */
.deck-sales .scroll-viewport {
  position: relative;
  inset: auto;
  overflow: visible;
  contain: none;
}
.deck-sales .scroll-shell:not(.smooth-scroll-active) .scroll-content {
  transform: none !important;
  will-change: auto;
}
.deck-sales .asscrollbar {
  display: none;
}
.deck-sales .scroll-shell.smooth-scroll-active .scroll-viewport {
  position: fixed;
  inset: 0;
  overflow: hidden;
  contain: content;
}
.deck-sales .scroll-shell.smooth-scroll-active .scroll-content {
  will-change: transform;
}
.deck-sales .scroll-shell.smooth-scroll-active .asscrollbar {
  display: block;
}

.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.9;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.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;
  color: var(--plum);
}

.deck-sales .pricing-card h3 {
  color: var(--bone);
}

.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-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.9;
  }

  .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: 1.08;
  }

  .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.74;
  }

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

  .deck-sales .proof-list,
  .deck-sales .team-list {
    gap: 20px;
    margin-top: 22px;
  }
}

@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;
  }
}

/* Progressive cinematic motion: no layout tracks or scroll-height changes */
.cinematic-sections-ready .deck-sales [data-cinema-target] {
  opacity: var(--cinema-opacity, 1);
  transform: translate3d(0, var(--cinema-y, 0px), 0) scale(var(--cinema-scale, 1));
  transform-origin: 50% 50%;
  will-change: auto;
  backface-visibility: hidden;
}
.cinematic-sections-ready .deck-sales [data-cinema-item] {
  opacity: var(--cinema-item-opacity, 1);
  transform: translate3d(0, var(--cinema-item-y, 0px), 0);
  will-change: auto;
  backface-visibility: hidden;
}
.cinematic-sections-ready .deck-sales [data-cinema-target][data-cinema-active],
.cinematic-sections-ready .deck-sales [data-cinema-item][data-cinema-item-active] {
  will-change: transform, opacity;
}

/* Keep HD video textures and translucent pricing surfaces out of the moving compositor. */
.deck-sales .hero-video-frame,
.deck-sales .walkthrough-video-frame,
.deck-sales .pricing-card,
.deck-sales .pricing-includes {
  contain: paint;
}
.deck-sales #heroVideoFrame {
  background-image: url("hero-video/project-vale-attached-source-poster.jpg");
  background-size: cover;
  background-position: center;
}
.deck-sales [data-walkthrough-key="onboarding"] .walkthrough-video-frame {
  background-image: url("walkthroughs/01-onboarding-poster.jpg");
}
.deck-sales [data-walkthrough-key="coach-dashboard"] .walkthrough-video-frame {
  background-image: url("walkthroughs/02-coach-dashboard-poster.jpg");
}
.deck-sales [data-walkthrough-key="coach-client-dashboard"] .walkthrough-video-frame {
  background-image: url("walkthroughs/03-coach-client-dashboard-poster.jpg");
}
.deck-sales [data-walkthrough-key="client-dashboard"] .walkthrough-video-frame {
  background-image: url("walkthroughs/04-client-dashboard-poster.jpg");
}
.deck-sales [data-walkthrough-key] .walkthrough-video-frame {
  background-size: cover;
  background-position: center;
}
.deck-sales .pricing-card,
.deck-sales .pricing-includes {
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}
.is-scroll-active .deck-sales .walkthrough-tab,
.is-scroll-active .deck-sales .walkthrough-panel,
.is-scroll-active .deck-sales .walkthrough-video-frame,
.is-scroll-active .deck-sales .walkthrough-card,
.is-scroll-active .deck-sales .pricing-card,
.is-scroll-active .deck-sales .pricing-includes,
.is-scroll-active .deck-sales .hero-video-fullscreen {
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
}

@media (prefers-reduced-motion: reduce) {
  [data-cinema-target],
  [data-cinema-item] {
    opacity: 1 !important;
    transform: none !important;
    will-change: auto !important;
  }
}

/* Centered message sections without the shared shadow backdrop */
.deck-sales .system-message-section,
.deck-sales .walkthrough-intro-section {
  place-items: center;
  text-align: center;
}
.deck-sales .system-message-section .section-shell,
.deck-sales .walkthrough-intro-section .section-shell {
  place-items: center;
}
.deck-sales .system-message-section .section-copy,
.deck-sales .walkthrough-intro-section .section-copy {
  width: min(100%, 960px);
  max-width: 960px;
  margin-inline: auto;
  justify-items: center;
  text-align: center;
}
.deck-sales .system-message-section .section-copy::before,
.deck-sales .walkthrough-intro-section .section-copy::before {
  content: none;
  display: none;
}
.deck-sales .system-message-section .section-copy p,
.deck-sales .walkthrough-intro-section .section-copy p {
  max-width: 760px;
  margin-inline: auto;
}
.deck-sales .system-message-section__actions {
  width: 100%;
  margin-top: 10px;
  display: grid;
  justify-items: center;
}
.deck-sales .system-message-section__actions .hero__actions-row {
  justify-content: center;
}
.deck-sales .walkthrough-intro-section .walkthrough-card {
  justify-items: stretch;
  text-align: left;
}
.deck-sales .walkthrough-intro-section .walkthrough-card__eyebrow,
.deck-sales .walkthrough-intro-section .walkthrough-card h3,
.deck-sales .walkthrough-intro-section .walkthrough-card p,
.deck-sales .walkthrough-intro-section .walkthrough-meta {
  width: 100%;
  text-align: left;
}

/* Retained conversion sections: pricing + FAQ only */
.pricing-includes__eyebrow {
  margin-bottom: 14px;
  color: var(--plum);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.pricing-risk {
  color: rgba(255,255,255,0.74);
  font-size: 0.78rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.pricing-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}
.pricing-layout .pricing-grid { grid-template-columns: 1fr; margin-top: 0; }
.pricing-includes {
  display: grid;
  align-content: center;
  padding: 26px;
  border: 1px solid rgba(128,82,255,0.42);
  border-radius: 24px;
  background: linear-gradient(150deg, rgba(18,15,28,0.82), rgba(2,2,4,0.7));
  backdrop-filter: blur(3px);
}
.pricing-includes h3 {
  margin: 0 0 16px;
  color: var(--plum);
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  font-weight: 200;
  line-height: 1.08;
}
.pricing-includes ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding-left: 20px;
  color: rgba(255,255,255,0.82);
  line-height: 1.55;
}
.pricing-legal { max-width: 820px; margin-top: 16px; }
.faq-section .faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.faq-card a { color: var(--plum); text-decoration: underline; text-underline-offset: 3px; }
.faq-card summary {
  position: relative;
  display: grid;
  gap: 8px;
  padding-right: 34px;
  cursor: pointer;
  list-style: none;
}
.faq-card summary::-webkit-details-marker { display: none; }
.faq-card__answer-title {
  color: var(--bone);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  font-weight: 300;
  line-height: 1.28;
}
.faq-card__icon {
  position: absolute;
  top: 50%;
  right: 2px;
  color: var(--plum);
  font-size: 1.5rem;
  font-weight: 200;
  transform: translateY(-50%);
  transition: transform 180ms ease;
}
.faq-card[open] .faq-card__icon { transform: translateY(-50%) rotate(45deg); }
.faq-card > p { margin: 18px 0 0; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.1); }
@media (max-width: 700px) {
  .pricing-layout,
  .faq-section .faq-grid { grid-template-columns: 1fr; }
  .pricing-includes { padding: 19px; }
  .faq-section .faq-grid { gap: 10px; }
  .faq-card { padding: 18px; }
}

/* Keep the fixed particle field moving on the compositor between WebGL frames. */
.deck-sales .scene {
  overflow: hidden;
}
.deck-sales .scene [data-dala-canvas] {
  width: calc(100% + 24px) !important;
  height: calc(100% + 24px) !important;
  margin: -12px;
  transform: translate3d(0, 0, 0) scale(1.016);
  transform-origin: 50% 50%;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .deck-sales .scene [data-dala-canvas] {
    transform: scale(1.012) !important;
  }
}
