/* ============================================
   LaunchReady.ai - Teams Page Styles
   Only styles unique to the teams 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: linear-gradient(135deg, var(--surface-deepest) 0%, var(--surface-deep) 50%, var(--surface-mid) 100%);
  opacity: 1;
}

#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(3.5rem, 14vw, 9rem);
  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: 540px;
}

/* 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: 1.6rem;
  color: var(--accent);
  line-height: 1;
}

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


/* ---- 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 {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pain-icon svg {
  width: 100%;
  height: 100%;
}


/* ---- Process (How It Works) ---- */
#process {
  background: var(--surface-deepest);
}

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

.process-step {
  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);
}

.process-step:hover {
  border-color: var(--accent-border);
}

.process-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;
}

.process-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;
}

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


/* ---- Framework (7 Levels) ---- */
#framework {
  background: var(--surface-deep);
}

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

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

.fw-card:hover {
  border-color: var(--accent-border);
}

.fw-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fw-icon svg {
  width: 100%;
  height: 100%;
}

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

.fw-text {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.5;
}


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

.pricing-note {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: var(--space-md);
  text-align: center;
  font-weight: 300;
}

.price-feature-list {
  margin-top: var(--space-sm);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.price-feature {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.5;
}

.price-feature .check {
  color: var(--accent);
  flex-shrink: 0;
  font-weight: 700;
  margin-top: 1px;
}

.price-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: var(--space-sm) 0;
}


/* ---- Entry Point (Workshop) ---- */
#entry {
  background: var(--surface-deep);
}

.entry-card {
  background: var(--surface-mid);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-top: 1.75rem;
  max-width: 640px;
}

.entry-price {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.entry-label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-label);
  color: var(--text-muted);
  margin-top: var(--space-2xs);
}

.entry-desc {
  color: var(--text-secondary);
  font-weight: 300;
  margin-top: var(--space-sm);
  line-height: 1.7;
}

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

.entry-step {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.entry-step-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--accent);
  flex-shrink: 0;
  min-width: 1.5rem;
}

.entry-step-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.6;
}

.entry-credit {
  margin-top: var(--space-md);
  padding: var(--space-sm);
  background: rgba(242, 106, 33, 0.08);
  border: 1px solid rgba(242, 106, 33, 0.2);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.entry-credit strong {
  color: var(--accent);
}


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

#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-deep);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-bottom: var(--space-3xl);
}

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


/* ---- 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-stats {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

  .sticky-cta {
    display: none;
  }
}

@media (min-width: 1200px) {
  .framework-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
