@import url('../fonts/fonts.css');
/* ═══════════════════════════════════════════
   Aurelia — Theme 2: Moonlit Garden
   Botanical, organic luxury
   ═══════════════════════════════════════════ */


:root {
  --mg-night-teal: #162d3a;
  --mg-deep-teal: #1b3a4b;
  --mg-ocean-teal: #2a6171;
  --mg-sage: #7a9e8e;
  --mg-copper: #c48a5c;
  --mg-copper-light: #d4a373;
  --mg-cream: #faf7f2;
  --mg-mint: #c8ddd3;
  --mg-font-display: 'DM Serif Display', Georgia, serif;
  --mg-font-accent: 'Playfair Display', Georgia, serif;
  --mg-font-body: 'Inter', -apple-system, sans-serif;
}

/* ─── Body ─── */
body {
  background: var(--mg-night-teal);
  font-family: var(--mg-font-body);
  color: var(--mg-cream);
}

/* ─── Leaf Pattern Overlay ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 Q35 15 30 30 Q25 15 30 5Z' fill='%237a9e8e' opacity='0.5'/%3E%3Cpath d='M10 35 Q15 25 20 35 Q15 45 10 35Z' fill='%237a9e8e' opacity='0.3'/%3E%3Cpath d='M45 40 Q50 30 55 40 Q50 50 45 40Z' fill='%237a9e8e' opacity='0.3'/%3E%3C/svg%3E");
  background-size: 120px 120px;
}

/* ─── Linktree ─── */
.linktree {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(42, 97, 113, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(122, 158, 142, 0.1) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 100%, rgba(27, 58, 75, 0.6) 0%, transparent 50%),
    linear-gradient(175deg, var(--mg-night-teal) 0%, var(--mg-deep-teal) 35%, var(--mg-night-teal) 65%, #132830 100%);
}

/* ─── Background Orbs ─── */
.linktree-bg-orb:nth-child(1) {
  width: 350px;
  height: 350px;
  top: -8%;
  right: -15%;
  background: radial-gradient(circle, rgba(42, 97, 113, 0.35) 0%, rgba(27, 58, 75, 0.1) 60%, transparent 100%);
}

.linktree-bg-orb:nth-child(2) {
  width: 280px;
  height: 280px;
  bottom: 5%;
  left: -12%;
  background: radial-gradient(circle, rgba(122, 158, 142, 0.15) 0%, rgba(196, 138, 92, 0.05) 50%, transparent 100%);
  animation-delay: -4s;
}

.linktree-bg-orb:nth-child(3) {
  width: 180px;
  height: 180px;
  top: 50%;
  left: 60%;
  background: radial-gradient(circle, rgba(196, 138, 92, 0.08) 0%, transparent 70%);
  animation-delay: -6s;
}

/* ─── Avatar ─── */
.linktree-avatar {
  border: 3px solid rgba(196, 138, 92, 0.45);
  box-shadow:
    0 0 0 6px rgba(27, 58, 75, 0.6),
    0 0 30px rgba(122, 158, 142, 0.15);
}

.linktree-avatar-glow {
  background: radial-gradient(circle, rgba(122, 158, 142, 0.25) 0%, rgba(42, 97, 113, 0.1) 50%, transparent 70%);
}

/* ─── Profile Text ─── */
.linktree-name {
  font-family: var(--mg-font-display);
  font-size: 1.65rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--mg-cream);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.linktree-brand {
  font-family: var(--mg-font-accent);
  font-size: 0.95rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.02em;
  color: var(--mg-copper-light);
  opacity: 0.9;
}

.linktree-bio {
  font-family: var(--mg-font-body);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--mg-mint);
  opacity: 0.7;
}

