/*
  Typography Styles
  Headings, paragraphs, links
*/

/* ===== Subtitle ===== */
.subtitle {
  font-family: var(--font-family-serif);
  font-size: var(--font-size-body);
  font-weight: 100;
  line-height: var(--line-height-normal);
  color: var(--color-text-primary);
  max-width: 600px;
  margin: 0 auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== Section Text (Philosophy & Product) ===== */
.section-text {
  font-family: var(--font-family-serif);
  font-size: var(--font-size-body);
  font-weight: 100;
  line-height: var(--line-height-relaxed);
  color: var(--color-text-primary);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== App Store Badge ===== */
.app-store-badge {
  display: inline-block;
  cursor: pointer;
}

.app-store-badge img {
  display: block;
  width: 120px;
  height: auto;
}

/* ===== System Requirements ===== */
.system-requirements {
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-normal);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
  margin-top: var(--spacing-sm);
}

/* ===== Footer Text ===== */
.footer p {
  font-size: var(--font-size-small);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
}

/* ===== Text Selection ===== */
::selection {
  background-color: var(--color-accent);
  color: var(--color-bg);
}
