/* Landing page styles — conversion-optimized for parent gifting angle */

:root {
  --bg: #faf9f7;
  --text: #1a1a1a;
  --muted: #6a6a6a;
  --accent: #c4572a;
  --accent-hover: #a8451f;
  --card-bg: #ffffff;
  --card-border: #e8e4df;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 1.5rem 4rem;
  line-height: 1.6;
}

.container {
  max-width: 640px;
  width: 100%;
  text-align: center;
}

h1 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 0.9rem;
  letter-spacing: -0.01em;
}

.subheadline {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 1rem;
  line-height: 1.65;
}

.blurb {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text);
  max-width: 480px;
  margin: 0 auto 3rem;
  padding: 1.5rem 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
}

.blurb-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.6rem;
}

.cta-button {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 0.9rem 2.4rem;
  border-radius: 50px;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: background 0.2s ease, transform 0.15s ease;
  box-shadow: 0 4px 20px rgba(196, 87, 42, 0.3);
}

.cta-button:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.cta-button:active {
  transform: translateY(0);
}

.urgency-line {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
  margin-top: 0;
  margin-bottom: 3.5rem;
}

.social-proof-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.proof-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.proof-bullet {
  color: var(--accent);
  font-size: 0.6rem;
}

.proof-divider {
  color: var(--card-border);
}

.guarantee-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: var(--text);
  font-weight: 700;
  background: #fff8f5;
  border: 2px solid var(--accent);
  border-radius: 8px;
  padding: 0.6rem 1rem;
  margin-bottom: 1.25rem;
}

.guarantee-icon {
  font-size: 0.95rem;
  line-height: 1;
}

.guarantee-text {
  letter-spacing: 0.03em;
}

.verified-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--muted);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 50px;
  padding: 0.2rem 0.6rem;
  margin-left: 0.75rem;
  vertical-align: middle;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: left;
}

.testimonial {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 1.4rem 1.6rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.testimonial-quote {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  font-style: italic;
  margin-bottom: 0.9rem;
}

.testimonial-quote::before { content: '“'; }
.testimonial-quote::after  { content: '”'; }

.testimonial-author {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
}

.testimonial-context {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: center;
  margin-bottom: 1rem;
}

.testimonial-stars {
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.65rem;
}

.testimonials-mid {
  margin-bottom: 2.5rem;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: left;
  margin-top: 3.5rem;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 1.1rem 1.4rem;
}

.faq-question {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  color: var(--accent);
  flex-shrink: 0;
}

details[open] .faq-question::after {
  content: '−';
}

.faq-answer {
  margin-top: 0.7rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--muted);
}

footer {
  margin-top: 4rem;
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
}

.footer-magnet-link {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  font-weight: 600;
}

.footer-magnet-link:hover {
  color: var(--accent-hover);
}

.pricing-toggle {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0.75rem;
  max-width: 640px;
  margin: 0 auto 1rem;
  flex-wrap: wrap;
}

.pricing-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--card-bg);
  border: 2px solid var(--card-border);
  border-radius: 12px;
  padding: 0.85rem 1.2rem;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
  flex: 1 1 240px;
  text-align: left;
}

.pricing-option:hover {
  border-color: var(--muted);
}

.pricing-option:has(input:checked) {
  border-color: var(--accent);
  background: #fff8f5;
}

.pricing-option input[type="radio"] {
  accent-color: var(--accent);
  cursor: pointer;
}

.pricing-option-title {
  line-height: 1.3;
}

@media (max-width: 600px) {
  .pricing-toggle {
    flex-direction: column;
  }
  .pricing-option {
    flex: 1 1 auto;
  }
}

.waitlist-card {
  background: var(--text);
  color: #fff;
  margin: 2.5rem auto 3rem;
  padding: 2rem 1.5rem;
  border-radius: 14px;
  text-align: center;
  max-width: 540px;
}

.waitlist-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

.waitlist-headline {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.25;
  margin: 0.4rem auto 1.2rem;
  max-width: 420px;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

@media (min-width: 540px) {
  .waitlist-form {
    flex-direction: row;
  }
}

.waitlist-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--card-border);
  background: #fff;
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
}

.waitlist-submit {
  padding: 0.75rem 1.4rem;
  border-radius: 8px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
}

.waitlist-submit:hover {
  background: var(--accent-hover);
}

.waitlist-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.8rem;
}