/* Landing Page Specific Styles - Extends WTE main styles.css (light design system)
   All landing pages use the same light, clean aesthetic as the main site. */

/* Sticky mobile CTA */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--accent);
  padding: 1rem;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
}
.sticky-mobile-cta .btn {
  width: 100%;
  margin: 0;
}
@media (max-width: 768px) {
  .sticky-mobile-cta {
    display: block;
  }
}

/* Proof chips */
.proof-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin: 2rem 0;
}
.proof-chip {
  background: var(--gray-100);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Landing nav appointment button */
.nav-appointment {
  background: var(--accent);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9375rem;
  transition: all var(--transition);
}
.nav-appointment:hover {
  background: var(--accent-hover);
  color: white;
  transform: translateY(-1px);
}

/* Story cards */
.story-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}
.story-tag {
  display: inline-block;
  background: var(--gray-100);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Multiple comparison boxes */
.multiple-comparison {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.multiple-box {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
  border-radius: 8px;
}
.multiple-box h3 {
  font-size: 1.125rem;
  margin: 0 0 0.5rem;
  color: var(--text);
}
.multiple-value {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--accent);
  margin: 1rem 0;
  line-height: 1;
}
.multiple-label {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Landing specific sections */
.landing-hero {
  position: relative;
  padding: clamp(2.5rem, 8vw, 5rem) 0 clamp(2.5rem, 6vw, 4rem);
  border-bottom: 1px solid var(--border);
}
.landing-hero.hero-photo {
  min-height: min(72vh, 680px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
.landing-hero.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.86) 36%, rgba(255,255,255,0.18) 64%, transparent 80%);
  z-index: 0;
  pointer-events: none;
}
.landing-hero.hero-photo .wrap {
  position: relative;
  z-index: 1;
}
.photo-band {
  min-height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--border);
}
.card .card-thumb {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 6px;
  margin: 0 0 1rem;
}
.landing-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 1.25rem;
  max-width: 20ch;
}
.landing-hero p {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 48ch;
  margin: 0 0 1.5rem;
  line-height: 1.6;
}

/* Sprint steps */
.sprint-steps {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
}
.sprint-step {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
}
.sprint-step:last-child {
  border-bottom: 1px solid var(--border);
}
.step-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}
.step-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--text);
}
.step-content p {
  margin: 0;
  color: var(--text-muted);
}

/* Forms */
.landing-form {
  display: grid;
  gap: 1rem;
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-field {
  display: grid;
  gap: 0.5rem;
}
.form-field label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
}
.form-field input,
.form-field select {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  color: var(--text);
  font-size: 1rem;
  transition: border-color var(--transition);
}
.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--accent);
}
.form-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}
.form-success {
  display: none;
  background: var(--gray-50);
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
}
.form-success.visible {
  display: block;
}
.form-success h3 {
  color: var(--accent);
  margin: 0 0 0.5rem;
}

/* Issue boxes */
.issue-grid {
  display: grid;
  gap: 1.25rem;
  margin: 2rem 0;
}
.issue-box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.issue-icon {
  font-size: 1.5rem;
  color: var(--accent);
}
.issue-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--text);
}
.issue-content p {
  margin: 0;
  color: var(--text-muted);
}

/* Quiz styles */
.quiz-question {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.75rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}
.quiz-question h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 1rem;
  color: var(--text);
}
.quiz-options {
  display: grid;
  gap: 0.75rem;
}
.quiz-option {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1rem 1.25rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--text-muted);
  text-align: left;
}
.quiz-option:hover {
  border-color: var(--accent);
  background: var(--gray-50);
}
.quiz-option.selected {
  border-color: var(--accent);
  background: var(--gray-50);
  color: var(--text);
}

.quiz-result {
  display: none;
  background: var(--white);
  border: 2px solid var(--accent);
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
  text-align: center;
}
.quiz-result.visible {
  display: block;
}
.score-display {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 600;
  color: var(--accent);
  margin: 1rem 0;
}
.score-label {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.score-feedback {
  background: var(--gray-50);
  padding: 1.5rem;
  border-radius: 6px;
  margin: 1.5rem 0;
  text-align: left;
}
.score-feedback h4 {
  font-size: 1.4rem;
  margin: 0 0 1rem;
  color: var(--accent);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .landing-hero.hero-photo {
    min-height: 60vh;
  }
  .landing-hero.hero-photo::before {
    background: linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.82) 58%, rgba(255,255,255,0.28) 100%);
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .multiple-comparison {
    grid-template-columns: 1fr;
  }
  .sprint-step {
    grid-template-columns: 1fr;
  }
  .issue-box {
    grid-template-columns: 1fr;
  }
}
