:root {
  --bg: #0b0717;
  --bg-2: #120d22;
  --bg-3: #171127;
  --panel: #141022;
  --panel-2: #19132b;
  --line: rgba(246, 223, 154, 0.13);
  --line-strong: rgba(246, 223, 154, 0.28);
  --text: #f6f1e7;
  --muted: #c7bdce;
  --muted-2: #958ca1;
  --gold: #f3dc95;
  --gold-2: #fff1ba;
  --black: #120e19;
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.38);
  --radius: 22px;
  --radius-sm: 14px;
  --max: 1120px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  background:
    radial-gradient(circle at top center, rgba(117, 93, 150, 0.22), transparent 42rem),
    linear-gradient(180deg, #090612 0%, #120d22 48%, #0b0717 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.20) 1px, transparent 1.5px),
    radial-gradient(circle, rgba(243,220,149,.20) 1px, transparent 1.5px);
  background-size: 180px 180px, 260px 260px;
  background-position: 0 0, 70px 60px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 80%);
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button, input, textarea, select { font: inherit; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--gold);
  color: var(--black);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
}

.skip-link:focus { transform: translateY(0); }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.narrow { max-width: 760px; }
.center { text-align: center; }
.align-left { text-align: left; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 7, 23, 0.84);
  border-bottom: 1px solid rgba(246, 223, 154, 0.10);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  width: min(1180px, calc(100% - 32px));
  min-height: 68px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
}

.nav-menu {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 22px;
  min-width: 0;
}

.nav-toggle {
  display: none;
  justify-self: end;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(246, 223, 154, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold-2);
  font-weight: 900;
  font-size: 13px;
  cursor: pointer;
}

.nav-toggle i,
.nav-toggle i::before,
.nav-toggle i::after {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 10px;
  background: currentColor;
  transition: transform .18s ease, opacity .18s ease;
}

.nav-toggle i {
  position: relative;
}

.nav-toggle i::before,
.nav-toggle i::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle i::before { transform: translateY(-6px); }
.nav-toggle i::after { transform: translateY(6px); }

.nav-toggle[aria-expanded="true"] i { background: transparent; }
.nav-toggle[aria-expanded="true"] i::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] i::after { transform: rotate(-45deg); }

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
  white-space: nowrap;
}

.brand img,
.footer-brand img {
  width: 22px;
  height: 22px;
  border-radius: 6px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.7vw, 24px);
  color: #ddd4e4;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-links a {
  opacity: 0.86;
  transition: color .18s ease, opacity .18s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--gold-2);
  opacity: 1;
}

.nav-button,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0 24px;
  font-weight: 900;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}

.nav-button,
.btn-primary {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #15101b;
  box-shadow: 0 12px 32px rgba(243, 220, 149, .16);
}

.btn-secondary,
.btn-outline {
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  border-color: rgba(246, 223, 154, 0.26);
}

.btn:hover,
.nav-button:hover,
.btn:focus-visible,
.nav-button:focus-visible {
  transform: translateY(-2px);
}

.section {
  position: relative;
  padding: clamp(70px, 9vw, 112px) 0;
}

.section-panel {
  background: linear-gradient(180deg, rgba(19, 14, 35, 0.94), rgba(13, 9, 26, 0.96));
  border-block: 1px solid rgba(246, 223, 154, 0.08);
}

.section-dark { position: relative; }

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

h1 {
  max-width: 850px;
  margin: 0 auto;
  font-size: clamp(44px, 8vw, 104px);
  text-wrap: balance;
}

h1 em {
  color: var(--gold);
  font-style: italic;
  white-space: nowrap;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 64px);
  text-wrap: balance;
}

h3 {
  margin-bottom: 8px;
  font-size: 19px;
  letter-spacing: -0.015em;
}

.section-lead,
.hero-copy {
  color: var(--muted);
  font-size: clamp(16px, 1.7vw, 18px);
}

.section-lead {
  max-width: 720px;
  margin: 0 auto;
}

.hero {
  min-height: 720px;
  display: grid;
  place-items: center;
  padding: 120px 0 86px;
  overflow: hidden;
  isolation: isolate;
}

.stars-layer {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 50% 37%, rgba(243, 220, 149, .18), transparent 18rem),
    radial-gradient(circle at 50% 47%, rgba(107, 84, 147, .20), transparent 42rem),
    linear-gradient(180deg, rgba(10, 7, 18, 0.72), rgba(11, 7, 23, 1));
}

.hero::after {
  content: "";
  position: absolute;
  width: min(560px, 86vw);
  aspect-ratio: 1;
  top: 88px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  border-radius: 50%;
  opacity: .18;
  background:
    radial-gradient(circle, transparent 0 48%, rgba(243, 220, 149, .33) 49% 49.5%, transparent 50%),
    conic-gradient(from 10deg, transparent, rgba(243,220,149,.32), transparent 20%, transparent 48%, rgba(243,220,149,.28), transparent 58%, transparent);
  filter: blur(.1px);
}

.hero-inner {
  text-align: center;
}

.hero-copy {
  max-width: 680px;
  margin: 28px auto 0;
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-trust {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 5vw, 74px);
  flex-wrap: wrap;
  margin-top: 70px;
  color: #d7cfdb;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.hero-trust i {
  color: var(--gold);
  font-style: normal;
}

.card-grid {
  display: grid;
  gap: 22px;
  margin-top: 42px;
}

