:root{
  --brand: #4db6ff;
  --bg: #07111f;
  --bg-2: #0b1728;
  --panel: rgba(255,255,255,0.08);
  --text: #edf4ff;
  --muted: #9fb0c8;
  --line: rgba(255,255,255,0.12);
  --accent: #7dd3fc;
  --accent-2: #a78bfa;
  --success: #86efac;
  --shadow: 0 20px 80px rgba(0,0,0,0.35);
  --shadow-soft: 0 12px 40px rgba(0,0,0,0.22);
  --radius: 24px;
  --radius-lg: 32px;
  --max: 1240px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  /*font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;*/
  font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 20%, rgba(125,211,252,0.10), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(167,139,250,0.12), transparent 28%),
    radial-gradient(circle at 50% 80%, rgba(59,130,246,0.08), transparent 30%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
  letter-spacing: -0.01em;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input {
  font: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 17, 31, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transition: background-color 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.topbar.is-scrolled {
  background: rgba(7, 17, 31, 0.9);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.topbar-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}



.wrap {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.page-shell,
.overlay {
  position: relative;
  z-index: 1;
}


.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 10px 30px rgba(125,211,252,0.25);
  position: relative;
  flex: 0 0 auto;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.35);
}

.brand-title {
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-sub {
  color: var(--muted);
  font-size: 13px;
  margin-top: 2px;
}

.topnav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topnav-link {
  color: rgba(237, 244, 255, 0.78);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.topnav-link:hover {
  color: #ffffff;
}

.brand-title {
  font-weight: 700;
  color: #ffffff;
}

.brand-sub {
  color: rgba(237, 244, 255, 0.62);
  font-size: 0.92rem;
}

.btn {
  border: 0;
  cursor: pointer;
  border-radius: 16px;
  padding: 14px 20px;
  font-weight: 780;
  font-size: 15px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, opacity .2s ease;
}

.btn-lg {
  padding: 16px 24px;
}

.btn-primary {
  color: #08111d;
  background: linear-gradient(135deg, #e0f2fe, #7dd3fc 55%, #a78bfa);
  box-shadow: 0 10px 30px rgba(125,211,252,0.22);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(125,211,252,0.28);
}

.btn-primary:disabled {
  opacity: .65;
  cursor: not-allowed;
  transform: none;
}

.btn-secondary {
  color: #fff;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
}

.btn-full {
  width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 480px);
  gap: 40px;
  align-items: center;
}

.hero-left {
  max-width: 640px;
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-10px);
}


.hero-card {
  width: 100%;
  max-width: 460px;
}


.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--line);
  color: #dbeafe;
  font-size: 13px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-soft);
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 0 8px rgba(134,239,172,0.12);
}

.hero-title {
  margin: 0;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  max-width: 11ch;
}

.hero-sub {
  margin: 22px 0 0;
  font-size: 18px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.mini-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.mini-points span,
.meta-points span {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  color: #d9e7fb;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
}

.price-row {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.price-label {
  color: var(--muted);
  font-size: 14px;
}

.price-value {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.badge {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(134,239,172,0.12);
  color: #c7f9d7;
  border: 1px solid rgba(134,239,172,0.24);
  font-size: 13px;
  font-weight: 700;
}

.countdown-card,
.hero-card,
.highlight-card,
.review-card,
.split-card,
.cta-box,
.faq-item,
.timeline-item,
.modal,
.purchase-summary {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.countdown-card {
  margin-top: 26px;
  border-radius: 24px;
  padding: 18px;
}

.countdown-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.countdown-kicker {
  color: #cfe4ff;
  font-weight: 700;
  font-size: 14px;
}

.countdown-copy {
  color: var(--muted);
  font-size: 14px;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.countdown-unit {
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  padding: 14px 10px;
  text-align: center;
}

.countdown-value {
  display: block;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.countdown-label {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  padding: 28px;
  overflow: hidden;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.18),
    0 2px 10px rgba(15, 23, 42, 0.04);
}


.hero-card::before {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -28%;
  width: 260px;
  height: 260px;
  
}

.hero-card-glow {
  position: absolute;
  inset: auto auto 8% 12%;
  width: 220px;
  height: 220px;
  background: #ffffff;
  filter: blur(0px);
  pointer-events: none;
}

.book-art {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 8px 8px;
}

.book-cover-img {
  display: block;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.18));
}



.book-meta {
  padding-top: 10px;
}

.author-row {
  gap: 14px;
  align-items: center;
}

.author-bio {
  margin-top: 14px;
  line-height: 1.7;
}

.meta-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.meta-points span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.05);
  border: 1px solid rgba(17, 24, 39, 0.08);
  color: #2f3a46;
  font-size: 0.92rem;
}


.author-photo-shell {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  overflow: hidden;
  background: #f3f4f6;
  border: 1px solid rgba(17, 24, 39, 0.1);
}

.author-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.author-photo-shell.is-placeholder::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35);
}


