:root {
  color-scheme: light;
  --bg: #f7f5ef;
  --body-gradient-top: #fbf7ef;
  --body-gradient-bottom: #f7f2ea;
  --surface: #f0ebe2;
  --surface-2: #f2eee7;
  --surface-soft: #f2eee8;
  --text: #1f2227;
  --text-dark: #111827;
  --muted: #82786d;
  --soft: #746b60;
  --gold: #a67c45;
  --gold-deep: #9e7242;
  --green: #5f665f;
  --line: #e4d9ca;
  --white: #ffffff;
  --checkout-dark: #1f2329;
  --checkout-muted: #6b7280;
  --silver: #8b93a1;
  --warm-highlight: #e6c188;
  --shadow-card-dark-color: rgba(120, 97, 69, 0.14);
  --shadow-card-highlight-color: rgba(255, 255, 255, 1);
  --shadow-card-dark-x: 10px;
  --shadow-card-dark-y: 12px;
  --shadow-card-dark-blur: 25px;
  --shadow-card-dark-spread: -7px;
  --shadow-card-highlight-x: -8px;
  --shadow-card-highlight-y: -8px;
  --shadow-card-highlight-blur: 20px;
  --shadow-card-highlight-spread: 0;
  --shadow-hero-dark-color: rgba(120, 97, 69, 0.2);
  --shadow-hero-highlight-color: rgba(255, 255, 255, 1);
  --shadow-hero-dark-x: 18px;
  --shadow-hero-dark-y: 22px;
  --shadow-hero-dark-blur: 44px;
  --shadow-hero-dark-spread: -10px;
  --shadow-hero-highlight-x: -14px;
  --shadow-hero-highlight-y: -14px;
  --shadow-hero-highlight-blur: 30px;
  --shadow-hero-highlight-spread: 0;
  --shadow-cta-dark-color: rgba(158, 135, 102, 0.16);
  --shadow-cta-highlight-color: rgba(255, 255, 255, 1);
  --shadow-cta-dark-x: 14px;
  --shadow-cta-dark-y: 16px;
  --shadow-cta-dark-blur: 28px;
  --shadow-cta-dark-spread: -8px;
  --shadow-cta-highlight-x: -10px;
  --shadow-cta-highlight-y: -10px;
  --shadow-cta-highlight-blur: 24px;
  --shadow-cta-highlight-spread: 0;
  --shadow-checkout-color: rgba(0, 0, 0, 0.06);
  --shadow-checkout-x: 0;
  --shadow-checkout-y: 6px;
  --shadow-checkout-blur: 18px;
  --shadow-checkout-spread: -8px;
  --shadow-glow-blur: 32px;
  --shadow-soft: var(--shadow-card-dark-x) var(--shadow-card-dark-y) var(--shadow-card-dark-blur) var(--shadow-card-dark-spread) var(--shadow-card-dark-color),
    var(--shadow-card-highlight-x) var(--shadow-card-highlight-y) var(--shadow-card-highlight-blur) var(--shadow-card-highlight-spread) var(--shadow-card-highlight-color);
  --shadow-raised: var(--shadow-hero-dark-x) var(--shadow-hero-dark-y) var(--shadow-hero-dark-blur) var(--shadow-hero-dark-spread) var(--shadow-hero-dark-color),
    var(--shadow-hero-highlight-x) var(--shadow-hero-highlight-y) var(--shadow-hero-highlight-blur) var(--shadow-hero-highlight-spread) var(--shadow-hero-highlight-color);
  --shadow-cta: var(--shadow-cta-dark-x) var(--shadow-cta-dark-y) var(--shadow-cta-dark-blur) var(--shadow-cta-dark-spread) var(--shadow-cta-dark-color),
    var(--shadow-cta-highlight-x) var(--shadow-cta-highlight-y) var(--shadow-cta-highlight-blur) var(--shadow-cta-highlight-spread) var(--shadow-cta-highlight-color);
  --shadow-checkout: var(--shadow-checkout-x) var(--shadow-checkout-y) var(--shadow-checkout-blur) var(--shadow-checkout-spread) var(--shadow-checkout-color);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface-2);
  color: var(--text);
  font-family: "Avenir Next", Inter, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header,
.hero,
.section,
footer {
  margin: 0 auto;
  max-width: 1320px;
  padding-left: 28px;
  padding-right: 28px;
}

