:root {
  --night: #263f44;
  --night-deep: #172c31;
  --blue: #e8614d;
  --violet: #8eb7ba;
  --amber: #f4b18b;
  --peach: #ffd8c1;
  --cloud: #faf7f3;
  --paper: #ffffff;
  --ink: #273536;
  --muted: #667574;
  --line: #e5e0da;
  --success: #1f8c6a;
  --radius-sm: 16px;
  --radius-md: 26px;
  --radius-lg: 38px;
  --shadow: 0 24px 80px rgba(23, 38, 66, 0.14);
  --display: "Alexandria", system-ui, sans-serif;
  --body: "IBM Plex Sans Arabic", Tahoma, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cloud);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.65;
  padding-bottom: 0;
}

body::selection {
  color: var(--paper);
  background: var(--blue);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.skip-link {
  position: fixed;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--paper);
  background: var(--night);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

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

.site-header {
  width: min(1240px, calc(100% - 48px));
  min-height: 86px;
  margin: 18px auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid rgba(220, 226, 238, 0.9);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 60px rgba(23, 38, 66, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand,
.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--display);
}

.brand__logo {
  width: 112px;
  height: 54px;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: multiply;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #414b60;
  font-size: 0.95rem;
  font-weight: 500;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: var(--blue);
}

.button {
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button svg {
  width: 20px;
  height: 20px;
  transform: scaleX(-1);
}

.button--compact {
  min-height: 44px;
  padding: 0 19px;
  color: var(--paper);
  background: var(--night);
}

.button--compact:hover {
  box-shadow: 0 10px 28px rgba(23, 38, 66, 0.24);
}

.button--primary {
  color: var(--paper);
  background: var(--blue);
  box-shadow: 0 16px 36px rgba(232, 97, 77, 0.24);
}

.button--primary:hover {
  background: #d9513e;
  box-shadow: 0 18px 40px rgba(232, 97, 77, 0.3);
}

.hero {
  position: relative;
  isolation: isolate;
  width: min(1240px, calc(100% - 48px));
  min-height: 680px;
  margin: 0 auto;
  padding: 80px 70px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(410px, 0.98fr);
  align-items: center;
  gap: 70px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: var(--paper);
  background:
    radial-gradient(circle at 80% 14%, rgba(142, 183, 186, 0.31), transparent 33%),
    linear-gradient(145deg, var(--night) 0%, var(--night-deep) 68%);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to left, #000, transparent 78%);
}

.hero__glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(1px);
}

.hero__glow--one {
  width: 420px;
  height: 420px;
  inset: -250px auto auto 16%;
  border: 72px solid rgba(243, 168, 71, 0.11);
}

.hero__glow--two {
  width: 260px;
  height: 260px;
  inset: auto -160px -110px auto;
  border: 52px solid rgba(142, 183, 186, 0.14);
}

.eyebrow {
  margin: 0 0 20px;
  color: #cbe3e2;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.eyebrow--dark {
  color: var(--blue);
}

.hero h1,
.section-heading h2,
.purchase h2,
.questions h2,
.closing h2 {
  margin: 0;
  font-family: var(--display);
  line-height: 1.28;
  letter-spacing: -0.035em;
}

.hero h1 {
  max-width: 620px;
  font-size: clamp(2.8rem, 5vw, 5.3rem);
  font-weight: 800;
}

.hero h1 span {
  display: block;
  color: var(--peach);
}

.hero__lead {
  max-width: 580px;
  margin: 28px 0 0;
  color: #d7ddeb;
  font-size: 1.15rem;
  line-height: 1.9;
}

.hero__actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.text-link {
  padding-block: 8px;
  color: #eef1fa;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  font-weight: 600;
}

.hero__assurances {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  color: #c6cddd;
  font-size: 0.88rem;
}

.hero__assurances span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero__assurances svg {
  width: 17px;
  height: 17px;
  color: #9cdbcb;
  stroke-width: 2.4;
}

.run-of-show {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transform: rotate(-1.5deg);
}

.run-of-show::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 22px -22px -22px 22px;
  border: 1px solid rgba(142, 183, 186, 0.28);
  border-radius: 30px;
}

.run-of-show__header,
.run-of-show__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.run-of-show__header span,
.run-of-show__footer span {
  color: #b8c0d2;
  font-size: 0.78rem;
}