.card-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.feature-card,
.review-card,
.price-card,
.step,
.notice,
.faq-list details {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(255,255,255,.025) inset;
}

.feature-card {
  min-height: 210px;
  padding: 28px;
  border-radius: var(--radius-sm);
}

.feature-card .icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 32px;
  border-radius: 50%;
  color: var(--gold);
  background: rgba(243, 220, 149, 0.09);
  border: 1px solid rgba(243, 220, 149, .20);
}

.feature-card p,
.step p,
.review-card p,
.price-card p,
.faq-list p {
  color: var(--muted);
}

.notice {
  margin-top: 34px;
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  color: #e4d9e9;
  text-align: center;
}

.notice strong { color: var(--gold); }

.two-col {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: clamp(42px, 7vw, 90px);
  align-items: center;
}

.section-intro h2 { margin-bottom: 18px; }

.steps {
  display: grid;
  gap: 18px;
}

.step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  align-items: start;
  padding: 26px;
  border-radius: var(--radius-sm);
}

.step span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold);
  border: 1px solid rgba(243, 220, 149, .25);
  background: rgba(243, 220, 149, .05);
  font-weight: 900;
  font-size: 13px;
}

.step p { margin-bottom: 0; }

.sample-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  margin-top: 46px;
}

.sample-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(246, 223, 154, .20);
  border-radius: 12px;
  background: #211a2f;
  box-shadow: 0 20px 44px rgba(0,0,0,.25);
  cursor: pointer;
}

.sample-card img {
  width: 100%;
  aspect-ratio: 3 / 4.2;
  object-fit: cover;
  transition: transform .22s ease, filter .22s ease;
}

.sample-card span {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: inline-flex;
  justify-content: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(11, 7, 23, .78);
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .05em;
}

.sample-card:hover img,
.sample-card:focus-visible img {
  transform: scale(1.035);
  filter: brightness(1.08);
}

.sample-actions { margin-top: 34px; }
.sample-actions p { margin: 14px 0 0; color: var(--muted-2); font-size: 13px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  margin-top: 46px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 28px 24px;
  border-radius: 18px;
}

.price-card.featured {
  border-color: rgba(243, 220, 149, .48);
  background: linear-gradient(180deg, rgba(243, 220, 149, .075), rgba(255,255,255,.025));
  box-shadow: 0 25px 80px rgba(0,0,0,.32), 0 0 0 1px rgba(243,220,149,.15) inset;
}

.plan-label {
  width: fit-content;
  margin: 0 0 20px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--gold);
  background: rgba(243, 220, 149, .08);
  border: 1px solid rgba(243, 220, 149, .16);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.price-card h3 {
  min-height: 48px;
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.05;
}

.price {
  margin-bottom: 16px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.price span {
  color: var(--muted);
  font-family: inherit;
  font-size: 14px;
  letter-spacing: .04em;
}

.best-for {
  min-height: 72px;
  margin-bottom: 18px;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  color: #e6dcec;
  font-size: 14px;
}

.price-card li {
  position: relative;
  padding-left: 20px;
}

.price-card li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-size: 12px;
}

.price-card .btn {
  width: 100%;
  margin-top: auto;
}

.checkout-note {
  min-height: 44px;
  margin: 14px 0 0;
  color: var(--muted-2) !important;
  font-size: 12px;
  text-align: center;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 46px;
}

.review-card {
  min-height: 205px;
  padding: 28px;
  border-radius: var(--radius-sm);
}

.stars {
  margin-bottom: 22px;
  color: var(--gold);
  letter-spacing: .18em;
  font-size: 12px;
}

.review-card p {
  margin-bottom: 22px;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-style: italic;
  line-height: 1.35;
}

.review-card span {
  color: var(--muted-2);
  font-size: 13px;
}

.faq-list {
  max-width: 850px;
  margin-top: 36px;
}

.faq-list details {
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  cursor: pointer;
  list-style: none;
  color: var(--text);
  font-weight: 800;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: "+";
  color: var(--gold);
  font-size: 20px;
  line-height: 1;
}

.faq-list details[open] summary::after { content: "–"; }

.faq-list p {
  margin: 0;
  padding: 0 24px 22px;
}

.final-cta {
  background: radial-gradient(circle at center, rgba(243, 220, 149, .12), transparent 36rem);
  border-top: 1px solid rgba(246, 223, 154, .08);
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid rgba(246, 223, 154, 0.10);
  background: #090612;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer-inner p {
  margin: 0;
  color: var(--muted-2);
  font-size: 12px;
}

.footer-inner nav {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
  color: #d2c7d9;
  font-size: 12px;
}

.footer-inner a:hover { color: var(--gold); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
}

.lightbox.is-open { display: block; }

.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 3, 10, .86);
  backdrop-filter: blur(14px);
}

.lb-panel {
  position: relative;
  width: min(1060px, calc(100% - 28px));
  max-height: calc(100vh - 28px);
  margin: 14px auto;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  border-radius: 22px;
  border: 1px solid rgba(246, 223, 154, .20);
  background: #120d22;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.lb-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(246, 223, 154, .12);
}

.lb-title {
  font-weight: 900;
  color: var(--text);
}

.lb-title small { color: var(--muted); font-weight: 700; }

.lb-close,
.lb-nav,
.lb-thumb {
  border: 0;
  cursor: pointer;
}

.lb-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-size: 24px;
  line-height: 1;
}

