:root {
  --leather: #7a4a2a;
  --leather-dark: #24120b;
  --leather-deep: #150a06;
  --gold: #d4af37;
  --gold-soft: #c7a45b;
  --gold-deep: #8f6829;
  --parchment: #f2e3b6;
  --parchment-deep: #dfc88c;
  --ivory: #faf6ee;
  --ink: #2a190f;
  --muted: rgba(250, 246, 238, .78);
  --line: rgba(212, 175, 55, .34);
  --max: 1120px;
  --narrow: 900px;
  --shadow: 0 22px 60px rgba(0, 0, 0, .32);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  padding: 10px;
  color: var(--ivory);
  font-family: "Lora", Georgia, "Times New Roman", serif;
  line-height: 1.65;
  background:
    linear-gradient(rgba(30, 13, 8, .18), rgba(30, 13, 8, .18)),
    url("/assets/leather-tile.jpg") center top / 760px 760px repeat;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; max-width: 100%; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3 {
  margin: 0 0 .9rem;
  color: var(--ivory);
  font-family: "Cinzel", "Trajan Pro", Georgia, serif;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: .012em;
}
h1 { font-size: clamp(2.45rem, 5.8vw, 5.2rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 3.15rem); }
h3 { font-size: clamp(1.28rem, 2vw, 1.62rem); }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--parchment);
}
.skip-link:focus { top: 16px; }

.site-shell {
  position: relative;
  min-height: calc(100vh - 20px);
  overflow: hidden;
  border: 2px solid rgba(212, 175, 55, .92);
  background: rgba(21, 10, 6, .13);
  box-shadow:
    inset 0 0 0 4px rgba(22, 9, 5, .88),
    inset 0 0 0 5px rgba(212, 175, 55, .58),
    inset 0 0 0 11px rgba(20, 8, 4, .76),
    inset 0 0 0 12px rgba(212, 175, 55, .24),
    var(--shadow);
}
.site-shell::before,
.site-shell::after {
  content: "";
  position: absolute;
  z-index: 3;
  pointer-events: none;
}
.site-shell::before {
  inset: 17px;
  border: 1px solid rgba(212, 175, 55, .42);
}
.site-shell::after {
  inset: 22px;
  border: 1px solid rgba(212, 175, 55, .14);
}

.frame-ornament {
  position: absolute;
  left: 50%;
  z-index: 48;
  width: 164px;
  height: 20px;
  transform: translateX(-50%);
  pointer-events: none;
}
.frame-ornament.top { top: 7px; }
.frame-ornament.bottom { bottom: 7px; transform: translateX(-50%) rotate(180deg); }
.frame-ornament::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,.82) 18%, rgba(212,175,55,.82) 41%, transparent 42%, transparent 58%, rgba(212,175,55,.82) 59%, rgba(212,175,55,.82) 82%, transparent);
}
.frame-ornament::after {
  content: "◆";
  position: absolute;
  inset: 0;
  color: rgba(212,175,55,.88);
  font-size: .72rem;
  line-height: 20px;
  text-align: center;
  text-shadow: 0 0 12px rgba(212,175,55,.28);
}

.corner {
  position: absolute;
  width: 126px;
  height: 126px;
  z-index: 50;
  pointer-events: none;
  opacity: .94;
  filter: saturate(.8) brightness(1.14);
}
.corner.tl { top: 6px; left: 6px; }
.corner.tr { top: 6px; right: 6px; transform: rotate(90deg); }
.corner.br { right: 6px; bottom: 6px; transform: rotate(180deg); }
.corner.bl { left: 6px; bottom: 6px; transform: rotate(270deg); }

.container {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}
.container.narrow { max-width: var(--narrow); }
.centered { text-align: center; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background:
    linear-gradient(rgba(24, 11, 7, .91), rgba(24, 11, 7, .86)),
    url("/assets/leather-tile.jpg") center / 760px 760px repeat;
  backdrop-filter: blur(10px);
}
.nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ivory);
  font-family: "Cinzel", "Trajan Pro", Georgia, serif;
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.brand img {
  width: 52px;
  height: 44px;
  object-fit: cover;
  object-position: center;
  filter: drop-shadow(0 4px 9px rgba(0,0,0,.38));
}
nav { display: flex; align-items: center; gap: 22px; }
nav a { color: rgba(250, 246, 238, .84); font-size: .95rem; }
nav a:hover, nav a:focus-visible, .text-link:hover, .text-link:focus-visible { color: var(--gold); }

.button {
  display: inline-flex;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--gold-deep);
  border-radius: 5px;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: .02em;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-1px); }
