/* ========================================
   Sub-pages shared styles
   ======================================== */

.page {
  padding: calc(var(--nav-height) + 60px) 24px 80px;
}

.page-content {
  max-width: 720px;
  margin: 0 auto;
}

.page-title {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.page-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.page-body {
  font-size: 15px;
  color: var(--text-primary);
  line-height: 1.8;
}

.page-body h2 {
  font-size: 22px;
  font-weight: 800;
  margin: 40px 0 14px;
  letter-spacing: -0.01em;
}

.page-body h3 {
  font-size: 18px;
  font-weight: 800;
  margin: 28px 0 10px;
}

.page-body p {
  margin-bottom: 16px;
}

.page-body ul {
  margin: 12px 0 16px 20px;
  list-style: disc;
}

.page-body li {
  margin-bottom: 6px;
}

.page-body a {
  color: #C47A94;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.page-body a:hover {
  color: #A8637B;
}

.page-body ol {
  margin: 12px 0 16px 20px;
  list-style: decimal;
}

.page-callout {
  background: var(--brand-pink-light);
  border-radius: 12px;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 32px;
}

.page-thanks {
  margin-top: 32px;
  color: var(--text-tertiary);
}

/* Download page */

.download-card {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 40px;
  margin-bottom: 40px;
}

.download-card h2 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 4px;
}

.download-card > .download-info > p {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 24px;
}

.download-details {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}

.download-details li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 6px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.download-details li strong {
  color: var(--text-primary);
  font-weight: 700;
}

.download-features {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 32px 40px;
}

.download-features h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

/* Support page */

.faq-section-title {
  font-size: 22px;
  font-weight: 800;
  margin: 44px 0 18px;
  letter-spacing: -0.01em;
}
.faq-section-title:first-of-type { margin-top: 0; }

.faq-item {
  background: var(--bg-card);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  padding: 24px 28px;
  margin-bottom: 16px;
}

.faq-item h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 8px;
}
.faq-item p:last-child { margin-bottom: 0; }

.faq-item ul, .faq-item ol {
  margin: 8px 0 12px 20px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.faq-item ul { list-style: disc; }
.faq-item ol { list-style: decimal; }
.faq-item li { margin-bottom: 4px; }
.faq-item a {
  color: #C47A94;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.faq-item a:hover { color: #A8637B; }

/* Keyboard keys */
kbd {
  display: inline-block;
  padding: 2px 7px;
  font-family: 'SF Mono', Monaco, Menlo, monospace;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-primary);
  background: linear-gradient(180deg, #f8f8f8, #e8e8e8);
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 5px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.8);
  vertical-align: middle;
}
.kbd-list { list-style: none !important; margin-left: 0 !important; }
.kbd-list li { padding: 6px 0; }

.support-contact {
  text-align: center;
  margin-top: 48px;
  padding: 48px 24px;
}
.support-contact-label {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
  margin-bottom: 12px;
}
.support-contact-email {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color 0.2s;
}
.support-contact-email:hover {
  color: var(--brand-pink);
}
.support-contact-note {
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-tertiary);
}

/* Contact page */
.contact-card {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 48px 40px;
  text-align: center;
}

/* ======== Story / Blog article ======== */

.blog-article {
  max-width: 680px;
  margin: 0 auto;
}

.blog-header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.blog-title {
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 12px;
}

.blog-meta {
  font-size: 14px;
  color: var(--text-tertiary);
}

.blog-body {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-primary);
}

.blog-body p {
  margin-bottom: 24px;
}

.blog-body h2 {
  font-size: clamp(22px, 3.5vw, 28px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin: 56px 0 20px;
}

.blog-body h2:first-child {
  margin-top: 0;
}

.blog-body p:first-child {
  font-size: 19px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.blog-body strong {
  color: var(--text-primary);
  font-weight: 800;
}

.blog-body em {
  font-style: italic;
  color: var(--text-secondary);
}

.blog-pullquote {
  margin: 40px 0;
  padding: 24px 28px 24px 32px;
  border-left: 3px solid #E8A1B8;
  background: linear-gradient(135deg, rgba(232, 161, 184, 0.06), rgba(255, 200, 150, 0.04));
  border-radius: 0 16px 16px 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.blog-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 161, 184, 0.3), transparent);
  margin: 48px 0;
}

.blog-closing {
  font-size: 19px;
  line-height: 1.7;
  text-align: center;
  margin-top: 40px;
  padding: 32px 0;
}

.blog-cta {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
}

@media (max-width: 768px) {
  .blog-article {
    padding-left: 4px;
    padding-right: 4px;
  }
  .blog-body {
    font-size: 16px;
    line-height: 1.8;
  }
  .blog-body h2 {
    margin-top: 40px;
  }
}
