@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,600&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --lav: #7C6A9C;
  --deep: #5C4A7D;
  --ink: #2D2438;
  --amber: #D4A373;
  --bg: #F6F3FA;
  --muted: #6B6178;
  --line: #E6DFF0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; }
a { color: var(--lav); }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ---------- Header ---------- */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246,243,250,0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: 28px; height: 68px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--ink); text-decoration: none; margin-right: auto; }
.brand img { width: 36px; height: 36px; border-radius: 9px; }
.nav a.link { color: var(--muted); text-decoration: none; font-weight: 600; font-size: 15px; }
.nav a.link:hover { color: var(--deep); }
.nav .lang { font-size: 13px; font-weight: 700; border: 1.5px solid var(--line); border-radius: 999px; padding: 5px 14px; text-decoration: none; color: var(--muted); }
.btn {
  display: inline-block; background: var(--lav); color: white !important;
  font-weight: 700; text-decoration: none; border-radius: 999px;
  padding: 12px 26px; font-size: 15px;
  transition: background .15s ease;
}
.btn:hover { background: var(--deep); }
.btn.big { padding: 17px 36px; font-size: 17px; }
.btn.ghost { background: transparent; color: var(--deep) !important; box-shadow: inset 0 0 0 2px var(--lav); }
.btn.ghost:hover { background: rgba(124,106,156,0.08); }

/* ---------- Hero ---------- */
.hero { padding: 88px 0 40px; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.eyebrow { font-size: 13px; letter-spacing: 3px; text-transform: uppercase; font-weight: 800; color: var(--lav); margin-bottom: 18px; }
h1 { font-family: 'Playfair Display', serif; font-size: clamp(40px, 5.4vw, 64px); line-height: 1.08; font-weight: 700; text-wrap: balance; }
.hero p.lead { margin-top: 22px; font-size: 19px; color: var(--muted); max-width: 30em; }
.stores { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; align-items: center; }
.store-note { font-size: 13px; color: var(--muted); margin-top: 12px; }
.hero-visual { position: relative; text-align: center; }
.hero-visual img { width: min(340px, 80%); border-radius: 28px; box-shadow: 0 40px 80px rgba(45,36,56,0.28); }
.hero-visual::before {
  content: ''; position: absolute; inset: -8% -12%;
  background: radial-gradient(circle at 50% 42%, rgba(124,106,156,0.30) 0%, rgba(124,106,156,0) 62%);
  z-index: -1;
}

/* ---------- Sections ---------- */
section { padding: 78px 0; }
.center { text-align: center; }
h2 { font-family: 'Playfair Display', serif; font-size: clamp(30px, 3.6vw, 42px); font-weight: 700; line-height: 1.15; text-wrap: balance; }
.sub { color: var(--muted); font-size: 18px; margin-top: 14px; max-width: 42em; }
.center .sub { margin-left: auto; margin-right: auto; }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 46px; }
.feature {
  background: white; border-radius: 22px; padding: 30px 28px;
  box-shadow: 0 8px 26px rgba(45,36,56,0.06);
}
.feature .fi { width: 52px; height: 52px; border-radius: 16px; background: #EFE8F8; display: flex; align-items: center; justify-content: center; font-size: 25px; margin-bottom: 18px; }
.feature h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.feature p { font-size: 15px; color: var(--muted); }
.feature .prem { display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 1px; color: var(--amber); text-transform: uppercase; margin-left: 8px; }

.screens { display: flex; gap: 22px; overflow-x: auto; padding: 46px 24px 26px; scroll-snap-type: x mandatory; }
.screens img {
  width: 264px; flex-shrink: 0; border-radius: 22px;
  box-shadow: 0 18px 44px rgba(45,36,56,0.16);
  scroll-snap-align: center;
}

.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 46px; counter-reset: step; }
.step { background: white; border-radius: 22px; padding: 34px 28px; box-shadow: 0 8px 26px rgba(45,36,56,0.06); }
.step::before {
  counter-increment: step; content: counter(step);
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--lav); color: white; font-weight: 800; font-size: 19px;
  margin-bottom: 18px; font-family: 'Playfair Display', serif;
}
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { font-size: 15px; color: var(--muted); }

