/* ─── Hero ─── */
.live-hero {
  background: var(--primary);
  color: white;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 0 80px;
  position: relative;
}

.live-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.15) 100%);
  pointer-events: none;
}

.live-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.live-hero-text h1 {
  font-family: "Lato", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  margin: 20px 0 0;
  text-align: center;
}

/* Override slot machine to use em units on this page */
.live-hero .rotating-text {
  animation: slotMachineLive 4.5s cubic-bezier(0.35, 0.5, 0.65, 1);
  -webkit-animation: slotMachineLive 4.5s cubic-bezier(0.35, 0.5, 0.65, 1);
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}

@keyframes slotMachineLive {
  0% { transform: translateY(0); }
  5% { transform: translateY(-2.4em); }
  10% { transform: translateY(-4.8em); }
  15% { transform: translateY(-7.2em); }
  20% { transform: translateY(-9.6em); }
  25% { transform: translateY(-12em); }
  30% { transform: translateY(-14.4em); }
  35% { transform: translateY(-16.8em); }
  40% { transform: translateY(-19.2em); }
  45% { transform: translateY(-21.6em); }
  100% { transform: translateY(-24em); }
}

@-webkit-keyframes slotMachineLive {
  0% { -webkit-transform: translateY(0); }
  5% { -webkit-transform: translateY(-2.4em); }
  10% { -webkit-transform: translateY(-4.8em); }
  15% { -webkit-transform: translateY(-7.2em); }
  20% { -webkit-transform: translateY(-9.6em); }
  25% { -webkit-transform: translateY(-12em); }
  30% { -webkit-transform: translateY(-14.4em); }
  35% { -webkit-transform: translateY(-16.8em); }
  40% { -webkit-transform: translateY(-19.2em); }
  45% { -webkit-transform: translateY(-21.6em); }
  100% { -webkit-transform: translateY(-24em); }
}

.live-hero-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 24px 0 36px;
  max-width: 600px;
}

.live-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  display: inline-block;
  padding: 16px 40px;
  background: var(--green);
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #8fa557;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(162, 185, 100, 0.3);
}

.btn-secondary {
  display: inline-block;
  padding: 16px 40px;
  background: transparent;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

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

.btn-outline {
  display: inline-block;
  padding: 14px 36px;
  background: transparent;
  color: var(--primary);
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--primary);
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

/* ─── Section Header (reused) ─── */
.live-empathy .section-header,
.live-features .section-header,
.live-credibility .section-header,
.live-roadmap .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.live-empathy .section-header h2,
.live-answer .section-header h2,
.live-features .section-header h2,
.live-credibility .section-header h2,
.live-roadmap .section-header h2 {
  font-family: "Lato", sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 12px;
}

.live-empathy .section-header p,
.live-features .section-header p,
.live-credibility .section-header p,
.live-roadmap .section-header p {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── Empathy Section ─── */
.live-empathy {
  padding: 80px 0;
  background: white;
}

.empathy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.empathy-card {
  padding: 32px;
  border-radius: 12px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.empathy-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.empathy-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.empathy-card h3 {
  font-family: "Lato", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.empathy-card p {
  color: var(--gray);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ─── Answer / Promises ─── */
.live-answer {
  padding: 80px 0;
  background: var(--bg);
}

.live-answer .section-header {
  text-align: center;
  margin-bottom: 30px;
}

.answer-promises {
  text-align: center;
  margin-bottom: 30px;
}

.answer-promises p {
  font-family: "Lato", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin: 8px 0;
}

.answer-body {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.answer-body p {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.8;
}

/* ─── Answer Body Left-aligned ─── */
.answer-body-left {
  text-align: left;
}

.answer-body-left p + p {
  margin-top: 20px;
}

/* ─── Signature ─── */
.answer-signature {
  display: flex;
  justify-content: flex-end;
  margin-top: -15px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.answer-signature-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.answer-signature-name {
  font-family: "Dancing Script", cursive;
  font-size: 1.8rem;
  color: var(--primary);
  transform: rotate(-3deg);
  display: inline-block;
}

.answer-signature-subtitle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: 600;
  margin-top: 2px;
}

.answer-signature-linkedin {
  display: inline-flex;
  align-items: center;
  transition: opacity 0.2s ease;
}

.answer-signature-linkedin:hover {
  opacity: 0.75;
}

.answer-signature-linkedin-icon {
  width: 18px;
  height: 18px;
}

/* ─── Features Showcase ─── */
.live-features {
  padding: 80px 0;
  background: white;
}

.features-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.feature-block {
  padding: 32px;
  border-radius: 12px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.feature-block:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.feature-block h3 {
  font-family: "Lato", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-block h3 {
  color: var(--primary);
}

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

.feature-block-links {
  margin-top: 12px;
}

.feature-block-link {
  font-size: 0.85rem;
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
}

.feature-block-link:hover {
  text-decoration: underline;
}

/* ─── AI Native ─── */
.live-ai {
  padding: 80px 0;
  background: white;
  text-align: center;
}

.ai-logos {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
}

.ai-logos img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}

.live-ai h2 {
  font-family: "Lato", sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 16px;
}

.live-ai p {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.8;
  max-width: 650px;
  margin: 0 auto;
}

.ai-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* ─── Credibility ─── */
.live-credibility {
  padding: 80px 0;
  background: var(--bg);
}

.credibility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.credibility-item {
  padding: 24px;
}

.credibility-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
}

.credibility-item h3 {
  font-family: "Lato", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.credibility-item p {
  color: var(--gray);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ─── Openness / API ─── */
.live-openness {
  padding: 60px 0;
  background: var(--primary);
  color: white;
}

.openness-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.openness-content h2 {
  font-family: "Lato", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.openness-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

.text-link-light {
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(162, 185, 100, 0.4);
  transition: border-color 0.2s ease;
}

.text-link-light:hover {
  border-color: var(--green);
}

/* ─── Roadmap ─── */
.live-roadmap {
  padding: 80px 0;
  background: white;
}

.roadmap-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.roadmap-pill {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  background: var(--bg);
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid #e9ecef;
}

.roadmap-pill-more {
  background: transparent;
  border-style: dashed;
  color: var(--gray);
}

/* ─── Section CTAs ─── */
.section-cta {
  text-align: center;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .live-hero {
    min-height: auto;
    padding: 40px 0 60px;
  }

  .live-hero-text h1 {
    font-size: 1.8rem;
  }

  .live-hero-sub {
    font-size: 1rem;
  }

  .live-hero-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    text-align: center;
  }

  .empathy-grid,
  .credibility-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .features-showcase {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .live-empathy .section-header h2,
  .live-answer .section-header h2,
  .live-features .section-header h2,
  .live-credibility .section-header h2,
  .live-roadmap .section-header h2 {
    font-size: 1.7rem;
  }

  .answer-promises p {
    font-size: 1.1rem;
  }

  .content-sections {
    padding-top: 40px;
  }

  .live-empathy,
  .live-answer,
  .live-features,
  .live-credibility,
  .live-roadmap {
    padding: 40px 0;
  }
}
