/* Crown & Coven Tarot — candlelit reliquary
   Palette: near-black plum, candle gold, dried rose, aged cream. */

:root {
  --ink: #0e0812;
  --ink-2: #150b1c;
  --ink-3: #1d1026;
  --candle: #d9a45b;
  --candle-bright: #f0c98a;
  --candle-dim: #8a6a3e;
  --wine: #7a3b52;
  --rose: #c98a8a;
  --cream: #ece2d0;
  --cream-dim: #b8ab93;
  --cream-faint: #8d8271;
  --line: rgba(217, 164, 91, 0.22);
  --card-w: min(26vw, 150px);
  --card-h: calc(var(--card-w) * 1.68);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  background-image:
    radial-gradient(ellipse 120% 70% at 50% -10%, #1d1026 0%, transparent 60%),
    radial-gradient(ellipse 90% 50% at 50% 110%, #170d20 0%, transparent 55%);
  color: var(--cream);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 19px;
  line-height: 1.65;
  min-height: 100svh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---------- atmosphere ---------- */

.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none; z-index: 50;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 9s steps(6) infinite;
}
@keyframes grain-shift {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-2%, 1%); }
  40% { transform: translate(1%, -2%); }
  60% { transform: translate(-1%, 2%); }
  80% { transform: translate(2%, -1%); }
}

.glow {
  position: fixed; pointer-events: none; z-index: 0;
  border-radius: 50%; filter: blur(80px);
}
.glow-a {
  width: 60vw; height: 60vw; max-width: 640px; max-height: 640px;
  left: -18vw; top: 8vh;
  background: radial-gradient(circle, rgba(217, 164, 91, 0.10) 0%, transparent 70%);
  animation: breathe 11s ease-in-out infinite;
}
.glow-b {
  width: 55vw; height: 55vw; max-width: 560px; max-height: 560px;
  right: -15vw; bottom: 4vh;
  background: radial-gradient(circle, rgba(122, 59, 82, 0.14) 0%, transparent 70%);
  animation: breathe 13s ease-in-out infinite reverse;
}
@keyframes breathe {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.12); }
}

#stars { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.star {
  position: absolute; border-radius: 50%;
  background: var(--candle-bright);
  animation: twinkle var(--tw, 4s) ease-in-out infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: 0.05; }
  50% { opacity: 0.7; }
}

/* ---------- layout / screens ---------- */

#app {
  position: relative; z-index: 1;
  max-width: 680px; margin: 0 auto;
  padding: clamp(24px, 6vw, 56px) 22px 80px;
}

.screen { display: none; }
.screen.active { display: block; animation: screen-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) both; }
@keyframes screen-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- crest ---------- */

.crest {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: clamp(40px, 9vh, 80px);
}
.crest.small { margin-bottom: 32px; }
.crest-rule { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--line)); }
.crest-rule:last-child { background: linear-gradient(90deg, var(--line), transparent); }
.crest-name {
  font-family: Marcellus, serif;
  font-size: 13px; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--candle); white-space: nowrap;
}

/* ---------- landing ---------- */

.landing-title {
  font-family: Marcellus, serif;
  font-size: clamp(42px, 9.5vw, 74px);
  line-height: 1.06; font-weight: 400;
  letter-spacing: 0.01em;
  margin-bottom: 28px;
  text-shadow: 0 0 60px rgba(217, 164, 91, 0.25);
}
.landing-title em {
  font-family: "Cormorant Garamond", serif;
  font-style: italic; font-weight: 500;
  color: var(--candle-bright);
}

.landing-sub {
  font-size: 21px; color: var(--cream-dim);
  max-width: 46ch; margin-bottom: 40px;
}

.landing-note {
  margin-top: 14px; font-size: 16px; font-style: italic;
  color: var(--cream-faint);
}

.landing-features {
  margin-top: clamp(48px, 9vh, 88px);
  list-style: none;
  border-top: 1px solid var(--line);
  padding-top: 26px;
}
.landing-features li {
  padding: 7px 0 7px 26px; position: relative;
  color: var(--cream-dim); font-size: 18px;
}
.landing-features li::before {
  content: "✦"; position: absolute; left: 0;
  color: var(--candle-dim); font-size: 13px; top: 12px;
}

/* ---------- buttons ---------- */