/* ─── Link Cards ─── */
.link-card {
  background: linear-gradient(145deg, rgba(27, 58, 75, 0.5) 0%, rgba(22, 45, 58, 0.7) 100%);
  border: 1px solid rgba(122, 158, 142, 0.12);
  border-radius: 14px;
  box-shadow:
    0 2px 16px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(200, 221, 211, 0.03) inset;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.link-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(196, 138, 92, 0.06) 0%, rgba(122, 158, 142, 0.04) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.link-card:hover {
  border-color: rgba(196, 138, 92, 0.3);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(196, 138, 92, 0.08) inset,
    0 0 20px rgba(122, 158, 142, 0.06);
}

.link-card:hover::before {
  opacity: 1;
}

.link-card-text {
  font-family: var(--mg-font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--mg-cream);
  position: relative;
  z-index: 1;
}

.link-card-icon {
  color: var(--mg-copper);
  fill: var(--mg-copper);
  position: relative;
  z-index: 1;
  transition: color 0.3s ease, fill 0.3s ease;
}

.link-card:hover .link-card-icon {
  color: var(--mg-copper-light);
  fill: var(--mg-copper-light);
}

/* ─── Footer ─── */
.linktree-footer {
  font-family: var(--mg-font-body);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: rgba(200, 221, 211, 0.25);
}

/* ─── Leaf-like Decorative Patterns ─── */
.linktree-deco::before {
  content: '';
  position: fixed;
  top: 8%;
  right: 5%;
  width: 80px;
  height: 120px;
  border: 1px solid rgba(122, 158, 142, 0.08);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-30deg);
  animation: float 10s ease-in-out infinite;
}

.linktree-deco::after {
  content: '';
  position: fixed;
  bottom: 12%;
  left: 4%;
  width: 60px;
  height: 100px;
  border: 1px solid rgba(196, 138, 92, 0.06);
  border-radius: 50% 50% 50% 0;
  transform: rotate(20deg);
  animation: float 12s ease-in-out infinite reverse;
}

/* ═══════════════════════════════════════════
   Landing Page
   ═══════════════════════════════════════════ */

/* ─── Hero ─── */
.landing-hero-overlay {
  background:
    radial-gradient(ellipse at 70% 30%, rgba(42, 97, 113, 0.3) 0%, transparent 50%),
    linear-gradient(180deg,
      rgba(22, 45, 58, 0.2) 0%,
      rgba(22, 45, 58, 0.5) 35%,
      rgba(22, 45, 58, 0.88) 70%,
      var(--mg-night-teal) 100%
    );
}

.landing-hero-content h1 {
  font-family: var(--mg-font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--mg-cream);
  line-height: 1.25;
  margin-bottom: 20px;
}

.landing-hero-content p {
  font-family: var(--mg-font-accent);
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.75;
  color: var(--mg-mint);
  margin-bottom: 36px;
  opacity: 0.75;
}

.landing-hero-content .cta-button {
  background: linear-gradient(135deg, var(--mg-copper) 0%, var(--mg-copper-light) 100%);
  color: var(--mg-night-teal);
  font-family: var(--mg-font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow:
    0 4px 24px rgba(196, 138, 92, 0.25),
    0 1px 0 rgba(255, 255, 255, 0.1) inset;
}

.landing-hero-content .cta-button:hover {
  box-shadow:
    0 8px 40px rgba(196, 138, 92, 0.4),
    0 0 48px rgba(196, 138, 92, 0.12);
  filter: brightness(1.08);
}

/* ─── Sections ─── */
.landing-section {
  background: var(--mg-night-teal);
  border-top: 1px solid rgba(42, 97, 113, 0.15);
}

.landing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(122, 158, 142, 0.3), transparent);
}

.landing-container h2 {
  font-family: var(--mg-font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--mg-cream);
  margin-bottom: 40px;
  text-align: center;
}

.landing-container h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  margin: 14px auto 0;
  background: var(--mg-copper);
  border-radius: 2px;
}

/* ─── Chapter Items ─── */
.chapter-item {
  border-bottom: 1px solid rgba(42, 97, 113, 0.12);
  transition: all 0.35s ease;
}

