:root {
  --bg: #1a1018;
  --bg-soft: #241622;
  --cream: #fff4e6;
  --caramel: #c97b34;
  --caramel-deep: #9a5418;
  --pink: #ff6fae;
  --gold: #f7c873;
  --text: #f6e9dd;
  --muted: #c8a89c;
  --radius: 22px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

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

body {
  font-family: "Inter", system-ui, sans-serif;
  background: radial-gradient(120% 90% at 80% -10%, #3a1f33 0%, var(--bg) 55%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, .brand { font-family: "Fraunces", Georgia, serif; }

em { color: var(--pink); font-style: italic; }

/* Floating background blobs */
.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
}
.blob--1 { width: 460px; height: 460px; background: var(--pink); top: -120px; left: -120px; }
.blob--2 { width: 520px; height: 520px; background: var(--caramel); bottom: -160px; right: -140px; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 6vw;
  backdrop-filter: blur(14px);
  background: rgba(26, 16, 24, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.brand { font-size: 1.5rem; font-weight: 900; color: var(--cream); text-decoration: none; }
.brand span { color: var(--pink); }
.nav__links { display: flex; gap: 26px; align-items: center; }
.nav__links a { color: var(--muted); text-decoration: none; font-weight: 500; transition: color .2s; }
.nav__links a:hover { color: var(--cream); }

/* Buttons */
.btn { padding: 12px 22px; border-radius: 999px; font-weight: 600; text-decoration: none; cursor: pointer; border: none; transition: transform .2s, box-shadow .2s; display: inline-block; }
.btn--primary { background: linear-gradient(120deg, var(--pink), var(--gold)); color: #2a0f1d; box-shadow: 0 10px 30px rgba(255,111,174,.35); }
.btn--ghost { background: transparent; color: var(--cream); border: 1px solid rgba(255,255,255,.25); }
.btn:hover { transform: translateY(-2px); }

main { position: relative; z-index: 1; }
section { padding: 90px 6vw; max-width: 1200px; margin: 0 auto; }

/* Hero */
.hero { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; padding-top: 70px; }
.eyebrow { display: inline-block; padding: 6px 14px; border-radius: 999px; background: rgba(255,111,174,.15); color: var(--pink); font-size: .8rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 1.02; font-weight: 900; margin: 18px 0; }
.hero p { color: var(--muted); font-size: 1.15rem; max-width: 480px; }
.hero__cta { display: flex; gap: 14px; margin: 28px 0; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 36px; margin-top: 30px; }
.hero__stats strong { display: block; font-size: 1.6rem; color: var(--gold); font-family: "Fraunces"; }
.hero__stats span { color: var(--muted); font-size: .85rem; }

/* Flan art */
.hero__art { display: flex; justify-content: center; }
.flan { position: relative; width: 280px; height: 280px; animation: wobble 3.2s ease-in-out infinite; }
.flan__plate { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); width: 260px; height: 40px; background: rgba(255,255,255,.12); border-radius: 50%; }
.flan__body { position: absolute; bottom: 50px; left: 50%; transform: translateX(-50%); width: 200px; height: 150px; background: linear-gradient(180deg, var(--gold), var(--caramel)); border-radius: 90px 90px 50px 50px / 60px 60px 50px 50px; box-shadow: var(--shadow); }
.flan__top { position: absolute; top: 78px; left: 50%; transform: translateX(-50%); width: 210px; height: 60px; background: linear-gradient(180deg, #ffe7b3, var(--gold)); border-radius: 50%; }
.flan__drip { position: absolute; top: 70px; left: 50%; transform: translateX(-50%); width: 170px; height: 100px; background: var(--caramel-deep); border-radius: 50%; opacity: .7; filter: blur(2px); }
@keyframes wobble { 0%,100% { transform: rotate(-2deg) scaleY(1); } 50% { transform: rotate(2deg) scaleY(.97); } }

/* Sections */
.section-title { font-size: clamp(2rem, 4vw, 2.8rem); text-align: center; font-weight: 900; }
.section-sub { text-align: center; color: var(--muted); margin: 8px 0 40px; }

.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.card { background: var(--bg-soft); border: 1px solid rgba(255,255,255,.07); border-radius: var(--radius); padding: 28px; transition: transform .25s, box-shadow .25s; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card__emoji { font-size: 2.6rem; }
.card h3 { margin: 12px 0 6px; }
.card p { color: var(--muted); font-size: .95rem; }
.card .price { display: inline-block; margin-top: 14px; color: var(--gold); font-weight: 700; }
.card--accent { background: linear-gradient(160deg, #2c1828, #241622); }

/* Pricing */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.plan { position: relative; background: var(--bg-soft); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 34px; text-align: center; }
.plan--featured { background: linear-gradient(160deg, #3a1f33, #241622); border-color: var(--pink); transform: scale(1.04); }
.plan__price { font-family: "Fraunces"; font-size: 2.8rem; font-weight: 900; margin: 14px 0; color: var(--gold); }
.plan__price span { font-size: 1rem; color: var(--muted); }
.plan ul { list-style: none; margin: 16px 0 24px; color: var(--muted); }
.plan li { padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.05); }
.badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--pink); color: #2a0f1d; padding: 4px 14px; border-radius: 999px; font-size: .75rem; font-weight: 700; }

/* Join */
.join { text-align: center; }
.join__card { background: linear-gradient(140deg, #341c2e, #211520); border-radius: 28px; padding: 60px 24px; max-width: 640px; margin: 0 auto; box-shadow: var(--shadow); }
.join__form { display: flex; gap: 10px; justify-content: center; margin: 24px auto 0; max-width: 440px; flex-wrap: wrap; }
.join__form input { flex: 1; min-width: 220px; padding: 14px 18px; border-radius: 999px; border: 1px solid rgba(255,255,255,.18); background: rgba(0,0,0,.25); color: var(--cream); font-size: 1rem; }
.join__note { display: block; margin-top: 14px; color: var(--muted); }

/* Footer */
.footer { text-align: center; padding: 40px; color: var(--muted); border-top: 1px solid rgba(255,255,255,.06); position: relative; z-index: 1; }
.footer__fine { font-size: .8rem; opacity: .6; }

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero p, .hero__cta, .hero__stats { margin-inline: auto; justify-content: center; }
  .grid, .grid--3, .plans { grid-template-columns: 1fr; }
  .nav__links a:not(.btn) { display: none; }
}
