/* Snowday — Landing page (extends styles.css) */

body.landing { background: var(--bg); }

.cta-pill {
  background: var(--ink);
  color: #fff !important;
}
.cta-pill:hover { background: var(--teal-dark) !important; color: #fff !important; }

/* ============ HERO ============ */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 32px 72px;
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 40px; padding: 40px 22px 48px; }
}
.hero-pill {
  display: inline-block;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 5.5vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
}
.hero-title em {
  font-style: italic;
  color: var(--red);
  font-weight: 700;
}
.hero-sub {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0 0 26px;
  max-width: 560px;
}
.hero-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 0 12px;
}
.hero-form input {
  flex: 1;
  font-size: 16px;
  padding: 14px 16px;
}
.hero-success { color: var(--teal-dark); font-weight: 600; margin: 6px 0 8px; }
.hero-error { color: var(--red); font-weight: 600; margin: 6px 0 8px; }
.hero-trust { font-size: 13px; color: var(--muted); margin: 8px 0 0; }
.hero-secondary {
  color: var(--teal-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border-bottom: 1px dashed var(--teal);
  padding-bottom: 1px;
}
.hero-secondary:hover { color: var(--ink); border-color: var(--ink); }

@media (max-width: 520px) {
  .hero-form { flex-direction: column; }
}

/* ============ HERO ART ============ */
.hero-art {
  position: relative;
  min-height: 380px;
}
.forecast-card,
.email-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  position: absolute;
}
.forecast-card {
  top: 0;
  right: 20px;
  width: 280px;
  transform: rotate(-2.5deg);
  background: linear-gradient(180deg, #fff 0%, #F0F8F8 100%);
  border-color: var(--teal-soft);
}
.forecast-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--teal-dark);
  text-transform: uppercase;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 0 4px rgba(22,163,74,0.18);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(22,163,74,0.18); }
  50% { box-shadow: 0 0 0 8px rgba(22,163,74,0.04); }
}
.forecast-num {
  font-family: var(--font-display);
  font-size: 88px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 14px 0 4px;
  color: var(--ink);
}
.forecast-num span { font-size: 38px; color: var(--teal); }
.forecast-label { font-size: 13px; color: var(--ink-soft); margin-bottom: 16px; }
.forecast-cta {
  font-size: 12px;
  font-weight: 600;
  background: var(--ink);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  display: inline-block;
}
.email-card {
  bottom: 0;
  left: 0;
  width: 360px;
  transform: rotate(2deg);
  border-left: 4px solid var(--red);
}
.email-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 6px;
}
.email-subject {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 10px;
}
.email-body {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0 0 10px;
}
.email-footer {
  font-size: 11px;
  color: var(--muted);
  font-style: italic;
  border-top: 1px solid var(--line);
  padding-top: 8px;
}
.email-footer em { color: var(--red); font-style: normal; font-weight: 600; }

@media (max-width: 900px) {
  .hero-art { min-height: 420px; }
  .forecast-card { right: 0; width: min(260px, 70%); }
  .email-card { left: 0; width: min(320px, 88%); bottom: 0; }
}
@media (max-width: 520px) {
  .hero-art { min-height: 380px; transform: scale(0.95); }
}

/* ============ QUOTES ============ */
.quotes {
  background: var(--ink);
  padding: 48px 32px;
  color: #fff;
}
.quote-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 800px) { .quote-grid { grid-template-columns: 1fr; gap: 24px; } }
blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.45;
  letter-spacing: -0.01em;
}
blockquote cite {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  color: var(--teal-soft);
  font-style: normal;
  font-family: var(--font-mono);
  font-weight: 400;
}

/* ============ HOW IT WORKS ============ */
.how, .pricing, .faq, .final-cta {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 32px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.025em;
  margin: 0 0 12px;
  text-align: center;
}
.section-sub {
  text-align: center;
  color: var(--ink-soft);
  font-size: 17px;
  margin: 0 0 36px;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}
@media (max-width: 800px) { .how-steps { grid-template-columns: 1fr; } }
.how-step {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}
.how-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  color: var(--teal);
  margin-bottom: 12px;
  letter-spacing: -0.04em;
}
.how-step h3 {
  font-family: var(--font-display);
  font-size: 19px;
  margin: 0 0 8px;
  letter-spacing: -0.015em;
}
.how-step p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

/* ============ DEMO STRIP ============ */
.demo-strip {
  background: linear-gradient(135deg, var(--teal-soft) 0%, #fff 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.demo-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 32px;
  text-align: center;
}
.demo-inner p {
  color: var(--ink-soft);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto 24px;
}
.cta-large {
  font-size: 18px;
  padding: 16px 28px;
  display: inline-block;
  text-decoration: none;
}

/* ============ PRICING ============ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 16px;
}
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  border: 2px solid var(--teal);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.price-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 0 0 4px;
}
.price-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 12px 0 4px;
}
.price-unit { font-size: 18px; color: var(--muted); font-weight: 500; }
.price-meta {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 18px;
  letter-spacing: 0.01em;
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}
.price-card ul li {
  padding: 7px 0 7px 22px;
  font-size: 14px;
  color: var(--ink-soft);
  position: relative;
}
.price-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 800;
}
.cta-outline {
  background: #fff !important;
  color: var(--ink) !important;
  border: 1.5px solid var(--ink) !important;
}
.cta-outline:hover { background: var(--ink) !important; color: #fff !important; }

/* ============ FAQ ============ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 28px;
}
@media (max-width: 700px) { .faq-grid { grid-template-columns: 1fr; } }
.faq-item h4 {
  font-family: var(--font-display);
  font-size: 17px;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.faq-item p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* ============ FINAL CTA ============ */
.final-cta {
  text-align: center;
  background: var(--ink);
  color: #fff;
  margin: 0;
  max-width: none;
  padding: 80px 32px;
}
.final-cta h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4.5vw, 44px);
  letter-spacing: -0.025em;
  margin: 0 0 14px;
}
.final-cta p {
  color: rgba(255,255,255,0.78);
  font-size: 17px;
  max-width: 540px;
  margin: 0 auto;
}
.final-cta .hero-form input {
  background: #fff;
  border-color: #fff;
}
.final-cta .hero-success { color: #84d2c5; }
.final-cta .hero-error { color: #ffb4ab; }

footer.footer { padding: 28px 32px; }
footer.footer a { color: var(--teal-dark); text-decoration: none; }
footer.footer a:hover { text-decoration: underline; }
