/* Seasons — Shared Styles */

:root {
  --bg: #F7F5F2;
  --text: #0F0F0F;
  --text-secondary: #666666;
  --text-muted: #999999;
  --border: #E5E2DD;
  --dark-bg: #0F0F0F;
  --dark-text: #F7F5F2;
  --nav-link: #555555;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

/* Skip to content */
.skip-to-content {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: 8px 16px;
  background: var(--text);
  color: var(--bg);
  font-size: 14px;
  text-decoration: none;
}

.skip-to-content:focus {
  left: 8px;
  top: 8px;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.content-narrow {
  max-width: 680px;
  margin: 0 auto;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
  background: rgba(247, 245, 242, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.nav-logo {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 1px;
  color: var(--text);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  font-size: 14px;
  color: var(--nav-link);
  text-decoration: none;
  line-height: 1.4;
  padding: 8px 0;
}

.nav-links a:hover {
  color: var(--text);
}

/* Hero */
.hero {
  padding: 120px 24px 80px;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-text {
  max-width: 540px;
}

.hero h1 {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 56px;
  font-weight: normal;
  line-height: 1.1;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.hero-tagline {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 20px;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.4;
}

.hero-subtitle {
  font-size: 17px;
  color: #444;
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-badge {
  display: inline-block;
  min-height: 44px;
}

.hero-badge img {
  height: 54px;
  width: auto;
}

.hero-trust {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.5;
}

.hero-visual {
  position: relative;
  min-height: 400px;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(232, 168, 124, 0.35), transparent 55%),
    radial-gradient(ellipse at 70% 20%, rgba(143, 168, 200, 0.3), transparent 55%),
    radial-gradient(ellipse at 50% 70%, rgba(224, 60, 138, 0.2), transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(44, 62, 122, 0.2), transparent 55%);
}

/* Sections */
.section {
  padding: 80px 24px;
}

.section-title {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 28px;
  font-weight: normal;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 48px;
}

/* How It Works */
.steps {
  max-width: 540px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.step-num {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: var(--text);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
}

.step-content strong {
  display: block;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
}

.step-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Features List */
.features-list {
  max-width: 540px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.feature-icon {
  font-size: 28px;
  line-height: 1;
  min-width: 36px;
  text-align: center;
  padding-top: 2px;
}

.feature-content strong {
  display: block;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
}

.feature-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* 12 Seasons Grid */
.seasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 680px;
  margin: 0 auto 40px;
}

.season-chip {
  border-radius: 12px;
  padding: 16px 8px;
  text-align: center;
  color: white;
  font-size: 13px;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: transform 0.2s ease;
  min-height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  user-select: none;
}

.season-chip.light-chip {
  color: #333;
  text-shadow: none;
}

.season-chip .identity-word {
  font-size: 11px;
  font-weight: 400;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.2s ease, max-height 0.2s ease;
}

.season-chip.active .identity-word {
  opacity: 0.8;
  max-height: 20px;
}

@media (hover: hover) {
  .season-chip:hover {
    transform: scale(1.05);
  }
  .season-chip:hover .identity-word {
    opacity: 0.8;
    max-height: 20px;
  }
}

.seasons-micro-cta {
  text-align: center;
  margin-top: 40px;
}

.seasons-micro-cta p {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.seasons-micro-cta .hero-badge img {
  height: 44px;
}

/* Explainer */
.explainer-text {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Privacy Callout */
.privacy-callout {
  background: var(--dark-bg);
  color: var(--dark-text);
  padding: 80px 24px;
  text-align: center;
}

.privacy-callout .section-title {
  color: var(--dark-text);
}

.privacy-callout p {
  font-size: 17px;
  color: #aaa;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Final CTA */
.final-cta {
  text-align: center;
  padding: 80px 24px;
}

.final-cta p {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 32px;
}

.final-cta .hero-badge img {
  height: 54px;
}

/* Footer */
.site-footer {
  padding: 40px 24px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

.footer-links {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--nav-link);
  text-decoration: none;
  padding: 4px 0;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-email {
  margin-bottom: 16px;
}

.footer-email a {
  color: var(--nav-link);
  text-decoration: none;
}

/* Scroll reveal animation classes (added by JS) */
.animate {
  opacity: 0;
  transform: translateY(20px);
}

.animate.visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

/* Privacy & Support page styles */
.page-header {
  padding: 100px 24px 40px;
  text-align: center;
}

.page-header h1 {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 36px;
  font-weight: normal;
  line-height: 1.2;
}

.page-content {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.page-content h2 {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 22px;
  font-weight: normal;
  margin-top: 40px;
  margin-bottom: 16px;
}

.page-content p {
  margin-bottom: 16px;
  line-height: 1.7;
  color: #333;
}

.page-content ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.page-content li {
  margin-bottom: 8px;
  line-height: 1.6;
  color: #333;
}

.page-content a {
  color: var(--text);
  text-decoration: underline;
}

/* Data table */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 14px;
}

.data-table th,
.data-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.data-table th {
  font-weight: 600;
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  font: inherit;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  min-height: 44px;
  gap: 16px;
}

.faq-question::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item.open .faq-question::after {
  content: '\2212';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding-bottom: 20px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

/* Contact section on support page */
.contact-box {
  background: #f0eeeb;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  margin-bottom: 48px;
}

.contact-box p {
  color: var(--text-secondary);
}

.contact-box a {
  font-weight: 600;
}

/* 404 page */
.four-oh-four {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.four-oh-four h1 {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 36px;
  font-weight: normal;
  margin-bottom: 16px;
}

.four-oh-four p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.four-oh-four a {
  color: var(--text);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-visual {
    min-height: 240px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 100px 24px 48px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-tagline {
    font-size: 18px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-visual {
    min-height: 200px;
    border-radius: 16px;
  }

  .section {
    padding: 48px 24px;
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 32px;
  }

  .seasons-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .season-chip {
    padding: 14px 6px;
    font-size: 11px;
    min-height: 44px;
  }

  .privacy-callout {
    padding: 48px 24px;
  }

  .final-cta {
    padding: 48px 24px;
  }

  .final-cta p {
    font-size: 24px;
  }

  .page-header h1 {
    font-size: 28px;
  }

  .data-table {
    font-size: 13px;
  }

  .data-table th,
  .data-table td {
    padding: 8px 10px;
  }
}
