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

:root {
  --accent:         #2563eb;
  --accent-hover:   #1d4ed8;
  --accent-light:   #eff6ff;
  --accent-readable:#1e40af;
  --bg:             #fafafa;
  --fg:             #0f172a;
  --fg-muted:       #6b7280;
  --fg-dim:         #9ca3af;
  --border:         #e5e7eb;
  --border-hover:   #9ca3af;
  --surface:        #ffffff;
  --speed:          0.18s;
  --font-serif: 'Lora', Georgia, 'Times New Roman', serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding: 3rem 0 5rem;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Brand tag ── */
.brand-tag {
  margin-bottom: 3.5rem;
}
.brand-tag a {
  font-size: 0.825rem;
  color: var(--fg-muted);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color var(--speed);
}
.brand-tag a:hover { color: var(--fg); }

/* ── Hero ── */
.hero {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  margin-bottom: 5rem;
}

.hero-text {
  flex: 0 0 400px;
}

.hero-visual {
  flex: 1;
  min-width: 0;
}

.hero-screenshot {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.10), 0 4px 16px rgba(0, 0, 0, 0.06);
  display: block;
  border: 1px solid var(--border);
}

h1 {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 1.25rem;
  color: var(--fg);
}

.accent-dot {
  color: var(--accent);
}

.subtitle {
  font-size: 1.0625rem;
  color: var(--fg-muted);
  margin-bottom: 2rem;
  font-weight: 400;
  line-height: 1.6;
  max-width: 32ch;
}

.hero-note {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-top: 0.875rem;
  opacity: 0.7;
  letter-spacing: 0.01em;
}

.hero-footnote {
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-top: 0.375rem;
  opacity: 0.6;
}
.hero-footnote a {
  color: var(--fg-muted);
  text-decoration: underline;
}

.hero-verse {
  margin-top: 2.5rem;
  font-family: var(--font-serif);
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.7;
  opacity: 0.65;
  max-width: 28ch;
}

/* ── Button ── */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 0.5rem 1.375rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  min-height: 2.25rem;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: background var(--speed);
}
.btn-primary:hover { background: var(--accent-hover); }

/* ── Moods section ── */
.moods-section {
  margin-bottom: 6rem;
  padding-top: 4rem;
  border-top: 1px solid var(--border);
}

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-readable);
  margin-bottom: 0.5rem;
}

.section-heading {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 2.5rem;
}

.mood-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.mood {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--fg-muted);
  background: var(--surface);
  cursor: default;
  transition: background var(--speed), border-color var(--speed), color var(--speed);
}

.mood:hover {
  border-color: var(--border-hover);
  color: var(--fg);
}

.mood.highlighted {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
}

/* ── Blog section ── */
.blog-section {
  margin-bottom: 5rem;
}

.blog-section .section-heading {
  margin-bottom: 1.25rem;
}

.blog-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.375rem 2rem;
}

.blog-link {
  font-size: 0.9375rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color var(--speed);
}
.blog-link:hover {
  color: var(--accent);
}

/* ── Pricing ── */
.pricing {
  padding-top: 3.5rem;
  border-top: 1px solid var(--border);
  margin-bottom: 5rem;
}

.pricing p {
  color: var(--fg-muted);
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.pricing p:last-of-type { margin-bottom: 0; }

.pricing strong {
  color: var(--fg);
  font-weight: 600;
}

.pricing-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.btn-link {
  font-size: 0.9375rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color var(--speed);
}
.btn-link:hover { color: var(--fg); }

/* ── Footer ── */
footer {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--fg-muted);
  font-size: 0.8125rem;
}

footer p a {
  color: var(--fg-muted);
  text-decoration: none;
  transition: color var(--speed);
}
footer p a:hover { color: var(--fg); }

.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  color: var(--fg-muted);
  text-decoration: none;
  transition: color var(--speed);
}
.footer-links a:hover { color: var(--fg); }

/* ── Responsive ── */
@media (max-width: 700px) {
  .hero {
    flex-direction: column;
    gap: 2rem;
  }
  .hero-text {
    flex: none;
    width: 100%;
  }
  h1 { font-size: 2.75rem; }
}

@media (max-width: 600px) {
  body { padding: 2rem 0 4rem; }
  .container { padding: 0 1.25rem; }
  .brand-tag { margin-bottom: 2.5rem; }
  .hero { margin-bottom: 3.5rem; }
  .moods-section { margin-bottom: 4rem; }
  .section-heading { font-size: 1.5rem; }
  .blog-links { grid-template-columns: 1fr; gap: 0.375rem; }
  footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-links { flex-wrap: wrap; gap: 1rem; }
  .pricing-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.875rem;
  }
  .pricing-actions .btn-primary,
  .pricing-actions .btn-link { text-align: center; }
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
