
:root {
  --bg: #FAF5EC;
  --surface: #FFFFFF;
  --primary: #F8C8D8;
  --secondary: #C8B6E2;
  --accent: #D4A574;
  --ink: #1B1530;
  --ink-soft: #5C5566;
  --border: rgba(27,21,48,0.08);
  --gradient-hero-from: #F8C8D8;
  --gradient-hero-to: #FAF5EC;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #1A0E1A;
    --surface: #2A1825;
    --ink: #F4ECDD;
    --ink-soft: #C9B8A8;
    --border: rgba(244,236,221,0.1);
    --gradient-hero-from: #2A1230;
    --gradient-hero-to: #4A1E3A;
  }
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--ink); font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; -webkit-font-smoothing: antialiased; line-height: 1.6; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
h1, h2, h3 { font-family: Georgia, 'Times New Roman', serif; letter-spacing: -0.5px; line-height: 1.15; margin: 0 0 16px; font-weight: 500; }
h1 { font-size: clamp(40px, 6vw, 72px); }
h2 { font-size: clamp(32px, 4vw, 48px); }
h3 { font-size: clamp(22px, 2.5vw, 28px); }
p { font-size: 17px; line-height: 1.65; color: var(--ink-soft); margin: 0 0 16px; }
a { color: var(--ink); text-decoration: none; }
a:hover { text-decoration: underline; }
.pill { display: inline-block; padding: 6px 14px; border-radius: 999px; background: color-mix(in srgb, var(--accent) 18%, transparent); color: var(--accent); font-size: 12px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; }
.cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 32px; border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent) 70%, var(--ink) 30%));
  color: #1B1530; font-weight: 600; font-size: 17px;
  border: none; cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 24px rgba(212,165,116,0.25), 0 2px 4px rgba(0,0,0,0.06);
}
.cta:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(212,165,116,0.35), 0 4px 8px rgba(0,0,0,0.08); text-decoration: none; }
.cta-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 999px;
  background: transparent; color: var(--ink);
  border: 1px solid var(--border); font-weight: 500;
  transition: background 0.2s ease;
}
.cta-secondary:hover { background: var(--surface); text-decoration: none; }

/* ── Hero ── */
.hero { position: relative; padding: 96px 0 64px; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, var(--gradient-hero-from), transparent 70%);
  opacity: 0.6; pointer-events: none;
}
.hero-inner { position: relative; text-align: center; max-width: 760px; margin: 0 auto; }
.hero h1 { animation: fade-up 0.9s cubic-bezier(0,0,0.2,1) both; }
.hero p.lead { animation: fade-up 0.9s 0.15s cubic-bezier(0,0,0.2,1) both; font-size: 19px; max-width: 580px; margin: 24px auto 36px; }
.hero .cta-row { animation: fade-up 0.9s 0.3s cubic-bezier(0,0,0.2,1) both; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
@keyframes fade-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ── Floating illustration row ── */
.themes-strip { display: flex; gap: 16px; margin: 80px 0 0; padding: 0 24px; overflow-x: auto; scroll-snap-type: x mandatory; }
.themes-strip::-webkit-scrollbar { display: none; }
.theme-card {
  flex: 0 0 280px;
  height: 360px;
  border-radius: 28px;
  scroll-snap-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 4px 10px rgba(0,0,0,0.04);
  transition: transform 0.4s cubic-bezier(0,0,0.2,1);
}
.theme-card:hover { transform: translateY(-8px) scale(1.02); }
.theme-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.45)); z-index: 1; }
.theme-card img { width: 100%; height: 100%; object-fit: cover; }
.theme-card .label { position: absolute; bottom: 24px; left: 24px; color: #fff; z-index: 2; }
.theme-card .label .name { font-family: Georgia, serif; font-size: 28px; font-weight: 500; }
.theme-card .label .desc { opacity: 0.85; font-size: 14px; margin-top: 4px; }

/* ── Features grid ── */
.section { padding: 96px 0; }
.section.tinted { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; margin-top: 48px; }
.feature { padding: 8px; }
.feature .glyph { width: 56px; height: 56px; border-radius: 14px; background: color-mix(in srgb, var(--accent) 14%, transparent); display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 20px; }
.feature h3 { font-size: 22px; margin-bottom: 8px; }
.feature p { font-size: 16px; }

/* ── Pricing ── */
.pricing { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 48px; }
.price-card { padding: 32px 24px; border-radius: 24px; background: var(--surface); border: 1px solid var(--border); position: relative; }
.price-card.highlighted { border-color: color-mix(in srgb, var(--accent) 60%, var(--border)); box-shadow: 0 16px 48px rgba(212,165,116,0.18); }
.price-card .price { font-family: Georgia, serif; font-size: 44px; font-weight: 500; margin: 12px 0 4px; }
.price-card .unit { font-size: 14px; color: var(--ink-soft); }
.price-card ul { padding: 16px 0 0 0; list-style: none; margin: 0; }
.price-card li { padding: 6px 0; color: var(--ink-soft); font-size: 15px; }
.price-card li::before { content: '— '; color: var(--accent); }
.price-card .pill-most { position: absolute; top: -10px; left: 24px; background: var(--accent); color: var(--bg); padding: 4px 12px; border-radius: 999px; font-size: 11px; font-weight: 700; }

/* ── Privacy strip ── */
.privacy-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-top: 32px; }
.privacy-strip > div { padding: 20px; border-radius: 16px; background: var(--surface); border: 1px solid var(--border); }
.privacy-strip strong { display: block; margin-bottom: 6px; }

/* ── Footer ── */
.site-footer { padding: 80px 0 48px; border-top: 1px solid var(--border); background: var(--surface); }
.site-footer .wrap { display: grid; gap: 16px; }
.site-footer .brand { font-family: Georgia, serif; font-size: 20px; font-weight: 500; }
.site-footer .links { display: flex; gap: 24px; flex-wrap: wrap; }
.site-footer .links a { color: var(--ink-soft); font-size: 14px; }
.site-footer .locale a { color: var(--ink-soft); font-size: 14px; }
.site-footer .locale .dot { margin: 0 8px; color: var(--ink-soft); }
.site-footer .fineprint { color: var(--ink-soft); font-size: 12px; line-height: 1.6; margin-top: 16px; }
.site-footer .fineprint > div { padding: 2px 0; }

/* ── Long-form doc pages ── */
.doc { padding: 80px 0 0; }
.doc .wrap { max-width: 720px; }
.doc h1 { margin-bottom: 8px; }
.doc h2 { margin: 48px 0 12px; font-size: 28px; }
.doc h3 { margin: 32px 0 8px; font-size: 20px; }
.doc p, .doc li { font-size: 16px; line-height: 1.7; }
.doc ul, .doc ol { padding-left: 24px; }
.doc a { color: var(--accent); text-decoration: underline; }
.doc .meta { color: var(--ink-soft); font-size: 14px; margin-bottom: 32px; }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
