/* Landing Page Styles - Brave Reading */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,400;0,600;0,700;0,800;0,900;1,400&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  --primary: #2952A3;
  --primary-dark: #1d3d7a;
  --secondary: #FFD23F;
  --accent: #10B981;
  --accent-dark: #059669;
  --dark: #1A1A2E;
  --light-bg: #F0F7FB;
  --text: #2A2A3E;
  --text-light: #5A5A6E;
  --cream: #FFF8E1;
  --blue-light: #E8F4F9;
}

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

html {
  margin: 0;
  padding: 0;
}

body {
  margin: 0 !important;
  padding: 0 !important;
}

.landing-page {
  background-color: var(--light-bg);
  padding: 0;
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
}

/* Target page-wrapper when it contains landing-page */
.page-wrapper:has(.landing-page) {
  padding: 0 !important;
  margin: 0 !important;
  min-height: auto !important;
}

body:has(.landing-page) {
  background-color: var(--light-bg);
  margin: 0;
  padding: 0;
}

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

/* Header */
.landing-header {
  background: white;
  border-bottom: 1px solid #E8E8F0;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

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

.logo {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.5px;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 80px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: white;
}

.hero-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 56px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: white;
  letter-spacing: -1.5px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
  position: relative;
  z-index: 1;
}

.underlined-word {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.underlined-word::after {
  content: '';
  position: absolute;
  left: 0;
  right: 35%;
  bottom: -8px;
  height: 12px;
  background-color: var(--secondary);
  z-index: -1;
}

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

.hero-subheadline {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.95);
  animation: fadeInUp 0.8s ease-out 0.4s both;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.hero-time-highlight {
  font-size: 24px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 36px;
  animation: fadeInUp 0.8s ease-out 0.5s both;
  position: relative;
  z-index: 1;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s ease-out 0.6s both;
  position: relative;
  z-index: 1;
}

.btn-large {
  padding: 20px 40px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
  background: var(--accent-dark);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: white;
  color: var(--accent);
  border: 2px solid var(--accent);
  box-shadow: none;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background: white;
}

.trust-bar {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 20px 32px;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out 0.8s both;
  position: relative;
  z-index: 1;
}

.trust-bar p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* Sections */
.section {
  padding: 100px 0;
  position: relative;
}

.section:nth-child(even) {
  background: var(--blue-light);
}

.section:nth-child(odd) {
  background: white;
}

.section-header {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 32px;
  color: #1A1A2E !important;
  line-height: 1.2;
  letter-spacing: -1px;
  position: relative;
  display: block !important;
  max-width: 100%;
}

.section-lead {
  font-size: 24px;
  line-height: 1.6;
  margin-bottom: 24px;
  color: #2A2A3E !important;
  font-weight: 600;
}

.section p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #6B6B7E !important;
}

.section-transition {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-top: 40px;
  padding: 24px;
  background: white;
  border-left: 6px solid var(--primary);
  border-radius: 8px;
}

/* Pain Bullets */
.pain-bullets {
  list-style: none;
  padding: 0;
  margin: 48px 0;
  display: grid;
  gap: 16px;
}

.pain-bullets li {
  font-size: 18px;
  padding: 20px 20px 20px 56px;
  position: relative;
  background: white;
  border: 2px solid #E8E8F0;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.pain-bullets li:hover {
  border-color: var(--accent);
  background: #FAFBFC;
}

.pain-bullets li:before {
  content: "✗";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-weight: 900;
  font-size: 28px;
}

/* Three Steps */
.three-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin: 64px 0;
}

.step {
  text-align: center;
  padding: 40px 28px;
  background: white;
  border: 2px solid var(--primary);
  border-radius: 16px;
  position: relative;
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(41, 82, 163, 0.12);
}

.step-number {
  width: 64px;
  height: 64px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 32px;
  font-weight: 900;
  margin: 0 auto 20px auto;
}

.step p {
  font-size: 18px;
  margin: 0;
  color: var(--text);
  font-weight: 600;
  line-height: 1.5;
}

/* CTA Inline */
.cta-inline {
  text-align: center;
  margin: 64px 0;
}

/* Product Visuals */
.product-visuals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin: 64px 0;
  align-items: center;
}