.author-name {
  font-weight: 700;
}

.author-role,
.section-sub,
.split-copy,
.review-role,
.form-hint,
.fineprint,
.sum-label,
.footer-inner,
.timeline-text {
  color: var(--muted);
}

.author-bio {
  margin: 0;
  color: #d3e0f2;
  line-height: 1.7;
  font-size: 15px;
}

.meta-points {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.section {
  padding: 34px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 22px;
}

.kicker,
.modal-kicker {
  color: #a5d8ff;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 800;
}

.kicker {
  margin-bottom: 12px;
}

.section-title {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.section-sub {
  line-height: 1.75;
  margin-top: 14px;
  font-size: 16px;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 12px 0 22px;
}

.logo-pill {
  text-align: center;
  padding: 16px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  color: #d8e6fb;
  font-size: 14px;
}

.highlights-grid,
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.highlight-card,
.review-card,
.split-card,
.faq-item,
.timeline-item {
  border-radius: 24px;
}

.highlight-card {
  padding: 22px;
  min-height: 170px;
}

.highlight-ic {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-grid;
  place-items: center;
  font-size: 20px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(125,211,252,0.16), rgba(167,139,250,0.18));
  border: 1px solid var(--line);
}

.highlight-text {
  color: #e7eefb;
  line-height: 1.7;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 22px;
  align-items: start;
}

.timeline-step {
  width: 84px;
  height: 84px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #08111d;
  background: linear-gradient(135deg, #f3f4f6, #9ca3af 55%, #6b7280);
  box-shadow: 0 10px 30px rgba(125,211,252,0.22);
}

.timeline-title {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.timeline-text {
  margin: 10px 0 0;
  line-height: 1.75;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.split-card {
  padding: 26px;
}

.split-title {
  margin: 8px 0 0;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.split-copy,
.feature-list li {
  line-height: 1.75;
}

.feature-list {
  margin: 14px 0 0;
  padding-left: 18px;
}

.review-card {
  padding: 24px;
}

.review-stars {
  letter-spacing: 0.15em;
  color: #fde68a;
  font-size: 14px;
  margin-bottom: 14px;
}

.review-quote {
  margin: 0 0 18px;
  color: #edf4ff;
  line-height: 1.8;
  font-size: 16px;
}

.review-name {
  font-weight: 700;
}

.cta-box {
  border-radius: 28px;
  padding: 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.cta-title {
  margin: 0;
  font-size: 32px;
  letter-spacing: -0.03em;
}

.cta-sub {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-question {
  width: 100%;
  background: transparent;
  color: #fff;
  border: 0;
  text-align: left;
  padding: 20px 22px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.faq-answer {
  padding: 0 22px 20px;
  color: var(--muted);
  line-height: 1.75;
}

.faq-symbol {
  color: #cfe4ff;
  font-size: 24px;
  line-height: 1;
}

.footer {
  padding: 26px 0 54px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(2,8,20,0.72);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 100;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.overlay.show {
  display: flex;
}

.modal {
  width: min(100%, 680px);
  max-height: calc(100vh - 40px);
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(14,24,40,0.96), rgba(10,18,31,0.96));
  display: flex;
  flex-direction: column;
  margin: auto;
}

.modal-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 22px;
  flex: 0 0 auto;
}

.modal-body {
  padding: 22px;
  overflow-y: auto;
  flex: 1 1 auto;
  min-height: 0;
}

.modal-title {
  margin: 0;
  font-size: 26px;
  letter-spacing: -0.03em;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.06);
  color: #fff;
  cursor: pointer;
}

.purchase-summary {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  margin-bottom: 18px;
}

.sum-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.sum-value {
  font-weight: 700;
}

.form-block {
  margin-bottom: 18px;
}

.label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
}

.input-shell {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  padding: 14px 16px;
}

.payment-shell {
  min-height: 66px;
}

.text-input {
  width: 100%;
  background: transparent;
  border: 0;
  outline: none;
  color: #fff;
  font-size: 15px;
}

.text-input::placeholder {
  color: #7f92ad;
}

.alert {
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(239,68,68,0.12);
  color: #fecaca;
  border: 1px solid rgba(239,68,68,0.18);
}

.modal-body::-webkit-scrollbar {
  width: 10px;
}

.modal-body::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.14);
  border-radius: 999px;
}

@media (max-width: 1024px) {
  .hero,
  .split-grid,
  .highlights-grid,
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }

  .logo-strip {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .topbar-inner,
  .cta-box,
  .hero,
  .split-grid,
  .highlights-grid,
  .reviews-grid,
  .logo-strip,
  .countdown-grid,
  .timeline-item {
    display: grid;
    grid-template-columns: 1fr;
  }

  .topbar-inner {
    padding: 12px 0;
  }

  .topnav {
    justify-content: flex-start;
  }

  .hero-title {
    max-width: none;
  }

  .cta-box {
    align-items: flex-start;
  }

  .modal {
    width: 100%;
    max-height: calc(100vh - 24px);
  }

  .overlay {
    padding: 12px;
    align-items: flex-start;
  }

  .modal-top,
  .modal-body {
    padding: 18px;
  }

  .timeline-step {
    width: 72px;
    height: 72px;
    border-radius: 20px;
  }
}

/* ===== Launch page conversion additions ===== */

.section-tight {
  padding-top: 8px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.proof-item {
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
}

.proof-value {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.proof-label {
  color: rgba(234,242,255,0.78);
  line-height: 1.6;
  font-size: 0.96rem;
}

.sample-cta {
  display: grid;
  grid-template-columns: 1.35fr 0.95fr;
  gap: 24px;
  align-items: stretch;
}

.sample-copy,
.sample-card {
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  padding: 28px;
  backdrop-filter: blur(12px);
}

.sample-form {
  margin-top: 20px;
}

.sample-form-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.sample-input {
  min-height: 54px;
  flex: 1 1 auto;
}

.sample-btn {
  white-space: nowrap;
}

.sample-form-message {
  margin-top: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(234,242,255,0.82);
  min-height: 24px;
}

.sample-form-message.is-error {
  color: #ff9bb3;
}

.sample-form-message.is-success {
  color: #9af0b6;
}

.mobile-buybar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(7, 17, 31, 0.92);
  border-top: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
  transform: translateY(110%);
  transition: transform 0.25s ease;
  pointer-events: none;
}

.mobile-buybar.show {
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-buybar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mobile-buybar-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.mobile-buybar-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

.mobile-buybar-price {
  font-size: 0.9rem;
  color: rgba(234,242,255,0.78);
}

.mobile-buybar-btn {
  flex: 0 0 auto;
  min-height: 46px;
  padding-inline: 18px;
}

@media (max-width: 900px) {
  .proof-strip,
  .sample-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .sample-form-row {
    flex-direction: column;
    align-items: stretch;
  }

  .sample-btn {
    width: 100%;
  }

  body {
    padding-bottom: 88px;
  }
}

@media (min-width: 769px) {
  .mobile-buybar {
    display: none;
  }
}
.promo-row {
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.price-stack {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}

.price-compare {
  font-size: 1rem;
  color: rgba(234, 242, 255, 0.5);
  text-decoration: line-through;
}

.promo-badge {
  background: rgba(77, 182, 255, 0.12);
  color: #d9f1ff;
  border: 1px solid rgba(77, 182, 255, 0.28);
}

.promo-note {
  margin-top: 10px;
  color: rgba(234, 242, 255, 0.72);
  font-size: 0.95rem;
}
.btn {
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: #f2c14e;
  color: #111111;
  border: 1px solid #f6cf73;
  box-shadow: 0 10px 24px rgba(242, 193, 78, 0.24);
}

.btn-primary:hover {
  background: #f5cb67;
  border-color: #f8d88c;
  box-shadow: 0 14px 30px rgba(242, 193, 78, 0.3);
}

.btn-primary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(242, 193, 78, 0.22);
}


.btn-secondary {
  background: rgba(255,255,255,0.05);
  color: #edf4ff;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: none;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.22);
}

/* ===== Static background image ===== */

.page-bg-art {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.page-bg-art-img {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  width: min(1200px, 92vw);
  max-width: none;
  height: auto;
  opacity: 0.1;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.page-shell,
.wrap,
main,
.hero,
.section,
.footer {
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .page-bg-art-img {
    width: min(980px, 135vw);
    top: 34%;
    opacity: 0.24;
  }
}

.topbar .btn {
  min-height: 42px;
  padding: 10px 16px;
}

@media (max-width: 768px) {
  .topbar-inner {
    min-height: 64px;
  }

  .topnav-link {
    display: none;
  }
}

.hero-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  padding: 28px;
  overflow: hidden;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.18),
    0 2px 10px rgba(15, 23, 42, 0.04);
}



.hero-card-glow {
  display: none;
}

.book-meta,
.book-meta p,
.author-bio {
  color: #3f4a57;
}

.author-name {
  color: #111827;
}

.author-role {
  color: #5f6b78;
}

.meta-points span {
  background: rgba(17, 24, 39, 0.05);
  color: #2f3a46;
  border: 1px solid rgba(17, 24, 39, 0.08);
}

.author-photo-shell {
  background: #f3f4f6;
  border: 1px solid rgba(17, 24, 39, 0.1);
}


@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }

  .hero-left {
    max-width: none;
  }

  .hero-right {
    transform: none;
    justify-content: start;
  }

  .hero-card {
    max-width: 100%;
  }
}

body,
input,
button,
select,
textarea {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

h1,
h2,
h3,
.hero-title,
.section-title,
.cta-title,
.modal-title {
  font-family: 'Poppins', 'Inter', system-ui, sans-serif;
  letter-spacing: -0.02em;
}

.hero-title,
.section-title,
.cta-title,
.modal-title {
  font-weight: 700;
  line-height: 0.98;
}

.carousel {
  position: relative;
  width: 100%;
}

.carousel-track {
  display: flex;
  width: 100%;
  transition: transform 300ms ease;
}

.carousel-slide {
  width: 100%;
  flex: 0 0 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px; /* optional */
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px !important;
  height: 36px !important;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  color: #000;
  cursor: pointer;
}

.carousel-btn.prev { left: 30px; }
.carousel-btn.next { right: 30px; }

.carousel-btn:focus {
  outline: 2px solid rgba(255,255,255,0.6);
  outline-offset: 2px;
}

.book-art .carousel .carousel-btn {
  width: 52px !important;
  height: 52px !important;
  font-size: 48px; /* impacts the symbol size */
  line-height: 1;  /* helps vertical centering */
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.45) !important;
  border: 1px solid rgba(255,255,255,0.7) !important;
  border-radius: 999px;
}

.book-art .carousel .carousel-btn {
  /* if your ‹ and › are being rendered smaller by line-height */
  font-family: inherit;
}

/* Keep dropdown background as-is, but make text light only while open/focused */
/* Force select control styling */
#popupOverlay select#productType,
#popupOverlay select#bookQuantity{
  background: #1D252A !important;
  color: #fff !important;

  -webkit-appearance: none !important;
  appearance: none !important;

  border-color: #1D252A !important;
}

/* While open/focused */
#popupOverlay select#productType:focus,
#popupOverlay select#bookQuantity:focus{
  background: #1D252A !important;
  color: #fff !important;

  -webkit-appearance: none !important;
  appearance: none !important;
}

/* Often ignored by browsers, but try anyway */
#popupOverlay select#productType option,
#popupOverlay select#bookQuantity option{
  background: #1D252A !important; /* try solid dark if rgba won’t apply */
  color: #fff !important;
}

.author-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-text {
  display: flex;
  flex-direction: column;
}