.btn-primary {
  position: relative;
  font-family: Marcellus, serif;
  font-size: 17px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink);
  background: linear-gradient(160deg, var(--candle-bright) 0%, var(--candle) 55%, #b07f3e 100%);
  border: none; border-radius: 3px;
  padding: 18px 42px;
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(240, 201, 138, 0.35), 0 12px 40px -8px rgba(217, 164, 91, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.07);
  box-shadow: 0 0 0 1px rgba(240, 201, 138, 0.5), 0 18px 50px -8px rgba(217, 164, 91, 0.6);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary:disabled { opacity: 0.55; cursor: wait; transform: none; }

.btn-secondary {
  font-family: Marcellus, serif;
  font-size: 14px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--candle);
  background: transparent;
  border: 1px solid var(--line); border-radius: 3px;
  padding: 13px 26px; cursor: pointer;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.btn-secondary:hover { border-color: var(--candle); background: rgba(217, 164, 91, 0.07); }

/* ---------- intake ---------- */

.screen-title {
  font-family: Marcellus, serif;
  font-size: clamp(30px, 6vw, 42px); font-weight: 400;
  margin-bottom: 10px;
}
.screen-sub { color: var(--cream-dim); margin-bottom: 40px; max-width: 48ch; }

.field { display: block; margin-bottom: 30px; }
.field-label {
  display: block;
  font-family: Marcellus, serif;
  font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--candle); margin-bottom: 10px;
}
.field-hint { color: var(--cream-faint); text-transform: none; letter-spacing: 0.04em; font-family: "Cormorant Garamond", serif; font-size: 15px; font-style: italic; }
.field-hint-below { display: block; margin-top: 8px; font-size: 15px; font-style: italic; color: var(--cream-faint); }

input[type="text"], input[type="email"], textarea, select {
  width: 100%;
  background: rgba(29, 16, 38, 0.6);
  border: 1px solid var(--line); border-radius: 3px;
  color: var(--cream);
  font-family: "Cormorant Garamond", serif; font-size: 19px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--candle);
  box-shadow: 0 0 0 3px rgba(217, 164, 91, 0.12);
}
input::placeholder, textarea::placeholder { color: var(--cream-faint); font-style: italic; }
textarea { resize: vertical; min-height: 96px; }

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23d9a45b' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  cursor: pointer;
}
.birthday-row { display: grid; grid-template-columns: 1.3fr 1fr 1.2fr; gap: 10px; }

.zodiac-badge {
  margin-top: 12px; display: inline-block;
  font-style: italic; color: var(--candle-bright); font-size: 17px;
  animation: screen-in 0.5s ease both;
}

.char-count { display: block; text-align: right; font-size: 14px; color: var(--cream-faint); margin-top: 6px; }

.form-error {
  color: var(--rose); font-style: italic; margin-bottom: 18px;
}

/* ---------- channeling ---------- */

#screen-channeling { text-align: center; padding-top: 16vh; }

.shuffle-stage {
  position: relative; height: 210px; width: 150px;
  margin: 0 auto 48px;
}
.shuffle-card {
  position: absolute; inset: 0;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 38%, rgba(240, 201, 138, 0.16) 0%, transparent 45%),
    linear-gradient(155deg, #241330 0%, #170d20 100%);
  border: 1px solid rgba(217, 164, 91, 0.35);
  box-shadow: 0 10px 30px -6px rgba(0, 0, 0, 0.7);
  animation: shuffle 1.8s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}
.shuffle-card::after {
  content: "☾"; position: absolute; inset: 0;
  display: grid; place-items: center;
  font-size: 34px; color: rgba(217, 164, 91, 0.5);
}
.shuffle-card:nth-child(1) { animation-delay: 0s; }
.shuffle-card:nth-child(2) { animation-delay: 0.15s; }
.shuffle-card:nth-child(3) { animation-delay: 0.3s; }
.shuffle-card:nth-child(4) { animation-delay: 0.45s; }
.shuffle-card:nth-child(5) { animation-delay: 0.6s; }
@keyframes shuffle {
  0%, 100% { transform: translateX(0) rotate(0deg); z-index: 1; }
  25% { transform: translateX(-70px) rotate(-8deg); }
  50% { transform: translateX(0) rotate(0deg); z-index: 5; }
  75% { transform: translateX(70px) rotate(8deg); }
}

.channeling-text {
  font-style: italic; font-size: 22px; color: var(--cream-dim);
  animation: text-pulse 2.4s ease-in-out infinite;
}
@keyframes text-pulse { 0%, 100% { opacity: 0.55; } 50% { opacity: 1; } }

/* ---------- reveal / spread ---------- */