.demo-video-placeholder {
  background: var(--dark);
  border: 4px solid var(--dark);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 12px 12px 0 var(--secondary);
}

.video-container {
  padding: 80px 40px;
  text-align: center;
  background:
    radial-gradient(circle at 30% 40%, var(--primary) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, var(--accent) 0%, transparent 50%),
    var(--dark);
  color: white;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-container p {
  margin: 0;
  color: white;
  font-size: 18px;
  font-weight: 600;
}

.screenshot-container {
  text-align: center;
}

.app-screenshot {
  max-width: 100%;
  height: auto;
  border: 4px solid var(--dark);
  border-radius: 24px;
  box-shadow: 12px 12px 0 var(--secondary);
  transition: all 0.4s ease;
}

.app-screenshot:hover {
  transform: rotate(-2deg) scale(1.02);
}

/* Skill Map Visual */
.skill-map-visual {
  margin: 64px 0;
  text-align: center;
}

.visual-caption {
  text-align: center;
  font-style: italic;
  color: var(--text-light);
  margin-top: 32px;
  font-size: 16px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  border: 2px dashed var(--secondary);
}

/* Results List */
.results-list {
  list-style: none;
  padding: 0;
  margin: 48px 0;
  display: grid;
  gap: 16px;
}

.results-list li {
  font-size: 18px;
  padding: 24px 24px 24px 60px;
  position: relative;
  background: linear-gradient(135deg, white 0%, var(--cream) 100%);
  border: 2px solid var(--dark);
  border-radius: 12px;
  box-shadow: 4px 4px 0 var(--secondary);
}

.results-list li:before {
  content: "✓";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-weight: 900;
  font-size: 28px;
}

/* Transformation Grid */
.transformation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin: 64px 0;
}

.transformation-item {
  padding: 32px;
  background: white;
  border: 2px solid #E8E8F0;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
}

.transformation-item:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(41, 82, 163, 0.1);
  transform: translateY(-4px);
}

.transformation-item h3 {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--dark);
}

.transformation-item p {
  font-size: 17px;
  margin: 0;
  color: var(--text-light);
  line-height: 1.7;
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;
  margin: 64px 0;
}

.testimonial {
  background: var(--cream);
  padding: 36px;
  border: 2px solid #F0D58C;
  border-radius: 16px;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial:hover {
  box-shadow: 0 8px 24px rgba(255, 210, 63, 0.15);
  transform: translateY(-4px);
}

.testimonial-content p {
  font-size: 19px;
  line-height: 1.7;
  color: var(--dark);
  font-weight: 500;
  margin: 0 0 24px 0;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-weight: 700;
  color: var(--dark);
  font-size: 17px;
  position: relative;
  z-index: 1;
}

.proof-framing {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-top: 48px;
  padding: 32px;
  background: white;
  border: 3px solid var(--dark);
  border-radius: 16px;
  box-shadow: 6px 6px 0 var(--primary);
}

/* Journey Features */
.journey-features {
  list-style: none;
  padding: 0;
  margin: 48px 0;
  display: grid;
  gap: 16px;
}

.journey-features li {
  font-size: 18px;
  padding: 24px 24px 24px 60px;
  position: relative;
  background: var(--cream);
  border: 2px solid var(--dark);
  border-radius: 12px;
  box-shadow: 4px 4px 0 var(--accent);
  font-weight: 600;
  color: var(--text);
}

.journey-features li:before {
  content: "→";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-weight: 900;
  font-size: 28px;
}

.grade-level-visual {
  margin: 64px 0;
  text-align: center;
}

/* Alternatives and Savings Lists */
.alternatives-list,
.savings-list {
  list-style: none;
  padding: 0;
  margin: 48px 0;
  display: grid;
  gap: 16px;
}

.alternatives-list li {
  font-size: 18px;
  padding: 24px 24px 24px 60px;
  position: relative;
  background: white;
  border: 2px dashed var(--text-light);
  border-radius: 12px;
  color: var(--text-light);
  opacity: 0.8;
}

.alternatives-list li:before {
  content: "✗";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 24px;
}

.savings-list li {
  font-size: 18px;
  padding: 24px 24px 24px 60px;
  position: relative;
  background: linear-gradient(135deg, #E8F8E8 0%, white 100%);
  border: 2px solid var(--dark);
  border-radius: 12px;
  box-shadow: 4px 4px 0 var(--accent);
  font-weight: 600;
  color: var(--text);
}

.savings-list li:before {
  content: "✓";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #2ECC71;
  font-weight: 900;
  font-size: 28px;
}

/* Setup Steps */
.setup-steps {
  list-style: none;
  counter-reset: setup-counter;
  padding: 0;
  margin: 48px 0;
  display: grid;
  gap: 24px;
}

.setup-steps li {
  counter-increment: setup-counter;
  font-size: 22px;
  padding: 32px 32px 32px 100px;
  position: relative;
  background: white;
  border: 3px solid var(--dark);
  border-radius: 16px;
  box-shadow: 6px 6px 0 var(--secondary);
  font-weight: 600;
  color: var(--text);
}

.setup-steps li:before {
  content: counter(setup-counter);
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary);
  color: white;
  width: 50px;
  height: 50px;
  border: 3px solid var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 24px;
}

.setup-note {
  text-align: center;
  font-weight: 700;
  color: var(--primary);
  margin-top: 40px;
  font-size: 20px;
}

/* Objections */
.objections-list {
  margin: 64px 0;
  display: grid;
  gap: 32px;
}

.objection {
  padding: 40px;
  background: white;
  border: 3px solid var(--dark);
  border-radius: 20px;
  box-shadow: 6px 6px 0 var(--pink);
  position: relative;
  transition: all 0.3s ease;
}

.objection:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--pink);
}

