:root {
  --ink: #171717;
  --charcoal: #232323;
  --muted: #5c5c5c;
  --paper: #ffffff;
  --sand: #f3efea;
  --mist: #f2f2f1;
  --oat: #dfd0bd;
  --star: #cbbaa9;
  --blue: #4e7fce;
  --green: #76ad5f;
  --red: #e75e55;
  --line: rgba(23, 23, 23, 0.12);
  --line-light: rgba(255, 255, 255, 0.18);
  --display: "Alexandria", "Noto Sans Arabic", Arial, sans-serif;
  --body: "Alexandria", "Noto Sans Arabic", Arial, sans-serif;
  --page: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
  --section: clamp(76px, 8vw, 124px);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 34px;
  --shadow: 0 24px 70px rgba(23, 23, 23, 0.09);
}

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

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  text-align: start;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button,
a {
  font: inherit;
}

button {
  color: inherit;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-bottom: 0.45em;
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.24;
  letter-spacing: normal;
}

h1 {
  font-size: clamp(3.15rem, 5.55vw, 5.7rem);
}

h2 {
  font-size: clamp(2.35rem, 4.25vw, 4.45rem);
}

h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  letter-spacing: normal;
}

p {
  margin-bottom: 1.35em;
  color: var(--muted);
}

::selection {
  color: #fff;
  background: var(--ink);
}

:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
  box-shadow: 0 0 0 5px var(--ink);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  z-index: 999;
  padding: 10px 14px;
  transform: translateY(-180%);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
  color: #000;
  text-decoration: none;
}

.skip-link:focus {
  transform: none;
}

.shell {
  width: min(100%, var(--page));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--section);
}

.eyebrow {
  margin-bottom: 17px;
  color: inherit;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.75;
  text-transform: uppercase;
}

.lede {
  max-width: 690px;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.85;
}

.section-heading {
  max-width: 860px;
  margin-bottom: clamp(38px, 5vw, 68px);
}

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

.section-heading.centered .lede {
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border: 1px solid var(--charcoal);
  border-radius: 999px;
  background: var(--charcoal);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.105em;
  line-height: 1.55;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: #050505;
  box-shadow: 0 14px 28px rgba(23, 23, 23, 0.15);
}

.btn:active {
  transform: none;
}

.btn.light {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}

.btn.light:hover {
  background: var(--sand);
}

.text-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  padding: 6px 2px;
  border-bottom: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(-4px);
}

.announcement {
  min-height: 34px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(23, 23, 23, 0.06);
  background: var(--sand);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.105em;
  text-transform: uppercase;
}

.announcement-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 9px 28px rgba(23, 23, 23, 0.045);
}

.nav {
  min-height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 30px);
}

.nav-actions {
  justify-content: flex-end;
}