.lb-stage {
  min-height: 0;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 58px;
  align-items: center;
  gap: 12px;
  padding: 18px;
}

.lb-img {
  max-width: 100%;
  max-height: calc(100vh - 210px);
  margin: 0 auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(0,0,0,.34);
}

.lb-nav {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--black);
  background: var(--gold);
  font-size: 42px;
  line-height: 1;
}

.lb-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 14px 18px 18px;
  border-top: 1px solid rgba(246, 223, 154, .12);
}

.lb-thumb {
  flex: 0 0 58px;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
  background: transparent;
  opacity: .58;
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.lb-thumb.is-active {
  opacity: 1;
  outline-color: var(--gold);
}

.lb-thumb img {
  width: 58px;
  aspect-ratio: 3 / 4.2;
  object-fit: cover;
}

@media (max-width: 1080px) {
  .nav-wrap {
    width: min(100% - 28px, 1180px);
    gap: 16px;
  }

  .nav-menu { gap: 16px; }
  .nav-links { gap: 14px; font-size: 12px; }
  .nav-button { min-height: 40px; padding-inline: 18px; }

  .sample-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .price-card { min-height: 490px; }
}

@media (max-width: 860px) {
  .site-header { position: sticky; }

  .nav-wrap {
    min-height: 64px;
    grid-template-columns: 1fr auto;
    padding: 10px 0;
  }

  .brand { min-width: 0; }
  .brand span {
    display: block;
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-toggle { display: inline-flex; }

  .nav-menu {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 10px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
    border-radius: 20px;
    border: 1px solid rgba(246, 223, 154, 0.18);
    background: rgba(12, 8, 25, 0.98);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.46);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  }

  .nav-toggle[aria-expanded="true"] + .nav-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
    font-size: 15px;
  }

  .nav-links a {
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: space-between;
    padding: 0 4px;
    border-bottom: 1px solid rgba(246, 223, 154, 0.10);
  }

  .nav-links a::after {
    content: "→";
    color: var(--gold);
    opacity: .76;
  }

  .nav-menu .nav-button {
    width: 100%;
    justify-self: stretch;
    min-height: 48px;
  }

  .section { padding: 68px 0; }
  .hero { min-height: auto; padding: 104px 0 70px; }
  .hero-trust { margin-top: 46px; gap: 18px; }
  .card-grid.three, .review-grid, .two-col { grid-template-columns: 1fr; }
  .section-intro, .section-lead.align-left { text-align: center; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { justify-content: center; }
  .footer-inner nav { justify-content: center; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--max)); }
  .nav-wrap { width: min(100% - 24px, 1180px); }
  .brand { font-size: 12px; }
  .brand span { max-width: 170px; }
  .nav-toggle span { display: inline; }
  h1 { font-size: clamp(38px, 13vw, 58px); }
  h1 em { white-space: normal; }
  h2 { font-size: clamp(32px, 10vw, 44px); }
  .hero-actions { align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { display: grid; justify-items: center; }
  .feature-card, .review-card, .price-card, .step { padding: 22px; }
  .step { grid-template-columns: 1fr; text-align: center; }
  .step span { margin: 0 auto; }
  .sample-grid, .pricing-grid { grid-template-columns: 1fr; }
  .sample-card img { aspect-ratio: 3 / 3.8; }
  .price-card { min-height: auto; }
  .price-card h3, .best-for, .checkout-note { min-height: 0; }
  .lb-panel { width: calc(100% - 16px); margin: 8px auto; max-height: calc(100vh - 16px); }
  .lb-stage { grid-template-columns: 1fr; padding: 12px; }
  .lb-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; width: 42px; height: 42px; font-size: 34px; }
  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }
  .lb-img { max-height: calc(100vh - 178px); }
}


/* Blog / journal section */
.journal-section {
  overflow: hidden;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 48px;
  align-items: stretch;
}

.journal-card {
  min-height: 255px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.028);
  border: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(255,255,255,.025) inset;
}