.chapter-item:hover {
  padding-left: 6px;
  border-bottom-color: rgba(196, 138, 92, 0.2);
}

.chapter-num {
  font-family: var(--mg-font-accent);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--mg-copper);
  opacity: 0.55;
}

.chapter-title {
  font-family: var(--mg-font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--mg-cream);
  letter-spacing: 0.01em;
}

.chapter-dots {
  background: repeating-linear-gradient(
    90deg,
    rgba(122, 158, 142, 0.12) 0px,
    rgba(122, 158, 142, 0.12) 1px,
    transparent 1px,
    transparent 7px
  );
}

/* ─── Quote ─── */
.landing-quote {
  background: linear-gradient(180deg, var(--mg-night-teal) 0%, rgba(27, 58, 75, 0.5) 50%, var(--mg-night-teal) 100%);
  font-family: var(--mg-font-accent);
  font-size: clamp(1.15rem, 2.8vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.75;
  color: var(--mg-mint);
}

.landing-quote::before {
  content: '';
  display: block;
  width: 30px;
  height: 30px;
  margin: 0 auto 20px;
  border: 1px solid rgba(196, 138, 92, 0.3);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

/* ─── CTA Section ─── */
.landing-cta {
  background:
    radial-gradient(ellipse at 50% 60%, rgba(42, 97, 113, 0.2) 0%, transparent 55%),
    var(--mg-night-teal);
}

.cta-button {
  background: linear-gradient(135deg, var(--mg-copper) 0%, var(--mg-copper-light) 100%);
  color: var(--mg-night-teal);
  font-family: var(--mg-font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow:
    0 4px 24px rgba(196, 138, 92, 0.25),
    0 1px 0 rgba(255, 255, 255, 0.1) inset;
}

.cta-button:hover {
  box-shadow:
    0 8px 40px rgba(196, 138, 92, 0.4),
    0 0 48px rgba(196, 138, 92, 0.12);
  filter: brightness(1.08);
}

/* ─── Footer ─── */
.landing-footer {
  background: #11262f;
  border-top: 1px solid rgba(42, 97, 113, 0.12);
  color: rgba(200, 221, 211, 0.25);
  font-family: var(--mg-font-body);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

/* ─── Responsive ─── */
@media (max-width: 480px) {
  .linktree-name { font-size: 1.4rem; }
  .linktree-brand { font-size: 0.88rem; }
  .linktree-deco::before,
  .linktree-deco::after { display: none; }
}

/* ═══════════════════════════════════════════
   Linktree Additions
   ═══════════════════════════════════════════ */

/* ─── Separator ─── */
.linktree-separator {
  width: 50%;
  height: 1px;
  margin: 8px auto;
  background: linear-gradient(90deg, transparent, rgba(196, 138, 92, 0.3), transparent);
  border: none;
}

/* ─── E-Book CTA Card ─── */
.linktree-ebook-cta {
  background: linear-gradient(145deg, rgba(27, 58, 75, 0.6) 0%, rgba(22, 45, 58, 0.8) 50%, rgba(196, 138, 92, 0.06) 100%);
  border: 1px solid rgba(196, 138, 92, 0.3);
  border-radius: 16px;
  box-shadow:
    0 6px 28px rgba(0, 0, 0, 0.35),
    0 0 20px rgba(122, 158, 142, 0.06),
    0 0 0 1px rgba(200, 221, 211, 0.04) inset;
  padding: 24px 20px;
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.linktree-ebook-cta:hover {
  transform: translateY(-3px);
  border-color: rgba(196, 138, 92, 0.5);
  box-shadow:
    0 12px 44px rgba(0, 0, 0, 0.45),
    0 0 32px rgba(196, 138, 92, 0.12),
    0 0 0 1px rgba(196, 138, 92, 0.1) inset;
}

.ebook-cta-badge {
  display: inline-block;
  background: var(--mg-copper);
  color: var(--mg-night-teal);
  font-family: var(--mg-font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.ebook-cta-title {
  font-family: var(--mg-font-display);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--mg-cream);
  margin-bottom: 4px;
}

.ebook-cta-subtitle {
  font-family: var(--mg-font-body);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--mg-mint);
  opacity: 0.65;
}

/* ═══════════════════════════════════════════
   Landing Page Additions
   ═══════════════════════════════════════════ */

/* ─── Hero ─── */
.hero-brand {
  font-family: var(--mg-font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mg-copper-light);
}

.hero-title {
  font-family: var(--mg-font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1.25;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.hero-rule {
  width: 40px;
  height: 2px;
  border: none;
  background: var(--mg-copper);
  border-radius: 2px;
  margin: 16px 0;
}

.hero-subtitle {
  font-family: var(--mg-font-accent);
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.75;
  color: rgba(250, 247, 242, 0.75);
}

.hero-author {
  font-family: var(--mg-font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mg-copper-light);
}

/* ─── Sections ─── */
.section-label {
  font-family: var(--mg-font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mg-copper);
  margin-bottom: 8px;
}

.section-heading {
  font-family: var(--mg-font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--mg-cream);
}

.section-rule {
  width: 40px;
  height: 2px;
  border: none;
  background: var(--mg-copper);
  border-radius: 2px;
  margin: 14px 0;
}

.section-text {
  font-family: var(--mg-font-body);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--mg-mint);
}

/* ─── Feature Cards ─── */
.feature-card {
  background: linear-gradient(145deg, rgba(27, 58, 75, 0.5) 0%, rgba(22, 45, 58, 0.7) 100%);
  border: 1px solid rgba(122, 158, 142, 0.1);
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
  padding: 28px 24px;
  transition: all 0.35s ease;
}

.feature-card:hover {
  border-color: rgba(196, 138, 92, 0.2);
  box-shadow:
    0 6px 28px rgba(0, 0, 0, 0.35),
    0 0 16px rgba(122, 158, 142, 0.05);
  transform: translateY(-2px);
}

.feature-icon {
  color: var(--mg-copper);
  fill: var(--mg-copper);
}

.feature-title {
  font-family: var(--mg-font-display);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--mg-cream);
}

.feature-desc {
  font-family: var(--mg-font-body);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--mg-mint);
  opacity: 0.7;
}

/* ─── Chapters ─── */
.chapter-group-label {
  font-family: var(--mg-font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mg-copper);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(196, 138, 92, 0.15);
  margin-bottom: 12px;
}

/* ─── Quote Block ─── */
.quote-block {
  background: linear-gradient(180deg, rgba(27, 58, 75, 0.4) 0%, rgba(22, 45, 58, 0.5) 100%);
  border-radius: 16px;
  padding: 36px 28px;
  border: 1px solid rgba(42, 97, 113, 0.12);
}

.quote-mark {
  display: block;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(196, 138, 92, 0.3);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  margin-bottom: 16px;
}

.quote-text {
  font-family: var(--mg-font-accent);
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.75;
  color: var(--mg-mint);
}

.quote-author {
  font-family: var(--mg-font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--mg-mint);
  opacity: 0.45;
}

/* ─── CTA Price ─── */
.cta-price-block {
  text-align: center;
}

.price-amount {
  font-family: var(--mg-font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  color: var(--mg-copper);
}

.price-sub {
  font-family: var(--mg-font-body);
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--mg-mint);
  opacity: 0.55;
}

/* ─── Section Backgrounds ─── */
.section-cta {
  background:
    radial-gradient(ellipse at 50% 60%, rgba(42, 97, 113, 0.2) 0%, transparent 55%),
    var(--mg-night-teal);
}

.section-about {
  background: var(--mg-night-teal);
}

.section-features {
  background: linear-gradient(180deg, var(--mg-night-teal) 0%, rgba(27, 58, 75, 0.4) 50%, var(--mg-night-teal) 100%);
}

.section-chapters {
  background: var(--mg-night-teal);
}

.section-quote {
  background: linear-gradient(180deg, var(--mg-night-teal) 0%, rgba(27, 58, 75, 0.5) 50%, var(--mg-night-teal) 100%);
}

/* ─── Footer ─── */
.footer-brand {
  font-family: var(--mg-font-display);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--mg-cream);
  opacity: 0.45;
}

.footer-copy {
  font-family: var(--mg-font-body);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: rgba(200, 221, 211, 0.25);
}

.footer-back {
  font-family: var(--mg-font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--mg-copper);
  opacity: 0.55;
  transition: opacity 0.3s ease;
}

.footer-back:hover {
  opacity: 1;
}

/* ─── Linktree Hero Overlay ─── */
.linktree-hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(22, 45, 58, 0) 0%,
    rgba(22, 45, 58, 0.25) 40%,
    rgba(22, 45, 58, 0.7) 70%,
    rgba(22, 45, 58, 0.95) 100%
  );
}

/* ═══════════════════════════════════════════
   E-Book Hero CTA Card
   ═══════════════════════════════════════════ */

.section-ebook-cta {
  background:
    radial-gradient(ellipse at 50% 60%, rgba(42, 97, 113, 0.25) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 30%, rgba(196, 138, 92, 0.05) 0%, transparent 40%),
    var(--mg-night-teal);
}

.ebook-hero-card {
  background:
    linear-gradient(145deg, rgba(27, 58, 75, 0.6) 0%, rgba(22, 45, 58, 0.8) 50%, rgba(196, 138, 92, 0.08) 100%);
  border: 1.5px solid rgba(196, 138, 92, 0.35);
  border-radius: 20px;
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.45),
    0 0 28px rgba(122, 158, 142, 0.08),
    0 0 60px rgba(196, 138, 92, 0.06),
    inset 0 1px 0 rgba(200, 221, 211, 0.06),
    inset 0 0 0 1px rgba(196, 138, 92, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.ebook-hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(196, 138, 92, 0.08) 0%, transparent 40%, rgba(122, 158, 142, 0.04) 100%);
  opacity: 0;
  transition: opacity 0.45s ease;
}