.site-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-bottom: 30px;
  padding-top: 34px;
}

.brand {
  align-items: center;
  color: var(--green);
  display: flex;
  gap: 15px;
  font-size: 12px;
  letter-spacing: 2.2px;
}

.brand img {
  height: 34px;
}

.brand b {
  font-weight: 700;
}

.brand i,
footer i {
  color: var(--gold);
  font-style: normal;
  margin: 0 7px;
}

.brand em {
  color: var(--gold);
  font-style: normal;
}

nav {
  align-items: center;
  color: var(--green);
  display: flex;
  gap: 26px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.nav-buy {
  background: var(--green);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  color: var(--white);
  padding: 13px 20px;
}

.hero {
  padding-bottom: 108px;
  padding-top: 18px;
}

.hero-panel {
  align-items: center;
  background: var(--surface-soft);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  box-shadow: var(--shadow-raised);
  display: grid;
  gap: 38px;
  grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1.28fr);
  padding: 68px;
}

.hero-copy {
  display: contents;
}

.hero-copy .eyebrow,
.hero-copy h1 {
  grid-column: 1 / -1;
  justify-self: center;
  text-align: center;
}

.hero-copy .eyebrow {
  margin-bottom: -14px;
}

.hero-copy .lead,
.hero-copy .emotional-line,
.hero-copy .hero-actions,
.hero-copy .note {
  grid-column: 1;
}

.eyebrow {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.4px;
  margin: 0 0 22px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(34px, 3.3vw, 46px);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.04;
  margin-bottom: 28px;
  white-space: nowrap;
}

h2 {
  font-size: clamp(34px, 3.7vw, 48px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.12;
  margin-bottom: 24px;
}

h3 {
  font-size: 20px;
  font-weight: 650;
  line-height: 1.2;
  margin-bottom: 12px;
}

.lead,
.section > p,
.mushaf-copy p,
.home-life p,
.hardware-story p,
.buy-copy p,
details p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

.hero-copy .lead {
  max-width: 430px;
}

.emotional-line {
  color: var(--green);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.5;
  margin: 16px 0 0;
  max-width: 430px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 34px 0 28px;
}

.button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 2.4px;
  min-height: 52px;
  padding: 0 26px;
  text-transform: uppercase;
}

.primary {
  background: var(--green);
  box-shadow: var(--shadow-cta);
  color: var(--white);
}

.secondary {
  border: 1px solid color-mix(in srgb, var(--gold) 34%, transparent);
  color: var(--green);
}

.note,
.fine-print {
  color: var(--soft);
  font-size: 13px;
}