#screen-reveal { text-align: center; }
#screen-reveal .screen-sub { margin-left: auto; margin-right: auto; }

.spread {
  display: flex; justify-content: center; gap: clamp(10px, 3vw, 26px);
  margin: 48px 0;
  perspective: 1400px;
}

.card-slot { width: var(--card-w); }
.position-label {
  font-family: Marcellus, serif;
  font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--candle-dim); margin-bottom: 12px;
}
.card-slot.flipped .position-label { color: var(--candle); }

.card-flip {
  position: relative; width: var(--card-w); height: var(--card-h);
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform 0.9s cubic-bezier(0.3, 0.9, 0.3, 1);
}
.card-slot.flipped .card-flip { transform: rotateY(180deg); cursor: default; }

.card-face {
  position: absolute; inset: 0;
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
  border-radius: 8px; overflow: hidden;
}
.card-back {
  background:
    radial-gradient(circle at 50% 34%, rgba(240, 201, 138, 0.18) 0%, transparent 42%),
    repeating-conic-gradient(from 0deg at 50% 34%, transparent 0deg 28deg, rgba(217, 164, 91, 0.06) 28deg 30deg),
    linear-gradient(155deg, #241330 0%, #150b1c 100%);
  border: 1px solid rgba(217, 164, 91, 0.4);
  box-shadow: 0 14px 36px -8px rgba(0, 0, 0, 0.8), inset 0 0 0 5px rgba(14, 8, 18, 0.9), inset 0 0 0 6px rgba(217, 164, 91, 0.25);
  display: grid; place-items: center;
  animation: card-waiting 3.4s ease-in-out infinite;
}
@keyframes card-waiting {
  0%, 100% { box-shadow: 0 14px 36px -8px rgba(0, 0, 0, 0.8), inset 0 0 0 5px rgba(14, 8, 18, 0.9), inset 0 0 0 6px rgba(217, 164, 91, 0.25), 0 0 0px rgba(217, 164, 91, 0); }
  50% { box-shadow: 0 14px 36px -8px rgba(0, 0, 0, 0.8), inset 0 0 0 5px rgba(14, 8, 18, 0.9), inset 0 0 0 6px rgba(217, 164, 91, 0.4), 0 0 26px rgba(217, 164, 91, 0.22); }
}
.card-slot.flipped .card-back { animation: none; }
.card-back .moon { font-size: clamp(26px, 6vw, 40px); color: rgba(217, 164, 91, 0.65); }

.card-front {
  transform: rotateY(180deg);
  border: 1px solid rgba(217, 164, 91, 0.5);
  box-shadow: 0 14px 36px -8px rgba(0, 0, 0, 0.8), 0 0 34px rgba(217, 164, 91, 0.18);
  background: #241330;
}
.card-front img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: sepia(0.14) saturate(0.92) brightness(0.94);
}
.card-front.reversed img { transform: rotate(180deg); }

.card-name {
  margin-top: 12px; min-height: 44px;
  font-family: Marcellus, serif; font-size: 14px; letter-spacing: 0.06em;
  color: var(--cream);
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.5s ease 0.55s, transform 0.5s ease 0.55s;
}
.card-slot.flipped .card-name { opacity: 1; transform: translateY(0); }
.reversed-tag {
  display: block; font-family: "Cormorant Garamond", serif;
  font-style: italic; font-size: 14px; color: var(--rose); letter-spacing: 0.02em;
}

#btn-read { animation: screen-in 0.8s ease both; margin-top: 8px; }

/* ---------- reading ---------- */

.reading { text-align: left; }

.reading-block {
  opacity: 0; transform: translateY(22px);
  transition: opacity 1.1s ease, transform 1.1s ease;
}
.reading-block.lit { opacity: 1; transform: translateY(0); }

.reading-stars {
  text-align: center; color: var(--candle-dim);
  letter-spacing: 0.6em; font-size: 15px;
  margin: 10px 0 26px;
}

.reading-header { text-align: center; margin-bottom: 40px; }
.reading-header h2 {
  font-family: Marcellus, serif; font-size: clamp(30px, 6.4vw, 44px); font-weight: 400;
  text-shadow: 0 0 50px rgba(217, 164, 91, 0.3);
}
.reading-meta {
  margin-top: 10px; font-style: italic; color: var(--candle);
  font-size: 18px; letter-spacing: 0.05em;
}