.journal-card.is-loading {
  grid-column: 1 / -1;
  min-height: 170px;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.journal-tag {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.journal-card h3 {
  margin: 0 0 16px;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.journal-card h3 a:hover,
.journal-card h3 a:focus-visible {
  color: var(--gold-2);
}

.journal-card p:not(.journal-tag) {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 15px;
}

.journal-readmore {
  margin-top: auto;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: .02em;
}

.journal-readmore:hover,
.journal-readmore:focus-visible {
  color: var(--gold-2);
}

.journal-actions {
  margin-top: 34px;
}

@media (max-width: 1080px) {
  .journal-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .journal-card { padding: 26px; }
}

@media (max-width: 860px) {
  .journal-grid { grid-template-columns: 1fr; }
  .journal-card { min-height: auto; }
}

@media (max-width: 640px) {
  .journal-card { padding: 22px; }
}


@media (max-width: 380px) {
  .brand span { max-width: 138px; }
  .nav-toggle { padding-inline: 12px; }
  .nav-toggle span { display: none; }
}


/* About page redesign */
.page-hero {
  min-height: 560px;
  display: grid;
  place-items: center;
  padding: 116px 0 86px;
  overflow: hidden;
  isolation: isolate;
}

.page-hero::after {
  content: "";
  position: absolute;
  width: min(520px, 86vw);
  aspect-ratio: 1;
  top: 84px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  border-radius: 50%;
  opacity: .14;
  background:
    radial-gradient(circle, transparent 0 48%, rgba(243, 220, 149, .35) 49% 49.5%, transparent 50%),
    conic-gradient(from 18deg, transparent, rgba(243,220,149,.35), transparent 18%, transparent 48%, rgba(243,220,149,.28), transparent 62%, transparent);
}

.page-hero-inner {
  text-align: center;
}

.page-hero h1 {
  max-width: 980px;
}

.page-hero-copy {
  max-width: 760px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: clamp(16px, 1.7vw, 19px);
}

.page-hero .hero-actions {
  margin-top: 32px;
}

.about-mini-trust {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 38px;
}

.about-mini-trust span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 15px;
  border-radius: 999px;
  border: 1px solid rgba(246, 223, 154, .14);
  background: rgba(255, 255, 255, .035);
  color: #ded5e6;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  gap: 46px;
  align-items: center;
}

.about-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 17px;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-visual-card {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  padding: 38px;
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid rgba(246, 223, 154, .18);
  background:
    radial-gradient(circle at center, rgba(243, 220, 149, .14), transparent 15rem),
    linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .018));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.about-visual-card::before,
.about-visual-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.about-visual-card::before {
  inset: 34px;
  border: 1px solid rgba(246, 223, 154, .12);
}

.about-visual-card::after {
  width: 70%;
  aspect-ratio: 1;
  border: 1px solid rgba(246, 223, 154, .08);
}

.about-visual-card img {
  position: relative;
  z-index: 1;
  width: min(300px, 70vw);
  opacity: .88;
  filter: drop-shadow(0 24px 42px rgba(0, 0, 0, .42));
}

.about-quote-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 20px 22px;
  border-radius: 18px;
  border: 1px solid rgba(246, 223, 154, .16);
  background: rgba(12, 8, 25, .78);
  backdrop-filter: blur(14px);
}

.about-quote-card p {
  margin: 0;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  line-height: 1.2;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.approach-card,
.values-card,
.lyra-card,
.about-final-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .028);
  box-shadow: 0 1px 0 rgba(255,255,255,.025) inset;
}

.approach-card {
  min-height: 240px;
  padding: 28px;
}

.approach-card .icon,
.values-card .icon,
.lyra-card .icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  border: 1px solid rgba(246, 223, 154, .18);
  background: rgba(243, 220, 149, .07);
  color: var(--gold);
}

.approach-card h3,
.values-card h3,
.lyra-card h3 {
  margin: 0 0 12px;
}

.approach-card p,
.values-card p,
.lyra-card p,
.about-final-card p {
  margin: 0;
  color: var(--muted);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.values-card {
  min-height: 230px;
  padding: 24px;
}

.lyra-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 30px;
  align-items: stretch;
  margin-top: 46px;
}

.lyra-card {
  padding: 32px;
}

.lyra-profile {
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(243, 220, 149, .13), transparent 18rem),
    rgba(255,255,255,.028);
}

.lyra-avatar-mark {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 999px;
  border: 1px solid rgba(246, 223, 154, .22);
  background: rgba(243, 220, 149, .08);
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  line-height: 1;
}

.lyra-profile .role {
  margin: 4px 0 0;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.lyra-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lyra-note p + p {
  margin-top: 16px;
}

.about-final-card {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 54px);
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(243, 220, 149, .10), transparent 26rem),
    rgba(255, 255, 255, .028);
}

.about-final-card h2 {
  margin-bottom: 18px;
}

.about-final-card .hero-actions {
  margin-top: 30px;
}

.nav-links a.is-active {
  color: var(--gold-2);
  opacity: 1;
}

@media (max-width: 1080px) {
  .approach-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .values-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .page-hero { min-height: auto; padding: 104px 0 70px; }
  .about-story-grid,
  .lyra-grid { grid-template-columns: 1fr; }
  .about-story-grid { gap: 32px; }
  .about-copy { text-align: center; }
  .about-visual-card { min-height: 360px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .page-hero h1 { font-size: clamp(38px, 12vw, 58px); }
  .page-hero .hero-actions .btn { width: 100%; }
  .about-mini-trust { display: grid; }
  .about-mini-trust span { justify-content: center; }
  .approach-grid,
  .values-grid { grid-template-columns: 1fr; }
  .about-visual-card { min-height: 320px; padding: 24px; }
  .about-visual-card img { width: min(240px, 74vw); }
  .about-quote-card { position: relative; left: auto; right: auto; bottom: auto; margin-top: 20px; width: 100%; }
  .about-quote-card p { font-size: 19px; }
  .lyra-card { padding: 24px; }
}
/* =========================================================
   Contact page redesign – matches StarLore homepage/About style
   ========================================================= */
.contact-hero .page-hero-inner {
  max-width: 900px;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
  gap: 30px;
  align-items: stretch;
}

.contact-email-card,
.contact-checklist-card,
.contact-help-card,
.contact-faq-card,
.contact-final-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .028);
  box-shadow: 0 1px 0 rgba(255,255,255,.025) inset, var(--shadow);
}

.contact-email-card,
.contact-checklist-card {
  padding: clamp(28px, 4vw, 44px);
}

.contact-email-card h2,
.contact-checklist-card h2,
.contact-guidelines-copy h2 {
  margin-bottom: 18px;
}

.contact-email-card p,
.contact-checklist-card p,
.contact-help-card p,
.contact-faq-card p,
.contact-guidelines-copy p,
.boundary-item p {
  color: var(--muted);
}

