:root {
  --ink: #10120f;
  --ink-soft: #343832;
  --paper: #f4f1ea;
  --paper-deep: #e9e4da;
  --white: #fff;
  --teal: #0f6f61;
  --teal-dark: #0a4d44;
  --accent: #e6f451;
  --line: rgba(16, 18, 15, 0.17);
  --line-dark: rgba(255, 255, 255, 0.18);
  --muted: #686d65;
  --header-height: 68px;
  --shell: 1320px;
  --radius: 4px;
  --shadow: 0 24px 70px rgba(16, 18, 15, 0.12);
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.is-menu-open {
  overflow: hidden;
}

main > section[id] {
  scroll-margin-top: calc(var(--header-height) + 16px);
}

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

button,
a {
  font: inherit;
}

button {
  color: inherit;
}

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

p,
h1,
h2,
h3,
figure,
ol,
ul {
  margin: 0;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.page-shell {
  width: min(var(--shell), calc(100% - 64px));
  margin-inline: auto;
}

.section {
  padding-block: 120px;
}

.eyebrow {
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.eyebrow-on-dark {
  color: #9ec9bd;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--ink);
  background: var(--accent);
  border-color: var(--accent);
}

.button-primary:hover {
  background: #f0fa82;
  border-color: #f0fa82;
}

.text-action {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  padding-block: 8px;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
}

.text-action svg {
  width: 16px;
  height: 16px;
}

.icon-button {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.icon-button svg {
  width: 20px;
  height: 20px;
}

.announcement {
  position: relative;
  z-index: 80;
  display: grid;
  min-height: 30px;
  place-items: center;
  padding: 6px 24px;
  color: var(--white);
  background: var(--ink);
}

.announcement p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  line-height: 1.3;
}

.announcement strong {
  color: var(--accent);
  font-weight: 800;
}

.site-header {
  position: sticky;
  z-index: 70;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: var(--header-height);
  align-items: center;
  padding-inline: 32px;
  border-bottom: 1px solid var(--line);
  background: rgba(244, 241, 234, 0.96);
  backdrop-filter: blur(18px);
}

.brand {
  width: fit-content;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.desktop-nav a {
  position: relative;
  padding-block: 8px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.header-buy {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding-inline: 18px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  font-size: 13px;
  font-weight: 800;
  transition: color 180ms ease, background-color 180ms ease;
}

.header-buy:hover {
  color: var(--white);
  background: var(--ink);
}

.menu-button,
.mobile-menu {
  display: none;
}

.mobile-menu-backdrop {
  position: fixed;
  z-index: 60;
  inset: 0;
  background: rgba(16, 18, 15, 0.45);
}

.hero {
  position: relative;
  height: 72svh;
  min-height: 620px;
  max-height: 760px;
  overflow: hidden;
  background: #ede4d8;
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  align-items: center;
}

.hero-copy {
  width: 510px;
  padding-bottom: 24px;
}

.hero-copy h1 {
  margin-top: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 0.98;
}

.hero-lead {
  margin-top: 24px;
  font-size: 30px;
  font-weight: 450;
  line-height: 1.16;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 9px;
  max-width: 460px;
  margin-top: 25px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 650;
}

.hero-note svg {
  width: 18px;
  height: 18px;
  color: var(--teal);
}

.hero-discover {
  position: absolute;
  z-index: 3;
  bottom: 22px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 750;
  transform: translateX(-50%);
}

.hero-discover svg {
  width: 16px;
  height: 16px;
}

.section-intro {
  margin-bottom: 56px;
}

.section-intro h2,
.atelier-copy h2,
.truth-layout h2,
.buy-section h2,
.confidence-heading h2,
.faq-layout h2,
.final-cta h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 1.02;
}

.section-intro h2 {
  margin-top: 15px;
}

.split-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: end;
  gap: 80px;
}

.split-intro > p {
  max-width: 520px;
  padding-bottom: 5px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.transformation {
  padding-top: 56px;
  background: var(--paper);
}

.result-sequence {
  display: grid;
  grid-template-columns: 1.05fr 0.8fr 1.05fr;
  gap: 12px;
  scrollbar-width: none;
}

.result-sequence::-webkit-scrollbar,
.demo-selector::-webkit-scrollbar {
  display: none;
}

.result-sequence figure {
  min-width: 0;
}

.result-sequence img {
  width: 100%;
  height: 430px;
  border-radius: var(--radius);
  object-fit: cover;
}

.result-sequence figure:nth-child(2) img {
  object-position: center 45%;
}

.result-sequence figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--ink);
  margin-top: 14px;
}

.result-sequence figcaption span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
}

.result-sequence figcaption strong {
  font-size: 15px;
  font-weight: 750;
}

.demo-section {
  color: var(--white);
  background: var(--ink);
}

.demo-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: end;
  gap: 80px;
}