.reading-opening {
  font-size: 22px; font-style: italic; color: var(--cream);
  border-left: 2px solid var(--candle-dim);
  padding-left: 22px; margin-bottom: 56px;
}

.reading-section { margin-bottom: 60px; }
.reading-section-head {
  display: flex; align-items: center; gap: 20px; margin-bottom: 22px;
}
.reading-section-card {
  width: 74px; flex-shrink: 0; border-radius: 5px; overflow: hidden;
  border: 1px solid rgba(217, 164, 91, 0.45);
  box-shadow: 0 8px 22px -6px rgba(0, 0, 0, 0.7);
}
.reading-section-card img { width: 100%; display: block; filter: sepia(0.14) saturate(0.92) brightness(0.94); }
.reading-section-card.reversed img { transform: rotate(180deg); }
.reading-section-label {
  font-family: Marcellus, serif; font-size: 12px; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--candle-dim); margin-bottom: 6px;
}
.reading-section-name { font-family: Marcellus, serif; font-size: 22px; }
.reading-section-name .reversed-tag { display: inline; margin-left: 8px; }

.reading-section p { margin-bottom: 1em; color: var(--cream); }
.reading-section p:last-child { margin-bottom: 0; }

.reading-closing {
  border-top: 1px solid var(--line);
  padding-top: 36px; margin-top: 8px;
  font-size: 21px;
}
.reading-closing .closing-cards {
  display: flex; justify-content: center; gap: 12px; margin-bottom: 30px;
}
.reading-closing .closing-cards img {
  width: 48px; border-radius: 4px;
  border: 1px solid rgba(217, 164, 91, 0.35);
  filter: sepia(0.14) saturate(0.9) brightness(0.85);
}
.reading-closing .closing-cards img.reversed { transform: rotate(180deg); }
.reading-closing p { margin-bottom: 1em; }

/* ---------- card plain meaning + keywords ---------- */

.kw-row { margin-top: 8px; display: flex; flex-wrap: wrap; gap: 6px; }
.kw {
  font-family: Marcellus, serif; font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--candle);
  border: 1px solid var(--line); border-radius: 20px;
  padding: 3px 10px; white-space: nowrap;
}
.card-plain {
  font-size: 17px; color: var(--cream-dim);
  border-left: 2px solid rgba(217, 164, 91, 0.3);
  padding-left: 16px; margin-bottom: 18px;
}
.card-plain-label {
  font-family: Marcellus, serif; font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--candle-dim);
}
.card-plain em { color: var(--rose); }

/* ---------- gate ---------- */

.rx-gate {
  margin-top: 64px; text-align: center;
  border-top: 1px solid var(--line);
  padding-top: 40px;
  opacity: 0; transform: translateY(16px);
  transition: opacity 1.1s ease, transform 1.1s ease;
}
.rx-gate.lit { opacity: 1; transform: translateY(0); }
.rx-gate-question {
  font-style: italic; font-size: 18px; color: var(--cream-faint);
  max-width: 46ch; margin: 0 auto 14px;
}
.rx-gate-line {
  font-family: Marcellus, serif;
  font-size: clamp(21px, 4.6vw, 26px); line-height: 1.4;
  color: var(--cream);
  max-width: 34ch; margin: 0 auto 30px;
  text-shadow: 0 0 40px rgba(217, 164, 91, 0.25);
}

/* ---------- prescription ---------- */

.prescription {
  margin-top: 64px;
  border: 1px solid rgba(217, 164, 91, 0.45); border-radius: 5px;
  background:
    radial-gradient(ellipse 90% 100% at 50% 0%, rgba(217, 164, 91, 0.08) 0%, transparent 60%),
    linear-gradient(160deg, rgba(36, 19, 48, 0.85), rgba(21, 11, 28, 0.9));
  box-shadow: 0 0 50px rgba(217, 164, 91, 0.1), inset 0 1px 0 rgba(240, 201, 138, 0.15);
  padding: 34px 30px;
  opacity: 0; transform: translateY(16px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}
.prescription.lit { opacity: 1; transform: translateY(0); }

.rx-label {
  font-family: Marcellus, serif; font-size: 12px; letter-spacing: 0.34em;
  text-transform: uppercase; color: var(--candle);
  text-align: center; margin-bottom: 26px;
  display: flex; align-items: center; gap: 14px;
}
.rx-label::before, .rx-label::after {
  content: ""; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line));
}
.rx-label::after { background: linear-gradient(90deg, var(--line), transparent); }

