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

:root {
  --deep: #001C2D;
  --teal: #003B55;
  --mid: #005B80;
  --gold: #F1C015;
  --gold-light: #FFD94A;
  --gold-dim: rgba(241, 192, 21, 0.6);
  --cream: #F5F0E8;
  --white: #FFFFFF;
  --text-secondary: #B0C4D0;
  --border-subtle: rgba(241, 192, 21, 0.08);
  --card-bg: rgba(255, 255, 255, 0.04);
  --card-border: rgba(255, 255, 255, 0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--deep);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 28, 45, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-logo { flex: 1; }
.nav-cta-wrap { flex: 1; display: flex; justify-content: flex-end; }

.nav-logo {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  text-decoration: none;
}

.nav-logo span {
  color: var(--white);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  margin-left: 0.5rem;
  font-size: 0.85rem;
  opacity: 0.7;
}

.nav-logo .nav-logo-text {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 1.15rem;
  margin-left: 0;
  opacity: 1;
}

.nav-logo-img { display: none; height: 36px; }

.nav-links { display: flex; gap: 2rem; list-style: none; }

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--deep);
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Hamburger menu */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  color: var(--white);
}

.nav-hamburger svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 99;
  background: rgba(0, 28, 45, 0.97);
  backdrop-filter: blur(16px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  color: var(--white);
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.nav-mobile a:hover {
  color: var(--gold);
}

.nav-mobile .nav-mobile-cta {
  background: var(--gold);
  color: var(--deep);
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  margin-top: 1rem;
}

.nav-mobile-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  padding: 0.25rem;
}

.nav-mobile-close svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(0, 91, 128, 0.3), transparent),
    radial-gradient(ellipse 50% 80% at 80% 30%, rgba(241, 192, 21, 0.06), transparent),
    linear-gradient(175deg, var(--deep) 0%, var(--teal) 50%, var(--mid) 100%);
  z-index: 0;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-content { animation: fadeInUp 0.8s ease-out both; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(241, 192, 21, 0.1);
  border: 1px solid rgba(241, 192, 21, 0.2);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 1.75rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.hero-badge::before { content: '\2605'; font-size: 0.75rem; }

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.hero-title .gold { color: var(--gold); }

.hero-subtitle {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
  line-height: 1.5;
  max-width: 520px;
}

.hero-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-cta-group { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gold); color: var(--deep);
  padding: 0.9rem 2rem; border-radius: 8px;
  font-weight: 700; font-size: 1rem;
  text-decoration: none; letter-spacing: 0.02em; cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(241, 192, 21, 0.25);
  border: none; font-family: 'Outfit', sans-serif;
}

.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 30px rgba(241, 192, 21, 0.35); }
.btn-primary::after { content: '\2192'; font-size: 1.1rem; transition: transform 0.2s; }
.btn-primary:hover::after { transform: translateX(3px); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--white);
  padding: 0.9rem 2rem; border-radius: 8px;
  font-weight: 500; font-size: 1rem;
  text-decoration: none; cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: border-color 0.2s, background 0.2s;
  font-family: 'Outfit', sans-serif;
}

.btn-secondary:hover { border-color: rgba(255, 255, 255, 0.4); background: rgba(255, 255, 255, 0.05); }

.hero-channels { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }

.hero-channels-label {
  font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: rgba(176, 196, 208, 0.5); font-weight: 500;
}

.channel-logos { display: flex; align-items: center; gap: 1.5rem; }

.channel-logos a {
  color: rgba(176, 196, 208, 0.4); text-decoration: none;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.05em; transition: color 0.2s;
}

.channel-logos a:hover { color: var(--white); }

.hero-visual {
  display: flex; justify-content: center; align-items: center;
  position: relative; animation: fadeInUp 0.8s ease-out 0.2s both;
}

.book-container { position: relative; perspective: 1200px; }

.book-3d {
  position: relative;
  transform: rotateY(-8deg) rotateX(2deg);
  transition: transform 0.4s ease;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
}

.book-container:hover .book-3d { transform: rotateY(-3deg) rotateX(1deg); }
.book-3d img { width: 720px; max-width: 100%; height: auto; border-radius: 4px; }

.book-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 400px; height: 500px;
  background: radial-gradient(ellipse, rgba(241, 192, 21, 0.12), transparent 70%);
  z-index: -1; filter: blur(40px);
}

/* ========== PROOF BAR ========== */
.proof-bar {
  position: relative; z-index: 1;
  background: rgba(0, 28, 45, 0.6);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.75rem 2rem;
}

.proof-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(5, 1fr);
  justify-content: center; gap: 1.5rem;
}

.proof-item { display: flex; align-items: center; gap: 0.6rem; }

