@font-face {
  font-family: "Open Sans";
  src: url("../assets/versos-de-axe/fonts/open-sans-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("../assets/versos-de-axe/fonts/open-sans-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("../assets/versos-de-axe/fonts/playfair-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --ink: #11110f;
  --paper: #fbfaf6;
  --bone: #efede6;
  --muted: #686258;
  --line: rgba(17, 17, 15, 0.17);
  --gold: #e6ad00;
  --clay: #cb4532;
  --blue: #135979;
  --green: #24613a;
  --ochre: #b56d18;
  --violet: #755497;
  --shell: min(1360px, calc(100vw - 80px));
  --header-height: 72px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  color: inherit;
}

button {
  font: inherit;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 11px 15px;
  transform: translateY(-160%);
  background: var(--paper);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 700;
  transition: transform 160ms ease;
}

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

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

.utility-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.utility-label::before {
  width: 24px;
  height: 2px;
  flex: 0 0 24px;
  background: currentColor;
  content: "";
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  padding-inline: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(17, 17, 15, 0.92);
  color: #fff;
  backdrop-filter: blur(12px);
  transition: min-height 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  min-height: 62px;
  background: rgba(17, 17, 15, 0.98);
}

.header-spacer {
  width: 1px;
  height: 1px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.6vw, 42px);
  font-size: 0.75rem;
  font-weight: 700;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
  padding-block: 10px;
  color: rgba(255, 255, 255, 0.68);
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--gold);
  content: "";
  transition: transform 240ms var(--ease);
}

.site-nav > a:not(.nav-cta):hover {
  color: #fff;
}

.site-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta,
.primary-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 20px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: background 180ms ease, transform 220ms var(--ease);
}

.nav-cta {
  min-height: 42px;
}

.nav-cta:hover,
.primary-button:hover {
  transform: translateY(-2px);
  background: #f3bf18;
}

.menu-toggle {
  display: none;
}

.hero {
  display: grid;
  min-height: min(790px, 100svh);
  grid-template-columns: minmax(0, 1.02fr) minmax(480px, 0.98fr);
  align-items: center;
  padding-top: var(--header-height);
  background: var(--ink);
  color: #fff;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(60px, 6vw, 92px) clamp(40px, 6vw, 110px);
}

.hero .utility-label {
  margin-bottom: clamp(32px, 5vh, 54px);
  color: var(--gold);
}

.hero h1 {
  font-size: clamp(5rem, 8vw, 9rem);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.8;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero h1 span + span {
  margin-top: 0.2em;
}

.hero h1 em {
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.91em;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.hero-lead {
  max-width: 520px;
  margin-top: clamp(34px, 5vh, 54px);
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(0.98rem, 1.18vw, 1.15rem);
  line-height: 1.7;
}

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

.text-link {
  position: relative;
  padding: 9px 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.75rem;
  font-weight: 700;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 220ms var(--ease);
}

.text-link:hover::after {
  transform: scaleX(1);
}

.hero-media {
  position: relative;
  width: min(calc(100% - 72px), 530px);
  height: clamp(520px, 64vh, 630px);
  justify-self: center;
  overflow: hidden;
  background: #272521;
  box-shadow: 18px 18px 0 var(--clay);
}

.hero-media::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(17, 17, 15, 0.78) 100%);
  content: "";
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
  filter: saturate(0.88) contrast(1.04);
  transform: scale(1.015);
  transition: transform 1100ms var(--ease);
}

.js .hero-media img {
  transform: scale(1.06);
}

.js .hero-media.is-ready img {
  transform: scale(1.015);
}