.demo-heading h2 {
  max-width: 780px;
  color: var(--white);
}

.demo-heading > p {
  max-width: 470px;
  padding-bottom: 6px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 17px;
  line-height: 1.6;
}

.demo-experience {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
  align-items: stretch;
}

.demo-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: #070807;
}

.demo-stage-poster,
.demo-stage video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.demo-stage-poster {
  z-index: 0;
  opacity: 1;
  transition: opacity 180ms ease;
}

.demo-stage video {
  z-index: 1;
  opacity: 0;
  transition: opacity 180ms ease;
}

.demo-stage.is-media-ready .demo-stage-poster {
  opacity: 0;
}

.demo-stage.is-media-ready video {
  opacity: 1;
}

.demo-stage.is-portrait video {
  object-fit: contain;
}

.demo-stage-topline {
  position: absolute;
  top: 18px;
  right: 18px;
  left: 18px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 800;
  z-index: 2;
}

.demo-stage-topline span {
  padding: 7px 9px;
  background: rgba(16, 18, 15, 0.72);
}

.demo-stage-bottom {
  position: absolute;
  right: 18px;
  bottom: 20px;
  left: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  z-index: 2;
}

.demo-stage-bottom > div {
  max-width: 620px;
  padding: 15px 17px;
  background: rgba(16, 18, 15, 0.8);
}

.demo-stage-bottom span {
  color: #b7d9d0;
  font-size: 11px;
  font-weight: 800;
}

.demo-stage-bottom h3 {
  margin-top: 5px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.18;
}

.sound-button {
  flex: 0 0 auto;
  color: var(--white);
  background: rgba(16, 18, 15, 0.72);
}

.sound-button:hover {
  color: var(--ink);
  background: var(--white);
}

.demo-progress {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.16);
  z-index: 3;
}

.demo-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--accent);
}

.demo-selector {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
  scrollbar-width: none;
}

.demo-tab {
  display: grid;
  grid-template-columns: 104px 1fr;
  align-items: center;
  gap: 16px;
  min-height: 0;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.64);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, padding 180ms ease;
}

.demo-tab:hover,
.demo-tab.is-active {
  color: var(--white);
  background: #181b17;
  padding-inline: 10px;
}

.demo-tab img {
  width: 104px;
  aspect-ratio: 16 / 9;
  border-radius: 2px;
  object-fit: cover;
  filter: saturate(0.82);
}

.demo-tab.is-active img {
  filter: saturate(1);
}

.demo-tab > span {
  display: grid;
  min-width: 0;
}

.demo-tab small {
  color: #9ec9bd;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.demo-tab strong {
  margin-top: 4px;
  color: inherit;
  font-size: 15px;
  line-height: 1.2;
}

.demo-tab em {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-style: normal;
}

.atelier-section {
  padding-block: 0;
  background: var(--white);
}

.atelier-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(350px, 0.65fr);
  min-height: 690px;
  align-items: stretch;
}

.atelier-media {
  margin-left: calc((100vw - min(var(--shell), calc(100vw - 64px))) / -2);
  overflow: hidden;
}

.atelier-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.atelier-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0 80px 72px;
}

.atelier-copy h2 {
  margin-top: 16px;
}

.atelier-copy > p:not(.eyebrow) {
  max-width: 440px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.atelier-copy .text-action {
  margin-top: 34px;
}

.process {
  background: var(--paper);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.process-steps li {
  position: relative;
  min-height: 300px;
  padding: 30px 42px 30px 0;
}

.process-steps li + li {
  padding-left: 42px;
  border-left: 1px solid var(--line);
}

.process-steps li > span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
}

.process-steps svg {
  display: block;
  width: 32px;
  height: 32px;
  margin-top: 54px;
  color: var(--ink);
}

.process-steps h3 {
  margin-top: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
}

.process-steps p {
  max-width: 330px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.product-truth {
  padding-block: 110px;
  color: var(--white);
  background: var(--ink);
}

.truth-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 90px;
}

.truth-layout h2 {
  margin-top: 16px;
  color: var(--white);
  font-size: 60px;
}

.truth-statement {
  border-top: 1px solid var(--line-dark);
}

.truth-statement p {
  padding-block: 26px;
  border-bottom: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.55;
}

.truth-statement strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-size: 13px;
}

.buy-section {
  background: var(--white);
}

.buy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(420px, 0.88fr);
  align-items: start;
  gap: 72px;
}

.product-main {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: #f7f7f4;
}

.product-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 160ms ease;
}

.product-main > span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 8px 10px;
  color: var(--white);
  background: var(--ink);
  font-size: 10px;
  font-weight: 800;
}

.product-thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.product-thumbnails button {
  width: 78px;
  height: 78px;
  padding: 0;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 2px;
  background: #f7f7f4;
  cursor: pointer;
}