.run-of-show__header strong {
  display: block;
  margin-top: 5px;
  font-family: var(--display);
  font-size: 1.15rem;
}

.live-pill {
  padding: 7px 11px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(126, 224, 187, 0.25);
  border-radius: 999px;
  color: #baf4dc !important;
  background: rgba(31, 140, 106, 0.15);
}

.live-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9cdbcb;
  box-shadow: 0 0 0 5px rgba(126, 224, 187, 0.1);
}

.scene-list {
  margin: 24px 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.scene {
  min-height: 108px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 92px 1fr 36px;
  align-items: center;
  gap: 17px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  color: #dce1ec;
  background: rgba(10, 18, 32, 0.35);
}

.scene--active {
  border-color: rgba(243, 168, 71, 0.38);
  background: linear-gradient(90deg, rgba(243, 168, 71, 0.13), rgba(10, 18, 32, 0.32));
}

.scene time,
.scene div span {
  color: #aeb7ca;
  font-size: 0.75rem;
}

.scene div strong {
  display: block;
  margin-bottom: 7px;
  color: var(--paper);
  font-family: var(--display);
  font-size: 0.98rem;
}

.scene__mark {
  color: rgba(255, 255, 255, 0.22);
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
}

.pulse-line {
  width: 120px;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.pulse-line i {
  display: block;
  width: 45%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--violet), var(--amber));
  animation: pulse 3.2s ease-in-out infinite alternate;
}

@keyframes pulse {
  to {
    transform: translateX(-120%);
  }
}

.intro,
.purchase,
.questions {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}

.intro {
  padding: 130px 0;
}

.section-heading {
  max-width: 760px;
}

.section-heading h2,
.purchase h2,
.questions h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 800;
}

.intro__copy {
  max-width: 680px;
  margin: 26px 0 48px;
  color: var(--muted);
  font-size: 1.08rem;
}

.value-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 18px;
}

.value-card {
  min-height: 260px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.value-card--wide {
  grid-row: span 2;
  min-height: 538px;
  padding: 46px;
  background:
    radial-gradient(circle at 18% 12%, rgba(142, 183, 186, 0.19), transparent 30%),
    var(--paper);
}

.value-card--ink {
  color: var(--paper);
  border-color: var(--night);
  background: var(--night);
}

.value-card__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--paper);
  background: var(--violet);
}

.value-card__icon svg {
  width: 28px;
  height: 28px;
}

.value-card__icon--amber {
  color: var(--night);
  background: var(--amber);
}

.value-card__icon--light {
  color: var(--night);
  background: var(--paper);
}

.value-card p {
  margin: 0 0 11px;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 600;
}

.value-card--ink p {
  color: #c9c4ff;
}

.value-card h3 {
  max-width: 620px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.45rem, 3vw, 2.6rem);
  line-height: 1.45;
}

.value-card > div > span {
  display: block;
  margin-top: 15px;
  color: var(--muted);
}

.purchase {
  padding: 38px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  align-items: center;
  gap: 70px;
  border: 1px solid #d7ddef;
  border-radius: var(--radius-lg);
  background: #f2eee8;
}

.purchase__story {
  padding: 32px;
}

.purchase__lead {
  max-width: 600px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.inclusions {
  margin-top: 38px;
}

.inclusions h3 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: 1rem;
}

.inclusions ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.inclusions li {
  padding: 13px 0;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid #d6dceb;
}

.inclusions li span {
  color: var(--blue);
  font-family: var(--display);
  font-size: 0.76rem;
  font-weight: 700;
}

.content-note {
  margin: 24px 0 0;
  padding: 13px 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-radius: 14px;
  color: #735318;
  background: #fff4dc;
  font-size: 0.82rem;
}

.content-note svg {
  width: 19px;
  min-width: 19px;
  height: 19px;
  margin-top: 3px;
}

