/* Julie Sweet Digital: deliberate design choices:
   - Accent: warm terracotta (#C65D3B) chosen for approachability and distance from AI-default purple/sage.
   - Background: warm off-white (#FDFBF7) chosen for print-like warmth; unslop-ignore (intentional brand decision, not a default).
   - Type: system-ui stack. Headings use tight leading and subtle uppercase tracking.
   - Radius: 4px only. No glassmorphism, no gradients, no hero-three-card template.
   - Layout: single-column editorial, content-first.
*/

:root {
  --bg: #FDFBF7; /* unslop-ignore: warm off-white is a deliberate brand choice, not the 2026 cream/sage default */
  --bg-2: #F5F0EA;
  --text: #2A2A2A;
  --text-muted: #6B6B6B;
  --accent: #C65D3B;
  --accent-dark: #A3482C;
  --border: #E8E1D9;
  --max-width: 720px;
}

* {
  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;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
}

a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

a:hover {
  color: var(--accent-dark);
}

.site-header {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 32px 24px 16px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid var(--border);
}

.logo {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
}

.logo:hover {
  color: var(--accent);
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  margin-left: 24px;
  font-size: 15px;
}

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

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.hero h1 {
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  font-weight: 750;
}

.hero p {
  font-size: 20px;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 32px;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 14px 24px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--accent-dark);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  box-shadow: inset 0 0 0 1.5px var(--accent);
}

.btn-secondary:hover {
  background: rgba(198, 93, 59, 0.06);
  color: var(--accent-dark);
}

.section-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin: 64px 0 20px;
}

.product-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
}

.product-card h3 {
  font-size: 20px;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.product-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.5;
}

.price {
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  white-space: nowrap;
}

.about-blurb {
  background: var(--bg-2);
  border-left: 3px solid var(--accent);
  padding: 20px 24px;
  border-radius: 0 4px 4px 0;
  margin: 24px 0;
}

.about-blurb p {
  color: var(--text-muted);
  font-size: 16px;
}

.footer {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 32px 24px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer a {
  color: var(--text-muted);
  text-decoration: none;
  margin-left: 16px;
}

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

/* Product page */
.product-hero {
  margin-bottom: 40px;
}

.product-hero h1 {
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.product-hero .price {
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 20px;
  display: inline-block;
}

.product-hero .description {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 600px;
}

.features {
  list-style: none;
  margin: 24px 0;
}

.features li {
  padding: 8px 0 8px 28px;
  position: relative;
}

.features li::before {
  content: "\25AA";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.databases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin: 24px 0 32px;
}

.db-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 16px;
  font-size: 15px;
}

.db-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}

.db-card span {
  color: var(--text-muted);
  font-size: 14px;
}

.cta-box {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px;
  text-align: center;
  margin-top: 40px;
}

.cta-box p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.kicker {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.coming {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

.note-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.note-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.note-list a {
  color: var(--text);
  text-decoration: none;
  font-weight: 650;
}

.note-list a:hover {
  color: var(--accent);
}

.note-list .meta {
  display: block;
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 4px;
}

.lanes {
  display: grid;
  gap: 12px;
  margin: 24px 0 8px;
}

.lane {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 20px 22px;
}

.lane h2 {
  font-size: 18px;
  margin-bottom: 6px;
}

.lane p {
  color: var(--text-muted);
  font-size: 15px;
}

article.note p,
.note-body p {
  color: var(--text-muted);
  margin: 0 0 16px;
}

article.note h2,
.note-body h2 {
  font-size: 22px;
  margin: 32px 0 10px;
  letter-spacing: -0.02em;
}

.privacy h1 {
  font-size: 32px;
  margin-bottom: 8px;
}

.privacy .updated {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 32px;
}

.privacy h2 {
  font-size: 18px;
  margin: 28px 0 10px;
}

.privacy p,
.privacy li {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 10px;
}

.privacy ul {
  margin: 0 0 16px 20px;
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 32px;
  }

  .product-card {
    grid-template-columns: 1fr;
  }

  .site-header {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .nav a {
    margin-left: 0;
    margin-right: 16px;
  }
}