.email-box {
  margin: 30px 0 22px;
  padding: clamp(20px, 3vw, 28px);
  border-radius: 20px;
  border: 1px solid rgba(246, 223, 154, .20);
  background:
    radial-gradient(circle at top left, rgba(243, 220, 149, .12), transparent 18rem),
    rgba(13, 9, 26, .58);
}

.email-label {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.email-address {
  display: inline-block;
  max-width: 100%;
  color: var(--text);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.15;
  word-break: break-word;
}

.email-address:hover,
.email-address:focus-visible {
  color: var(--gold-2);
}

.contact-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.contact-small-note {
  margin: 20px 0 0;
  font-size: 14px;
}

.contact-checklist-card {
  background:
    radial-gradient(circle at top right, rgba(243, 220, 149, .10), transparent 18rem),
    rgba(255, 255, 255, .028);
}

.contact-checklist-card .icon,
.contact-help-card .icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  border: 1px solid rgba(246, 223, 154, .18);
  background: rgba(243, 220, 149, .07);
  color: var(--gold);
}

.contact-checklist {
  display: grid;
  gap: 16px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.contact-checklist li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.contact-checklist li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: .05em;
  color: var(--gold);
  font-size: 13px;
}

.contact-checklist strong,
.boundary-item strong {
  color: var(--text);
}

.contact-help-grid,
.contact-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.contact-help-card,
.contact-faq-card {
  padding: 28px;
  min-height: 250px;
}

.contact-help-card {
  display: flex;
  flex-direction: column;
}

.contact-help-card p,
.contact-faq-card p {
  margin-bottom: 0;
}

.contact-guidelines-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 32px;
  align-items: center;
}

.contact-guidelines-copy p:last-child {
  margin-bottom: 0;
}

.contact-boundary-list {
  display: grid;
  gap: 16px;
}

.boundary-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.026);
}

.boundary-item span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(246, 223, 154, .18);
  background: rgba(243, 220, 149, .07);
  color: var(--gold);
  font-weight: 900;
}

.boundary-item p {
  margin: 0;
}

.contact-faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 920px;
}

.contact-faq-card {
  min-height: 190px;
}

.contact-final-card {
  background:
    radial-gradient(circle at center, rgba(243, 220, 149, .12), transparent 26rem),
    rgba(255, 255, 255, .028);
}

@media (max-width: 980px) {
  .contact-main-grid,
  .contact-guidelines-grid {
    grid-template-columns: 1fr;
  }

  .contact-help-grid {
    grid-template-columns: 1fr;
  }

  .contact-help-card {
    min-height: auto;
  }
}

@media (max-width: 700px) {
  .contact-button-row {
    display: grid;
  }

  .contact-button-row .btn,
  .contact-final-card .btn {
    width: 100%;
  }

  .contact-faq-grid {
    grid-template-columns: 1fr;
  }

  .email-address {
    font-size: clamp(19px, 6vw, 26px);
  }

  .boundary-item {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   Disclaimer page redesign – matches StarLore homepage/About/Contact style
   ========================================================= */
.disclaimer-hero .page-hero-inner {
  max-width: 980px;
}

.disclaimer-top-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
  gap: 30px;
  align-items: stretch;
}

.disclaimer-summary-card,
.disclaimer-side-card,
.legal-mini-card,
.disclaimer-section-card,
.disclaimer-final-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .028);
  box-shadow: 0 1px 0 rgba(255,255,255,.025) inset, var(--shadow);
}

.disclaimer-summary-card,
.disclaimer-side-card {
  padding: clamp(28px, 4vw, 44px);
}

.disclaimer-summary-card {
  background:
    radial-gradient(circle at top left, rgba(243, 220, 149, .11), transparent 20rem),
    rgba(255, 255, 255, .028);
}

.disclaimer-summary-card h2,
.disclaimer-side-card h2 {
  margin-bottom: 18px;
}

.disclaimer-summary-card p,
.disclaimer-side-card p,
.legal-mini-card p,
.disclaimer-section-card p,
.disclaimer-section-card li {
  color: var(--muted);
}

.legal-updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(246, 223, 154, .18);
  background: rgba(243, 220, 149, .06);
  color: var(--muted);
  font-size: 14px;
}

.legal-updated strong {
  color: var(--gold-2);
}

.disclaimer-side-card {
  background:
    radial-gradient(circle at top right, rgba(243, 220, 149, .10), transparent 18rem),
    rgba(255, 255, 255, .028);
}

.disclaimer-side-card .icon,
.legal-mini-card .icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  border: 1px solid rgba(246, 223, 154, .18);
  background: rgba(243, 220, 149, .07);
  color: var(--gold);
}

.legal-checklist {
  display: grid;
  gap: 16px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.legal-checklist li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.legal-checklist li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: .05em;
  color: var(--gold);
  font-size: 13px;
}

.legal-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.legal-mini-card {
  min-height: 230px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.legal-mini-card h3,
.disclaimer-section-card h3 {
  margin-bottom: 12px;
}

.legal-mini-card p,
.disclaimer-section-card p:last-child {
  margin-bottom: 0;
}

.disclaimer-content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.disclaimer-section-card {
  position: relative;
  min-height: 330px;
  padding: clamp(26px, 3vw, 34px);
  overflow: hidden;
}

.disclaimer-section-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  top: -80px;
  right: -80px;
  border-radius: 50%;
  background: rgba(243, 220, 149, .06);
  pointer-events: none;
}

