:root {
  --bg: #05080d;
  --panel: #0b1424;
  --gold: #d9ad35;
  --gold-soft: #f8e7b0;
  --text: #f5f0df;
  --muted: #b8b8b8;
  --line: rgba(217, 173, 53, .28);
  --shadow: 0 18px 60px rgba(0, 0, 0, .38);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  background: radial-gradient(circle at 72% 20%, rgba(11, 33, 58, .72), transparent 32rem), var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; height: auto; }
h1, h2, h3 { font-family: Cinzel, Georgia, serif; line-height: 1.08; color: var(--gold-soft); margin: 0 0 1rem; letter-spacing: 0; }
h1 { font-size: clamp(2.4rem, 5vw, 4.9rem); }
h2 { font-size: clamp(1.8rem, 3vw, 3rem); }
p { color: var(--muted); margin: 0 0 1.25rem; }
.section-pad { width: min(1120px, calc(100% - 32px)); margin: 0 auto; padding: 64px 0; }
.center { text-align: center; margin-top: 2rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px max(20px, calc((100vw - 1120px) / 2));
  background: rgba(5, 8, 13, .86);
  border-bottom: 1px solid rgba(248, 231, 176, .12);
  backdrop-filter: blur(18px);
}
.brand span { display: block; font-family: Cinzel, Georgia, serif; color: var(--gold-soft); font-size: 1.5rem; font-weight: 700; }
.brand small { display: block; color: var(--muted); font-size: .82rem; }
.primary-nav ul { display: flex; justify-content: center; gap: 28px; margin: 0; padding: 0; list-style: none; }
.primary-nav a { color: var(--text); font-size: .94rem; }
.primary-nav a:hover { color: var(--gold); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.cart-link { position: relative; color: var(--text); font-weight: 700; }
.cart-link span { display: inline-grid; place-items: center; min-width: 20px; height: 20px; padding: 0 5px; margin-left: 3px; border-radius: 50%; background: var(--gold); color: #101010; font-size: .75rem; }
.nav-toggle { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
}
.btn--gold { background: linear-gradient(135deg, #f1ce6a, var(--gold)); color: #15100a; }
.btn--ghost, .btn--outline { border-color: rgba(248, 231, 176, .55); color: var(--gold-soft); background: transparent; }
.btn--small { min-height: 38px; padding: 0 18px; font-size: .9rem; }

.hero {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.hero-copy > p { font-size: 1.14rem; max-width: 560px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0 34px; }
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.benefits div, .trust div, .category-strip a {
  border: 1px solid rgba(248, 231, 176, .13);
  background: linear-gradient(180deg, rgba(11, 20, 36, .86), rgba(5, 8, 13, .65));
  border-radius: 8px;
}
.benefits div { padding: 16px; }
.benefits strong, .category-strip strong, .trust strong { display: block; color: var(--text); }
.benefits span, .category-strip span, .trust span { color: var(--muted); font-size: .88rem; }
.hero-media {
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #030507;
  box-shadow: var(--shadow);
}
.hero-media .wp-video, .hero-media video { width: 100% !important; height: 100% !important; min-height: 360px; object-fit: cover; }
.video-placeholder {
  display: grid;
  place-content: center;
  min-height: 420px;
  padding: 32px;
  text-align: center;
  background: linear-gradient(135deg, rgba(217, 173, 53, .16), rgba(11, 20, 36, .95)), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='500'%3E%3Crect width='900' height='500' fill='%2305080d'/%3E%3Cpath d='M100 380 C260 260 340 260 480 330 S720 370 820 170' stroke='%23d9ad35' stroke-opacity='.22' stroke-width='4' fill='none'/%3E%3C/svg%3E");
}
.video-placeholder span { letter-spacing: .42em; text-transform: uppercase; color: var(--text); }
.video-placeholder strong { display: block; margin: 18px 0; font-family: Cinzel, Georgia, serif; color: var(--gold-soft); font-size: clamp(2rem, 5vw, 4rem); }
.video-placeholder small { color: var(--muted); }

.category-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}
.category-strip a { padding: 22px; }
.section-heading { text-align: center; margin-bottom: 24px; }
.section-heading:after {
  content: "";
  display: block;
  width: 160px;
  height: 1px;
  margin: 18px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.product-card { transition: transform .2s ease, box-shadow .2s ease; }
.product-card:hover { transform: translateY(-4px); filter: drop-shadow(0 16px 24px rgba(217, 173, 53, .18)); }
.product-cover {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(140deg, #111823, #27170d);
}
.product-cover img { width: 100%; height: 100%; object-fit: cover; }
.product-cover span {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(5, 8, 13, .78);
  color: var(--gold-soft);
  font-size: .76rem;
}
.product-card h3 { margin-top: 16px; font-family: Inter, sans-serif; font-size: 1.05rem; color: var(--text); }
.product-card p { font-size: .92rem; }
.product-card__footer { display: grid; gap: 12px; }
.product-card__footer strong, .price-line { color: var(--gold); font-size: 1.22rem; font-weight: 800; }

.about {
  display: grid;
  grid-template-columns: .78fr 1fr;
  gap: 56px;
  align-items: center;
  border-top: 1px solid rgba(248, 231, 176, .1);
  border-bottom: 1px solid rgba(248, 231, 176, .1);
}
.about-image {
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(217, 173, 53, .2), rgba(5, 8, 13, .7)), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='700' height='420'%3E%3Crect width='700' height='420' fill='%230b1424'/%3E%3Cpath d='M80 280h520M120 230h440M180 180h330' stroke='%23f8e7b0' stroke-opacity='.35' stroke-width='8'/%3E%3C/svg%3E") center/cover;
}
.metrics, .trust { display: grid; gap: 16px; }
.metrics { grid-template-columns: repeat(3, 1fr); margin: 28px 0; }
.metrics strong { display: block; color: var(--gold); font-size: 1.5rem; }
.metrics span { color: var(--muted); font-size: .9rem; }
.trust { grid-template-columns: repeat(5, 1fr); }
.trust div { padding: 18px; }

.faq details {
  border-bottom: 1px solid rgba(248, 231, 176, .14);
  padding: 18px 0;
}
.faq summary { cursor: pointer; color: var(--gold-soft); font-weight: 700; }
.newsletter {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 520px);
  gap: 28px;
  align-items: center;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 64px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(11, 20, 36, .78);
}
.newsletter form { display: flex; }
.newsletter input {
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(248, 231, 176, .22);
  border-right: 0;
  border-radius: 6px 0 0 6px;
  background: #09101d;
  color: var(--text);
  padding: 0 16px;
}
.newsletter button { border-radius: 0 6px 6px 0; }

.site-footer {
  padding: 36px max(20px, calc((100vw - 1120px) / 2)) 20px;
  background: #030507;
  border-top: 1px solid rgba(248, 231, 176, .12);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; }
.footer-grid h2, .footer-grid h3 { font-size: 1.1rem; }
.footer-grid a { display: block; color: var(--muted); margin: 5px 0; }
.payment-logos { color: var(--gold-soft); font-weight: 800; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; padding-top: 24px; margin-top: 24px; border-top: 1px solid rgba(248, 231, 176, .1); color: var(--muted); font-size: .86rem; }

.shop-hero { text-align: center; padding-bottom: 20px; }
.shop-layout .woocommerce-result-count, .shop-layout .woocommerce-ordering { color: var(--muted); }
.page-hero { padding-bottom: 24px; }
.page-content { padding-top: 0; }
.content-page {
  color: var(--text);
}
.content-page .woocommerce {
  padding: 24px;
  border: 1px solid rgba(217, 173, 53, .28);
  border-radius: 8px;
  background: rgba(11, 20, 36, .72);
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce .select2-container .select2-selection--single {
  min-height: 44px;
  border: 1px solid rgba(248, 231, 176, .22);
  border-radius: 6px;
  background: #09101d;
  color: var(--text);
}
.woocommerce table.shop_table {
  border-color: rgba(217, 173, 53, .28);
  color: var(--text);
}
.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  border-color: rgba(248, 231, 176, .14);
}
.woocommerce-checkout #payment {
  border: 1px solid rgba(217, 173, 53, .28);
  border-radius: 8px;
  background: rgba(5, 8, 13, .84);
}
.woocommerce-checkout #payment div.payment_box {
  background: rgba(248, 231, 176, .08);
  color: var(--text);
}
.woocommerce-checkout #payment div.payment_box::before {
  border-bottom-color: rgba(248, 231, 176, .08);
}
.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  border-radius: 6px;
  background: var(--gold);
  color: #15100a;
  font-weight: 800;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: var(--gold-soft);
  color: #15100a;
}
.single-ebook {
  display: grid;
  grid-template-columns: .7fr 1fr;
  gap: 56px;
}
.single-ebook__media .woocommerce-product-gallery { width: 100% !important; }
.single-ebook__summary .cart { display: flex; gap: 12px; flex-wrap: wrap; margin: 24px 0; }
.single-ebook__summary .button, .single_add_to_cart_button {
  min-height: 46px;
  border: 0;
  border-radius: 6px;
  background: var(--gold) !important;
  color: #15100a !important;
  font-weight: 800;
  padding: 0 24px;
}
.eyebrow { color: var(--gold); font-weight: 800; text-transform: uppercase; font-size: .8rem; letter-spacing: .12em; }
.ebook-quote { color: var(--gold-soft); font-style: italic; }
.ebook-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.ebook-specs div {
  padding: 14px;
  border: 1px solid rgba(248, 231, 176, .14);
  border-radius: 8px;
  background: rgba(11, 20, 36, .72);
}
.ebook-specs span { display: block; color: var(--muted); font-size: .82rem; }
.ebook-specs strong { color: var(--text); }
.single-ebook__content { grid-column: 1 / -1; max-width: 820px; }
.ebook-banner { border-radius: 8px; border: 1px solid var(--line); margin: 20px 0; }

