/* ============================================
   LaunchReady.ai - Crew Call Page Styles
   Only styles unique to the crew-call page.
   Shared styles live in tokens/base/components.
   ============================================ */

/* ---- Hero ---- */
#hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 0;
}

#hero .hero-bg-img {
  position: absolute;
  inset: 0;
  background: url("../assets/embedded/crew-call-1.jpg") center/cover no-repeat;
  opacity: 0.35;
}

#hero .hero-over {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(4, 12, 28, 1) 0%,
    rgba(4, 12, 28, 0.75) 45%,
    rgba(4, 12, 28, 0.4) 100%
  );
}

#hero .hero-content {
  position: relative;
  z-index: 3;
  padding: 80px var(--space-md) var(--space-3xl);
  width: 100%;
}

#hero h1 {
  font-size: clamp(4.5rem, 18vw, 10rem);
  line-height: 0.85;
  letter-spacing: -0.02em;
}

#hero h1 em {
  font-style: italic;
  color: var(--accent);
  display: block;
}

.hero-pill {
  background: rgba(242, 106, 33, 0.12);
  border: 1px solid rgba(242, 106, 33, 0.4);
  border-radius: 3px;
}

.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-md);
  max-width: 500px;
}

/* Hero Truck Illustration */
.hero-truck {
  position: absolute;
  right: -2%;
  top: 12%;
  width: 52%;
  max-width: 650px;
  opacity: 0.11;
  pointer-events: none;
  z-index: 1;
  filter: grayscale(10%);
}

/* Hero Stats */
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1.75rem 0;
}

.hstat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
}

.hstat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
}

.hstat-lbl {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Launch Strip */
.launch-strip {
  background: rgba(242, 106, 33, 0.1);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-sm);
  padding: 0.875rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--text-secondary);
  margin-top: var(--space-md);
}

.launch-strip strong {
  color: var(--accent);
  font-weight: 700;
}


/* ---- Van Line Logos ---- */
#vanlines {
  background: var(--surface-mid);
  padding: var(--space-lg) var(--space-md);
  border-top: 1px solid rgba(242, 106, 33, 0.1);
}

.vl-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: var(--letter-spacing-label);
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 1.25rem;
}

.vl-logo-card .ph-logo {
  width: 100%;
  max-width: 200px;
  height: 80px;
  background: var(--surface-mid);
  border: 1px dashed rgba(242, 106, 33, 0.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  filter: none;
  opacity: 1;
}


/* ---- Who It's For ---- */
#forwho {
  background: var(--surface-deep);
}

.pain-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: var(--space-md);
}

.pain-item {
  background: var(--surface-mid);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
  overflow: hidden;
  word-break: break-word;
}

.pain-icon {
  font-size: 1.25rem;
  width: 1.5rem;
  text-align: center;
  color: inherit;
}


/* ---- Curriculum ---- */
#howitworks {
  background: var(--surface-deepest);
}

.curr-grid {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-top: 1.75rem;
}

.curr-card {
  background: var(--surface-deep);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: border-color var(--transition-base);
}

.curr-card:hover {
  border-color: var(--accent-border);
  transform: none;
}

.curr-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.5rem;
  color: rgba(242, 106, 33, 0.2);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2.5rem;
}

.curr-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.curr-text {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
}


/* ---- Photo Break ---- */
.photo-break-cc {
  position: relative;
  height: 280px;
  overflow: hidden;
  padding: 0;
}

.photo-break-cc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.photo-break-cc .pb-over {
  position: absolute;
  inset: 0;
  background: rgba(4, 12, 28, 0.55);
}

.photo-break-cc .pb-caption {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: var(--letter-spacing-label);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}


/* ---- Format (How It Works) ---- */
#format {
  background: var(--surface-deep);
}

.fsteps {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.fstep {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--surface-mid);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.fstep-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  color: var(--accent);
  min-width: 2rem;
  text-align: center;
}

.fstep-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.fstep-text {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-muted);
}


/* ---- Pricing (Join) ---- */
#join {
  background: var(--surface-deepest);
  position: relative;
  overflow: hidden;
}