.legal-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border-radius: 50%;
  border: 1px solid rgba(246, 223, 154, .20);
  background: rgba(243, 220, 149, .06);
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.legal-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 20px;
}

.disclaimer-section-card a {
  color: var(--gold-2);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(243, 220, 149, .35);
  text-underline-offset: 4px;
}

.disclaimer-final-card {
  background:
    radial-gradient(circle at center, rgba(243, 220, 149, .12), transparent 26rem),
    rgba(255, 255, 255, .028);
}

.site-footer nav a.is-active {
  color: var(--gold-2);
  opacity: 1;
}

@media (max-width: 980px) {
  .disclaimer-top-grid,
  .legal-card-grid,
  .disclaimer-content-grid {
    grid-template-columns: 1fr;
  }

  .legal-mini-card,
  .disclaimer-section-card {
    min-height: auto;
  }
}

@media (max-width: 700px) {
  .legal-updated {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .disclaimer-final-card .btn {
    width: 100%;
  }
}


/* =========================================================
   Privacy Policy page redesign – matches StarLore homepage/About/Contact/Disclaimer style
   ========================================================= */
.privacy-hero .page-hero-inner {
  max-width: 980px;
}

.privacy-top-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
  gap: 30px;
  align-items: stretch;
}

.privacy-summary-card,
.privacy-side-card,
.privacy-section-card,
.privacy-final-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .028);
  box-shadow: 0 1px 0 rgba(255,255,255,.025) inset, var(--shadow);
}

.privacy-summary-card,
.privacy-side-card {
  padding: clamp(28px, 4vw, 44px);
}

.privacy-summary-card {
  background:
    radial-gradient(circle at top left, rgba(243, 220, 149, .12), transparent 20rem),
    rgba(255, 255, 255, .028);
}

.privacy-side-card {
  background:
    radial-gradient(circle at top right, rgba(155, 125, 214, .14), transparent 18rem),
    rgba(255, 255, 255, .028);
}

.privacy-side-card .icon,
.privacy-mini-card .icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  border: 1px solid rgba(246, 223, 154, .18);
  background: rgba(243, 220, 149, .07);
  color: var(--gold);
}

.privacy-summary-card h2,
.privacy-side-card h2 {
  margin-bottom: 18px;
}

.privacy-summary-card p,
.privacy-side-card p,
.privacy-section-card p,
.privacy-section-card li {
  color: var(--muted);
}

.privacy-content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.privacy-section-card {
  position: relative;
  min-height: 310px;
  padding: clamp(26px, 3vw, 34px);
  overflow: hidden;
}

.privacy-section-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  top: -80px;
  right: -80px;
  border-radius: 50%;
  background: rgba(243, 220, 149, .055);
  pointer-events: none;
}

.privacy-section-card h3 {
  margin-bottom: 12px;
}

.privacy-section-card p:last-child {
  margin-bottom: 0;
}

.privacy-section-card a {
  color: var(--gold-2);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(243, 220, 149, .35);
  text-underline-offset: 4px;
}

.privacy-section-card strong {
  color: var(--gold-2);
}

.privacy-final-card {
  background:
    radial-gradient(circle at center, rgba(243, 220, 149, .12), transparent 26rem),
    rgba(255, 255, 255, .028);
}

@media (max-width: 980px) {
  .privacy-top-grid,
  .privacy-content-grid {
    grid-template-columns: 1fr;
  }

  .privacy-section-card {
    min-height: auto;
  }
}

@media (max-width: 700px) {
  .privacy-final-card .btn {
    width: 100%;
  }
}


/* =========================================================
   Refund Policy page redesign – matches StarLore homepage/About/Contact/Disclaimer/Privacy style
   ========================================================= */
.refund-hero .page-hero-inner {
  max-width: 980px;
}

.refund-top-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
  gap: 30px;
  align-items: stretch;
}

.refund-summary-card,
.refund-side-card,
.refund-process-card,
.refund-section-card,
.refund-final-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .028);
  box-shadow: 0 1px 0 rgba(255,255,255,.025) inset, var(--shadow);
}

.refund-summary-card,
.refund-side-card,
.refund-process-card {
  padding: clamp(28px, 4vw, 44px);
}

.refund-summary-card {
  background:
    radial-gradient(circle at top left, rgba(243, 220, 149, .12), transparent 20rem),
    rgba(255, 255, 255, .028);
}

.refund-side-card {
  background:
    radial-gradient(circle at top right, rgba(155, 125, 214, .14), transparent 18rem),
    rgba(255, 255, 255, .028);
}

.refund-side-card .icon,
.refund-mini-card .icon,
.refund-process-card .icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  border: 1px solid rgba(246, 223, 154, .18);
  background: rgba(243, 220, 149, .07);
  color: var(--gold);
}

.refund-summary-card h2,
.refund-side-card h2,
.refund-process-card h3 {
  margin-bottom: 18px;
}

.refund-summary-card p,
.refund-side-card p,
.refund-process-card p,
.refund-process-card li,
.refund-section-card p,
.refund-section-card li {
  color: var(--muted);
}

.refund-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.refund-process-card {
  min-height: 295px;
}

.refund-content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.refund-section-card {
  position: relative;
  min-height: 310px;
  padding: clamp(26px, 3vw, 34px);
  overflow: hidden;
}