.rx-body { display: flex; gap: 26px; align-items: flex-start; }
.rx-art {
  flex-shrink: 0; width: 150px;
  border-radius: 5px; overflow: hidden;
  border: 1px solid rgba(217, 164, 91, 0.5);
  box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.8);
}
.rx-art img { width: 100%; display: block; }
.rx-emblem {
  width: 150px; height: 150px; display: grid; place-items: center;
  font-size: 52px; color: rgba(217, 164, 91, 0.6);
  background:
    radial-gradient(circle at 50% 40%, rgba(240, 201, 138, 0.14) 0%, transparent 50%),
    linear-gradient(155deg, #241330 0%, #170d20 100%);
}

.rx-tie {
  font-style: italic; font-size: 17px; color: var(--candle-bright);
  margin-bottom: 8px;
}
.rx-title { font-family: Marcellus, serif; font-size: 26px; margin-bottom: 12px; }
.rx-price { font-family: "Cormorant Garamond", serif; font-size: 20px; color: var(--cream-dim); }
.rx-copy { color: var(--cream-dim); font-size: 18px; margin-bottom: 22px; }
.rx-cta {
  display: inline-block; text-decoration: none;
  padding: 15px 34px; font-size: 15px;
}
.rx-pair { margin-top: 18px; font-size: 16px; font-style: italic; color: var(--cream-faint); }
.rx-pair a { color: var(--candle); }

@media (max-width: 560px) {
  .rx-body { flex-direction: column; align-items: center; text-align: center; }
  .rx-art, .rx-emblem { width: 180px; }
  .rx-emblem { height: 180px; }
}

/* ---------- email ask ---------- */

.email-ask {
  margin-top: 48px; text-align: center;
  border-top: 1px solid var(--line);
  padding-top: 44px;
  opacity: 0; transition: opacity 1.2s ease;
}
.email-ask.lit { opacity: 1; }
.email-ask-title { font-family: Marcellus, serif; font-size: 24px; margin-bottom: 8px; }
.email-ask-sub { color: var(--cream-dim); margin-bottom: 22px; max-width: 42ch; margin-left: auto; margin-right: auto; }
#email-form { display: flex; gap: 10px; max-width: 420px; margin: 0 auto; }
#email-form input { flex: 1; }
.email-thanks { margin-top: 16px; font-style: italic; color: var(--candle-bright); }

.return-note {
  margin-top: 56px; text-align: center;
  font-style: italic; color: var(--cream-faint); font-size: 17px;
}

/* ---------- footer ---------- */

.site-footer {
  position: relative; z-index: 1;
  text-align: center; padding: 30px 20px 44px;
  font-size: 15px; color: var(--cream-faint);
  border-top: 1px solid rgba(217, 164, 91, 0.1);
}
.site-footer .footer-fine { margin-top: 6px; font-size: 13px; }
.site-footer a { color: var(--cream-faint); }

/* ---------- responsive ---------- */

@media (max-width: 560px) {
  body { font-size: 18px; }
  .spread { gap: 9px; }
  :root { --card-w: 28vw; }
  #email-form { flex-direction: column; }
  .reading-section-head { gap: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.15s !important; }
}

/* ---------- seeker's price / discount code ---------- */

.rx-price-full {
  font-family: "Cormorant Garamond", serif; font-size: 20px;
  color: var(--cream-faint); text-decoration: line-through;
  margin-right: 4px;
}
.rx-lock-note {
  margin-top: 14px; font-size: 15px; font-style: italic;
  color: var(--cream-faint);
}
.rx-code-box {
  margin: 4px 0 18px; padding: 18px 22px;
  border: 1px solid var(--line); border-radius: 10px;
  background: rgba(217, 164, 91, 0.06); text-align: center;
}
.rx-code-label {
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--candle); margin-bottom: 8px;
}
.rx-code {
  font-family: Marcellus, serif; font-size: 30px; letter-spacing: 0.14em;
  color: var(--candle-bright); margin-bottom: 6px; user-select: all;
}
.rx-code-note { font-size: 14px; color: var(--cream-dim); }


/* ---------- landing discount offer ---------- */
.landing-offer {
  margin-top: 26px; padding: 14px 22px;
  border: 1px solid var(--line); border-radius: 10px;
  background: rgba(217, 164, 91, 0.07);
  max-width: 460px;
}
.landing-offer strong { color: var(--candle-bright); font-weight: 600; }
.landing-offer p { font-size: 15.5px; color: var(--cream-dim); line-height: 1.55; }