.button.primary {
  color: #24140b;
  border-color: #e2c06b;
  background: linear-gradient(180deg, #d8b65a, #aa782e);
  box-shadow: 0 9px 24px rgba(0,0,0,.22);
}
.button.secondary, .button.compact {
  color: var(--ivory);
  border-color: rgba(212,175,55,.56);
  background: rgba(21, 10, 6, .22);
}
.button.compact { min-height: 42px; padding: 0 17px; }
.button.ink {
  color: #3a2415;
  border-color: rgba(103,63,26,.72);
  background: rgba(255,255,255,.22);
}

.eyebrow {
  margin-bottom: .85rem;
  color: var(--gold-soft);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.lede {
  max-width: 730px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}
.actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 26px; }
.centered-actions { justify-content: center; }
.single-action { display: flex; justify-content: center; margin-top: 28px; }

.hero {
  min-height: min(680px, calc(100vh - 86px));
  padding: clamp(58px, 7vw, 92px) 0 clamp(52px, 6vw, 76px);
  display: grid;
  grid-template-columns: minmax(250px, .68fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(34px, 7vw, 82px);
}
.hero-lockup {
  width: min(100%, 350px);
  margin-inline: auto;
  border: 1px solid rgba(212,175,55,.38);
  box-shadow: 0 20px 55px rgba(0,0,0,.30);
}
.hero-copy h1 { max-width: 720px; }
.hero-copy .lede { max-width: 650px; }

.section { padding: clamp(58px, 7vw, 88px) 0; }
.section-heading { margin-bottom: 30px; }
.compact-heading { margin-bottom: 26px; }
.section-heading.centered .eyebrow, .section-heading.centered h2 { margin-inline: auto; }
.passage-section { padding-top: 36px; }

.passage-card {
  position: relative;
  padding: clamp(26px, 5vw, 52px);
  color: var(--ink);
  border: 1px solid #a77c36;
  background:
    radial-gradient(circle at 18% 8%, rgba(255,255,255,.42), transparent 17rem),
    linear-gradient(135deg, var(--parchment), var(--parchment-deep));
  box-shadow: inset 0 0 30px rgba(94,57,24,.12), 0 24px 60px rgba(0,0,0,.26);
}
.passage-card::before, .passage-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(111,68,25,.35);
}
.passage-card::before { inset: 10px; }
.passage-card::after { inset: 16px; border-color: rgba(111,68,25,.18); }
.passage-topline, .passage-part, .passage-actions, .ornament { position: relative; z-index: 2; }
.passage-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  color: #6d4225;
  border-bottom: 1px solid rgba(111,68,25,.22);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.passage-topline img { width: 22px; height: 40px; object-fit: contain; }
.passage-part { padding: 22px 0 4px; }
.passage-part p { margin: 0; font-size: clamp(1.02rem, 1.7vw, 1.16rem); line-height: 1.82; }
.passage-part.original-text p {
  font-family: "Noto Serif Devanagari", "Kohinoor Devanagari", serif;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  line-height: 1.95;
}
.language {
  display: block;
  margin-bottom: 7px;
  color: #724421;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
}
.ornament { color: rgba(112,67,26,.58); text-align: center; font-size: .72rem; }
.passage-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(111,68,25,.22);
}
.text-link { color: var(--gold-soft); font-weight: 700; }
.passage-card .text-link { color: #69401f; }

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.benefit-card,
.plan-card,
.store-card,
.member-value {
  position: relative;
  padding: clamp(25px, 4vw, 36px);
  border: 1px solid rgba(212,175,55,.28);
  background:
    linear-gradient(rgba(22,10,6,.58), rgba(22,10,6,.58)),
    url("/assets/leather-tile.jpg") center / 680px 680px repeat;
  box-shadow: 0 18px 42px rgba(0,0,0,.18);
}
.benefit-card.featured,
.plan-card.best,
.member-value {
  border-color: rgba(212,175,55,.72);
  box-shadow: 0 0 0 1px rgba(212,175,55,.18), 0 20px 48px rgba(0,0,0,.22);
}
.benefit-card p { color: var(--muted); }
.benefit-card .text-link { display: inline-block; margin-top: 10px; }
.benefit-number {
  display: block;
  margin-bottom: 20px;
  color: rgba(212,175,55,.55);
  font-family: "Cinzel", "Trajan Pro", Georgia, serif;
  font-size: .82rem;
  letter-spacing: .16em;
}

.page-hero { padding: clamp(64px, 8vw, 104px) 0 36px; }
.slim-hero { padding-bottom: 24px; }
.page-mark { width: 138px; margin: 0 auto 23px; filter: drop-shadow(0 12px 25px rgba(0,0,0,.28)); }
.page-mark.large { width: 184px; }
.page-hero .lede { margin-inline: auto; }
.app-hero { padding-bottom: 18px; }

.member-value-section { padding-top: 28px; padding-bottom: 40px; }
.member-value { text-align: center; }
.member-value h2 { max-width: 680px; margin-inline: auto; }
.member-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  margin-top: 30px;
  border-top: 1px solid rgba(212,175,55,.24);
}
.member-benefits > div { padding: 24px 18px 0; }
.member-benefits > div + div { border-left: 1px solid rgba(212,175,55,.20); }
.member-benefits strong {
  display: block;
  margin-bottom: 7px;
  color: var(--gold-soft);
  font-family: "Cinzel", "Trajan Pro", Georgia, serif;
  font-size: 1.1rem;
}
.member-benefits span { color: var(--muted); }