.hero-media figcaption {
  position: absolute;
  z-index: 3;
  right: clamp(22px, 3vw, 38px);
  bottom: clamp(24px, 3vw, 38px);
  left: clamp(22px, 3vw, 38px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  color: #fff;
}

.hero-media figcaption span {
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-media figcaption strong {
  font-size: clamp(1.25rem, 1.75vw, 1.85rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
  text-align: right;
}

.conversion-strip {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 16px max(40px, calc((100vw - 1360px) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  background: var(--clay);
  color: #fff;
}

.conversion-strip p {
  display: flex;
  align-items: baseline;
  gap: 18px;
}

.conversion-strip strong {
  font-size: 0.92rem;
}

.conversion-strip p span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.77rem;
}

.conversion-strip > a {
  position: relative;
  flex: 0 0 auto;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  transition: color 180ms ease, border-color 180ms ease;
}

.conversion-strip > a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--gold);
}

.proof-band p {
  display: flex;
  min-height: 124px;
  align-items: center;
  gap: 16px;
  padding: 22px clamp(22px, 3vw, 48px);
  border-right: 1px solid rgba(17, 17, 15, 0.22);
}

.proof-band p:last-child {
  border-right: 0;
}

.proof-band strong {
  min-width: 1.25ch;
  font-size: clamp(2.2rem, 3.4vw, 3.8rem);
  letter-spacing: -0.07em;
  line-height: 1;
}

.proof-band span {
  max-width: 132px;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-transform: uppercase;
}

.experience {
  padding: clamp(90px, 10vw, 150px) 0;
  background: var(--bone);
}

.experience-heading {
  text-align: center;
  padding-bottom: clamp(58px, 7vw, 94px);
  border-bottom: 1px solid var(--line);
}

.experience-heading > div {
  max-width: 1080px;
  margin-inline: auto;
}

.experience-heading .utility-label {
  justify-content: center;
  margin-bottom: 26px;
  color: var(--clay);
}

.experience-heading h2 {
  max-width: 1080px;
  margin-inline: auto;
  font-size: clamp(3rem, 5.4vw, 6.2rem);
  font-weight: 700;
  letter-spacing: -0.066em;
  line-height: 0.98;
}

.experience-heading > p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

.experience-body {
  display: grid;
  grid-template-columns: minmax(320px, 0.76fr) minmax(440px, 1.24fr);
  gap: clamp(50px, 9vw, 130px);
  align-items: center;
  padding-top: clamp(60px, 8vw, 110px);
}

.experience-video {
  width: min(100%, 392px);
  justify-self: center;
  padding: clamp(18px, 2.4vw, 32px);
  background: var(--clay);
}

.experience-video video {
  width: min(100%, 320px);
  aspect-ratio: 9 / 16;
  margin-inline: auto;
  background: #000;
  box-shadow: 0 28px 48px rgba(17, 17, 15, 0.25);
}

.experience-video > p {
  margin-top: 20px;
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.experience-video > p span {
  margin-right: 7px;
  color: var(--gold);
}

.experience-copy {
  max-width: 630px;
}

.experience-kicker {
  margin-bottom: 24px;
  color: var(--clay);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.experience-copy h3 {
  font-size: clamp(2.4rem, 4vw, 4.8rem);
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.experience-copy > p:not(.experience-kicker) {
  max-width: 520px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.75;
}

.experience-steps {
  margin: 52px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.experience-steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.experience-steps > li > span {
  color: var(--clay);
  font-size: 0.7rem;
  font-weight: 700;
}

.experience-steps strong,
.experience-steps small {
  display: block;
}

.experience-steps strong {
  font-size: 1.02rem;
}

.experience-steps small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.82rem;
}

.mockups {
  padding: clamp(90px, 10vw, 150px) 0 90px;
  background: var(--ink);
  color: #fff;
}

.mockups-heading {
  text-align: center;
  margin-bottom: clamp(52px, 7vw, 88px);
}

.mockups-heading .utility-label {
  justify-content: center;
  margin-bottom: 22px;
  color: var(--gold);
}

.mockups-heading h2 {
  max-width: 980px;
  margin-inline: auto;
  font-size: clamp(2.6rem, 4.3vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1;
}

.mockups-heading > p {
  max-width: 640px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.86rem;
  line-height: 1.72;
}

.mockup-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.mockup-card {
  display: flex;
  aspect-ratio: 0.86;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mockup-card img {
  width: 92%;
  height: 88%;
  object-fit: contain;
  filter: drop-shadow(0 24px 18px rgba(0, 0, 0, 0.27));
  transition: transform 360ms var(--ease);
}

.mockup-card:hover img {
  transform: translateY(-5px) scale(1.02);
}

.mockup-blue {
  background: var(--blue);
}

.mockup-green {
  background: var(--green);
}

.mockup-gold {
  background: var(--gold);
}

.mockup-ochre {
  background: var(--ochre);
}

.mockup-violet {
  background: var(--violet);
}

.mockup-note {
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.mockup-note strong {
  color: #fff;
}

.collection-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 72px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.collection-benefits article {
  min-height: 250px;
  padding: 40px clamp(24px, 3vw, 42px) 44px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.collection-benefits article:first-child {
  padding-left: 0;
}

.collection-benefits article:last-child {
  padding-right: 0;
  border-right: 0;
}

.collection-benefits article > span {
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.collection-benefits h3 {
  margin-top: 42px;
  font-size: clamp(1.35rem, 2vw, 2rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.collection-benefits p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  line-height: 1.7;
}

.pages {
  padding: clamp(90px, 11vw, 170px) 0;
  background: var(--paper);
}

.pages-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  margin-bottom: clamp(60px, 8vw, 110px);
}

.pages-heading .utility-label {
  justify-content: center;
  color: var(--clay);
}

.pages-heading h2 {
  max-width: 1040px;
  font-size: clamp(3rem, 5.4vw, 6.4rem);
  font-weight: 700;
  letter-spacing: -0.066em;
  line-height: 0.97;
}

.pages-heading > p:last-child {
  max-width: 680px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.75;
}

.pages-panel {
  display: grid;
  min-height: 600px;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: stretch;
}

.pages-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 86px 40px 34px;
  background: var(--clay);
}

.pages-visual::before {
  position: absolute;
  top: 44px;
  right: 44px;
  left: 44px;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
  content: "";
}

.pages-visual img {
  width: min(46%, 230px);
  max-height: 470px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 26px 26px rgba(0, 0, 0, 0.25));
}

.pages-visual figcaption {
  position: absolute;
  top: 62px;
  left: 44px;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pages-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(54px, 7vw, 96px);
  border: 1px solid var(--line);
  border-left: 0;
}

.pages-details blockquote {
  max-width: 600px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.4rem, 4vw, 5rem);
  line-height: 1.04;
}

.pages-details dl {
  margin-top: 52px;
  border-top: 1px solid var(--line);
}

.pages-details dl > div {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.pages-details dt {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pages-details dd {
  color: var(--muted);
  font-size: 0.84rem;
}

.respect {
  text-align: center;
  padding: clamp(80px, 9vw, 130px) max(40px, calc((100vw - 1360px) / 2));
  background: var(--bone);
  border-top: 1px solid var(--line);
}

.respect-heading {
  max-width: 1100px;
  margin-inline: auto;
}

.respect .utility-label {
  justify-content: center;
  margin-bottom: 28px;
  color: var(--clay);
}

.respect h2 {
  max-width: 1100px;
  margin-inline: auto;
  font-size: clamp(3rem, 5.1vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.respect-copy {
  display: grid;
  gap: 26px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.72;
}

.subscriber {
  display: grid;
  min-height: 640px;
  grid-template-columns: 0.88fr 1.12fr;
  background: var(--ink);
  color: #fff;
}

.subscriber-product {
  overflow: hidden;
  min-height: 640px;
  background: #292823;
}

.subscriber-product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
}

.subscriber-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(70px, 9vw, 140px);
}

.subscriber .utility-label {
  margin-bottom: 30px;
  color: var(--gold);
}

.subscriber h2 {
  max-width: 780px;
  font-size: clamp(3rem, 5vw, 5.8rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.subscriber-copy > p:not(.utility-label) {
  max-width: 610px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
  line-height: 1.75;
}

.subscriber .primary-button {
  margin-top: 36px;
}

.subscriber-access {
  padding: clamp(90px, 10vw, 150px) 0;
  background: var(--paper);
}

.access-story {
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(420px, 1.08fr);
  align-items: stretch;
  margin-bottom: 0;
}

.access-story figure {
  min-height: 520px;
  overflow: hidden;
  background: #282620;
}

.access-story figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
}

.access-story > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(54px, 7vw, 104px);
  border: 1px solid var(--line);
  border-left: 0;
}

.access-story .utility-label {
  margin-bottom: 30px;
  color: var(--clay);
}

.access-story h2 {
  max-width: 780px;
  font-size: clamp(3rem, 5vw, 5.6rem);
  letter-spacing: -0.066em;
  line-height: 0.98;
}

.access-story > div > p:last-child {
  max-width: 640px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.75;
}

.offer-panel {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: stretch;
  margin-top: 28px;
}

.offer-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 640px;
  padding: clamp(48px, 6vw, 86px);
  background: var(--ink);
  color: #fff;
  text-align: center;
}

.offer-eyebrow {
  color: var(--gold);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.price {
  display: grid;
  justify-items: center;
  margin-top: 52px;
}

.price small,
.price span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.price strong {
  margin: 7px 0 4px;
  color: var(--gold);
  font-size: clamp(4.3rem, 7vw, 7.2rem);
  letter-spacing: -0.08em;
  line-height: 0.92;
}

.cash-price {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
}

.cash-price strong {
  color: #fff;
}

.secure-purchase {
  width: 100%;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.72rem;
}

.secure-purchase span {
  margin-right: 8px;
  color: var(--gold);
}

.offer-price .primary-button {
  margin-top: 34px;
}

.offer-benefits {
  padding: clamp(48px, 6vw, 88px);
  border: 1px solid var(--line);
  border-left: 0;
  background: var(--bone);
}

.offer-benefits-heading .utility-label {
  margin-bottom: 22px;
  color: var(--clay);
}

.offer-benefits-heading h3 {
  max-width: 720px;
  font-size: clamp(2.4rem, 4vw, 4.6rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.offer-benefits ol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 48px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.offer-benefits li {
  display: grid;
  min-height: 70px;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px 18px 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 700;
}

.offer-benefits li:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.offer-benefits li:nth-child(even) {
  padding-left: 18px;
}

.offer-benefits li span {
  color: var(--clay);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
}

.faq {
  padding: clamp(90px, 10vw, 150px) 0;
  border-top: 1px solid var(--line);
  background: var(--bone);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: clamp(60px, 9vw, 140px);
}

.faq-intro {
  position: sticky;
  top: 104px;
}

.faq-intro .utility-label {
  margin-bottom: 28px;
  color: var(--clay);
}

.faq-intro h2 {
  max-width: 620px;
  font-size: clamp(3rem, 5vw, 5.5rem);
  letter-spacing: -0.066em;
  line-height: 0.98;
}

.faq-intro > p:last-child {
  max-width: 500px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

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

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

.faq-list summary {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 22px 0;
  cursor: pointer;
  font-size: clamp(1rem, 1.45vw, 1.28rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  list-style: none;
}

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

.faq-list summary span {
  flex: 0 0 auto;
  color: var(--clay);
  font-size: 1.7rem;
  font-weight: 400;
  transition: transform 220ms var(--ease);
}

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

.faq-list details > p {
  max-width: 760px;
  padding: 0 56px 28px 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

.faq-checkout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 36px;
  padding: 28px 30px;
  background: var(--ink);
  color: #fff;
}

.faq-checkout p {
  font-weight: 700;
}

.faq-checkout a {
  flex: 0 0 auto;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
}

.final-cta {
  display: grid;
  min-height: 690px;
  grid-template-columns: 0.78fr 1.22fr;
  background: var(--ink);
  color: #fff;
}

.final-cta-art {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: clamp(40px, 6vw, 90px);
  background: var(--gold);
}

.final-cta-art img {
  width: auto;
  height: auto;
  max-width: min(86%, 540px);
  max-height: 440px;
  object-fit: contain;
  filter: drop-shadow(0 28px 26px rgba(17, 17, 15, 0.25));
}

.final-cta-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(68px, 9vw, 140px);
}

.final-cta-copy .utility-label {
  margin-bottom: 30px;
  color: var(--gold);
}

.final-cta-copy h2 {
  max-width: 820px;
  font-size: clamp(3.2rem, 5.5vw, 6.5rem);
  letter-spacing: -0.068em;
  line-height: 0.96;
}

.final-cta-copy > p:not(.utility-label) {
  max-width: 620px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.94rem;
  line-height: 1.75;
}

.final-cta-copy .primary-button {
  margin-top: 34px;
}

.final-cta-copy small {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.66rem;
  letter-spacing: 0.04em;
}

.site-footer {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  padding: 20px max(40px, calc((100vw - 1360px) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer a {
  color: #fff;
}

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 48px, 1000px);
  }

  .hero {
    grid-template-columns: 0.98fr 1.02fr;
  }

  .hero-copy {
    padding-inline: 36px;
  }

  .hero h1 {
    font-size: clamp(4.8rem, 9vw, 7.3rem);
  }

  .experience-body {
    grid-template-columns: 0.82fr 1.18fr;
    gap: 56px;
  }

  .pages-details,
  .subscriber-copy {
    padding: 64px 52px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 66px;
    --shell: calc(100% - 40px);
  }

  .site-header {
    padding-inline: 20px;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .menu-toggle i,
  .menu-toggle i::after {
    display: block;
    width: 22px;
    height: 1px;
    background: currentColor;
    content: "";
    transition: transform 220ms ease;
  }

  .menu-toggle i::after {
    transform: translateY(6px);
  }

  .menu-toggle[aria-expanded="true"] i {
    transform: translateY(3px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] i::after {
    transform: rotate(-90deg);
  }

  .site-nav {
    position: fixed;
    z-index: 2;
    inset: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    padding: 90px 24px 40px;
    visibility: hidden;
    opacity: 0;
    background: var(--ink);
    transform: translateY(-14px);
    transition: opacity 220ms ease, transform 340ms var(--ease), visibility 0s linear 340ms;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .site-nav > a:not(.nav-cta) {
    font-size: clamp(1.7rem, 7vw, 3rem);
    letter-spacing: -0.04em;
  }

  .nav-cta {
    margin-top: 12px;
  }

  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 610px;
    padding: 108px 24px 60px;
  }

  .hero h1 {
    font-size: clamp(5rem, 15vw, 7.4rem);
  }

  .hero-media {
    width: min(calc(100% - 80px), 560px);
    height: 620px;
    margin: 24px auto 64px;
    box-shadow: 14px 14px 0 var(--clay);
  }

  .hero-media figcaption {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-media figcaption strong {
    text-align: left;
  }

  .proof-band {
    grid-template-columns: 1fr 1fr;
  }

  .proof-band p:nth-child(2) {
    border-right: 0;
  }

  .proof-band p:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(17, 17, 15, 0.22);
  }

  .experience-heading,
  .experience-body,
  .pages-heading,
  .pages-panel,
  .respect,
  .subscriber {
    grid-template-columns: 1fr;
  }

  .experience-heading > p {
    max-width: 560px;
  }

  .experience-body {
    gap: 60px;
  }

  .experience-video {
    width: min(100%, 392px);
    margin-inline: auto;
  }

  .experience-video video {
    width: min(100%, 320px);
  }

  .experience-copy {
    max-width: 680px;
  }

  .mockups-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 26px;
  }

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

  .mockup-card:nth-child(4),
  .mockup-card:nth-child(5) {
    aspect-ratio: 1.08;
  }

  .mockup-card:nth-child(4) {
    grid-column: 1 / span 1;
  }

  .mockup-card:nth-child(5) {
    grid-column: 2 / span 2;
  }

  .pages-heading .utility-label {
    margin: 0 0 8px;
  }

  .pages-heading > p:last-child {
    max-width: 580px;
  }

  .pages-panel {
    min-height: 0;
  }

  .pages-visual {
    min-height: 520px;
  }

  .pages-visual img {
    width: min(42%, 220px);
    max-height: 410px;
  }

  .pages-details {
    min-height: 630px;
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .respect {
    align-items: start;
    padding-inline: 24px;
  }

  .respect-copy {
    max-width: 680px;
  }

  .subscriber-product {
    min-height: 500px;
  }

  .subscriber-copy {
    min-height: 660px;
  }
}

@media (max-width: 540px) {
  :root {
    --shell: calc(100% - 32px);
  }

  .utility-label {
    font-size: 0.61rem;
  }

  .hero-copy {
    min-height: 560px;
    padding: 100px 20px 54px;
  }

  .hero h1 {
    font-size: clamp(4rem, 20vw, 6.2rem);
  }

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

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .hero-media {
    width: calc(100% - 40px);
    height: 450px;
    margin: 10px auto 54px;
    box-shadow: 10px 10px 0 var(--clay);
  }

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

  .hero-media figcaption {
    right: 20px;
    bottom: 28px;
    left: 20px;
    gap: 12px;
  }

  .hero-media figcaption strong {
    font-size: 1.2rem;
  }

  .proof-band p {
    min-height: 102px;
    gap: 10px;
    padding: 18px 16px;
  }

  .proof-band strong {
    font-size: 2.25rem;
  }

  .proof-band span {
    font-size: 0.57rem;
  }

  .experience,
  .pages {
    padding-block: 84px;
  }

  .experience-heading h2,
  .pages-heading h2,
  .respect h2,
  .subscriber h2 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .experience-body {
    width: 100%;
  }

  .experience-video {
    padding: 16px;
  }

  .experience-video video {
    width: min(100%, 280px);
  }

  .experience-copy {
    width: calc(100% - 32px);
    margin-inline: auto;
  }

  .experience-copy h3 {
    font-size: 2.55rem;
  }

  .mockups {
    padding-block: 84px 64px;
  }

  .mockups-heading h2 {
    font-size: 2.7rem;
  }

  .mockup-grid {
    grid-template-columns: 1fr 1fr;
    gap: 7px;
  }

  .mockup-card,
  .mockup-card:nth-child(4),
  .mockup-card:nth-child(5) {
    aspect-ratio: 1;
    grid-column: auto;
  }

  .mockup-card:last-child {
    grid-column: 1 / -1;
    aspect-ratio: 1.7;
  }

  .mockup-card img {
    width: 94%;
    height: 90%;
  }

  .mockup-note {
    text-align: left;
  }

  .pages-heading {
    margin-bottom: 48px;
  }

  .pages-visual {
    min-height: 420px;
    padding-inline: 20px;
  }

  .pages-visual::before {
    right: 20px;
    left: 20px;
  }

  .pages-visual img {
    width: min(48%, 185px);
    max-height: 330px;
  }

  .pages-visual figcaption {
    left: 20px;
  }

  .pages-details {
    min-height: 580px;
    padding: 62px 20px;
  }

  .pages-details blockquote {
    font-size: 2.45rem;
  }

  .pages-details dl {
    margin-top: 48px;
  }

  .pages-details dl > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .respect {
    gap: 44px;
    padding: 80px 20px;
  }

  .subscriber-product {
    min-height: 380px;
  }

  .subscriber-product img {
    object-position: 58% center;
  }

  .subscriber-copy {
    min-height: 630px;
    padding: 80px 20px;
  }

  .site-footer {
    min-height: 120px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    padding-inline: 20px;
  }
}

@media (max-width: 1100px) {
  .conversion-strip p span {
    display: none;
  }

  .access-story,
  .offer-panel {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .access-story > div,
  .offer-price,
  .offer-benefits,
  .final-cta-copy {
    padding: 54px 44px;
  }
}

@media (max-width: 820px) {
  .conversion-strip {
    padding-inline: 24px;
  }

  .conversion-strip strong {
    font-size: 0.82rem;
  }

  .conversion-strip > a {
    max-width: 250px;
    text-align: right;
  }

  .collection-benefits {
    grid-template-columns: 1fr;
  }

  .collection-benefits article,
  .collection-benefits article:first-child,
  .collection-benefits article:last-child {
    min-height: 0;
    padding: 32px 0 36px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .collection-benefits article:last-child {
    border-bottom: 0;
  }

  .collection-benefits h3 {
    margin-top: 24px;
  }

  .access-story,
  .offer-panel,
  .faq-layout,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .access-story figure {
    min-height: 500px;
  }

  .access-story > div {
    min-height: 520px;
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .offer-price {
    min-height: 580px;
  }

  .offer-benefits {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .faq-intro {
    position: static;
  }

  .final-cta-art {
    min-height: 520px;
  }

  .final-cta-art img {
    max-width: min(82%, 500px);
    max-height: 360px;
  }

  .final-cta-copy {
    min-height: 620px;
  }
}

@media (max-width: 540px) {
  .conversion-strip {
    min-height: 132px;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    padding: 22px 20px;
  }

  .conversion-strip p {
    display: block;
  }

  .conversion-strip > a {
    max-width: none;
    text-align: left;
  }

  .collection-benefits {
    margin-top: 54px;
  }

  .subscriber-access,
  .faq {
    padding-block: 82px;
  }

  .access-story {
    width: 100%;
  }

  .access-story figure {
    min-height: 350px;
  }

  .access-story > div {
    min-height: 500px;
    padding: 64px 20px;
  }

  .access-story h2,
  .faq-intro h2,
  .final-cta-copy h2 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .offer-panel {
    width: 100%;
    margin-top: 14px;
  }

  .offer-price,
  .offer-benefits {
    min-height: 0;
    padding: 68px 20px;
  }

  .price strong {
    font-size: 5rem;
  }

  .offer-price .primary-button {
    width: 100%;
    gap: 12px;
    padding-inline: 14px;
  }

  .offer-benefits ol {
    grid-template-columns: 1fr;
  }

  .offer-benefits li,
  .offer-benefits li:nth-child(even) {
    padding: 15px 0;
    border-right: 0;
  }

  .faq-layout {
    gap: 54px;
  }

  .faq-list summary {
    min-height: 82px;
    gap: 18px;
    font-size: 0.95rem;
  }

  .faq-list details > p {
    padding-right: 24px;
    font-size: 0.84rem;
  }

  .faq-checkout {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px 20px;
  }

  .final-cta-art {
    min-height: 350px;
    padding: 38px 20px;
  }

  .final-cta-art img {
    max-width: 88%;
    max-height: 275px;
  }

  .final-cta-copy {
    min-height: 610px;
    padding: 76px 20px;
  }

  .final-cta-copy .primary-button {
    width: 100%;
    gap: 12px;
    padding-inline: 14px;
  }
}

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

  .js .hero-media img,
  .js .hero-media.is-ready img {
    transform: scale(1.015);
  }
}