.product-card {
  overflow: hidden;
  border: 1px solid rgba(23, 38, 66, 0.08);
  border-radius: 30px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.product-card__visual {
  position: relative;
  min-height: 300px;
  padding: 42px;
  display: grid;
  align-content: center;
  justify-content: center;
  grid-template-columns: auto auto auto;
  align-items: baseline;
  gap: 12px;
  overflow: hidden;
  color: var(--paper);
  background:
    linear-gradient(125deg, rgba(142, 183, 186, 0.35), transparent 50%),
    var(--night);
}

.product-card__visual--logo {
  padding: 0;
  background: #ffffff;
}

.product-card__visual--logo img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.product-card__visual > span,
.product-card__visual > strong {
  position: relative;
  z-index: 2;
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 800;
}

.product-card__visual > i {
  position: relative;
  z-index: 2;
  color: var(--amber);
  font-style: normal;
}

.product-card__visual > small {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  margin-top: 12px;
  color: #c9d0e0;
  text-align: center;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.orbit--one {
  width: 330px;
  height: 330px;
  inset: -45px auto auto -60px;
}

.orbit--two {
  width: 220px;
  height: 220px;
  inset: 120px -70px auto auto;
  border-width: 32px;
  border-color: rgba(243, 168, 71, 0.1);
}

.product-card__body {
  padding: 30px;
}

.product-card__topline,
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.product-tag {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--success);
  background: #e7f7f1;
  font-size: 0.74rem;
  font-weight: 600;
}

.product-code {
  color: #8a94a7;
  font-family: var(--display);
  font-size: 0.74rem;
}

.product-card h3 {
  margin: 23px 0 6px;
  font-family: var(--display);
  font-size: 1.55rem;
}

.product-card__body > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.price-row {
  margin: 24px 0;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price-row span {
  color: var(--muted);
}

.price-row strong {
  font-family: var(--display);
  font-size: 1.25rem;
}

.product-meta {
  margin-bottom: 22px;
  display: grid;
  gap: 11px;
  color: #465066;
  font-size: 0.84rem;
}

.product-meta span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.product-meta svg {
  width: 18px;
  height: 18px;
  color: var(--blue);
}

.button--purchase {
  width: 100%;
  color: var(--paper);
  background: var(--night);
}

.button--purchase:hover {
  box-shadow: 0 15px 34px rgba(23, 38, 66, 0.24);
}

.secure-note {
  margin-top: 13px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #80899b !important;
  font-size: 0.74rem !important;
}

.secure-note svg {
  width: 15px;
  height: 15px;
}

.journey {
  margin-top: 130px;
  padding: 115px max(24px, calc((100% - 1120px) / 2));
  color: var(--paper);
  background: var(--night);
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading--center h2 {
  color: var(--paper);
}

.section-heading--center > p:last-child {
  color: #b9c2d4;
}

.journey-list {
  margin: 60px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.journey-list li {
  position: relative;
  min-height: 290px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-inline-start: 1px solid rgba(255, 255, 255, 0.14);
}

.journey-list li:last-child {
  border-inline-start: 0;
}

.journey-list__number {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--night);
  background: var(--peach);
  font-family: var(--display);
  font-weight: 800;
}

.journey-list small {
  color: #9fa9bc;
}

.journey-list h3 {
  margin: 7px 0 9px;
  font-family: var(--display);
  font-size: 1.12rem;
}

.journey-list p {
  margin: 0;
  color: #c1c9d8;
  font-size: 0.9rem;
}

.questions {
  padding: 130px 0;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
  gap: 90px;
}

.questions__heading {
  position: sticky;
  top: 32px;
}

.questions__heading > p:last-child {
  color: var(--muted);
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion details {
  border: 1px solid var(--line);
  border-radius: 19px;
  background: var(--paper);
}

.accordion summary {
  position: relative;
  min-height: 76px;
  padding: 22px 24px 22px 70px;
  display: flex;
  align-items: center;
  font-family: var(--display);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

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

.accordion summary::after {
  content: "+";
  position: absolute;
  inset-inline-start: 24px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--night);
  font-family: var(--body);
  font-size: 1.2rem;
  font-weight: 400;
}

.accordion details[open] summary::after {
  content: "−";
  color: var(--night);
  background: var(--amber);
}

.accordion details p {
  margin: -4px 24px 0;
  padding: 0 0 24px;
  color: var(--muted);
}

.closing {
  position: relative;
  width: min(1240px, calc(100% - 48px));
  min-height: 300px;
  margin: 0 auto 28px;
  padding: 54px 70px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: var(--paper);
  background: var(--blue);
}

.closing::after {
  content: "";
  position: absolute;
  inset: -160px auto auto -80px;
  width: 360px;
  height: 360px;
  border: 70px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}

.closing__mark {
  position: relative;
  z-index: 1;
  width: 90px;
  height: 90px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 28px;
  font-family: var(--display);
  font-size: 2.8rem;
  font-weight: 800;
  transform: rotate(-6deg);
}

.closing h2 {
  max-width: 720px;
  font-size: clamp(1.8rem, 3.5vw, 3.4rem);
}

.button--light {
  color: var(--night);
  background: var(--paper);
}

.site-footer {
  width: min(1240px, calc(100% - 48px));
  min-height: 180px;
  margin: 0 auto;
  padding: 44px 18px;
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1.1fr;
  align-items: center;
  gap: 26px;
  color: #657086;
}

.brand__logo--footer {
  width: 102px;
  height: 62px;
}

.site-footer__brand div {
  display: grid;
}

.site-footer__brand strong {
  color: var(--ink);
}

.site-footer__brand span:last-child {
  font-family: var(--body);
  font-size: 0.82rem;
}

.site-footer__links {
  display: flex;
  justify-content: center;
  gap: 18px;
  font-size: 0.82rem;
}

.legal-info {
  display: grid;
  justify-items: end;
  font-size: 0.8rem;
}

.mobile-buy {
  display: none;
}

.link-dialog {
  width: min(460px, calc(100% - 32px));
  padding: 34px;
  border: 0;
  border-radius: 26px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 30px 100px rgba(13, 23, 41, 0.35);
}

.link-dialog::backdrop {
  background: rgba(13, 23, 41, 0.7);
  backdrop-filter: blur(5px);
}

.dialog-close {
  position: absolute;
  inset-block-start: 16px;
  inset-inline-start: 16px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: var(--cloud);
  font-size: 1.35rem;
  cursor: pointer;
}

.dialog-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: #7b5514;
  background: #fff1d4;
}

.dialog-icon svg {
  width: 26px;
  height: 26px;
}

.link-dialog h2 {
  margin: 22px 0 10px;
  font-family: var(--display);
  font-size: 1.5rem;
}

.link-dialog p {
  margin: 0 0 24px;
  color: var(--muted);
}

.dialog-action {
  width: 100%;
}

@media (max-width: 1000px) {
  .site-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .hero__copy {
    max-width: 720px;
  }

  .run-of-show {
    width: min(620px, 100%);
    justify-self: center;
  }

  .purchase {
    grid-template-columns: 1fr;
  }

  .product-card {
    width: min(620px, 100%);
    justify-self: center;
  }

  .journey-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey-list li:nth-child(2) {
    border-inline-start: 0;
  }

  .questions {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .questions__heading {
    position: static;
  }

  .closing {
    grid-template-columns: auto 1fr;
  }

  .closing .button {
    grid-column: 1 / -1;
    justify-self: start;
  }

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

  .site-footer__links {
    display: none;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 84px;
  }

  .site-header {
    width: min(100% - 24px, 1240px);
    min-height: 76px;
    margin: 10px auto;
    padding: 0 14px;
    border-radius: 20px;
  }

  .site-header .button {
    display: none;
  }

  .brand__logo {
    width: 96px;
    height: 48px;
  }

  .site-header .brand {
    width: 148px;
    height: 62px;
    flex: 0 0 148px;
    justify-content: center;
    overflow: hidden;
  }

  .site-header .brand__logo {
    width: 148px;
    height: 62px;
    transform: scale(2.15);
  }

  .hero,
  .closing {
    width: min(100% - 24px, 1240px);
    border-radius: 28px;
  }

  .hero {
    min-height: 0;
    padding: 58px 22px 46px;
  }

  .hero h1 {
    font-size: clamp(1.95rem, 8.5vw, 2.2rem);
    line-height: 1.38;
  }

  .hero__lead {
    font-size: 0.9rem;
    line-height: 1.78;
  }

  .eyebrow {
    font-size: 0.7rem;
  }

  .button,
  .text-link {
    font-size: 0.84rem;
  }

  .hero__assurances {
    font-size: 0.76rem;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .text-link {
    align-self: center;
  }

  .hero__assurances {
    gap: 12px;
  }

  .run-of-show {
    padding: 16px;
    transform: none;
  }

  .run-of-show::after {
    display: none;
  }

  .run-of-show__header {
    align-items: flex-start;
  }

  .scene {
    min-height: 94px;
    padding: 15px;
    grid-template-columns: 1fr 34px;
  }

  .run-of-show__header strong {
    font-size: 1rem;
  }

  .run-of-show__header span,
  .run-of-show__footer span,
  .scene time,
  .scene div span {
    font-size: 0.7rem;
  }

  .scene div strong {
    font-size: 0.88rem;
  }

  .scene time {
    display: none;
  }

  .intro,
  .purchase,
  .questions {
    width: min(100% - 28px, 1120px);
  }

  .intro {
    padding: 88px 0;
  }

  .section-heading h2,
  .purchase h2,
  .questions h2 {
    font-size: 1.65rem;
    line-height: 1.42;
  }

  .intro__copy,
  .purchase__lead,
  .section-heading--center > p:last-child,
  .questions__heading > p:last-child {
    font-size: 0.88rem;
    line-height: 1.75;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .value-card,
  .value-card--wide {
    min-height: 285px;
    padding: 28px;
  }

  .value-card p {
    font-size: 0.72rem;
  }

  .value-card h3 {
    font-size: 1.12rem;
    line-height: 1.55;
  }

  .value-card > div > span {
    font-size: 0.86rem;
  }

  .purchase {
    padding: 12px;
    gap: 24px;
    border-radius: 28px;
  }

  .purchase__story {
    padding: 28px 16px;
  }

  .product-card__visual {
    min-height: 240px;
  }

  .product-card__visual--logo img {
    min-height: 240px;
  }

  .product-card__visual > span,
  .product-card__visual > strong {
    font-size: 1.7rem;
  }

  .purchase__story .inclusions h3 {
    font-size: 0.92rem;
  }

  .inclusions li,
  .content-note {
    font-size: 0.8rem;
  }

  .product-card h3 {
    font-size: 1.22rem;
  }

  .product-card__body > p,
  .price-row span {
    font-size: 0.82rem;
  }

  .price-row strong {
    font-size: 1.08rem;
  }

  .product-meta {
    font-size: 0.78rem;
  }

  .journey {
    margin-top: 88px;
    padding-block: 86px;
  }

  .journey-list {
    grid-template-columns: 1fr;
  }

  .journey-list li,
  .journey-list li:nth-child(2) {
    min-height: 230px;
    border-inline-start: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .journey-list li:last-child {
    border-bottom: 0;
  }

  .journey-list h3 {
    font-size: 1rem;
  }

  .journey-list p {
    font-size: 0.82rem;
  }

  .journey-list small {
    font-size: 0.72rem;
  }

  .questions {
    padding: 88px 0;
  }

  .accordion summary {
    padding-inline-end: 20px;
    padding-inline-start: 62px;
    font-size: 0.88rem;
  }

  .accordion details p {
    font-size: 0.82rem;
    line-height: 1.75;
  }

  .closing {
    min-height: 360px;
    padding: 40px 26px;
    grid-template-columns: 1fr;
  }

  .closing__mark {
    width: 70px;
    height: 70px;
    border-radius: 22px;
    font-size: 2.1rem;
  }

  .closing h2 {
    font-size: 1.55rem;
    line-height: 1.45;
  }

  .closing .button {
    width: 100%;
  }

  .site-footer {
    width: min(100% - 28px, 1240px);
    padding-block: 34px;
    grid-template-columns: 1fr;
  }

  .legal-info {
    justify-items: start;
  }

  .mobile-buy {
    position: fixed;
    z-index: 50;
    inset: auto 10px 10px;
    min-height: 68px;
    padding: 9px 9px 9px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px;
    color: var(--paper);
    background: rgba(13, 23, 41, 0.94);
    box-shadow: 0 20px 60px rgba(13, 23, 41, 0.35);
    backdrop-filter: blur(18px);
  }

  .mobile-buy div {
    min-width: 0;
    display: grid;
  }

  .mobile-buy div span {
    overflow: hidden;
    font-family: var(--display);
    font-size: 0.8rem;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-buy div strong {
    color: #b7c0d2;
    font-size: 0.68rem;
    font-weight: 400;
  }

  .mobile-buy .button {
    width: auto;
    min-height: 48px;
    padding-inline: 19px;
    color: var(--night);
    background: var(--amber);
    font-size: 0.78rem;
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