.nav a:not(.btn) {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav a:not(.btn):hover {
  opacity: 0.55;
}

.brand-logo {
  width: 188px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.nav .btn {
  min-height: 44px;
  padding: 11px 19px;
  font-size: 0.68rem;
}

.hero {
  padding: clamp(28px, 4vw, 54px) 0 clamp(58px, 7vw, 96px);
  background: linear-gradient(180deg, #fff 0%, #fff 33%, var(--sand) 33%, var(--sand) 100%);
}

.hero-grid {
  min-height: calc(100svh - 150px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(480px, 0.98fr);
  align-items: center;
  gap: clamp(38px, 5vw, 70px);
}

.hero-copy {
  padding-block: 42px;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 25px;
  font-size: clamp(2.85rem, 4vw, 3.9rem);
}

.hero-promise {
  display: block;
}

.hero .lede {
  max-width: 610px;
  margin-bottom: 25px;
}

.hero-rating {
  width: max-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 23px;
  color: inherit;
  font-size: 0.8rem;
  font-weight: 400;
  text-decoration: none;
}

.stars {
  color: var(--star);
  letter-spacing: 0.07em;
}

.hero-rating strong {
  font-weight: 600;
}

.hero-offer {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.hero-offer strong {
  font-family: var(--display);
  font-size: 1.85rem;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.hero-offer span {
  max-width: 470px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-assurances {
  display: flex;
  gap: 11px 18px;
  flex-wrap: wrap;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.73rem;
}

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

.hero-assurances svg {
  width: 16px;
  height: 16px;
  flex: none;
}

.hero-media {
  position: relative;
  height: min(72svh, 720px);
  min-height: 590px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #d6c8b8;
  box-shadow: var(--shadow);
}

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

.hero-caption,
.hero-proof {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 18px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-caption {
  inset-inline-end: 22px;
  bottom: 22px;
  max-width: 250px;
  padding: 17px 19px;
  background: rgba(255, 255, 255, 0.92);
}

.hero-caption strong {
  display: block;
  margin-bottom: 3px;
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.hero-caption span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
}

.hero-proof {
  top: 22px;
  inset-inline-start: 22px;
  padding: 13px 16px;
  background: rgba(23, 23, 23, 0.82);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof-strip {
  margin-top: -38px;
  padding-bottom: clamp(72px, 8vw, 112px);
  background: var(--sand);
}

.proof-strip-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--charcoal);
  color: #fff;
  box-shadow: 0 22px 54px rgba(23, 23, 23, 0.16);
}

.proof-stat {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 30px clamp(20px, 3vw, 40px);
  border-inline-end: 1px solid var(--line-light);
  text-align: center;
}

.proof-stat:last-child {
  border-inline-end: 0;
}

.proof-stat strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.proof-stat span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.68rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.watch-section {
  overflow: hidden;
  background: var(--paper);
}

.watch-layout {
  display: grid;
  grid-template-columns: minmax(380px, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(34px, 6vw, 84px);
}

.video-stage {
  position: relative;
  width: min(100%, 520px);
  height: min(64svh, 650px);
  min-height: 560px;
  justify-self: center;
  overflow: hidden;
  scroll-margin-top: 92px;
  border-radius: var(--radius-lg);
  background: #111;
  box-shadow: var(--shadow);
}

.video-stage::after {
  content: "";
  position: absolute;
  inset: 54% 0 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
}

.video-stage video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.sound-toggle {
  position: absolute;
  top: 18px;
  inset-inline-start: 18px;
  z-index: 3;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  cursor: pointer;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.sound-toggle svg {
  width: 17px;
  height: 17px;
}

.play-toggle {
  position: absolute;
  top: 18px;
  inset-inline-end: 18px;
  z-index: 3;
  min-height: 46px;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  background: rgba(23, 23, 23, 0.72);
  color: #fff;
  cursor: pointer;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.video-meta {
  position: absolute;
  inset-inline: 22px;
  bottom: 22px;
  z-index: 2;
  color: #fff;
}

.video-meta small {
  display: block;
  margin-bottom: 7px;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.video-meta strong {
  display: block;
  max-width: 410px;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.45;
}

.watch-copy .lede {
  margin-bottom: 30px;
}

.story-list {
  display: grid;
  gap: 12px;
}

.story-choice {
  min-height: 86px;
  display: grid;
  grid-template-columns: 62px 1fr auto;
  align-items: center;
  gap: 15px;
  padding-block: 10px;
  padding-inline: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  cursor: pointer;
  text-align: start;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.story-choice:hover {
  transform: translateX(-4px);
  border-color: rgba(23, 23, 23, 0.28);
}

.story-choice[aria-pressed="true"] {
  border-color: var(--charcoal);
  background: var(--sand);
}

.story-choice img {
  width: 62px;
  height: 66px;
  object-fit: cover;
  border-radius: 12px;
}

.story-choice strong,
.story-choice small {
  display: block;
}

.story-choice strong {
  margin-bottom: 3px;
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.45;
}

.story-choice small,
.story-choice time {
  color: var(--muted);
  font-size: 0.68rem;
}

.story-choice time {
  font-variant-numeric: tabular-nums;
}

.how-section {
  background: #111;
  color: #fff;
}

.how-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(410px, 0.95fr);
  align-items: stretch;
  gap: clamp(28px, 5vw, 70px);
}

.how-image {
  min-height: 580px;
  max-height: 65svh;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.how-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.how-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 20px;
}

.how-copy p {
  color: rgba(255, 255, 255, 0.68);
}

.steps {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.step-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid var(--line-light);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.step-card > span {
  padding-top: 2px;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.step-card strong {
  display: block;
  margin-bottom: 3px;
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.step-card p {
  margin: 0;
  font-size: 0.82rem;
}

.care-note {
  margin: 20px 0 0;
  font-size: 0.7rem;
  line-height: 1.65;
}

.lid-section {
  background: var(--sand);
}

.lid-layout {
  display: grid;
  grid-template-columns: minmax(430px, 0.96fr) minmax(0, 1.04fr);
  align-items: center;
  gap: clamp(44px, 7vw, 104px);
}

.lid-photo {
  position: relative;
  height: min(64svh, 650px);
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--mist);
  box-shadow: var(--shadow);
}

.lid-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-label {
  position: absolute;
  top: 18px;
  inset-inline-start: 18px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lid-copy .lede {
  margin-bottom: 27px;
}

.state-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 28px 0;
}

.state-card {
  padding: 17px 14px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.72);
}

.state-card i {
  width: 10px;
  height: 10px;
  display: block;
  margin-bottom: 15px;
  border-radius: 50%;
  box-shadow: 0 0 0 5px color-mix(in srgb, currentColor 15%, transparent);
}

.state-card.blue {
  color: var(--blue);
}

.state-card.blue i {
  background: var(--blue);
}

.state-card.green {
  color: var(--green);
}

.state-card.green i {
  background: var(--green);
}

.state-card.red {
  color: var(--red);
}

.state-card.red i {
  background: var(--red);
}

.state-card strong,
.state-card span {
  display: block;
}

.state-card strong {
  margin-bottom: 3px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.state-card span {
  color: var(--muted);
  font-size: 0.67rem;
}

.lid-features {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}

.lid-features span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 0.67rem;
  font-weight: 400;
}

.safety-note {
  margin: 19px 0 0;
  font-size: 0.7rem;
  line-height: 1.65;
}

.reviews-section {
  background: #111;
  color: #fff;
}

.reviews-section .lede {
  color: rgba(255, 255, 255, 0.72);
}

.review-summary {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 0.7fr);
  overflow: hidden;
  margin-bottom: clamp(42px, 5vw, 68px);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
}

.review-summary > div {
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 25px clamp(20px, 3vw, 36px);
  border-inline-end: 1px solid var(--line-light);
}

.review-summary > div:last-child {
  border-inline-end: 0;
}

.review-summary strong {
  display: block;
  margin-bottom: 5px;
  font-family: var(--display);
  font-size: clamp(1.65rem, 3vw, 2.7rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.review-summary span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-summary .score .stars {
  margin-bottom: 10px;
  font-size: 0.78rem;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.review-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: clamp(25px, 3vw, 38px);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.review-card .stars {
  font-size: 0.72rem;
}

.review-card h3 {
  margin-top: 24px;
  color: #fff;
  font-size: clamp(1.35rem, 2.25vw, 2rem);
}

.review-card p {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.86rem;
}

.review-author {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: auto;
  padding-top: 22px;
  color: #fff;
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.verified {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.52);
  font-weight: 300;
}

.verified svg {
  width: 13px;
  height: 13px;
}

.founder-section {
  background: var(--paper);
}

.founder-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(410px, 0.95fr);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--sand);
  box-shadow: var(--shadow);
}

.founder-image {
  min-height: 580px;
  max-height: 65svh;
  overflow: hidden;
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}

.founder-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 6vw, 82px);
}

.founder-signoff {
  margin: 8px 0 27px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.founder-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.inline-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 5px 2px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.features-section {
  background: var(--mist);
}

.features-layout {
  display: grid;
  grid-template-columns: minmax(390px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(42px, 6vw, 88px);
}

.product-stage {
  height: min(64svh, 640px);
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #fff;
}

.product-stage img {
  width: min(86%, 560px);
  max-height: 92%;
  object-fit: contain;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.feature-card {
  min-height: 145px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
}

.feature-card small {
  display: block;
  margin-bottom: 15px;
  color: rgba(23, 23, 23, 0.64);
  font-family: var(--display);
  font-size: 0.64rem;
  letter-spacing: 0.1em;
}

.feature-card strong {
  display: block;
  margin-bottom: 5px;
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.feature-card span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
}

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

.buy-card {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(440px, 0.98fr);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}

.buy-visual {
  min-width: 0;
  min-height: 620px;
  max-height: 68svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f7f6f5;
}

.buy-visual img {
  width: min(78%, 560px);
  max-height: 92%;
  object-fit: contain;
  transition: opacity 160ms ease, transform 220ms ease;
}

.buy-visual img.changing {
  opacity: 0.25;
  transform: scale(0.98);
}

.buy-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 6vw, 82px);
}

.buy-title {
  margin-bottom: 8px;
  font-size: clamp(2rem, 3vw, 3.15rem);
}

.buy-rating {
  margin-bottom: 18px;
  font-size: 0.76rem;
}

.buy-price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 19px;
}

.buy-price {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.afterpay,
.price-note {
  max-width: 440px;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.55;
}

.buy-copy .lede {
  font-size: 0.92rem;
  line-height: 1.72;
}

.colour-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 13px 0 10px;
  font-size: 0.69rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.colour-label span:last-child {
  color: var(--muted);
  font-weight: 300;
}

.colour-picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-bottom: 20px;
}

.colour {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  cursor: pointer;
  font-size: 0.67rem;
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.colour[aria-pressed="true"] {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: #fff;
}

.swatch {
  width: 15px;
  height: 15px;
  border: 1px solid rgba(23, 23, 23, 0.2);
  border-radius: 50%;
}

.swatch.sand {
  background: #cfc0ad;
}

.swatch.stone {
  background: #aaa8a3;
}

.swatch.black {
  background: #242424;
}

.buy .btn {
  width: 100%;
}

.buy-assurances {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

.assurance-card {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 15px;
}

.assurance-card strong,
.assurance-card span {
  display: block;
}

.assurance-card strong {
  margin-bottom: 3px;
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.assurance-card span {
  color: var(--muted);
  font-size: 0.64rem;
}

.policy-link {
  margin: 15px 0 0;
  font-size: 0.66rem;
  line-height: 1.6;
}

.policy-link a {
  text-underline-offset: 3px;
}

.faq-section {
  background: #fff;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(290px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(52px, 9vw, 142px);
}

.faq-intro {
  position: sticky;
  top: 125px;
  align-self: start;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--paper);
}

.faq-item summary {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-size: 0.94rem;
  font-weight: 500;
  letter-spacing: 0.005em;
}

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

.faq-item summary::after {
  content: "+";
  flex: none;
  font-family: var(--body);
  font-size: 1.3rem;
  font-weight: 300;
  transition: transform 180ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding-block: 0 20px;
  padding-inline: 20px 54px;
}

.faq-answer p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.75;
}

.faq-answer a {
  text-underline-offset: 3px;
}

.closing-section {
  padding: 0 0 var(--section);
  background: #fff;
}

.closing-card {
  position: relative;
  min-height: min(66svh, 650px);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #222;
  color: #fff;
}

.closing-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.closing-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.38) 52%, rgba(0, 0, 0, 0.04) 82%);
}

.closing-copy {
  position: relative;
  z-index: 2;
  width: min(690px, 82%);
  padding: clamp(52px, 7vw, 94px);
}

.closing-copy h2 {
  font-size: clamp(2.7rem, 5vw, 5rem);
}

.closing-copy p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.74);
}

.site-footer {
  padding: 50px 0 112px;
  background: #111;
  color: #fff;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line-light);
}

.footer-logo {
  width: 160px;
  display: block;
}

.footer-logo img {
  width: 100%;
  height: auto;
  filter: invert(1);
}

.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-note {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.64rem;
  line-height: 1.7;
}

.footer-note p {
  margin: 0;
  color: inherit;
}

.mobile-buy {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 140;
  min-height: 72px;
  display: none;
  align-items: center;
  gap: 12px;
  padding-block: 8px max(8px, env(safe-area-inset-bottom));
  padding-inline-start: max(14px, env(safe-area-inset-right));
  padding-inline-end: max(14px, env(safe-area-inset-left));
  transform: translateY(120%);
  visibility: hidden;
  pointer-events: none;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: transform 240ms ease, visibility 0s linear 240ms;
}

.mobile-buy.show {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.mobile-buy-info {
  min-width: 0;
  flex: 1;
}

.mobile-buy-info strong,
.mobile-buy-info span {
  display: block;
}

.mobile-buy-info strong {
  overflow: hidden;
  font-size: 0.75rem;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mobile-buy-info span {
  color: var(--muted);
  font-size: 0.67rem;
}

.mobile-buy .btn {
  min-height: 50px;
  padding: 12px 17px;
  font-size: 0.72rem;
}

/* Arabic glyphs should remain naturally joined and untracked. */
html[dir="rtl"] body * {
  letter-spacing: normal !important;
  text-transform: none !important;
}

html[dir="rtl"] :is(bdi, [dir="ltr"]) {
  unicode-bidi: isolate;
  font-variant-numeric: lining-nums tabular-nums;
}

html[dir="rtl"] .hero-assurances span:first-child svg {
  transform: scaleX(-1);
  transform-origin: center;
}

/* Arabic founder copy runs taller; keep the family portrait filling its column. */
html[dir="rtl"] .founder-image {
  max-height: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 680ms ease, transform 680ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

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

@media (max-width: 1120px) {
  .nav-link-secondary {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(430px, 1fr);
  }

  .watch-layout {
    grid-template-columns: minmax(340px, 0.8fr) minmax(0, 1.2fr);
  }

  .founder-card,
  .buy-card {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .announcement-inner {
    justify-content: center;
  }

  .announcement-secondary {
    display: none;
  }

  .nav {
    min-height: 70px;
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .brand-logo {
    width: 148px;
    justify-self: start;
  }

  .nav-actions > a:not(.btn) {
    display: none;
  }

  .hero {
    padding-top: 16px;
    background: var(--sand);
  }

  .hero-grid,
  .watch-layout,
  .how-layout,
  .lid-layout,
  .features-layout,
  .founder-card,
  .buy-card,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: 0;
    gap: 10px;
  }

  .hero-copy {
    padding: 42px 0 38px;
  }

  .hero-media {
    height: min(68svh, 670px);
    min-height: 520px;
  }

  .proof-strip {
    margin-top: -1px;
    padding-top: 18px;
  }

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

  .proof-stat {
    min-height: 125px;
    border-bottom: 1px solid var(--line-light);
  }

  .proof-stat:nth-child(2) {
    border-inline-end: 0;
  }

  .proof-stat:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .watch-layout {
    gap: 0;
  }

  .video-stage {
    order: 2;
    width: min(100%, 480px);
    margin-top: 28px;
  }

  .watch-copy {
    display: contents;
  }

  .watch-copy > .eyebrow,
  .watch-copy > h2,
  .watch-copy > .lede {
    order: 1;
  }

  .watch-copy > .lede {
    margin-bottom: 0;
  }

  .watch-copy > .story-list {
    order: 3;
    margin-top: 24px;
  }

  .how-image,
  .lid-photo,
  .product-stage,
  .founder-image,
  .buy-visual {
    min-height: 0;
    height: min(60svh, 620px);
  }

  .how-copy {
    padding-top: 20px;
  }

  .lid-photo {
    order: 2;
  }

  .lid-copy {
    order: 1;
  }

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

  .review-summary > div:nth-child(2) {
    border-inline-end: 0;
  }

  .review-summary > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-light);
  }

  .founder-image {
    height: min(62svh, 620px);
  }

  .faq-intro {
    position: static;
  }

  .mobile-buy {
    display: flex;
  }

  .site-footer {
    padding-bottom: 112px;
  }
}

@media (max-width: 620px) {
  :root {
    --gutter: 20px;
    --section: 72px;
    --radius-lg: 26px;
  }

  body {
    font-size: 15px;
  }

  h1 {
    font-size: clamp(2.35rem, 11vw, 3.3rem);
  }

  h2 {
    font-size: clamp(1.95rem, 9vw, 2.85rem);
  }

  .announcement {
    min-height: 30px;
    font-size: 0.65rem;
  }

  .nav .btn {
    min-height: 42px;
    padding-inline: 15px;
  }

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

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

  .hero-actions .btn {
    width: 100%;
  }

  .hero-actions .text-link {
    width: max-content;
  }

  .hero-media {
    height: 56svh;
    min-height: 450px;
  }

  .hero-proof {
    top: 14px;
    inset-inline-start: 14px;
  }

  .hero-caption {
    inset-inline: 14px;
    bottom: 14px;
    max-width: none;
  }

  .proof-strip-grid {
    border-radius: 24px;
  }

  .proof-stat {
    min-height: 112px;
    padding: 24px 18px;
  }

  .proof-stat strong {
    font-size: 1.9rem;
  }

  .proof-stat span {
    font-size: 0.58rem;
  }

  .video-stage {
    height: min(63svh, 590px);
    min-height: 510px;
  }

  .story-choice {
    grid-template-columns: 56px 1fr;
  }

  .story-choice img {
    width: 56px;
    height: 60px;
  }

  .story-choice time {
    display: none;
  }

  .how-image,
  .lid-photo,
  .product-stage,
  .founder-image,
  .buy-visual {
    height: min(56svh, 560px);
  }

  .state-grid,
  .feature-grid,
  .review-grid,
  .buy-assurances {
    grid-template-columns: 1fr;
  }

  .state-card {
    display: grid;
    grid-template-columns: 20px 1fr;
    align-items: center;
    column-gap: 11px;
    padding: 14px;
  }

  .state-card i {
    grid-row: 1 / 3;
    margin: 0;
  }

  .review-summary {
    grid-template-columns: 1fr 1fr;
  }

  .review-summary > div {
    min-height: 118px;
    padding: 20px;
  }

  .review-summary strong {
    font-size: 1.8rem;
  }

  .review-summary span {
    font-size: 0.58rem;
  }

  .review-card {
    min-height: 245px;
  }

  .founder-copy,
  .buy-copy {
    padding: 40px 22px 48px;
  }

  .feature-card {
    min-height: 0;
  }

  .colour-picker {
    grid-template-columns: 1fr;
  }

  .closing-card {
    min-height: 62svh;
  }

  .closing-card::after {
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.22));
  }

  .closing-copy {
    width: 100%;
    padding: 34px 22px;
  }

  .footer-top,
  .footer-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    gap: 14px 20px;
  }

  .mobile-buy .btn {
    min-width: 136px;
  }
}

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

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

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