@font-face {
  font-family: "Outfit";
  src: url("../fonts/Outfit-wght.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
:root {
  --bg: #f4eefe;
  --ink: #3b0764;
  --mut: #6b4a78;
  --wine: #9d174d;
  --purple: #7e22ce;
  --card: #fff;
  --line: rgba(59, 7, 100, 0.12);
  --radius: 16px;
  --max: 1140px;
  --nav-h: 72px;
  --ui: "Outfit", ui-sans-serif, system-ui, Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 22px 50px rgba(157, 23, 77, 0.14);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: var(--ui); line-height: 1.55; letter-spacing: -0.02em; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
.wrap { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }
.skip { position: absolute; left: 12px; top: -48px; z-index: 90; background: var(--wine); color: #fff; padding: 8px 12px; border-radius: 8px; }
.skip:focus { top: 12px; }
.nav { position: sticky; top: 0; z-index: 40; height: var(--nav-h); background: rgba(244,238,254,.82); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.nav.scrolled { border-bottom: 1px solid var(--line); }
.nav-inner { display: flex; align-items: center; gap: 16px; height: var(--nav-h); }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 750; letter-spacing: -0.06em; font-size: 20px; }
.logo-mark { width: 22px; height: 22px; }
.nav-links { margin-left: auto; display: flex; align-items: center; gap: 4px; font-size: 14px; font-weight: 620; }
.nav-links > a { padding: 8px 11px; color: var(--mut); border-radius: 10px; }
.nav-links > a:hover, .nav-links > a.active { color: var(--ink); }
.menu-toggle { display: none; margin-left: auto; background: transparent; border: 1px solid var(--line); width: 42px; height: 42px; border-radius: 11px; cursor: pointer; }
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after { display: block; width: 16px; height: 2px; background: var(--ink); margin: 0 auto; position: relative; }
.menu-toggle span::before, .menu-toggle span::after { content: ""; position: absolute; left: 0; }
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }
.btn { display: inline-flex; align-items: center; justify-content: center; border: 0; border-radius: 12px; padding: 11px 18px; font-weight: 700; font-size: 14px; cursor: pointer; transition: transform .2s var(--ease); }
.btn:hover { transform: translateY(-1px); }
.btn-w { background: var(--wine); color: #fff; box-shadow: 0 10px 24px rgba(157,23,77,.28); }
.btn-g { background: #fff; border: 1px solid var(--line); color: var(--ink); }
.hero { position: relative; overflow: hidden; padding: 36px 0 12px; }
.hero-art { position: absolute; inset: 0; background: url("../img/hearth.svg") center / cover no-repeat; pointer-events: none; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; padding: 28px 0 48px; }
.hero h1 { font-size: clamp(2.4rem, 5.2vw, 3.9rem); letter-spacing: -0.055em; line-height: 1.02; margin: 0 0 16px; font-weight: 750; }
.hero h1 em { font-style: italic; font-weight: 600; color: var(--wine); }
.lead { color: var(--mut); font-size: 1.12rem; max-width: 38rem; }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin: 22px 0 12px; }
.note { color: var(--mut); font-size: 14px; }
.note a { color: var(--wine); font-weight: 650; }
.dash { background: #2e0633; color: #f5e9f4; border-radius: 20px; padding: 18px; box-shadow: var(--shadow); min-height: 300px; }
.stat { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 8px; }
.stat div { background: rgba(255,255,255,.06); border-radius: 12px; padding: 14px; }
.stat strong { display: block; font-size: 1.4rem; }
.marquee-wrap { overflow: hidden; padding: 0 0 36px; }
.marquee-wrap p { text-align: center; color: var(--mut); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }
.marquee { display: flex; gap: 40px; width: max-content; animation: slide 30s linear infinite; font-weight: 750; color: #9a7aa8; }
.marquee span { white-space: nowrap; }
@keyframes slide { to { transform: translateX(-50%); } }
.section { padding: 84px 0; }
.section.white { background: #fff; }
.eyebrow { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--wine); font-weight: 700; margin: 0 0 10px; }
h1, h2, h3 { letter-spacing: -0.04em; line-height: 1.12; }
h1 { font-size: clamp(2rem, 4vw, 3rem); margin: 0 0 14px; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); margin: 0 0 14px; }
h3 { font-size: 1.1rem; margin: 0 0 8px; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 28px; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 22px; min-height: 150px; transition: transform .25s var(--ease), box-shadow .25s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card p { margin: 0; color: var(--mut); font-size: 14.5px; }
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.plan { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 24px; display: flex; flex-direction: column; }
.plan.rec { border-color: var(--wine); box-shadow: var(--shadow); }
.plan .price { font-size: 1.6rem; font-weight: 750; margin: 8px 0; }
.plan ul { list-style: none; padding: 0; margin: 12px 0 20px; flex: 1; }
.plan li { margin: 8px 0; padding-left: 16px; position: relative; color: var(--mut); font-size: 14px; }
.plan li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--wine); position: absolute; left: 0; top: 8px; }
.faq details { border-bottom: 1px solid var(--line); padding: 16px 0; }
.faq summary { cursor: pointer; font-weight: 700; list-style: none; display: flex; justify-content: space-between; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--wine); }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--mut); margin: 10px 0 0; }
.cta-band { padding: 88px 0; text-align: center; background: var(--wine); color: #fff; }
.cta-band .hero-actions { justify-content: center; }
.footer { padding: 48px 0 24px; background: #2e0633; color: #d8b4c8; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 24px; }
.footer h3 { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: #c084a4; }
.footer a, .footer p { display: block; margin: 7px 0; color: #d8b4c8; font-size: 14px; }
.footer a:hover, .footer .logo { color: #fff; }
.legal { margin-top: 28px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.1); font-size: 12px; }
.page-hero { padding: 52px 0 8px; }
.form { display: grid; gap: 12px; max-width: 520px; }
.form label { display: grid; gap: 6px; font-size: 13px; color: var(--mut); }
.form input, .form select, .form textarea { border: 1px solid var(--line); background: #fff; border-radius: 12px; padding: 11px 12px; outline: none; }
.form input:focus { border-color: var(--wine); }
.cookie { position: fixed; left: 16px; bottom: 16px; z-index: 50; max-width: 320px; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 14px; box-shadow: var(--shadow); font-size: 13px; }
.cookie .btn { margin-top: 10px; }
.js [data-reveal] { opacity: 0; transform: translateY(12px); animation: reveal .65s var(--ease) forwards; animation-play-state: paused; }
.js [data-reveal].in { animation-play-state: running; }
@keyframes reveal { to { opacity: 1; transform: none; } }
@media (max-width: 900px) {
  .nav-links { display: none; position: absolute; top: var(--nav-h); left: 0; right: 0; background: #f4eefe; flex-direction: column; align-items: stretch; padding: 12px 18px 22px; }
  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }
  .hero-grid, .grid, .plans, .footer-grid, .stat { grid-template-columns: 1fr; }
  .wrap { width: min(var(--max), calc(100% - 32px)); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee, [data-reveal] { animation: none !important; opacity: 1; transform: none; }
}