.product-thumbnails button.is-active {
  border-color: var(--ink);
}

.product-thumbnails img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.purchase-panel {
  padding: 12px 0 0 64px;
  border-left: 1px solid var(--line);
}

.purchase-panel h2 {
  margin-top: 15px;
  font-size: 50px;
}

.purchase-subtitle {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 19px;
  font-weight: 650;
}

.purchase-price {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 30px;
  padding-block: 24px;
  border-block: 1px solid var(--line);
}

.purchase-price strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
}

.purchase-price span {
  color: var(--muted);
  font-size: 12px;
}

.purchase-highlights {
  display: grid;
  gap: 13px;
  margin-top: 26px;
  padding: 0;
  list-style: none;
}

.purchase-highlights li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.45;
}

.purchase-highlights svg {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  color: var(--teal);
}

.purchase-cta {
  width: 100%;
  margin-top: 30px;
}

.purchase-demo-link {
  margin-top: 16px;
}

.offer-facts {
  display: grid;
  margin-top: 32px;
  border-top: 1px solid var(--line);
}

.offer-facts > p {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  padding-block: 16px;
  border-bottom: 1px solid var(--line);
}

.offer-facts > p > svg {
  width: 19px;
  height: 19px;
  margin-top: 2px;
  color: var(--teal);
}

.offer-facts span {
  display: grid;
  gap: 3px;
}

.offer-facts strong {
  font-size: 13px;
}

.offer-facts small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.purchase-boundary {
  margin-top: 18px;
  color: #797d76;
  font-size: 11px;
  line-height: 1.5;
}

.confidence {
  padding-block: 100px;
  background: #e7eee9;
}

.confidence-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 80px;
}

.confidence-heading h2 {
  max-width: 410px;
  margin-top: 15px;
  font-size: 46px;
}

.confidence-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
}

.confidence-items article {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 16px;
  min-height: 150px;
  padding: 24px 28px 24px 0;
  border-bottom: 1px solid var(--line);
}

.confidence-items article:nth-child(even) {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.confidence-items svg {
  width: 24px;
  height: 24px;
  color: var(--teal);
}

.confidence-items span {
  display: grid;
  align-content: start;
  gap: 8px;
}

.confidence-items strong {
  font-size: 14px;
}

.confidence-items small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.policy-disclosure {
  grid-column: 2;
  border-bottom: 1px solid var(--ink);
}

.policy-disclosure summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 22px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.policy-disclosure summary::-webkit-details-marker {
  display: none;
}

.policy-disclosure summary svg {
  width: 18px;
  height: 18px;
  transition: transform 180ms ease;
}

.policy-disclosure[open] summary svg {
  transform: rotate(45deg);
}

.policy-disclosure > div {
  padding: 0 0 28px;
}

.policy-disclosure p {
  max-width: 780px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 18px;
}

.policy-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 800;
}

.policy-links svg {
  width: 14px;
  height: 14px;
}

.faq {
  background: var(--paper);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 100px;
}

