/* =========================================================
   Audio Store — premium, calm, mobile-first
   Palette: cream · off-white · warm gold · deep purple · lavender · charcoal
   ========================================================= */
:root {
  --cream: #fbf6ec;
  --offwhite: #fffdf8;
  --sand: #f3ead8;
  --gold: #c9a24b;
  --gold-soft: #e9d49f;
  --gold-deep: #8a6420;          /* gold for text on light bg (AA) */
  --purple: #3e2a6b;
  --purple-2: #56408f;
  --purple-deep: #2a1c4d;
  --lavender: #e9e1f7;
  --lavender-2: #cfc0ec;
  --charcoal: #24212b;
  --text: #2b2733;
  --muted: #5e5869;
  --line: rgba(62, 42, 107, .12);
  --success: #2f7a4f;
  --error: #b3261e;
  --warn: #8a5a00;

  --radius: 20px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 8px rgba(42, 28, 77, .06);
  --shadow: 0 12px 32px -12px rgba(42, 28, 77, .18), 0 2px 6px rgba(42, 28, 77, .05);
  --shadow-lg: 0 30px 60px -24px rgba(42, 28, 77, .35);

  --font: "Mukta", system-ui, -apple-system, "Segoe UI", "Noto Sans Devanagari", sans-serif;
  --font-display: "Tiro Devanagari Hindi", "Noto Serif Devanagari", Georgia, serif;
  --gutter: 16px;
  --sticky-h: 0px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 76px; }