/* ---------- Premium ---------- */
.premium { background: linear-gradient(160deg, #3A2F4E 0%, #5C4A7D 60%, #7C6A9C 100%); border-radius: 34px; color: white; padding: 70px 56px; margin-top: 20px; }
.premium h2, .premium .sub { color: white; }
.premium .sub { color: rgba(255,255,255,0.82); }
.plans { display: flex; gap: 20px; margin-top: 42px; flex-wrap: wrap; }
.plan { flex: 1; min-width: 200px; background: rgba(255,255,255,0.10); border: 1.5px solid rgba(255,255,255,0.22); border-radius: 22px; padding: 28px 24px; text-align: center; position: relative; }
.plan.hl { background: white; color: var(--ink); }
.plan .badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--amber); color: white; font-size: 12px; font-weight: 800; padding: 5px 14px; border-radius: 999px; white-space: nowrap; }
.plan .pn { font-size: 14px; font-weight: 700; opacity: 0.75; }
.plan .pp { font-size: 34px; font-weight: 800; margin-top: 8px; font-variant-numeric: tabular-nums; }
.plan .pd { font-size: 13px; opacity: 0.7; margin-top: 4px; }
.pfeat { columns: 2; gap: 40px; margin-top: 40px; font-size: 15.5px; }
.pfeat li { list-style: none; margin-bottom: 12px; padding-left: 30px; position: relative; break-inside: avoid; color: rgba(255,255,255,0.92); }
.pfeat li::before { content: '✦'; position: absolute; left: 0; color: var(--amber); }

/* ---------- CTA / Footer ---------- */
.finalcta { text-align: center; padding: 90px 0 100px; }
footer { background: var(--ink); color: #B7AEC6; padding: 54px 0 44px; font-size: 14px; }
footer .cols { display: flex; gap: 60px; flex-wrap: wrap; justify-content: space-between; }
footer .fb { display: flex; align-items: center; gap: 12px; color: white; font-family: 'Playfair Display', serif; font-size: 21px; }
footer .fb img { width: 30px; }
footer a { color: #CBC2DA; text-decoration: none; display: block; margin-bottom: 10px; }
footer a:hover { color: white; }
footer .ft { font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: #8B8398; margin-bottom: 16px; }
footer .legal { margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 13px; color: #8B8398; }

/* ---------- Prose pages ---------- */
.prose { max-width: 760px; margin: 0 auto; padding: 70px 24px 90px; }
.prose h1 { font-size: clamp(32px, 4vw, 44px); margin-bottom: 10px; }
.prose .meta { color: var(--muted); font-size: 14px; margin-bottom: 40px; }
.prose h2 { font-size: 24px; margin: 42px 0 14px; }
.prose h3 { font-size: 18px; margin: 28px 0 10px; }
.prose p, .prose li { font-size: 16px; color: #4A4157; }
.prose ul { padding-left: 24px; margin: 12px 0; }
.prose li { margin-bottom: 8px; }
.prose .box { background: white; border-radius: 18px; padding: 26px 30px; box-shadow: 0 8px 26px rgba(45,36,56,0.06); margin: 26px 0; }
.prose table { border-collapse: collapse; width: 100%; margin: 18px 0; font-size: 15px; }
.prose th, .prose td { text-align: left; padding: 10px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose th { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); }

/* ---------- Invite page ---------- */
.invite-page { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px 24px; background: linear-gradient(165deg, #F6F3FA 0%, #E9E1F3 100%); }
.invite-card { background: white; border-radius: 30px; padding: 56px 44px; max-width: 480px; box-shadow: 0 30px 70px rgba(45,36,56,0.16); }
.invite-card img.mark { width: 84px; margin-bottom: 24px; }
.invite-card h1 { font-size: 32px; margin-bottom: 12px; }
.invite-card p { color: var(--muted); font-size: 16px; margin-bottom: 10px; }
.invite-card .btn { margin-top: 18px; width: 100%; }
.invite-card .hint { font-size: 13px; color: var(--muted); margin-top: 22px; }

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; padding-top: 56px; text-align: center; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .stores { justify-content: center; }
  .grid, .steps { grid-template-columns: 1fr; }
  .pfeat { columns: 1; }
  .premium { padding: 50px 28px; }
  .nav .link { display: none; }
}