.plan-grid,
.store-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 20px;
}
.plan-grid { max-width: 870px; margin: 0 auto; }
.plan-card { padding-top: 42px; text-align: center; }
.badge {
  position: absolute;
  top: 0;
  right: 22px;
  padding: 7px 12px;
  color: #24140b;
  background: linear-gradient(#d8b65a, #aa782e);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.card-kicker { color: var(--gold-soft); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: .78rem; }
.price {
  margin: 13px 0 14px;
  color: var(--ivory);
  font-family: "Cinzel", "Trajan Pro", Georgia, serif;
  font-size: clamp(2.15rem, 4vw, 3.35rem);
  line-height: 1;
}
.price span { color: var(--muted); font-family: Georgia, serif; font-size: 1rem; }
.launch-offer { margin-bottom: 0; color: rgba(250,246,238,.78); }
.launch-offer strong { color: var(--gold-soft); }
.offer-note {
  max-width: 820px;
  margin: 24px auto 0;
  color: rgba(250,246,238,.62);
  text-align: center;
  font-size: .94rem;
}

.store-grid { max-width: 820px; margin: 0 auto; }
.store-card { text-align: center; }
.store-card.platform-match { border-color: rgba(212,175,55,.78); box-shadow: 0 0 0 1px rgba(212,175,55,.18); }
.store-card h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
.store-symbol { display: block; min-height: 48px; color: var(--gold); line-height: 1; }
.store-symbol.word { font-family: "Cinzel", "Trajan Pro", Georgia, serif; font-size: 1.2rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.availability {
  display: inline-flex;
  margin-top: 8px;
  padding: 8px 13px;
  border: 1px solid rgba(212,175,55,.38);
  color: var(--gold-soft);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

footer { padding: 30px 0 48px; color: rgba(250,246,238,.58); font-size: .9rem; }
.footer-row { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; }
.footer-tagline { color: rgba(212,175,55,.72); text-align: center; }
.footer-links { display: flex; justify-content: flex-end; gap: 18px; }

.error-page { min-height: calc(100vh - 20px); display: grid; place-content: center; padding: 80px 0; }
.error-page .button { margin-top: 18px; }

.reveal { opacity: 0; transform: translateY(12px); transition: opacity .5s ease, transform .5s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; text-align: center; }
  .hero-lockup { width: min(74vw, 330px); }
  .hero-copy .lede { margin-inline: auto; }
  .hero-copy .actions { justify-content: center; }
  .benefit-grid { grid-template-columns: 1fr; }
  .footer-row { grid-template-columns: 1fr; text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 760px) {
  body { padding: 4px; }
  .site-shell { min-height: calc(100vh - 8px); }
  .site-shell::before { inset: 11px; }
  .site-shell::after { inset: 16px; }
  .frame-ornament { width: 118px; }
  .frame-ornament.top { top: 3px; }
  .frame-ornament.bottom { bottom: 3px; }
  .container { width: min(calc(100% - 34px), var(--max)); }
  .corner { width: 78px; height: 78px; }
  .corner.tl { top: 3px; left: 3px; }
  .corner.tr { top: 3px; right: 3px; }
  .corner.br { right: 3px; bottom: 3px; }
  .corner.bl { left: 3px; bottom: 3px; }
  .nav { min-height: 76px; justify-content: center; }
  .brand { font-size: 1.52rem; }
  .brand img { width: 46px; height: 38px; }
  nav { display: none; }
  h1 { font-size: clamp(2.2rem, 11vw, 3.45rem); }
  .plan-grid, .store-grid { grid-template-columns: 1fr; }
  .member-benefits { grid-template-columns: 1fr; }
  .member-benefits > div { padding: 21px 4px; }
  .member-benefits > div + div { border-left: 0; border-top: 1px solid rgba(212,175,55,.18); }
}

@media (max-width: 540px) {
  .actions, .passage-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .passage-actions .text-link { text-align: center; }
  .passage-card { padding: 24px 20px; }
  .passage-card::before { inset: 7px; }
  .passage-card::after { inset: 12px; }
  .passage-part.original-text p { font-size: 1.14rem; }
  .hero { padding-top: 44px; }
  .hero-lockup { width: min(80vw, 300px); }
  .section { padding: 52px 0; }
}