.proof-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(241, 192, 21, 0.1);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.proof-icon svg {
  width: 16px; height: 16px; stroke: var(--gold);
  fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}

.proof-text { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.35; }
.proof-text strong { color: var(--white); display: block; font-weight: 600; }

/* ========== EDITORIAL REVIEW ========== */
.editorial-review {
  position: relative; z-index: 1;
  padding: 5rem 2rem;
  background: linear-gradient(180deg, rgba(0, 28, 45, 0.4), var(--deep));
}

.editorial-inner { max-width: 720px; margin: 0 auto; text-align: center; }

.review-stars { color: var(--gold); font-size: 1.3rem; letter-spacing: 0.2em; margin-bottom: 1.5rem; }

.review-quote {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic; line-height: 1.7;
  color: var(--cream); margin-bottom: 1.5rem;
}

.review-attribution { font-size: 0.85rem; color: var(--text-secondary); }
.review-attribution strong { color: var(--white); font-weight: 600; }

.review-badge-tag {
  display: inline-block; margin-top: 0.5rem;
  font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--gold); font-weight: 600;
}

/* ========== SHARED SECTION STYLES ========== */
.section { padding: 5rem 2rem; position: relative; }
.section-alt { background: linear-gradient(180deg, var(--deep), rgba(0, 59, 85, 0.3), var(--deep)); }

.section-header { text-align: center; margin-bottom: 3rem; }

.section-label {
  font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--gold);
  font-weight: 600; margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700; line-height: 1.2; letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 1rem; color: var(--text-secondary);
  margin-top: 0.75rem; max-width: 560px;
  margin-left: auto; margin-right: auto; line-height: 1.6;
}

.container { max-width: 1200px; margin: 0 auto; }

/* ========== WHAT'S INSIDE ========== */
.inside-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.inside-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 4rem;
}

.inside-column-title {
  font-size: 0.8rem; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--gold); font-weight: 600;
  margin-bottom: 1.25rem; padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-subtle);
}

.inside-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; }

.inside-icon { width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px; }

.inside-icon svg {
  width: 22px; height: 22px; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round; fill: none;
}

.inside-icon-yes svg { stroke: #4EB87D; }
.inside-icon-no svg { stroke: #E06050; }

.inside-item span { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.5; }

.buffett-quote {
  max-width: 600px;
  margin: 3rem auto 0;
  text-align: center;
  padding: 1.5rem 2rem;
}

.buffett-quote blockquote {
  font-family: 'Source Serif 4', serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(176, 196, 208, 0.7);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.buffett-quote cite {
  font-size: 0.75rem;
  color: var(--gold-dim);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ========== TESTIMONIALS ========== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.testimonial-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 12px; padding: 1.75rem;
}

.testimonial-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.1em; margin-bottom: 1rem; }

.testimonial-text {
  font-size: 0.95rem; color: var(--text-secondary);
  line-height: 1.65; margin-bottom: 1.25rem;
}

.testimonial-author { font-size: 0.8rem; font-weight: 600; color: var(--white); }
.testimonial-source { font-size: 0.7rem; color: rgba(176, 196, 208, 0.5); margin-top: 0.15rem; }

/* ========== BUY SECTION ========== */
.buy-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; max-width: 800px; margin: 0 auto;
}

.buy-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 12px; padding: 2.5rem 2rem; text-align: center;
}

.buy-card-featured { border-color: rgba(241, 192, 21, 0.3); background: rgba(241, 192, 21, 0.04); }

.buy-format {
  font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--gold);
  font-weight: 600; margin-bottom: 0.5rem;
}

.buy-price { font-size: 2.5rem; font-weight: 800; margin-bottom: 0.25rem; }

.buy-price-note { font-size: 0.8rem; color: var(--text-secondary); margin-bottom: 1.5rem; }

.buy-btn {
  display: block; width: 100%;
  background: var(--gold); color: var(--deep);
  padding: 0.85rem; border-radius: 8px;
  font-weight: 700; font-size: 0.95rem;
  text-decoration: none; text-align: center;
  transition: background 0.2s, transform 0.15s;
  margin-bottom: 1rem;
}

.buy-btn:hover { background: var(--gold-light); transform: translateY(-1px); }

.buy-btn-outline {
  background: transparent; border: 1px solid rgba(255, 255, 255, 0.2); color: var(--white);
}

.buy-btn-outline:hover { background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.4); }

.buy-channels { font-size: 0.75rem; color: rgba(176, 196, 208, 0.5); margin-top: 0.5rem; }

.buy-channels a {
  color: rgba(176, 196, 208, 0.5); text-decoration: underline;
  text-decoration-color: rgba(176, 196, 208, 0.2); transition: color 0.2s;
}

.buy-channels a:hover { color: var(--white); }

.buy-card-img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  margin: 0 auto 1.25rem;
  display: block;
}