.refund-section-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  top: -80px;
  right: -80px;
  border-radius: 50%;
  background: rgba(243, 220, 149, .055);
  pointer-events: none;
}

.refund-section-card h3 {
  margin-bottom: 12px;
}

.refund-section-card p:last-child {
  margin-bottom: 0;
}

.refund-section-card a,
.refund-summary-card a,
.refund-final-card a {
  color: var(--gold-2);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(243, 220, 149, .35);
  text-underline-offset: 4px;
}

.refund-section-card strong,
.refund-summary-card strong,
.refund-side-card strong,
.refund-process-card strong {
  color: var(--gold-2);
}

.refund-final-card {
  background:
    radial-gradient(circle at center, rgba(243, 220, 149, .12), transparent 26rem),
    rgba(255, 255, 255, .028);
}

.refund-status-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.refund-status-pill {
  border: 1px solid rgba(246, 223, 154, .14);
  background: rgba(255,255,255,.035);
  border-radius: 18px;
  padding: 16px;
}

.refund-status-pill span {
  display: block;
  color: var(--gold-2);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.refund-status-pill p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 980px) {
  .refund-top-grid,
  .refund-process-grid,
  .refund-content-grid,
  .refund-status-row {
    grid-template-columns: 1fr;
  }

  .refund-process-card,
  .refund-section-card {
    min-height: auto;
  }
}

@media (max-width: 700px) {
  .refund-final-card .btn,
  .refund-hero .hero-actions .btn {
    width: 100%;
  }
}


/* =========================================================
   Terms of Service page redesign – matches StarLore homepage/About/Contact/Disclaimer/Privacy/Refund style
   ========================================================= */
.terms-hero .page-hero-inner {
  max-width: 980px;
}

.terms-top-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
  gap: 30px;
  align-items: stretch;
}

.terms-summary-card,
.terms-side-card,
.terms-principle-card,
.terms-section-card,
.terms-final-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .028);
  box-shadow: 0 1px 0 rgba(255,255,255,.025) inset, var(--shadow);
}

.terms-summary-card,
.terms-side-card,
.terms-principle-card {
  padding: clamp(28px, 4vw, 44px);
}

.terms-summary-card {
  background:
    radial-gradient(circle at top left, rgba(243, 220, 149, .13), transparent 20rem),
    rgba(255, 255, 255, .028);
}

.terms-side-card {
  background:
    radial-gradient(circle at top right, rgba(155, 125, 214, .15), transparent 18rem),
    rgba(255, 255, 255, .028);
}

.terms-side-card .icon,
.terms-principle-card .icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  border: 1px solid rgba(246, 223, 154, .18);
  background: rgba(243, 220, 149, .07);
  color: var(--gold);
  font-weight: 900;
}

.terms-summary-card h2,
.terms-side-card h2,
.terms-principle-card h3,
.terms-section-card h3 {
  margin-bottom: 16px;
}

.terms-summary-card p,
.terms-side-card p,
.terms-side-card li,
.terms-principle-card p,
.terms-section-card p,
.terms-section-card li {
  color: var(--muted);
}

.terms-highlights-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.terms-highlight-pill {
  border: 1px solid rgba(246, 223, 154, .14);
  background: rgba(255,255,255,.035);
  border-radius: 18px;
  padding: 16px;
}

.terms-highlight-pill span {
  display: block;
  color: var(--gold-2);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.terms-highlight-pill p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.terms-principle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.terms-principle-card {
  min-height: 290px;
}

.terms-content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.terms-section-card {
  position: relative;
  min-height: 300px;
  padding: clamp(26px, 3vw, 34px);
  overflow: hidden;
}

.terms-section-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  top: -82px;
  right: -82px;
  border-radius: 50%;
  background: rgba(243, 220, 149, .055);
  pointer-events: none;
}

.terms-section-card p:last-child,
.terms-principle-card p:last-child {
  margin-bottom: 0;
}

.terms-section-card a,
.terms-summary-card a,
.terms-final-card a {
  color: var(--gold-2);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(243, 220, 149, .35);
  text-underline-offset: 4px;
}

.terms-section-card strong,
.terms-summary-card strong,
.terms-side-card strong,
.terms-principle-card strong {
  color: var(--gold-2);
}

.terms-final-card {
  background:
    radial-gradient(circle at center, rgba(243, 220, 149, .12), transparent 26rem),
    rgba(255, 255, 255, .028);
}

.terms-note-box {
  margin-top: 22px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(246, 223, 154, .14);
  background: rgba(255,255,255,.035);
  color: var(--muted);
}

.terms-note-box strong {
  color: var(--gold-2);
}

@media (max-width: 980px) {
  .terms-top-grid,
  .terms-principle-grid,
  .terms-content-grid,
  .terms-highlights-row {
    grid-template-columns: 1fr;
  }

  .terms-principle-card,
  .terms-section-card {
    min-height: auto;
  }
}

@media (max-width: 700px) {
  .terms-final-card .btn,
  .terms-hero .hero-actions .btn {
    width: 100%;
  }
}


/* =========================================================
   Legal CTA button visibility fix
   Keeps normal text links gold, but makes CTA buttons readable.
   Add this at the very bottom of /css/starlore.css.
   ========================================================= */
.about-final-card .btn,
.contact-final-card .btn,
.disclaimer-final-card .btn,
.privacy-final-card .btn,
.refund-final-card .btn,
.terms-final-card .btn {
  text-decoration: none !important;
  text-underline-offset: 0 !important;
  min-width: 170px;
  font-weight: 900;
}