.hero-image,
.product-shot,
.room-shot,
.hardware-photo,
.ui-card,
.checkout-card,
.three-up article,
.practice-grid article,
details {
  background: var(--surface-soft);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.hero-image,
.product-shot,
.room-shot,
.hardware-photo,
.ui-card {
  margin: 0;
  overflow: hidden;
  padding: 12px;
}

.hero-image {
  grid-column: 2;
  grid-row: 3 / span 3;
  box-shadow: none;
}

.hero-image img,
.product-shot img,
.room-shot img,
.hardware-photo img,
.ui-card img {
  border-radius: 5px;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero-image img {
  aspect-ratio: 16 / 9;
  object-position: 54% 50%;
}

.section {
  border-top: 1px solid var(--line);
  padding-bottom: 112px;
  padding-top: 112px;
}

.intro {
  text-align: center;
}

.intro > p {
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}

.three-up {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 64px;
}

.three-up article,
.practice-grid article,
details {
  padding: 28px;
}

.three-up p,
.practice-grid p {
  color: var(--soft);
  margin-bottom: 0;
}

.mushaf-screen,
.home-life,
.practice,
.hardware-story,
.buy-section {
  align-items: center;
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.mushaf-screen {
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
}

.product-shot img {
  aspect-ratio: 16 / 9;
  object-position: 48% 50%;
}

.callout-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.callout-grid article {
  background: var(--surface-soft);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  padding: 20px;
}

.callout-grid strong,
.callout-grid span {
  display: block;
}

.callout-grid strong {
  font-size: 17px;
  margin-bottom: 8px;
}

.callout-grid span {
  color: var(--soft);
  font-size: 13px;
  line-height: 1.45;
}

.room-shot img {
  aspect-ratio: 4 / 3;
  object-position: 60% 50%;
}

.practice {
  align-items: start;
}

.practice-copy h2 {
  max-width: 700px;
}

.practice-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 46px;
}

.ui-stack {
  display: grid;
  gap: 28px;
}

.ui-card img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.mushaf-ui img {
  object-position: 60% 50%;
}

.ui-card.dark {
  background: var(--surface-soft);
}

figcaption {
  color: var(--soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.2px;
  margin-top: 14px;
  text-align: center;
  text-transform: uppercase;
}

.hardware-photo img {
  aspect-ratio: 1.2 / 1;
  object-position: 57% 45%;
}

.buy-section {
  align-items: start;
}

.buy-copy .access-ladder {
  max-width: 560px;
}

.checkout-card {
  background: var(--surface);
  box-shadow: var(--shadow-cta);
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(0, 1fr);
  justify-self: end;
  max-width: 480px;
  padding: 28px;
  width: 100%;
}

.checkout-copy {
  min-width: 0;
}

.checkout-card.is-confirmed {
  grid-template-columns: minmax(0, 1fr);
  max-width: 620px;
}

.checkout-card.is-confirmed .checkout-copy {
  display: none;
}

.checkout-card.is-confirmed .waitlist-panel {
  align-self: stretch;
}

.checkout-copy h3 {
  font-size: 26px;
  margin-bottom: 14px;
}

.price {
  font-size: 42px;
  font-weight: 750;
  line-height: 1;
  margin-bottom: 16px;
}

.checkout-copy p:not(.eyebrow):not(.price) {
  color: var(--muted);
  margin-bottom: 0;
}

.batch-ladder {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.batch-card {
  align-items: center;
  background: var(--surface-soft);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 16px;
  position: relative;
}

.batch-card span,
.batch-card em {
  color: var(--soft);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.batch-card strong {
  color: var(--text);
  font-size: 24px;
  line-height: 1;
}

.batch-card em {
  color: var(--gold);
  grid-column: 1 / -1;
}

.batch-card.is-current {
  border-color: color-mix(in srgb, var(--gold) 42%, rgba(255, 255, 255, 0.72));
  box-shadow: var(--shadow-soft), inset 0 0 0 1px color-mix(in srgb, var(--gold) 58%, transparent);
}

.batch-card.is-current strong {
  color: var(--gold-deep);
}

.batch-card.is-closed {
  opacity: 0.78;
}

.batch-card.is-closed strong {
  color: var(--soft);
  text-decoration: line-through;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
}

.batch-card mark {
  background: color-mix(in srgb, var(--gold) 18%, transparent);
  border: 1px solid color-mix(in srgb, var(--gold) 38%, transparent);
  border-radius: 999px;
  color: var(--gold-deep);
  display: inline-block;
  font: inherit;
  margin-right: 8px;
  padding: 3px 8px;
}

.batch-card.is-disabled {
  background: color-mix(in srgb, var(--surface-soft) 72%, var(--surface) 28%);
  border-color: rgba(255, 255, 255, 0.48);
  box-shadow: inset 3px 3px 8px rgba(120, 97, 69, 0.05), inset -3px -3px 8px rgba(255, 255, 255, 0.45);
  opacity: 0.58;
}

.batch-card.is-disabled em,
.batch-card.is-disabled strong,
.batch-card.is-disabled span {
  color: var(--soft);
}

.waitlist-panel {
  align-self: center;
  display: block;
  min-width: 0;
}

.waitlist-form {
  display: grid;
  gap: 14px;
}

.waitlist-form label {
  color: var(--soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.waitlist-form input {
  background: var(--surface-soft);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  box-shadow: inset 4px 4px 10px rgba(120, 97, 69, 0.08), inset -4px -4px 10px rgba(255, 255, 255, 0.78);
  color: var(--text);
  font: inherit;
  min-height: 54px;
  outline: none;
  padding: 0 16px;
}

.waitlist-form input:focus {
  border-color: color-mix(in srgb, var(--gold) 44%, rgba(255, 255, 255, 0.82));
}

.waitlist-form .button {
  border: 0;
  cursor: pointer;
  margin-top: 4px;
}

.consent-note,
.answer-status {
  color: var(--soft);
  font-size: 12px;
  line-height: 1.45;
  margin: 0;
}

.waitlist-form.has-error input[type="email"] {
  border-color: color-mix(in srgb, #a94442 46%, rgba(255, 255, 255, 0.82));
}

.waitlist-confirmation {
  background: var(--surface-soft);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 22px;
  padding: 26px;
}

.waitlist-confirmation[hidden] {
  display: none;
}

.waitlist-confirmation h4 {
  font-size: clamp(26px, 4.4vw, 36px);
  line-height: 1.2;
  margin: 0 0 10px;
}

.confirmation-copy {
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
}

.waitlist-confirmation p:not(.eyebrow) {
  color: var(--muted);
  margin: 0;
}

.optional-questions {
  display: grid;
  gap: 14px;
}

.optional-questions p,
.optional-questions span {
  color: var(--soft);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.choice-row button {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  color: var(--green);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 750;
  padding: 10px 13px;
}

.choice-row button.is-selected {
  background: var(--green);
  color: var(--white);
}

.answer-submit {
  border: 0;
  cursor: pointer;
  margin-top: 4px;
  min-height: 46px;
}

button[disabled] {
  cursor: default;
  opacity: 0.68;
}

.faq h2 {
  margin-bottom: 46px;
}

details {
  margin-top: 18px;
}

summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 650;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::before {
  color: var(--gold);
  content: "Q";
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  margin-right: 16px;
}

details p {
  margin: 18px 0 0 34px;
  max-width: 850px;
}

footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--green);
  display: flex;
  font-size: 12px;
  justify-content: space-between;
  letter-spacing: 2px;
  padding-bottom: 38px;
  padding-top: 38px;
  text-transform: uppercase;
}

footer a {
  color: var(--gold);
  font-weight: 800;
}

@media (max-width: 1040px) {
  .site-header,
  .hero,
  .section,
  footer {
    padding-left: 22px;
    padding-right: 22px;
  }

  nav {
    display: none;
  }

  .hero-panel {
    padding: 46px;
  }

  h1 {
    font-size: clamp(34px, 5.1vw, 50px);
  }
}

@media (max-width: 820px) {
  .site-header {
    padding: 24px 22px;
  }

  .brand img {
    height: 30px;
  }

  .hero {
    padding-bottom: 76px;
    padding-top: 18px;
  }

  .hero-panel,
  .mushaf-screen,
  .home-life,
  .practice,
  .hardware-story,
  .buy-section,
  .checkout-card {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    gap: 28px;
    padding: 28px 18px 18px;
    text-align: center;
  }

  .hero-copy {
    display: block;
  }

  .hero-copy .eyebrow {
    margin-bottom: 12px;
  }

  .hero-copy .lead,
  .hero-copy .emotional-line {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-image {
    grid-column: auto;
    grid-row: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  h1 {
    font-size: clamp(34px, 9.2vw, 44px);
    line-height: 1.06;
    margin-bottom: 22px;
    white-space: normal;
  }

  h2 {
    font-size: clamp(30px, 7.8vw, 36px);
  }

  .lead,
  .section > p,
  .mushaf-copy p,
  .home-life p,
  .hardware-story p,
  .buy-copy p,
  details p {
    font-size: 16px;
  }

  .section {
    padding-bottom: 82px;
    padding-top: 82px;
  }

  .three-up,
  .practice-grid,
  .callout-grid {
    grid-template-columns: 1fr;
  }

  .mushaf-screen,
  .home-life,
  .practice,
  .hardware-story,
  .buy-section {
    gap: 34px;
  }

  .mushaf-screen .product-shot {
    order: 1;
  }

  .mushaf-screen .mushaf-copy {
    order: 2;
  }

  .home-life .room-shot {
    order: -1;
  }

  .checkout-card {
    padding: 22px;
  }

  .button {
    width: 100%;
  }

  footer {
    gap: 18px;
  }
}

@media (max-width: 430px) {
  .hero,
  .section,
  footer {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-panel {
    padding: 24px 14px 14px;
  }

  .hero-image,
  .product-shot,
  .room-shot,
  .hardware-photo,
  .ui-card {
    padding: 8px;
  }

  .three-up article,
  .practice-grid article,
  details {
    padding: 22px;
  }
}