.buy-bonus {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(241, 192, 21, 0.1);
  border: 1px solid rgba(241, 192, 21, 0.2);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

.buy-bonus::before {
  content: '\2713';
  font-size: 0.7rem;
}

.star-empty { opacity: 0.25; }

.buy-guarantee {
  text-align: center; margin-top: 2rem;
  font-size: 0.8rem; color: var(--text-secondary);
}

.buy-promo {
  margin: 1.5rem auto 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.buy-promo strong { color: var(--gold); font-weight: 600; }

/* ========== RESOURCES ========== */
.resources-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.resources-grid-3 { grid-template-columns: repeat(3, 1fr); }

.resource-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 12px; padding: 2rem; display: flex; flex-direction: column;
}

.resource-card-muted {
  border-color: rgba(255, 255, 255, 0.05);
  opacity: 0.75;
}

.resource-card-platform {
  background: linear-gradient(135deg, rgba(0, 59, 85, 0.25) 0%, rgba(0, 28, 45, 0.4) 100%);
  border: 1px dashed rgba(241, 192, 21, 0.2);
  opacity: 1;
}

.resource-card-fullwidth {
  max-width: none !important;
}

.resource-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.25rem;
}

.resource-card-img-placeholder {
  width: 100%;
  height: 160px;
  border-radius: 8px;
  margin-bottom: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.author-social {
  margin-top: 1.25rem;
  text-align: center;
}

.author-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.author-social a:hover {
  opacity: 0.8;
}

.author-social svg {
  width: 20px;
  height: 20px;
  fill: var(--text-secondary);
  transition: fill 0.2s;
}

.author-social a:hover svg {
  fill: var(--gold);
}

.resource-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.resource-tags .resource-tag {
  margin-bottom: 0;
}

.resource-tag {
  display: inline-block;
  background: rgba(241, 192, 21, 0.1); color: var(--gold);
  font-size: 0.7rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; padding: 0.25rem 0.75rem;
  border-radius: 100px; margin-bottom: 1rem; align-self: flex-start;
}

.resource-tag-muted {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
}

.resource-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.75rem; }

.resource-description {
  font-size: 0.9rem; color: var(--text-secondary);
  line-height: 1.6; flex-grow: 1; margin-bottom: 1.25rem;
}

.resource-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--gold); font-size: 0.85rem; font-weight: 600;
  text-decoration: none; transition: gap 0.2s;
}

.resource-link:hover { gap: 0.7rem; }
.resource-link::after { content: '\2192'; }

/* ========== ABOUT ========== */
.about-inner { max-width: 720px; margin: 0 auto; }

.about-text { font-size: 1rem; color: var(--text-secondary); line-height: 1.75; }

/* ========== FAQ ========== */
.faq-list { max-width: 720px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid var(--card-border); padding: 1.25rem 0; }

.faq-question {
  font-size: 1rem; font-weight: 600; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}

.faq-question::after {
  content: '+'; font-size: 1.2rem; color: var(--gold);
  flex-shrink: 0; transition: transform 0.2s;
}

.faq-item.open .faq-question::after { transform: rotate(45deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-item.open .faq-answer { max-height: 300px; padding-top: 1rem; }

.faq-answer p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65; }
.faq-answer a { color: var(--gold); }

/* ========== FOOTER ========== */
.footer {
  padding: 2rem 2rem; border-top: 1px solid var(--border-subtle);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-text {
  font-size: 0.8rem;
  color: rgba(176, 196, 208, 0.4);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-text a {
  color: rgba(176, 196, 208, 0.4); text-decoration: none;
  transition: color 0.2s;
}

.footer-text a:hover { color: var(--text-secondary); }

.footer-social {
  display: flex;
  gap: 1.25rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.footer-social a:hover { opacity: 0.8; }

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: rgba(176, 196, 208, 0.4);
  transition: fill 0.2s;
}

.footer-social a:hover svg { fill: var(--text-secondary); }

/* ========== PRODUCT PAGE ========== */
.product-hero {
  padding: 8rem 2rem 4rem;
  position: relative;
}

.product-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 40%, rgba(0, 91, 128, 0.2), transparent),
    radial-gradient(ellipse 40% 60% at 70% 30%, rgba(241, 192, 21, 0.04), transparent);
  z-index: 0;
}

.product-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  position: relative;
  z-index: 1;
  align-items: start;
  position: relative;
  z-index: 1;
}

.product-preview {
  border-radius: 12px;
  overflow: hidden;
  min-height: 300px;
}

.product-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.product-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  transition: color 0.2s;
  position: relative;
  z-index: 1;
}

.product-back:hover {
  color: var(--gold);
}

.product-back svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-info .resource-tag { margin-bottom: 1.25rem; }