.ebook-hero-card:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 138, 92, 0.55);
  box-shadow:
    0 16px 56px rgba(0, 0, 0, 0.55),
    0 0 44px rgba(196, 138, 92, 0.14),
    0 0 80px rgba(122, 158, 142, 0.08),
    inset 0 1px 0 rgba(200, 221, 211, 0.08),
    inset 0 0 0 1px rgba(196, 138, 92, 0.1);
}

.ebook-hero-card:hover::before {
  opacity: 1;
}

.ebook-hero-badge {
  display: inline-block;
  background: var(--mg-copper);
  color: var(--mg-night-teal);
  font-family: var(--mg-font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
}

.ebook-hero-title {
  font-family: var(--mg-font-display);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--mg-cream);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.ebook-hero-desc {
  font-family: var(--mg-font-body);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--mg-mint);
  opacity: 0.7;
}

.ebook-hero-price {
  font-family: var(--mg-font-display);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 400;
  color: var(--mg-copper);
}

.cta-ebook {
  display: inline-block;
  background: linear-gradient(135deg, var(--mg-copper) 0%, var(--mg-copper-light) 100%);
  color: var(--mg-night-teal);
  font-family: var(--mg-font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
  box-shadow:
    0 4px 24px rgba(196, 138, 92, 0.3),
    0 1px 0 rgba(255, 255, 255, 0.1) inset;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.cta-ebook:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 40px rgba(196, 138, 92, 0.45),
    0 0 50px rgba(196, 138, 92, 0.15),
    0 1px 0 rgba(255, 255, 255, 0.15) inset;
  filter: brightness(1.08);
}