body {
  margin: 0; font-family: var(--font); font-size: 17px; line-height: 1.65; color: var(--text);
  background: var(--cream); overflow-x: hidden; -webkit-font-smoothing: antialiased;
  padding-bottom: var(--sticky-h);
}
img, svg { max-width: 100%; display: block; }
a { color: var(--purple-2); text-underline-offset: 3px; }
a:hover { color: var(--purple); }
h1, h2, h3 { color: var(--purple-deep); line-height: 1.3; margin: 0 0 .5em; font-weight: 700; }
h1, h2 { font-family: var(--font-display); font-weight: 400; letter-spacing: -.005em; }
h2 { font-size: clamp(1.6rem, 5.2vw, 2.4rem); }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1em; }
.muted { color: var(--muted); }
.small { font-size: .9rem; }
button, input, select { font: inherit; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 6px; }
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--purple); color: #fff; padding: 8px 14px; border-radius: 8px; z-index: 100; }
.skip-link:focus { left: 8px; }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 var(--gutter); }
.container--narrow { max-width: 780px; }
.icon { width: 1.2em; height: 1.2em; flex: none; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--offwhite); --fg: var(--purple);
  display: inline-flex; align-items: center; justify-content: center; gap: .45em;
  min-height: 48px; padding: .7em 1.4em; border-radius: 999px; border: 1.5px solid transparent;
  background: var(--bg); color: var(--fg); font-weight: 600; font-size: 1rem; line-height: 1.2;
  text-decoration: none; cursor: pointer; text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
  -webkit-tap-highlight-color: transparent; touch-action: manipulation;
}
.btn:hover { transform: translateY(-1px); color: var(--fg); }
.btn:active { transform: translateY(0); }
.btn[disabled] { opacity: .55; cursor: not-allowed; transform: none; }
.btn--primary { --bg: linear-gradient(135deg, var(--purple-2), var(--purple-deep)); --fg: #fff; background: var(--bg); box-shadow: 0 10px 24px -10px rgba(42, 28, 77, .6); }
.btn--primary:hover { box-shadow: 0 14px 28px -10px rgba(42, 28, 77, .7); }
.btn--gold { --fg: var(--purple-deep); background: linear-gradient(135deg, #f1dca6, var(--gold)); box-shadow: 0 10px 24px -12px rgba(138, 100, 32, .7); }
.btn--ghost { --fg: var(--purple); background: rgba(255, 255, 255, .7); border-color: var(--lavender-2); backdrop-filter: blur(6px); }
.btn--outline { --fg: var(--purple); background: transparent; border-color: var(--lavender-2); }
.btn--outline:hover { background: var(--lavender); }
.btn--lg { min-height: 54px; font-size: 1.05rem; padding: .8em 1.6em; }
.btn--sm { min-height: 40px; padding: .45em 1em; font-size: .95rem; }
.btn--block { width: 100%; }

.pill { display: inline-block; padding: .2em .8em; border-radius: 999px; font-size: .85rem; font-weight: 600; background: var(--lavender); color: var(--purple); margin: 0 0 .6em; }
.pill--gold { background: #f6ebcd; color: var(--gold-deep); }
.pill--success { background: #e3f3e8; color: var(--success); }
.pill--error { background: #fbe4e2; color: var(--error); }
.pill--warn { background: #fbf0d9; color: var(--warn); }
.pill--muted { background: #eeebf3; color: var(--muted); }
.eyebrow { text-transform: uppercase; letter-spacing: .16em; font-size: .78rem; font-weight: 600; color: var(--gold-deep); margin-bottom: .6em; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 40; background: rgba(251, 246, 236, .85); backdrop-filter: saturate(1.4) blur(12px); -webkit-backdrop-filter: saturate(1.4) blur(12px); border-bottom: 1px solid var(--line); }
.site-header__inner { display: flex; align-items: center; gap: 16px; min-height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--purple-deep); min-width: 0; }
.brand__mark { width: 38px; height: 38px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, var(--purple-2), var(--purple-deep)); padding: 3px; flex: none; }
.brand__name { font-family: var(--font-display); font-size: 1.15rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.brand__logo { height: 40px; width: auto; }
.site-nav { display: none; margin-left: auto; gap: 26px; }
.site-nav a { color: var(--text); text-decoration: none; font-weight: 500; }
.site-nav a:hover { color: var(--purple-2); }
.site-header__cta { margin-left: auto; white-space: nowrap; flex: none; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 40px 0 56px; background: linear-gradient(180deg, var(--offwhite) 0%, var(--cream) 55%, #f4ecf8 100%); isolation: isolate; }
.hero__bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(40px); opacity: .55; }
.orb--1 { width: 340px; height: 340px; background: var(--lavender-2); top: -120px; right: -120px; }
.orb--2 { width: 280px; height: 280px; background: #f3dfae; bottom: -80px; left: -100px; }
.orb--3 { width: 180px; height: 180px; background: #d9c9f2; top: 40%; left: 55%; opacity: .35; }
.hero__mandala { position: absolute; width: 620px; height: 620px; right: -260px; top: -140px; color: var(--gold); opacity: .18; animation: spin 180s linear infinite; }
.hero__grid { display: grid; gap: 36px; align-items: center; }
.hero__title { font-size: clamp(1.95rem, 7.4vw, 3.4rem); line-height: 1.25; margin-bottom: .45em; }
.hero__lead { font-size: clamp(1.02rem, 3.6vw, 1.2rem); color: var(--muted); max-width: 36em; }
.hero__cta { display: grid; gap: 12px; margin: 26px 0 18px; }
.hero__price { color: var(--muted); font-size: .98rem; }
.hero__price s { margin-right: 6px; }
.hero__price strong { color: var(--purple-deep); font-size: 1.3rem; }

.now-playing { position: relative; background: rgba(255, 253, 248, .82); border: 1px solid rgba(255, 255, 255, .9); border-radius: 28px; padding: 22px 18px 18px; box-shadow: var(--shadow-lg); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.now-playing__art { width: 150px; height: 150px; margin: -4px auto 12px; border-radius: 50%; padding: 10px; background: radial-gradient(circle at 35% 30%, var(--purple-2), var(--purple-deep) 70%); box-shadow: 0 18px 40px -16px rgba(42, 28, 77, .7), inset 0 0 0 6px rgba(233, 212, 159, .25); }
.now-playing__label { text-align: center; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; margin-bottom: 12px; }
.is-playing-hero .now-playing__art svg { animation: spin 40s linear infinite; }

/* ---------- Player ---------- */
.player { display: grid; grid-template-columns: auto 1fr; gap: 12px 14px; align-items: center; }
.player__btn { position: relative; width: 56px; height: 56px; border-radius: 50%; border: 0; cursor: pointer; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, var(--purple-2), var(--purple-deep)); box-shadow: 0 10px 22px -10px rgba(42, 28, 77, .8); transition: transform .2s ease; -webkit-tap-highlight-color: transparent; }
.player__btn:hover { transform: scale(1.05); }
.player__btn[disabled] { background: #cfc8da; box-shadow: none; cursor: not-allowed; transform: none; }
.player__btn .icon { width: 24px; height: 24px; }
.player__btn .icon--pause, .player.is-playing .player__btn .icon--play { display: none; }
.player.is-playing .player__btn .icon--pause { display: block; }
.player__spin { position: absolute; inset: -4px; border-radius: 50%; border: 2px solid transparent; border-top-color: var(--gold); opacity: 0; }
.player.is-loading .player__spin { opacity: 1; animation: spin 1s linear infinite; }
.player__main { min-width: 0; }
.player__meta { display: flex; justify-content: space-between; gap: 8px; align-items: baseline; margin-bottom: 4px; }
.player__title { font-weight: 600; color: var(--purple-deep); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.player__status { font-size: .8rem; color: var(--muted); white-space: nowrap; }
.player.is-error .player__status { color: var(--error); }
.wave { position: relative; height: 44px; }
.wave__bars { position: absolute; inset: 0; display: flex; align-items: center; gap: 2px; }
.wave__bars i { flex: 1 1 0; min-width: 1px; border-radius: 2px; background: var(--lavender-2); }
.wave__bars--fill { clip-path: inset(0 calc(100% - var(--p, 0%)) 0 0); }
.wave__bars--fill i { background: linear-gradient(180deg, var(--gold), var(--purple-2)); }
.wave__seek { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: pointer; -webkit-appearance: none; appearance: none; background: transparent; }
.wave__seek:disabled { cursor: default; }
.wave:has(.wave__seek:focus-visible) { outline: 3px solid var(--gold); outline-offset: 4px; border-radius: 6px; }
.player__time { display: flex; justify-content: space-between; font-size: .8rem; color: var(--muted); font-variant-numeric: tabular-nums; margin-top: 2px; }
.player__vol { grid-column: 1 / -1; display: flex; align-items: center; gap: 10px; padding-top: 4px; border-top: 1px solid var(--line); }
.player__vol[hidden] { display: none; }
.player__mute { width: 40px; height: 40px; border-radius: 50%; border: 0; background: var(--lavender); color: var(--purple); display: grid; place-items: center; cursor: pointer; }
.player__mute .icon--mute, .player.is-muted .player__mute .icon--volume { display: none; }
.player.is-muted .player__mute .icon--mute { display: block; }
.player__volume { flex: 1; accent-color: var(--purple-2); height: 28px; }
.player--hero .wave { height: 52px; }
.player--hero .player__btn { width: 62px; height: 62px; }
.player--track .player__btn { width: 46px; height: 46px; }
.player--track .player__btn .icon { width: 20px; height: 20px; }
.player--track .wave { height: 34px; }

/* ---------- Trust strip ---------- */
.trust { background: var(--purple-deep); color: #efe7ff; }
.trust__list { list-style: none; margin: 0 auto; padding: 14px var(--gutter); display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px; font-size: .92rem; }
.trust__list li { display: flex; align-items: center; gap: 6px; }
.trust__list .icon { color: var(--gold-soft); width: 18px; height: 18px; }

/* ---------- Sections ---------- */
.section { padding: 64px 0; }
.section--tint { background: linear-gradient(180deg, #f6f0fb 0%, var(--cream) 100%); }
.section--deep { background: radial-gradient(1200px 500px at 80% -10%, #5a4596 0%, transparent 60%), linear-gradient(160deg, var(--purple) 0%, var(--purple-deep) 100%); color: #eee8fb; }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 36px; }
.section__head p { color: var(--muted); }
.section__head--light h2 { color: #fff; }
.section__head--light p { color: #d6ccef; }
.section__head--light .eyebrow { color: var(--gold-soft); }

.grid { display: grid; gap: 16px; }
.card { background: var(--offwhite); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.card p { color: var(--muted); margin: 0; }
.card--soft { background: linear-gradient(160deg, #fff 0%, #faf5ff 100%); }
.card__icon { display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 16px; background: var(--lavender); font-size: 1.6rem; margin-bottom: 12px; }

/* Product showcase */
.product-card { display: grid; background: var(--offwhite); border-radius: 26px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.product-card__art { display: grid; place-items: center; padding: 28px; background: radial-gradient(circle at 50% 40%, var(--purple-2), var(--purple-deep) 75%); }
.product-card__art--lotus { background: radial-gradient(circle at 50% 40%, #6b4f8f, #2d1f47 75%); }
.product-card__art svg { width: 170px; height: 170px; }
.product-card__body { padding: 22px; }
.product-card__body p:not(.pill) { color: var(--muted); }

/* What you get */
.features { gap: 12px; }
.feature { display: flex; gap: 14px; align-items: flex-start; padding: 16px; background: var(--offwhite); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.feature__icon { flex: none; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 14px; background: linear-gradient(135deg, #f6ebcd, #fff); font-size: 1.4rem; }
.feature h3 { margin: 0 0 2px; font-size: 1.05rem; }
.feature p { margin: 0; color: var(--muted); font-size: .95rem; }
.counts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 28px 0 0; padding: 18px 10px; border-radius: var(--radius); background: linear-gradient(135deg, var(--purple), var(--purple-deep)); color: #fff; text-align: center; }
.counts dt { font-size: .82rem; color: #d6ccef; }
.counts dd { margin: 0; line-height: 1.2; }
.counts strong { display: block; font-family: var(--font-display); font-weight: 400; font-size: clamp(1.6rem, 6vw, 2.2rem); color: var(--gold-soft); }
.counts span { font-size: .8rem; color: #d6ccef; }

/* Demo cards */
.demo-card { background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .14); border-radius: 24px; padding: 18px; backdrop-filter: blur(6px); }
.demo-card__cover { aspect-ratio: 16 / 9; border-radius: 16px; display: grid; place-items: center; margin-bottom: 14px; background: radial-gradient(circle at 50% 45%, #6a55a6, #2a1c4d 80%); overflow: hidden; }
.demo-card__cover--spark { background: radial-gradient(circle at 50% 45%, #7a5a9e, #2e1f4a 80%); }
.demo-card__cover--lotus { background: radial-gradient(circle at 50% 45%, #6d4a7f, #2a1b3f 80%); }
.demo-card__cover svg { height: 88%; width: auto; }
.demo-card__title { color: #fff; margin: 0; }
.demo-card__sub { color: #cdbfee; font-size: .95rem; margin-bottom: 12px; }
.demo-card .player { background: var(--offwhite); color: var(--text); border-radius: 16px; padding: 12px; }

/* Offer */
.section--offer { background: radial-gradient(600px 300px at 50% 0%, #efe4fb 0%, transparent 70%), var(--cream); }
.offer { position: relative; max-width: 560px; margin: 0 auto; background: var(--offwhite); border-radius: 30px; padding: 32px 22px 26px; text-align: center; border: 1px solid rgba(201, 162, 75, .45); box-shadow: var(--shadow-lg); overflow: hidden; isolation: isolate; }
.offer__glow { position: absolute; inset: -40% -20% auto; height: 70%; background: radial-gradient(closest-side, rgba(233, 212, 159, .5), transparent); z-index: -1; }
.offer__title { margin-bottom: .2em; }
.offer__product { color: var(--muted); margin-bottom: 20px; }
.offer__features { list-style: none; padding: 0; margin: 0 auto 22px; display: grid; gap: 10px; text-align: left; max-width: 360px; }
.offer__features li { display: flex; gap: 10px; align-items: center; }
.offer__features .icon { color: #fff; background: var(--success); border-radius: 50%; padding: 3px; width: 22px; height: 22px; }
.offer__price { border-top: 1px dashed var(--lavender-2); border-bottom: 1px dashed var(--lavender-2); padding: 16px 0 6px; margin-bottom: 20px; }
.offer__mrp { color: var(--muted); margin-bottom: 4px; }
.offer__mrp .pill { margin: 0 0 0 6px; vertical-align: middle; }
.offer__now { display: flex; flex-direction: column; align-items: center; margin-bottom: 4px; }
.offer__label { font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; }
.offer__now strong { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.8rem, 12vw, 3.8rem); line-height: 1.1; color: var(--purple-deep); }
.offer__secure { display: flex; gap: 6px; align-items: center; justify-content: center; font-size: .85rem; color: var(--muted); margin: 14px 0 0; }
.offer__secure .icon { color: var(--success); }

/* Timeline */
.timeline { list-style: none; margin: 0 auto; padding: 0; max-width: 900px; display: grid; gap: 0; position: relative; }
.timeline__step { display: grid; grid-template-columns: 56px 1fr; gap: 16px; position: relative; padding-bottom: 28px; }
.timeline__step:not(:last-child)::before { content: ""; position: absolute; left: 27px; top: 56px; bottom: 0; width: 2px; background: linear-gradient(var(--gold), var(--lavender-2)); }
.timeline__n { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-size: 1.3rem; color: var(--purple-deep); background: linear-gradient(135deg, #f6ebcd, var(--gold-soft)); box-shadow: 0 0 0 6px var(--cream), var(--shadow); }
.timeline h3 { margin: 12px 0 4px; }
.timeline p { color: var(--muted); margin: 0; }

.disclaimer { margin: 28px auto 0; max-width: 820px; text-align: center; font-size: .88rem; color: var(--muted); }

/* Testimonials */
.quote { margin: 0; background: var(--offwhite); border-radius: var(--radius); padding: 24px; border: 1px solid var(--line); position: relative; }
.quote::before { content: "“"; font-family: Georgia, serif; font-size: 4rem; line-height: 1; color: var(--gold-soft); position: absolute; top: 6px; left: 16px; }
.quote blockquote { margin: 20px 0 10px; }
.quote--placeholder { border-style: dashed; text-align: center; color: var(--muted); grid-column: 1 / -1; max-width: 560px; justify-self: center; width: 100%; }

/* FAQ */
.faq { display: grid; gap: 10px; }
.faq__item { background: var(--offwhite); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.faq__item summary { list-style: none; cursor: pointer; display: flex; gap: 12px; justify-content: space-between; align-items: center; padding: 16px 18px; font-weight: 600; color: var(--purple-deep); min-height: 56px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__icon { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--lavender); position: relative; transition: transform .25s ease; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 2px; background: var(--purple); transform: translate(-50%, -50%); }
.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform .25s ease; }
.faq__item[open] .faq__icon::after { transform: translate(-50%, -50%) rotate(0); }
.faq__a { padding: 0 18px 16px; color: var(--muted); }
.faq__a p { margin: 0; }

/* Final CTA */
.final-cta { padding: 72px 0; text-align: center; color: #f3edff; background: radial-gradient(700px 300px at 50% 110%, rgba(201, 162, 75, .35), transparent 70%), linear-gradient(160deg, var(--purple) 0%, var(--purple-deep) 100%); }
.final-cta h2 { color: #fff; max-width: 760px; margin: 0 auto .5em; }
.final-cta p { color: #d6ccef; }
.final-cta__price { margin-top: 16px; font-size: .95rem; }
.final-cta__price strong { color: var(--gold-soft); font-size: 1.2rem; }

/* Footer */
.site-footer { background: var(--charcoal); color: #cfc9d8; padding: 48px 0 20px; font-size: .95rem; }
.site-footer a { color: #efe7ff; }
.site-footer__grid { display: grid; gap: 28px; }
.site-footer__name { font-family: var(--font-display); font-size: 1.3rem; color: #fff; margin-bottom: .3em; }
.site-footer .muted { color: #a9a2b5; }
.site-footer__h { color: var(--gold-soft); font-weight: 600; margin-bottom: .5em; }
.site-footer__links { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
.site-footer__links a { text-decoration: none; display: inline-block; padding: 2px 0; }
.site-footer__links a:hover { text-decoration: underline; }
.site-footer__bottom { border-top: 1px solid rgba(255, 255, 255, .1); margin-top: 32px; padding-top: 16px; font-size: .85rem; color: #a9a2b5; }

/* Sticky mobile CTA */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom)); background: rgba(255, 253, 248, .96); border-top: 1px solid var(--line); box-shadow: 0 -10px 30px -12px rgba(42, 28, 77, .25); backdrop-filter: blur(10px); transition: transform .3s ease; }
.sticky-cta.is-hidden { transform: translateY(110%); }
.sticky-cta__price { display: flex; flex-direction: column; line-height: 1.15; }
.sticky-cta__price strong { font-size: 1.35rem; color: var(--purple-deep); }
.sticky-cta__price s { font-size: .82rem; color: var(--muted); }
.sticky-cta .btn { flex: 1; max-width: 260px; }
.has-sticky-cta { --sticky-h: 76px; }

/* WhatsApp */
.wa-float { position: fixed; right: 14px; bottom: calc(var(--sticky-h) + 14px + env(safe-area-inset-bottom)); z-index: 45; display: flex; align-items: center; gap: 8px; background: #1f8f4e; color: #fff; text-decoration: none; border-radius: 999px; padding: 12px; box-shadow: 0 12px 24px -10px rgba(0, 0, 0, .45); }
.wa-float:hover { color: #fff; background: #187a42; }
.wa-float .icon { width: 28px; height: 28px; }
.wa-float__label { display: none; font-weight: 600; padding-right: 6px; }

/* ---------- Checkout dialog ---------- */
.checkout { width: min(480px, calc(100% - 24px)); max-height: calc(100dvh - 24px); border: 0; border-radius: 26px; padding: 0; background: var(--offwhite); color: var(--text); box-shadow: var(--shadow-lg); overflow: auto; }
.checkout::backdrop { background: rgba(26, 18, 46, .6); backdrop-filter: blur(3px); }
.checkout__panel { padding: 26px 20px 22px; position: relative; }
.checkout__close { position: absolute; top: 12px; right: 12px; width: 44px; height: 44px; border: 0; border-radius: 50%; background: var(--lavender); color: var(--purple); display: grid; place-items: center; cursor: pointer; }
.checkout__title { font-size: 1.45rem; padding-right: 44px; }
.checkout__summary { display: flex; justify-content: space-between; gap: 12px; align-items: center; background: #f6f0fb; border-radius: var(--radius-sm); padding: 12px 14px; margin-bottom: 16px; font-size: .95rem; }
.checkout__summary strong { font-size: 1.25rem; color: var(--purple-deep); }
.checkout__secure { display: flex; gap: 6px; align-items: center; justify-content: center; font-size: .82rem; color: var(--muted); margin: 12px 0 0; text-align: center; }
.checkout__secure .icon { color: var(--success); }
.checkout__status { text-align: center; padding-top: 34px; }
.checkout__actions { display: grid; gap: 10px; margin-top: 16px; }
.status-icon { width: 72px; height: 72px; margin: 0 auto 16px; border-radius: 50%; display: grid; place-items: center; font-size: 2rem; }
.status-icon.is-loading { border: 4px solid var(--lavender); border-top-color: var(--purple-2); animation: spin 1s linear infinite; }
.status-icon.is-success { background: #e3f3e8; color: var(--success); }
.status-icon.is-error { background: #fbe4e2; color: var(--error); }

/* Forms */
.form { display: grid; gap: 14px; }
.field label { display: block; font-weight: 600; margin-bottom: 4px; color: var(--purple-deep); }
.field input, .admin__filters input, .admin__filters select { width: 100%; min-height: 50px; padding: 10px 14px; border-radius: 12px; border: 1.5px solid var(--lavender-2); background: #fff; color: var(--text); font-size: 1rem; }
.field input:focus { outline: none; border-color: var(--purple-2); box-shadow: 0 0 0 4px rgba(86, 64, 143, .15); }
.field input[aria-invalid="true"] { border-color: var(--error); }
.field__phone { display: flex; align-items: stretch; }
.field__phone span { display: grid; place-items: center; padding: 0 12px; border: 1.5px solid var(--lavender-2); border-right: 0; border-radius: 12px 0 0 12px; background: #f6f0fb; color: var(--muted); }
.field__phone input { border-radius: 0 12px 12px 0; }
.field__hint { font-size: .82rem; color: var(--muted); margin: 4px 0 0; }
.field__err, .form__error { color: var(--error); font-size: .88rem; margin: 4px 0 0; }
.field__err:empty, .form__error:empty { display: none; }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; color: var(--muted); cursor: pointer; }
.check input { width: 22px; height: 22px; margin-top: 2px; accent-color: var(--purple-2); flex: none; }

.notice { padding: 12px 14px; border-radius: 12px; background: #f6f0fb; border: 1px solid var(--lavender-2); font-size: .95rem; }
.notice--warn { background: #fdf5e4; border-color: #ecd49a; color: #6a4a08; }
.notice--error { background: #fbe9e7; border-color: #f0bdb8; color: var(--error); }
.notice--success { background: #e9f6ee; border-color: #b8dfc7; }

/* ---------- Access / content pages ---------- */
.access, .legal, .admin { padding: 36px 0 64px; min-height: 60vh; }
.panel { background: var(--offwhite); border: 1px solid var(--line); border-radius: 24px; padding: 26px 20px; box-shadow: var(--shadow); }
.panel--center { text-align: center; }
.panel h1, .legal h1, .admin h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
.success-card { text-align: center; background: radial-gradient(500px 200px at 50% 0%, #efe4fb, transparent 70%), var(--offwhite); border: 1px solid rgba(201, 162, 75, .4); border-radius: 28px; padding: 30px 20px 20px; box-shadow: var(--shadow-lg); }
.success-card__tick { width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 12px; display: grid; place-items: center; background: linear-gradient(135deg, #3f9a66, var(--success)); color: #fff; box-shadow: 0 12px 26px -10px rgba(47, 122, 79, .7); }
.success-card__tick .icon { width: 36px; height: 36px; }
.success-card h1 { font-size: clamp(1.6rem, 6.4vw, 2.3rem); }
.success-card__lead { color: var(--muted); }
.order-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 18px 0 0; text-align: left; }
.order-meta div { background: #f8f3fc; border-radius: 12px; padding: 10px 12px; min-width: 0; }
.order-meta dt { font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.order-meta dd { margin: 0; overflow-wrap: anywhere; }
.ready { text-align: center; margin: 34px 0 14px; }
.ready__actions { display: grid; gap: 12px; margin: 16px 0 12px; }
.tracklist { margin-top: 22px; }
.tracklist__h { font-size: 1.1rem; }
.tracklist__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.track { display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: center; background: var(--offwhite); border: 1px solid var(--line); border-radius: 16px; padding: 12px; }
.track__dl { display: grid; place-items: center; gap: 2px; min-width: 56px; min-height: 56px; border-radius: 14px; background: #f6ebcd; color: var(--gold-deep); text-decoration: none; font-size: .72rem; font-weight: 600; }
.track__dl .icon { width: 22px; height: 22px; }
.access-help { margin-top: 30px; background: #f6f0fb; border-radius: 20px; padding: 20px; }
.access-help h2 { font-family: var(--font); font-weight: 700; font-size: 1.15rem; }
.access-help ul { padding-left: 1.2em; }
.access-help .btn { margin: 4px 8px 4px 0; }

.legal__head { margin-bottom: 18px; }
.prose { background: var(--offwhite); border: 1px solid var(--line); border-radius: 22px; padding: 24px 20px; }
.prose h2 { font-family: var(--font); font-weight: 700; font-size: 1.2rem; margin-top: 1.4em; }
.prose h2:first-child { margin-top: 0; }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: .4em; }
.contact-grid { display: grid; gap: 12px; margin: 18px 0; }
.contact-grid .card h2 { margin-top: 0; font-size: 1.05rem; }
.contact-grid .card p { margin: 0 0 .4em; overflow-wrap: anywhere; }

/* Admin */
.admin__top { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.admin__h { font-family: var(--font); font-weight: 700; font-size: 1.15rem; margin-top: 28px; }
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 16px 0; }
.stats div { background: var(--offwhite); border: 1px solid var(--line); border-radius: 14px; padding: 12px 14px; }
.stats span { display: block; font-size: .8rem; color: var(--muted); }
.stats strong { font-size: 1.4rem; color: var(--purple-deep); }
.admin__filters { display: grid; gap: 8px; margin: 22px 0 12px; }
.admin__actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 12px 0 18px; }
.admin__pager { margin-top: 12px; color: var(--muted); }
.table-wrap { overflow-x: auto; background: var(--offwhite); border: 1px solid var(--line); border-radius: 14px; }
.table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.table th, .table td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.table th { background: #f6f0fb; color: var(--purple-deep); font-weight: 600; white-space: nowrap; }
.table--kv th { width: 36%; }
.table--kv td { overflow-wrap: anywhere; }
.copy-field { width: 100%; padding: 10px; border-radius: 10px; border: 1px solid var(--lavender-2); font-family: monospace; font-size: .85rem; }
.events { list-style: none; padding: 0; display: grid; gap: 6px; }

/* ---------- Reveal animation (subtle) ---------- */
.js .reveal { opacity: 0; transform: translateY(14px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.is-in { opacity: 1; transform: none; }

@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Breakpoints ---------- */
@media (min-width: 360px) {
  .hero__cta { grid-template-columns: 1fr 1fr; }
  .hero__cta .btn { padding-left: .8em; padding-right: .8em; }
}
@media (min-width: 480px) {
  .ready__actions { grid-template-columns: 1fr 1fr; }
  .wa-float__label { display: inline; }
  .wa-float { padding: 10px 16px 10px 12px; }
}
@media (min-width: 640px) {
  :root { --gutter: 24px; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .admin__filters { grid-template-columns: 180px 1fr auto auto; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .panel, .prose { padding: 32px; }
  .checkout__panel { padding: 30px 28px 26px; }
}
@media (min-width: 768px) {
  body { font-size: 18px; }
  .section { padding: 88px 0; }
  .hero { padding: 64px 0 80px; }
  .product-card { grid-template-columns: 200px 1fr; }
  .product-card__art svg { width: 150px; height: 150px; }
  .timeline { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .timeline__step { grid-template-columns: 1fr; text-align: center; justify-items: center; padding: 0 8px; }
  .timeline__step:not(:last-child)::before { left: calc(50% + 40px); right: calc(-50% + 40px); top: 27px; bottom: auto; width: auto; height: 2px; background: linear-gradient(90deg, var(--gold), var(--lavender-2)); }
  .offer { padding: 40px 40px 32px; }
  .counts { padding: 24px; }
}
@media (min-width: 1024px) {
  .site-nav { display: flex; }
  .site-header__cta { margin-left: 8px; }
  .hero__grid { grid-template-columns: 1.1fr .9fr; gap: 56px; }
  .hero__cta { display: flex; flex-wrap: wrap; }
  .hero__cta .btn { padding-left: 1.6em; padding-right: 1.6em; }
  .now-playing { padding: 30px 26px 24px; }
  .now-playing__art { width: 190px; height: 190px; }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
  .features { grid-template-columns: repeat(3, 1fr); }
  .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
  /* Sticky CTA is a mobile/tablet aid; on desktop the header CTA is always visible */
  .sticky-cta { display: none; }
  .has-sticky-cta { --sticky-h: 0px; }
}
@media (min-width: 1280px) {
  .product-card { grid-template-columns: 240px 1fr; }
}

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

/* <dialog> fallback for very old in-app browsers */
.checkout.is-fallback { position: fixed; inset: 12px; margin: auto; z-index: 100; height: fit-content; }