.product-info h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.product-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.product-description strong {
  color: var(--white);
  font-weight: 600;
}

.product-description ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.product-description ul li {
  padding: 0.3rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.product-description ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.85rem;
}

.product-buy-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--deep);
  padding: 0.9rem 2.5rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(241, 192, 21, 0.25);
  margin-bottom: 1.25rem;
}

.product-buy-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(241, 192, 21, 0.35);
}

.product-note {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.section-glow { position: relative; }
.section-glow::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(0, 91, 128, 0.2), transparent),
    radial-gradient(ellipse 40% 60% at 50% 20%, rgba(241, 192, 21, 0.04), transparent);
  z-index: 0;
  pointer-events: none;
}
.section-glow > * { position: relative; z-index: 1; }

/* ========== PAGE HERO (for non-landing pages) ========== */
.page-hero {
  padding: 8rem 2rem 3rem;
  position: relative;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(0, 91, 128, 0.2), transparent),
    radial-gradient(ellipse 40% 60% at 50% 20%, rgba(241, 192, 21, 0.04), transparent);
  z-index: 0;
}

.page-hero .section-header { position: relative; z-index: 1; margin-bottom: 0; }

/* ========== ABOUT PAGE ========== */
.about-story-title { text-align: left; }

.about-section-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-section-grid img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

/* ========== BOOK LIST ========== */
.book-list {
  max-width: 900px;
  margin: 0 auto;
  columns: 2;
  column-gap: 3rem;
  list-style: none;
}

.book-list li {
  padding: 0.5rem 0;
  break-inside: avoid;
}

.book-list a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.5;
  transition: color 0.2s;
}

.book-list a:hover { color: var(--gold); }

/* ========== PLATFORM PAGE ========== */
.waitlist-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto;
}

.waitlist-form input {
  flex: 1;
  padding: 0.85rem 1.25rem;
  border-radius: 8px;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.waitlist-form input::placeholder { color: rgba(176, 196, 208, 0.4); }
.waitlist-form input:focus { border-color: var(--gold); }

.waitlist-form button {
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  background: var(--gold);
  color: var(--deep);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  transition: background 0.2s, transform 0.15s;
}

.waitlist-form button:hover { background: var(--gold-light); transform: translateY(-1px); }

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
}

.feature-grid-reverse .feature-text { order: 0; }
.feature-grid-reverse .feature-image { order: 1; }

.feature-text h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.feature-text p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.feature-image {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 2rem;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-image-placeholder {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ========== LEGAL PAGES ========== */
.legal-content {
  max-width: 720px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.legal-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.legal-content a { color: var(--gold); }

.legal-placeholder {
  display: inline-block;
  background: rgba(241, 192, 21, 0.1);
  border: 1px solid rgba(241, 192, 21, 0.2);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .proof-inner { grid-template-columns: repeat(3, auto); gap: 1.25rem 2rem; }
  .resources-grid-3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
  .hero-content { order: 1; }
  .hero-visual { order: 0; }
  .hero-subtitle, .hero-description { margin-left: auto; margin-right: auto; }
  .hero-cta-group, .hero-channels { justify-content: center; }
  .book-3d img { width: 420px; }
  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-text { justify-content: center; }
  .footer-social { justify-content: center; }
  .nav-links { display: none; }
  .nav-hamburger { display: block; order: -1; }
  .nav-logo { position: absolute; left: 50%; transform: translateX(-50%); flex: none; }
  .nav-logo-img { display: block; }
  .nav-logo-text { display: none; }
  .nav-logo span { display: none; }
  .nav-cta-wrap { flex: 0; margin-left: auto; }
  .nav-cta { white-space: nowrap; }
  .inside-grid { grid-template-columns: 1fr; gap: 2rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
  .resources-grid-3 { grid-template-columns: 1fr; }
  .buy-grid { grid-template-columns: 1fr; max-width: 400px; }
  .product-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-section-grid { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .about-story-title { text-align: center; }
  .feature-grid { grid-template-columns: 1fr; gap: 2rem; }
  .feature-grid-reverse .feature-text { order: 0; }
  .feature-grid-reverse .feature-image { order: 0; }
  .book-list { columns: 1; }
}

@media (max-width: 700px) {
  .proof-inner { grid-template-columns: repeat(2, auto); gap: 1rem 1.75rem; }
}

@media (max-width: 480px) {
  .hero { padding: 6rem 1.25rem 3rem; }
  .nav { padding: 0.75rem 1.25rem; }
  .section { padding: 3.5rem 1.25rem; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .proof-inner { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
  .proof-item { width: 14rem; }
  .waitlist-form { flex-direction: column; }
  .product-hero { padding: 7.5rem 1.25rem 3rem; }
  .page-hero { padding: 7.5rem 1.25rem 2rem; }
}