.join-bg {
  position: absolute;
  inset: 0;
  background: url("../assets/embedded/crew-call-3.jpg") center/cover no-repeat;
  opacity: 0.15;
}

.join-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(4, 12, 28, 0.97), rgba(4, 12, 28, 0.92));
}

.join-in {
  position: relative;
  z-index: 1;
}

/* Van Line Choice Buttons */
.vl-choice {
  margin-top: var(--space-lg);
}

.vl-choice-title {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: var(--letter-spacing-label);
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.vl-btns {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.vl-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface-mid);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  padding: 1.25rem var(--space-md);
  text-decoration: none;
  transition: border-color var(--transition-base), transform var(--transition-base);
}

.vl-btn:hover {
  border-color: rgba(242, 106, 33, 0.3);
  transform: translateX(4px);
  color: inherit;
}

.vl-btn-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.vl-btn-tag {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 1px;
}

.vl-btn-arrow {
  color: var(--accent);
  font-size: 1.25rem;
  font-weight: 700;
}


/* ---- Hosts ---- */
#hosts {
  background: var(--surface-mid);
}

.host-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.host-card {
  background: var(--surface-deep);
}

.host-ph {
  width: 100%;
  height: 220px;
  background: var(--surface-raised);
  border-bottom: 1px solid rgba(242, 106, 33, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.host-ph-init {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3rem;
  color: rgba(242, 106, 33, 0.25);
}

.host-ph-label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: var(--letter-spacing-label);
  text-transform: uppercase;
  color: rgba(242, 106, 33, 0.4);
}


/* ---- Mastermind Waitlist ---- */
#mastermind-waitlist {
  background: var(--surface-deepest);
}


/* ---- FAQ ---- */
#faq {
  background: var(--surface-deep);
}

#faq .faq-wrap {
  gap: 1px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 1.75rem;
  max-width: none;
}

#faq .faq-item {
  background: var(--surface-mid);
  border: none;
  border-radius: 0;
}

#faq .faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 var(--space-md);
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  background: var(--surface-mid);
}

#faq .faq-a.open {
  max-height: 300px;
  padding: 0.25rem var(--space-md) var(--space-md);
}


/* ---- CTA ---- */
#cta {
  background: var(--surface-deepest);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-bottom: var(--space-3xl);
}

#cta .cta-bg {
  position: absolute;
  inset: 0;
  background: url("../assets/embedded/crew-call-4.jpg") center/cover no-repeat;
  opacity: 0.15;
}

#cta .cta-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--surface-deepest),
    rgba(4, 12, 28, 0.88),
    var(--surface-deepest)
  );
}


/* ---- Sticky CTA (Mobile) ---- */
.sticky-cta {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 990;
  background: var(--accent);
  padding: var(--space-sm) var(--space-md);
  align-items: center;
  justify-content: space-between;
  border-top: 2px solid var(--accent-hover);
}

.sticky-cta-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--surface-deepest);
}

.sticky-cta-text span {
  font-size: var(--text-xs);
  font-weight: 500;
  display: block;
  opacity: 0.75;
}

.sticky-cta a {
  background: var(--surface-deepest);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  white-space: nowrap;
}


/* ---- Footer Override ---- */
footer {
  background: var(--surface-mid);
}


/* ---- Desktop ---- */
@media (min-width: 768px) {
  #hero .hero-content {
    padding-left: var(--space-xl);
    padding-right: var(--space-xl);
  }

  .hero-truck {
    width: 46%;
    opacity: 0.13;
    right: 2%;
    top: 4%;
  }

  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .curr-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .photo-break-cc {
    height: 420px;
  }

  .price-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .vl-btns {
    flex-direction: row;
  }

  .host-cards {
    flex-direction: row;
  }

  .host-card {
    flex: 1;
  }

  .sticky-cta {
    display: none;
  }
}

@media (min-width: 1200px) {
  .hero-truck {
    width: 42%;
    opacity: 0.15;
    right: 4%;
    top: 3%;
  }

  .curr-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