.kreutza-ebook-preview-wrapper {
  margin-top: 26px;
  padding: 18px;
  border: 1px solid rgba(217, 173, 53, .32);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(11, 20, 36, .92), rgba(5, 8, 13, .96));
  box-shadow: 0 18px 42px rgba(0, 0, 0, .28);
}
.kreutza-preview-title {
  margin-bottom: 14px;
  font-size: 1.25rem;
  color: var(--gold-soft);
}
.kreutza-preview-paper {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  max-height: 520px;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .3);
}
.kreutza-preview-pdf-viewer {
  display: block;
  width: 100%;
  height: 520px;
  border: 0;
  background: #ffffff;
}
.kreutza-preview-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 190px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #ffffff 46%, #ffffff 100%);
  pointer-events: none;
}
.kreutza-preview-cta {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}
.kreutza-preview-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  width: min(100%, 360px);
  padding: 0 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, #f1ce6a, var(--gold));
  color: #15100a;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(217, 173, 53, .25);
}
.kreutza-preview-cta p {
  max-width: 520px;
  margin: 0;
  color: #3d3d3d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: .96rem;
}
.kreutza-payment-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.kreutza-payment-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(217, 173, 53, .4);
  border-radius: 999px;
  background: rgba(5, 8, 13, .88);
  color: var(--gold-soft);
  font-size: .78rem;
  font-weight: 800;
}
.kreutza-secure-checkout-box {
  margin-top: 22px;
  padding: 22px;
  border: 1px solid rgba(217, 173, 53, .34);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(11, 20, 36, .94), rgba(5, 8, 13, .96));
  box-shadow: 0 16px 38px rgba(0, 0, 0, .28);
}
.kreutza-secure-checkout-box h2 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}
.kreutza-secure-checkout-box ul {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding-left: 20px;
  color: var(--text);
}
.kreutza-secure-checkout-box li::marker {
  color: var(--gold);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 920px) {
  .site-header { grid-template-columns: 1fr auto; }
  .nav-toggle { display: inline-flex; grid-column: 2; grid-row: 1; background: transparent; color: var(--gold-soft); border: 1px solid var(--line); border-radius: 6px; padding: 8px 12px; }
  .primary-nav { display: none; grid-column: 1 / -1; }
  .primary-nav.is-open { display: block; }
  .primary-nav ul { flex-direction: column; gap: 12px; }
  .header-actions { grid-column: 1 / -1; justify-content: space-between; }
  .hero, .about, .single-ebook, .newsletter { grid-template-columns: 1fr; }
  .benefits, .category-strip, .product-grid, .trust, .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .section-pad { width: min(100% - 24px, 1120px); padding: 42px 0; }
  .site-header { padding-inline: 14px; }
  .brand span { font-size: 1.2rem; }
  .hero { gap: 30px; }
  .benefits, .category-strip, .product-grid, .metrics, .trust, .footer-grid, .ebook-specs { grid-template-columns: 1fr; }
  .newsletter { width: min(100% - 24px, 1120px); }
  .newsletter form { display: grid; gap: 10px; }
  .newsletter input, .newsletter button { min-height: 44px; border: 1px solid rgba(248, 231, 176, .22); border-radius: 6px; }
  .footer-bottom { flex-direction: column; }
  .kreutza-ebook-preview-wrapper { padding: 12px; }
  .kreutza-preview-paper { min-height: 360px; max-height: 420px; }
  .kreutza-preview-pdf-viewer { height: 420px; }
  .kreutza-preview-fade { height: 170px; }
  .kreutza-preview-cta { left: 12px; right: 12px; bottom: 16px; }
  .kreutza-preview-button { width: 100%; min-height: 52px; }
}
