/* Premium Modern Styles for Investor's Anchor Playbook Sales LP */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --bg-cream: #FAF9F6;
  --bg-soft-cream: #F5F2EC;
  --bg-dark-accent: #1C2D27;
  --accent-gold: #C58B2B;
  --accent-gold-hover: #D99B36;
  --accent-green: #2E5A44;
  --accent-soft-red: #8B3A3A;
  --text-main: #2D3748;
  --text-muted: #5A6A7E;
  --border-light: #E2DDD5;
  --font-serif: 'Outfit', sans-serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-cream);
  color: var(--text-main);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

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

/* Container */
.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navbar */
.navbar {
  padding: 24px 0;
  border-bottom: 1px solid var(--border-light);
  background: rgba(250, 249, 246, 0.9);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--bg-dark-accent);
}

.brand-logo span {
  color: var(--accent-gold);
}

.nav-cta {
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 20px;
  background: var(--bg-dark-accent);
  color: #FFFFFF;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.nav-cta:hover {
  background: var(--accent-green);
}

/* Hero Section */
.hero {
  padding: 80px 0 96px 0;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-gold);
  background: #FDF8EF;
  border: 1px solid #F4E8D0;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 42px;
  line-height: 1.25;
  font-weight: 700;
  color: var(--bg-dark-accent);
  max-width: 820px;
  margin: 0 auto 24px auto;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 48px auto;
}

.hero-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: 0 12px 32px rgba(28, 45, 39, 0.05);
  display: flex;
  gap: 48px;
  align-items: center;
  text-align: left;
}

.hero-book-preview {
  flex: 0 0 280px;
  background: var(--bg-dark-accent);
  border-radius: var(--radius-md);
  padding: 36px 24px;
  color: #FFFFFF;
  text-align: center;
  border: 2px solid var(--accent-gold);
}

.book-tag {
  font-size: 11px;
  color: var(--accent-gold);
  letter-spacing: 2px;
  margin-bottom: 12px;
  font-weight: 600;
}

.book-title-mini {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.hero-details {
  flex: 1;
}

.price-tag {
  font-size: 32px;
  font-weight: 700;
  color: var(--bg-dark-accent);
  margin-bottom: 4px;
}

.price-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.btn-primary {
  display: inline-block;
  width: 100%;
  text-align: center;
  background: var(--accent-gold);
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: var(--radius-md);
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(197, 139, 43, 0.3);
}

.btn-primary:hover {
  background: var(--accent-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 139, 43, 0.4);
}

/* Super Prominent Download Button for Thank-You Page */
.btn-hero-download {
  display: block;
  width: 100%;
  text-align: center;
  background: linear-gradient(135deg, #C58B2B 0%, #D99B36 100%);
  color: #FFFFFF !important;
  font-size: 22px !important;
  font-weight: 800 !important;
  padding: 22px 36px !important;
  border-radius: 18px !important;
  box-shadow: 0 10px 28px rgba(197, 139, 43, 0.45), 0 0 0 4px rgba(197, 139, 43, 0.2);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  letter-spacing: 0.5px;
  animation: pulse-glow 2.5s infinite;
}

.btn-hero-download:hover {
  background: linear-gradient(135deg, #D99B36 0%, #E6AA42 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 36px rgba(197, 139, 43, 0.6), 0 0 0 6px rgba(197, 139, 43, 0.3);
}

@keyframes pulse-glow {
  0% { box-shadow: 0 10px 28px rgba(197, 139, 43, 0.45), 0 0 0 0px rgba(197, 139, 43, 0.4); }
  70% { box-shadow: 0 10px 28px rgba(197, 139, 43, 0.45), 0 0 0 10px rgba(197, 139, 43, 0); }
  100% { box-shadow: 0 10px 28px rgba(197, 139, 43, 0.45), 0 0 0 0px rgba(197, 139, 43, 0); }
}

.guarantee-text {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* Sections */
.section {
  padding: 96px 0;
}

.section-alt {
  background: var(--bg-soft-cream);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px auto;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--bg-dark-accent);
}

/* Metaphor Card */
.metaphor-card {
  background: var(--bg-soft-cream);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-bottom: 48px;
}

.metaphor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
}

.m-box {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--border-light);
}

.m-box.good {
  border-left: 4px solid var(--accent-green);
}

.m-box.bad {
  border-left: 4px solid var(--accent-soft-red);
}

.m-title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--bg-dark-accent);
}

/* Scope List */
.scope-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.scope-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 36px;
}

.scope-card.in-scope {
  border-top: 4px solid var(--accent-green);
}

.scope-card.out-scope {
  border-top: 4px solid var(--accent-soft-red);
}

.scope-card h3 {
  font-size: 20px;
  margin-bottom: 20px;

  font-family: var(--font-serif);
}

.scope-list {
  list-style: none;
}

.scope-list li {
  margin-bottom: 14px;
  padding-left: 24px;
  position: relative;
  font-size: 14.5px;
}

.in-scope .scope-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-weight: bold;
}

.out-scope .scope-list li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: var(--accent-soft-red);
  font-weight: bold;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.faq-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px;
}

.faq-q {
  font-weight: 700;
  font-size: 17px;
  color: var(--bg-dark-accent);
  margin-bottom: 12px;
}

.faq-a {
  font-size: 14.5px;
  color: var(--text-muted);
}

/* Footer */
.footer {
  background: var(--bg-dark-accent);
  color: #94A3B8;
  padding: 64px 0 48px 0;
  font-size: 13.5px;
  text-align: center;
}

.footer-links {
  margin-top: 20px;
}

.footer-links a {
  color: #E2E8F0;
  margin: 0 12px;
}

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

/* Responsive */
@media (max-width: 768px) {
  .hero-card {
    flex-direction: column;
    padding: 32px;
  }

  .hero-book-preview {
    width: 100%;
    flex: none;
  }

  .metaphor-grid, .scope-grid, .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 32px;
  }
}