.about-final-card .btn-primary,
.contact-final-card .btn-primary,
.disclaimer-final-card .btn-primary,
.privacy-final-card .btn-primary,
.refund-final-card .btn-primary,
.terms-final-card .btn-primary {
  color: #15101b !important;
  background: linear-gradient(180deg, var(--gold-2), var(--gold)) !important;
  border-color: transparent !important;
  box-shadow: 0 14px 34px rgba(243, 220, 149, .22) !important;
}

.about-final-card .btn-secondary,
.about-final-card .btn-outline,
.contact-final-card .btn-secondary,
.contact-final-card .btn-outline,
.disclaimer-final-card .btn-secondary,
.disclaimer-final-card .btn-outline,
.privacy-final-card .btn-secondary,
.privacy-final-card .btn-outline,
.refund-final-card .btn-secondary,
.refund-final-card .btn-outline,
.terms-final-card .btn-secondary,
.terms-final-card .btn-outline {
  color: var(--gold-2) !important;
  background: rgba(255, 255, 255, .04) !important;
  border-color: rgba(243, 220, 149, .36) !important;
  text-decoration: none !important;
}

.about-final-card .btn:hover,
.contact-final-card .btn:hover,
.disclaimer-final-card .btn:hover,
.privacy-final-card .btn:hover,
.refund-final-card .btn:hover,
.terms-final-card .btn:hover {
  filter: brightness(1.04);
}


/* July 2026 homepage additions restored with the newest available base CSS. */
.reading-match { background:linear-gradient(180deg,rgba(30,23,49,.7),rgba(13,9,28,.5)); }
.match-grid { display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px;margin-top:38px; }
.match-card { position:relative;display:flex;flex-direction:column;gap:11px;min-height:290px;padding:28px 22px;border:1px solid var(--line);border-radius:var(--radius);background:linear-gradient(155deg,#20182f,#151022);transition:transform .2s,border-color .2s; }
.match-card:hover,.match-card:focus-visible { transform:translateY(-4px);border-color:var(--gold); }
.match-card.is-recommended { border-color:var(--line-strong);background:linear-gradient(155deg,#33263b,#1b132c); }
.match-icon { font-size:30px;color:var(--gold);line-height:1; }
.match-kicker { color:var(--gold);font-size:12px;font-weight:700;letter-spacing:.09em;text-transform:uppercase; }
.match-card strong { font-size:21px;line-height:1.2; }
.match-card>span:not(.match-kicker):not(.match-icon):not(.match-badge) { color:var(--muted);font-size:14px; }
.match-card em { margin-top:auto;color:var(--gold);font-style:normal;font-weight:700;font-size:13px; }
.match-badge { position:absolute;right:14px;top:14px;padding:5px 9px;border-radius:20px;background:var(--gold);color:var(--black);font-size:11px;font-weight:800; }
.reader-layout { display:grid;grid-template-columns:minmax(0,.85fr) minmax(0,1.15fr);align-items:center;gap:clamp(28px,5vw,70px); }
.reader-visual { margin:0; }
.reader-image-frame { overflow:hidden;border:1px solid var(--line-strong);border-radius:28px;background:#181323;box-shadow:var(--shadow); }
.reader-image-frame img { width:100%;height:auto;aspect-ratio:4/5;object-fit:cover; }
.reader-visual figcaption { margin-top:12px;text-align:center;color:var(--muted);font-size:13px; }
.reader-visual figcaption span { color:var(--gold); }
.reader-copy h2 { margin-top:7px; }
.reader-copy p { color:var(--muted); }
.reader-copy .reader-lead { color:var(--text);font-size:18px; }
.reader-points { display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;margin:27px 0; }
.reader-points>div { display:flex;gap:12px;padding:17px;border:1px solid var(--line);border-radius:var(--radius-sm);background:rgba(255,255,255,.025); }
.reader-points>div>span { color:var(--gold);font-size:23px;line-height:1.2; }
.reader-points p { margin:0;font-size:13px; }
.reader-points strong { color:var(--text);font-size:14px; }
.reader-actions,.sample-cta-row { display:flex;flex-wrap:wrap;gap:12px;justify-content:flex-start; }
.sample-cta-row { justify-content:center; }
.reviews-intro-note,.review-disclosure { color:var(--muted-2);font-size:12px;line-height:1.5; }
.reviews-intro-note { max-width:720px;margin:12px auto 0; }
.review-disclosure { margin-top:24px;text-align:center; }
.review-topline { display:flex;flex-wrap:wrap;justify-content:space-between;gap:6px;margin-bottom:14px;color:var(--muted-2);font-size:11px; }
.review-type { color:var(--gold);font-weight:700;text-transform:uppercase;letter-spacing:.07em; }
.review-card blockquote { margin:0; }
.review-person { margin-top:18px;display:grid;gap:3px; }
.review-person strong { color:var(--text);font-size:13px; }
.review-person span { color:var(--muted-2);font-size:11px; }
@media(max-width:1000px){.match-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:760px){.reader-layout{grid-template-columns:1fr}.reader-visual{max-width:470px;margin-inline:auto}}
@media(max-width:600px){.match-grid,.reader-points{grid-template-columns:1fr}.match-card{min-height:0}.reader-actions .btn{width:100%;justify-content:center}}