.objection h3 {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--dark);
  padding-left: 36px;
  position: relative;
}

.objection h3:before {
  content: "Q";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
}

.objection p {
  font-size: 17px;
  margin: 0;
  color: var(--text-light);
  line-height: 1.7;
}

/* Pricing */
.pricing-box {
  background: white;
  border: 3px solid var(--primary);
  border-radius: 16px;
  padding: 48px;
  margin: 64px 0;
  position: relative;
  box-shadow: 0 8px 32px rgba(41, 82, 163, 0.12);
}

.pricing-features h3 {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 24px;
  color: var(--dark);
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0 0 48px 0;
}

.pricing-features li {
  font-size: 19px;
  padding: 20px 20px 20px 56px;
  position: relative;
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 12px;
}

.pricing-features li:before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--dark);
  font-weight: 900;
  font-size: 28px;
}

.pricing-offer {
  border-top: 4px dashed var(--dark);
  padding-top: 48px;
}

.pricing-offer p {
  color: var(--dark);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.7;
}

.pricing-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin: 32px 0;
  text-align: center;
}

.price {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 64px;
  font-weight: 900;
  color: var(--accent);
  display: block;
  margin: 16px 0;
}

.pricing-guarantee {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin: 24px 0;
  text-align: center;
  background: white;
  padding: 20px;
  border-radius: 12px;
  border: 3px solid var(--dark);
}

.urgency-note {
  text-align: center;
  font-size: 16px;
  color: var(--dark);
  font-weight: 600;
  margin-top: 32px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  border: 2px dashed var(--dark);
}

/* Final Section */
.section-final {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  text-align: center;
  padding: 100px 0;
}

.section-final .section-header {
  color: white;
}

.section-final .section-header::after {
  background: var(--secondary);
}

.section-final .section-lead,
.section-final p {
  color: white;
  opacity: 0.95;
}

.cta-final {
  margin-top: 48px;
}

/* Footer */
.landing-footer {
  background: var(--dark);
  color: white;
  padding: 48px 0;
  text-align: center;
  border-top: 4px solid var(--secondary);
}

.landing-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-headline {
    font-size: 42px;
    letter-spacing: -1px;
  }

  .hero-subheadline {
    font-size: 18px;
  }

  .section-header {
    font-size: 36px;
  }

  .product-visuals {
    grid-template-columns: 1fr;
  }

  .testimonials {
    grid-template-columns: 1fr;
  }

  .transformation-grid {
    grid-template-columns: 1fr;
  }

  .three-steps {
    grid-template-columns: 1fr;
  }

  .pricing-box {
    padding: 40px 24px;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .btn-large {
    width: 100%;
  }

  .trust-bar {
    padding: 20px 24px;
  }

  .testimonial {
    padding: 32px 24px;
  }

  .price {
    font-size: 56px;
  }
}