.faq-layout h2 {
  max-width: 430px;
  margin-top: 15px;
  font-size: 46px;
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 18px;
  font-size: 15px;
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

.faq-list details[open] summary svg {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 650px;
  padding: 0 48px 22px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.final-cta {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.final-cta > img,
.final-cta-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.final-cta > img {
  object-fit: cover;
  object-position: center 42%;
}

.final-cta-overlay {
  background: rgba(16, 18, 15, 0.62);
}

.final-cta-copy {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  text-align: center;
}

.final-cta h2 {
  margin-top: 14px;
  color: var(--white);
  font-size: 56px;
}

.final-cta .button {
  margin-top: 30px;
}

.site-footer {
  padding-block: 76px 28px;
  color: rgba(255, 255, 255, 0.68);
  background: var(--ink);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.6fr) repeat(3, minmax(130px, 0.6fr));
  gap: 48px;
}

.brand-footer {
  color: var(--white);
}

.footer-brand p {
  max-width: 360px;
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.6;
}

.footer-main nav {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-main nav strong {
  margin-bottom: 6px;
  color: var(--white);
  font-size: 12px;
}

.footer-main nav a {
  width: fit-content;
  font-size: 13px;
}

.footer-main nav a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 66px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  font-size: 11px;
}

.mobile-buy-bar {
  display: none;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  .js [data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 650ms ease, transform 650ms ease;
  }

  .js [data-reveal].is-visible {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .page-shell {
    width: min(var(--shell), calc(100% - 48px));
  }

  .hero-copy {
    width: 460px;
  }

  .hero-copy h1 {
    font-size: 56px;
  }

  .hero-lead {
    font-size: 27px;
  }

  .demo-experience {
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 24px;
  }

  .demo-tab {
    grid-template-columns: 82px 1fr;
    gap: 12px;
  }

  .demo-tab img {
    width: 82px;
  }

  .atelier-layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr);
  }

  .atelier-copy {
    padding-left: 48px;
  }

  .buy-layout {
    gap: 48px;
  }

  .purchase-panel {
    padding-left: 42px;
  }
}

@media (max-width: 900px) {
  .desktop-nav {
    gap: 20px;
  }

  .header-buy {
    display: none;
  }

  .result-sequence img {
    height: 360px;
  }

  .demo-experience {
    grid-template-columns: 1fr;
  }

  .demo-selector {
    display: flex;
    overflow-x: auto;
    border-top: 0;
    scroll-snap-type: x mandatory;
  }

  .demo-tab {
    flex: 0 0 270px;
    grid-template-columns: 84px 1fr;
    padding: 14px;
    border: 1px solid var(--line-dark);
    scroll-snap-align: start;
  }

  .demo-tab + .demo-tab {
    border-left: 0;
  }

  .atelier-layout {
    grid-template-columns: 1fr;
  }

  .atelier-media {
    height: 500px;
    margin: 0;
  }

  .atelier-copy {
    padding: 70px 0 90px;
  }

  .buy-layout {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    max-width: 720px;
  }

  .purchase-panel {
    max-width: 720px;
    padding: 64px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .confidence-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .policy-disclosure {
    grid-column: 1;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 60px;
  }

  body {
    padding-bottom: 70px;
  }

  .page-shell {
    width: calc(100% - 36px);
  }

  .section {
    padding-block: 68px;
  }

  .transformation {
    padding: 42px 0 64px;
  }

  .announcement {
    min-height: 32px;
    padding-inline: 12px;
  }

  .announcement p {
    gap: 7px;
    font-size: 11px;
    white-space: nowrap;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding-inline: 18px;
  }

  .brand {
    font-size: 20px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: inline-grid;
    width: 40px;
    height: 40px;
    border-color: transparent;
  }

  .mobile-menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 75;
    display: grid;
    padding: 10px 18px 20px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu > a {
    padding-block: 16px;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
    font-weight: 700;
  }

  .mobile-menu .mobile-menu-cta {
    margin-top: 16px;
    padding: 14px;
    border: 0;
    color: var(--ink);
    background: var(--accent);
    text-align: center;
  }

  .hero {
    height: 73svh;
    min-height: 620px;
    max-height: 680px;
  }

  .hero-media img {
    object-position: center;
  }

  .hero-inner {
    align-items: flex-start;
    justify-content: center;
    padding-top: 34px;
  }

  .hero-copy {
    width: 100%;
    padding: 0;
    text-align: center;
  }

  .hero-copy h1 {
    margin-top: 10px;
    font-size: 42px;
    line-height: 1;
  }

  .hero-lead {
    margin-top: 13px;
    font-size: 22px;
    line-height: 1.2;
  }

  .hero-actions {
    justify-content: center;
    gap: 0;
    margin-top: 21px;
  }

  .hero-actions .text-action {
    display: none;
  }

  .hero-actions .button {
    min-height: 46px;
    padding-inline: 18px;
    font-size: 13px;
  }

  .hero-actions .text-action {
    font-size: 13px;
  }

  .hero-note {
    display: none;
  }

  .hero-discover {
    bottom: 16px;
  }

  .section-intro {
    margin-bottom: 38px;
  }

  .section-intro h2,
  .atelier-copy h2,
  .truth-layout h2,
  .buy-section h2,
  .confidence-heading h2,
  .faq-layout h2,
  .final-cta h2 {
    font-size: 38px;
    line-height: 1.04;
  }

  .split-intro,
  .demo-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .split-intro > p,
  .demo-heading > p {
    padding: 0;
    font-size: 15px;
    line-height: 1.6;
  }

  .result-sequence {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    margin-inline: 0;
    padding-inline: 0;
    scroll-padding-inline: 0;
    scroll-snap-type: x mandatory;
  }

  .result-sequence figure {
    flex: 0 0 82vw;
    scroll-snap-align: start;
  }

  .result-sequence img {
    height: 300px;
  }

  .result-sequence figcaption {
    padding-top: 12px;
    margin-top: 10px;
  }

  .demo-section {
    padding-bottom: 72px;
  }

  .demo-experience {
    gap: 16px;
  }

  .demo-stage {
    aspect-ratio: 16 / 9;
    margin-inline: 0;
    border-radius: var(--radius);
  }

  .demo-stage-topline {
    top: 10px;
    right: 10px;
    left: 10px;
    font-size: 9px;
  }

  .demo-stage-topline span {
    padding: 5px 7px;
  }

  .demo-stage-bottom {
    right: 10px;
    bottom: 12px;
    left: 10px;
    gap: 10px;
  }

  .demo-stage-bottom > div {
    max-width: calc(100% - 50px);
    padding: 9px 10px;
  }

  .demo-stage-bottom span {
    font-size: 9px;
  }

  .demo-stage-bottom h3 {
    margin-top: 3px;
    font-size: 16px;
  }

  .sound-button {
    width: 40px;
    height: 40px;
  }

  .demo-selector {
    margin-inline: 0;
    padding-inline: 0;
    scroll-padding-inline: 0;
  }

  .demo-tab {
    flex-basis: 252px;
    grid-template-columns: 82px 1fr;
    padding: 11px;
  }

  .demo-tab:hover,
  .demo-tab.is-active {
    padding: 11px;
  }

  .demo-tab em {
    display: none;
  }

  .atelier-media {
    height: auto;
    aspect-ratio: 16 / 10;
    margin-inline: 0;
  }

  .atelier-layout {
    min-height: 0;
  }

  .atelier-media img {
    object-position: 47% center;
  }

  .atelier-copy {
    padding: 44px 0 58px;
  }

  .atelier-copy > p:not(.eyebrow) {
    margin-top: 20px;
    font-size: 16px;
  }

  .atelier-copy .text-action {
    margin-top: 26px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-steps li {
    display: grid;
    grid-template-columns: 40px 36px 1fr;
    grid-template-rows: auto auto;
    min-height: 0;
    gap: 5px 14px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
  }

  .process-steps li + li {
    padding-left: 0;
    border-left: 0;
  }

  .process-steps li > span {
    grid-row: 1 / 3;
  }

  .process-steps svg {
    grid-row: 1 / 3;
    width: 26px;
    height: 26px;
    margin: 0;
  }

  .process-steps h3 {
    margin: 0;
    font-size: 25px;
  }

  .process-steps p {
    max-width: none;
    margin: 0;
    font-size: 13px;
  }

  .product-truth {
    padding-block: 68px;
  }

  .truth-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .truth-layout h2 {
    font-size: 44px;
  }

  .truth-statement p {
    font-size: 16px;
  }

  .buy-layout {
    gap: 36px;
  }

  .buy-section.section {
    padding-top: 54px;
  }

  .product-main {
    aspect-ratio: 4 / 3;
  }

  .product-main > span {
    right: 10px;
    bottom: 10px;
    font-size: 9px;
  }

  .product-thumbnails {
    gap: 8px;
  }

  .product-thumbnails button {
    width: 68px;
    height: 68px;
  }

  .purchase-panel {
    padding-top: 36px;
  }

  .purchase-panel h2 {
    font-size: 42px;
  }

  .purchase-subtitle {
    font-size: 17px;
  }

  .purchase-price strong {
    font-size: 31px;
  }

  .confidence {
    padding-block: 64px;
  }

  .confidence-layout,
  .faq-layout {
    gap: 38px;
  }

  .confidence-heading h2,
  .faq-layout h2 {
    font-size: 38px;
  }

  .confidence-items {
    grid-template-columns: 1fr;
  }

  .confidence-items article {
    min-height: 0;
    padding: 20px 0;
  }

  .confidence-items article:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }

  .policy-disclosure summary {
    font-size: 13px;
  }

  .policy-links {
    display: grid;
    gap: 14px;
  }

  .faq-list summary {
    font-size: 14px;
  }

  .final-cta {
    min-height: 470px;
  }

  .final-cta > img {
    object-position: 48% center;
  }

  .final-cta h2 {
    font-size: 40px;
  }

  .site-footer {
    padding-block: 58px 24px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 42px 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-main nav:last-child {
    display: none;
  }

  .footer-bottom {
    display: grid;
    gap: 5px;
    margin-top: 48px;
  }

  .mobile-buy-bar {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr auto;
    min-height: 70px;
    align-items: center;
    gap: 14px;
    padding: 10px 12px 10px 18px;
    border-top: 1px solid var(--line);
    background: rgba(244, 241, 234, 0.98);
    transform: translateY(110%);
    transition: transform 220ms ease;
  }

  .mobile-buy-bar.is-visible {
    transform: translateY(0);
  }

  .mobile-buy-bar > div {
    display: grid;
  }

  .mobile-buy-bar strong {
    font-size: 13px;
  }

  .mobile-buy-bar span {
    color: var(--muted);
    font-size: 11px;
  }

  .mobile-buy-bar .button {
    min-height: 44px;
    padding-inline: 18px;
    font-size: 12px;
  }
}

@media (max-width: 420px) {
  .hero-copy h1 {
    font-size: 40px;
  }

  .hero-lead {
    font-size: 21px;
  }

  .hero-actions {
    gap: 13px;
  }

  .hero-actions .button {
    padding-inline: 14px;
  }

  .result-sequence figure {
    flex-basis: 84vw;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* V7: audited typography, media, and conversion fixes */
@font-face {
  font-family: "Manrope Local";
  src: url("assets/fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

@font-face {
  font-family: "Newsreader Local";
  src: url("assets/fonts/newsreader-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
}

:root {
  --font-sans: "Manrope Local", "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  --font-display: "Newsreader Local", Georgia, "Times New Roman", serif;
  --action: #0b675a;
  --action-hover: #084f46;
  --accent: #d9e568;
}

html {
  scroll-padding-top: 0;
}

body {
  font-family: var(--font-sans);
}

main > section[id] {
  scroll-margin-top: 0;
}

.brand,
.hero-copy h1,
.section-intro h2,
.atelier-copy h2,
.truth-layout h2,
.buy-section h2,
.confidence-heading h2,
.faq-layout h2,
.final-cta h2,
.demo-stage-bottom h3,
.process-steps h3,
.purchase-price strong {
  font-family: var(--font-display);
}

.section {
  padding-block: 104px;
}

.atelier-section {
  padding-block: 0;
}

.eyebrow,
.button,
.text-action,
.hero-note,
.desktop-nav,
.header-buy,
.result-sequence figcaption strong,
.demo-stage-topline,
.demo-stage-bottom span,
.demo-tab small,
.demo-tab strong,
.process-steps li > span,
.purchase-subtitle,
.faq-list summary {
  font-weight: 700;
}

.button-primary,
.mobile-menu .mobile-menu-cta {
  color: var(--white);
  background: var(--action);
  border-color: var(--action);
}

.button-primary:hover,
.mobile-menu .mobile-menu-cta:hover {
  color: var(--white);
  background: var(--action-hover);
  border-color: var(--action-hover);
}

.announcement strong {
  color: var(--accent);
}

.hero-copy h1 {
  font-size: 62px;
  line-height: 1;
}

.hero-lead {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
}

.section-intro h2,
.atelier-copy h2,
.truth-layout h2,
.buy-section h2,
.confidence-heading h2,
.faq-layout h2,
.final-cta h2 {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.08;
}

.section-intro h2,
.atelier-copy h2,
.confidence-heading h2,
.faq-layout h2,
.final-cta h2 {
  margin-top: 0;
}

.demo-heading h2,
.purchase-summary h2 {
  margin-top: 14px;
}

.section-intro {
  margin-bottom: 48px;
}

.split-intro > p,
.atelier-copy > p:not(.eyebrow) {
  font-size: 17px;
  line-height: 1.6;
}

.result-sequence img {
  height: 410px;
}

.result-sequence figcaption {
  gap: 18px;
}

.result-sequence figcaption strong {
  font-size: 14px;
  text-align: right;
}

.demo-heading h2 {
  max-width: 560px;
}

.demo-stage.is-portrait {
  background: #0c0f0d;
}

.demo-stage.is-portrait video {
  position: absolute;
  top: 0;
  right: 0;
  width: 44%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.demo-stage.is-portrait .demo-stage-topline,
.demo-stage.is-portrait .demo-stage-bottom {
  right: 48%;
}

.demo-stage-bottom > div:first-child {
  max-width: 620px;
  padding: 15px 17px;
  background: rgba(16, 18, 15, 0.82);
}

.demo-stage-bottom > .demo-controls {
  display: flex;
  max-width: none;
  flex: 0 0 auto;
  gap: 9px;
  padding: 0;
  background: transparent;
}

.play-button,
.sound-button {
  flex: 0 0 auto;
  color: var(--white);
  background: rgba(16, 18, 15, 0.78);
}

.play-button:hover,
.sound-button:hover {
  color: var(--ink);
  background: var(--white);
}

.demo-stage-bottom h3 {
  font-size: 23px;
  line-height: 1.2;
}

.demo-tab img {
  height: 58px;
}

.demo-progress span {
  background: var(--accent);
}

.atelier-copy {
  padding-left: 64px;
}

.atelier-copy h2 {
  max-width: 400px;
}

.truth-layout h2 {
  max-width: 470px;
  margin-top: 0;
  font-size: 52px;
  line-height: 1.05;
}

.buy-layout {
  grid-template-rows: auto auto;
  column-gap: 72px;
  row-gap: 0;
}

.product-gallery {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.purchase-summary,
.purchase-details {
  grid-column: 2;
  padding-left: 64px;
  border-left: 1px solid var(--line);
}

.purchase-summary {
  grid-row: 1;
  padding-top: 12px;
}

.purchase-details {
  grid-row: 2;
}

.purchase-summary h2 {
  font-size: 48px;
}

.purchase-subtitle {
  font-size: 18px;
  font-weight: 600;
}

.purchase-price {
  margin-top: 24px;
  padding-block: 20px;
}

.purchase-price strong {
  font-size: 32px;
  font-weight: 500;
}

.purchase-cta {
  margin-top: 24px;
}

.purchase-highlights {
  margin-top: 30px;
}

.offer-facts {
  margin-top: 28px;
}

.purchase-boundary {
  color: #565c54;
  font-size: 12px;
  line-height: 1.5;
}

.confidence-heading h2,
.faq-layout h2 {
  font-size: 44px;
  line-height: 1.08;
}

.confidence-items small {
  color: #4f5851;
}

.final-cta-overlay {
  background: rgba(16, 18, 15, 0.5);
}

.final-cta h2 {
  max-width: 650px;
  font-size: 50px;
  line-height: 1.06;
}

@media (min-width: 901px) and (max-width: 1120px) {
  .atelier-copy {
    padding-left: 42px;
  }

  .atelier-copy h2 {
    font-size: 44px;
    line-height: 1.08;
  }

  .purchase-summary,
  .purchase-details {
    padding-left: 42px;
  }

  .demo-tab img {
    height: 46px;
  }
}

@media (max-width: 900px) {
  .buy-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .purchase-summary,
  .product-gallery,
  .purchase-details {
    grid-column: 1;
    max-width: 720px;
  }

  .purchase-summary {
    grid-row: 1;
    padding: 0 0 42px;
    border-left: 0;
  }

  .product-gallery {
    grid-row: 2;
  }

  .purchase-details {
    grid-row: 3;
    padding: 42px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .demo-tab img {
    height: 47px;
  }
}

@media (max-width: 720px) {
  .section {
    padding-block: 64px;
  }

  .atelier-section {
    padding-block: 0;
  }

  .transformation {
    padding-block: 48px 60px;
  }

  .hero-copy h1 {
    font-size: 40px;
    line-height: 1.04;
  }

  .hero-lead {
    font-size: 21px;
    line-height: 1.22;
  }

  .section-intro h2,
  .atelier-copy h2,
  .confidence-heading h2,
  .faq-layout h2 {
    font-size: 34px;
    line-height: 1.1;
  }

  .section-intro {
    margin-bottom: 34px;
  }

  .split-intro > p,
  .demo-heading > p {
    font-size: 15px;
    line-height: 1.6;
  }

  .result-sequence figcaption strong {
    font-size: 13px;
  }

  .demo-stage.is-portrait {
    aspect-ratio: 4 / 5;
  }

  .demo-stage.is-portrait video {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .demo-stage.is-portrait .demo-stage-topline {
    right: 12px;
  }

  .demo-stage.is-portrait .demo-stage-bottom {
    right: 12px;
  }

  .demo-stage-bottom {
    gap: 10px;
  }

  .demo-stage-bottom h3 {
    font-size: 16px;
  }

  .demo-controls {
    flex-direction: column;
  }

  .demo-controls .icon-button {
    width: 40px;
    height: 40px;
  }

  .atelier-copy {
    padding: 44px 0 58px;
  }

  .truth-layout h2 {
    font-size: 38px;
    line-height: 1.08;
  }

  .buy-section.section {
    padding-block: 76px 64px;
  }

  .demo-section,
  .process-section,
  .confidence-section {
    padding-top: 76px;
  }

  .purchase-summary {
    padding-bottom: 34px;
  }

  .purchase-summary h2 {
    font-size: 38px;
    line-height: 1.08;
  }

  .purchase-subtitle {
    font-size: 16px;
  }

  .purchase-price {
    margin-top: 20px;
    padding-block: 18px;
  }

  .purchase-price strong {
    font-size: 30px;
  }

  .purchase-cta {
    margin-top: 22px;
  }

  .purchase-details {
    padding-top: 34px;
  }

  .purchase-highlights {
    margin-top: 0;
  }

  .confidence-heading h2,
  .faq-layout h2 {
    font-size: 34px;
  }

  .final-cta h2 {
    max-width: 330px;
    font-size: 36px;
    line-height: 1.08;
  }

  .mobile-buy-bar .button {
    color: var(--white);
    background: var(--action);
    border-color: var(--action);
  }
}

/* V8: typography and text-layout refinement */
:root {
  --muted: #5d645d;
}

body {
  font-kerning: normal;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
.hero-lead,
.final-cta h2 {
  text-wrap: balance;
}

.split-intro > p,
.demo-heading > p,
.atelier-copy > p:not(.eyebrow),
.process .section-intro > p,
.process-steps p,
.truth-statement p,
.purchase-highlights li,
.offer-facts small,
.confidence-items small,
.policy-disclosure p,
.faq-list details p,
.footer-brand p {
  text-wrap: pretty;
}

.eyebrow {
  font-weight: 700;
}

.desktop-nav a {
  font-weight: 600;
}

.header-buy,
.button,
.text-action {
  font-weight: 650;
}

.hero-note {
  font-weight: 600;
}

.result-sequence figcaption strong,
.demo-tab strong {
  font-weight: 650;
}

.section-intro h2,
.atelier-copy h2,
.buy-section h2 {
  font-size: 46px;
  line-height: 1.06;
}

.confidence-heading h2,
.faq-layout h2 {
  font-size: 42px;
  line-height: 1.08;
}

.truth-layout h2,
.final-cta h2 {
  font-size: 48px;
  line-height: 1.06;
}

.split-intro > p,
.demo-heading > p,
.atelier-copy > p:not(.eyebrow),
.process .section-intro > p {
  font-size: 17px;
  line-height: 1.58;
}

.demo-heading > p {
  color: rgba(255, 255, 255, 0.74);
}

.demo-tab em {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
}

.process-steps h3 {
  line-height: 1.15;
}

.process-steps p {
  line-height: 1.55;
}

.truth-statement p {
  color: rgba(255, 255, 255, 0.76);
}

.truth-statement strong {
  font-weight: 650;
}

.purchase-subtitle {
  font-weight: 550;
}

.purchase-price span {
  font-size: 13px;
  line-height: 1.5;
}

.purchase-highlights li {
  font-size: 15px;
  line-height: 1.5;
}

.offer-facts strong {
  font-size: 14px;
  line-height: 1.4;
}

.offer-facts small {
  font-size: 13px;
  line-height: 1.5;
}

.purchase-boundary {
  font-size: 13px;
  line-height: 1.55;
}

.confidence-items strong {
  font-size: 15px;
  line-height: 1.4;
}

.confidence-items small {
  font-size: 14px;
  line-height: 1.55;
}

.policy-disclosure summary {
  font-size: 14px;
  font-weight: 650;
  line-height: 1.5;
}

.policy-disclosure p {
  font-size: 14px;
  line-height: 1.6;
}

.policy-links a {
  font-size: 13px;
  font-weight: 650;
}

.faq-list summary {
  font-size: 15px;
  font-weight: 650;
  line-height: 1.5;
}

.faq-list details p {
  font-size: 15px;
  line-height: 1.6;
}

.footer-main nav a {
  font-size: 14px;
}

.footer-bottom {
  font-size: 12px;
}

@media (max-width: 720px) {
  .transformation {
    padding-top: 76px;
  }

  .section-intro h2,
  .atelier-copy h2,
  .confidence-heading h2,
  .faq-layout h2 {
    font-size: 32px;
    line-height: 1.08;
  }

  .truth-layout h2,
  .purchase-summary h2 {
    font-size: 36px;
    line-height: 1.08;
  }

  .final-cta h2 {
    font-size: 34px;
    line-height: 1.08;
  }

  .hero-actions .button {
    font-size: 14px;
    font-weight: 650;
  }

  .split-intro > p,
  .demo-heading > p,
  .atelier-copy > p:not(.eyebrow),
  .process .section-intro > p {
    font-size: 16px;
    line-height: 1.55;
  }

  .process-steps h3 {
    font-size: 24px;
    line-height: 1.15;
  }

  .process-steps p {
    font-size: 14px;
    line-height: 1.55;
  }

  .truth-statement p {
    font-size: 16px;
    line-height: 1.55;
  }

  .purchase-subtitle {
    font-size: 16px;
    line-height: 1.5;
  }

  .purchase-price span,
  .offer-facts small,
  .purchase-boundary {
    font-size: 13px;
  }

  .purchase-highlights li {
    font-size: 15px;
  }

  .offer-facts strong,
  .policy-disclosure summary,
  .confidence-items small {
    font-size: 14px;
  }

  .confidence-items strong,
  .faq-list summary,
  .faq-list details p {
    font-size: 15px;
  }

  .faq-list details p {
    line-height: 1.6;
  }
}

/* V8.1: preserve the full 9:16 frame in desktop portrait demos */
@media (min-width: 721px) {
  .demo-stage.is-portrait {
    aspect-ratio: 3 / 2;
  }

  .demo-stage.is-portrait .demo-stage-poster,
  .demo-stage.is-portrait video {
    inset: 0 0 0 auto;
    width: 38%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #070807;
  }

  .demo-stage.is-portrait .demo-stage-topline {
    right: 42%;
  }

  .demo-stage.is-portrait .demo-stage-bottom {
    top: 50%;
    right: 42%;
    bottom: auto;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 18px;
    transform: translateY(-38%);
  }

  .demo-stage.is-portrait .demo-stage-bottom > div:first-child {
    width: min(100%, 440px);
    max-width: 440px;
    padding: 20px 22px;
  }

  .demo-stage.is-portrait .demo-stage-bottom > .demo-controls {
    flex-direction: row;
  }

  .demo-stage.is-portrait .demo-stage-bottom h3 {
    max-width: 400px;
    font-size: 26px;
    line-height: 1.18;
  }
}

@media (min-width: 721px) and (max-width: 900px) {
  .demo-stage.is-portrait .demo-stage-bottom h3 {
    font-size: 21px;
  }
}

@media (max-width: 720px) {
  .demo-stage.is-portrait .demo-stage-poster {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
