:root {
  --pink: #FF4D8D;
  --pink-deep: #E0447F;
  --violet: #7C5CFF;
  --violet-deep: #6A4DE0;
  --grad: linear-gradient(135deg, #7C5CFF, #FF4D8D);
  --ink: #12141F;
  --text: #50545F;
  --muted: #878B96;
  --dark: #0F1120;
  --gold: #FFB03A;
  --line: rgba(20, 24, 40, 0.08);
  --pink-tint: #FFEDF4;
  --purple-tint: #F1EEFF;
  --gold-tint: #FFF4E0;
  --green-tint: #EEF7F3;
  --disp: "Baloo 2", sans-serif;
  --body: "Nunito", sans-serif;
  --wrap: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: #fff; color: var(--ink); font-family: var(--body); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
::selection { background: #FFDDEB; }
h1, h2, h3 { font-family: var(--disp); font-weight: 700; letter-spacing: -0.01em; margin: 0; text-wrap: pretty; }

@keyframes ld-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes ld-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; } }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-family: var(--disp); font-weight: 700; font-size: 16px; padding: 10px 24px; border-radius: 999px; border: none; cursor: pointer; transition: transform 0.15s ease, box-shadow 0.15s ease; white-space: nowrap; }
.btn-grad { background: var(--grad); color: #fff; box-shadow: 0 8px 20px rgba(255,77,141,0.28); }
.btn-grad:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(255,77,141,0.38); color: #fff; }
.btn-outline { background: #fff; color: var(--ink); border: 1px solid rgba(20,24,40,0.14); box-shadow: 0 6px 18px rgba(20,24,40,0.06); }
.btn-outline:hover { transform: translateY(-2px); }
.btn-ghost-light { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.4); }
.btn-ghost-light:hover { transform: translateY(-2px); border-color: rgba(255,255,255,0.8); color: #fff; }
.btn-lg { font-size: 18px; padding: 15px 34px; }

/* Nav */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.9); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.nav-inner { max-width: var(--wrap); margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; gap: 20px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--disp); font-size: 25px; font-weight: 700; color: var(--ink); }
.brand-mark { width: 40px; height: 40px; border-radius: 50%; overflow: hidden; background: linear-gradient(135deg, #F1EEFF, #FFEDF4); display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line); }
.brand-mark img { width: 132%; height: 132%; object-fit: cover; object-position: 50% 32%; }
.brand-word { display: inline-flex; align-items: flex-start; }
.pink { color: var(--pink); }
.brand-word sup { font-size: 11px; font-weight: 600; color: var(--muted); margin-left: 1px; }
.nav-links { display: flex; gap: 28px; margin-left: auto; font-family: var(--disp); font-weight: 700; font-size: 15px; }
.nav-links a { color: var(--ink); transition: color 0.15s ease; }
.nav-links a:hover { color: var(--pink); }
.nav-btn { padding: 10px 24px; }
.burger { display: none; flex-direction: column; gap: 6px; width: 44px; height: 44px; background: none; border: none; cursor: pointer; align-items: center; justify-content: center; }
.burger span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 3px; transition: transform 0.3s ease, opacity 0.3s ease; }
.burger.open span:first-child { transform: translateY(4.25px) rotate(45deg); }
.burger.open span:last-child { transform: translateY(-4.25px) rotate(-45deg); }

/* Hero */
.hero { position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background:
  radial-gradient(900px 480px at 82% 10%, #FFEDF4 0%, rgba(247,228,236,0) 65%),
  radial-gradient(700px 420px at 8% 92%, #F1EEFF 0%, rgba(228,238,245,0) 60%); }
.hero-inner { position: relative; max-width: var(--wrap); margin: 0 auto; padding: clamp(56px, 9vw, 110px) 24px 72px; display: flex; flex-wrap: wrap; align-items: center; gap: 56px; }
.hero-text { flex: 1 1 440px; min-width: 300px; }
.badge { display: inline-flex; align-items: center; gap: 10px; background: #fff; border: 1px solid rgba(20,24,40,0.1); border-radius: 999px; padding: 8px 18px; font-weight: 800; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pink-deep); box-shadow: 0 4px 14px rgba(20,24,40,0.05); }
.badge i { color: var(--gold); font-style: normal; }
.hero-text h1 { font-family: var(--disp); font-weight: 700; font-size: clamp(42px, 5.8vw, 72px); line-height: 1.04; margin: 22px 0 18px; }
.hero-text h1 em { font-style: normal; color: var(--pink); }
.lead { font-size: clamp(17px, 2vw, 19px); line-height: 1.65; max-width: 48ch; margin: 0 0 30px; color: var(--text); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-proof { display: flex; align-items: center; gap: 12px; margin-top: 30px; font-weight: 700; color: var(--text); font-size: 15px; }
.hero-proof .stars { color: var(--gold); font-size: 18px; letter-spacing: 3px; }

.hero-visual { flex: 1 1 380px; min-width: 300px; display: flex; justify-content: center; }
.hero-frame { position: relative; width: min(430px, 100%); }
.hero-photo { border: 8px solid #fff; border-radius: 34px; overflow: hidden; background: #fff; box-shadow: 0 30px 70px rgba(20,24,40,0.16), 0 4px 14px rgba(20,24,40,0.08); }
.hero-photo img { width: 100%; display: block; }
.hero-mascot { position: absolute; top: -30px; right: -16px; width: 104px; height: 104px; border-radius: 50%; overflow: hidden; background: #ffe6f0; border: 4px solid #fff; box-shadow: 0 10px 22px rgba(20,24,40,0.18); animation: ld-bob 3.6s ease-in-out infinite; }
.hero-mascot img { width: 122%; height: 122%; object-fit: cover; object-position: 50% 30%; }
.hero-tag { position: absolute; bottom: -18px; left: -12px; background: #fff; color: var(--ink); font-family: var(--disp); font-weight: 700; font-size: 15px; padding: 12px 20px; border-radius: 16px; transform: rotate(-4deg); box-shadow: 0 14px 30px rgba(20,24,40,0.14); border: 1px solid rgba(20,24,40,0.06); }
.hero-tag b { color: var(--pink); }

/* Marquee */
.marquee { background: var(--dark); color: #EDEBFA; overflow: hidden; padding: 15px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.marquee-track { display: flex; width: max-content; animation: ld-marquee 30s linear infinite; font-family: var(--disp); font-weight: 600; font-size: 16px; letter-spacing: 0.04em; white-space: nowrap; }
.marquee-track span { padding-right: 28px; }
.marquee-track i { color: var(--gold); font-style: normal; }

/* Sections */
.section { max-width: var(--wrap); margin: 0 auto; padding: clamp(72px, 10vw, 130px) 24px 0; }
.section-wide { max-width: var(--wrap); margin: 0 auto; padding: clamp(72px, 10vw, 130px) 24px 0; }
#get.section-wide { padding-bottom: clamp(72px, 10vw, 130px); }
.center { text-align: center; }
.kicker { display: block; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--pink-deep); font-size: 12px; margin: 0 0 12px; }
.kicker-gold { color: var(--gold); }
.h2 { font-family: var(--disp); font-weight: 700; font-size: clamp(32px, 4.2vw, 50px); line-height: 1.1; margin: 0 0 14px; }
.h2-narrow { max-width: 24ch; }
.h2-center { margin-left: auto; margin-right: auto; max-width: 22ch; margin-bottom: 44px; }
.section-lead { font-size: 18px; line-height: 1.65; color: var(--text); max-width: 62ch; margin: 0 0 48px; }
.center .section-lead { margin-left: auto; margin-right: auto; }

/* Cards */
.card { background: #fff; border: 1px solid rgba(20,24,40,0.06); box-shadow: 0 12px 34px rgba(20,24,40,0.06); }
.cards-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.cards-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px; text-align: left; }
.num-card { border-radius: 24px; padding: 34px 30px; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.num-card:hover { transform: translateY(-5px); box-shadow: 0 20px 44px rgba(20,24,40,0.1); }
.num-top { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.num { font-family: var(--disp); font-weight: 700; font-size: 14px; letter-spacing: 0.14em; color: var(--pink-deep); }
.num-line { flex: 1; height: 1px; background: linear-gradient(90deg, rgba(124,92,255,0.45), rgba(255,77,141,0.25)); }
.num-card h3 { font-size: 22px; margin-bottom: 8px; }
.num-card p { margin: 0; line-height: 1.65; color: var(--text); font-size: 15.5px; }

/* Dark cards */
.dark-card { position: relative; overflow: hidden; color: #fff; border-radius: 32px; box-shadow: 0 30px 70px rgba(20,24,40,0.24); }
.glow { position: absolute; border-radius: 50%; }
.glow-a { top: -100px; right: -100px; width: 320px; height: 320px; background: radial-gradient(closest-side, rgba(124,92,255,0.28), rgba(124,92,255,0)); }
.glow-b { bottom: -120px; left: 30%; width: 300px; height: 300px; background: radial-gradient(closest-side, rgba(255,77,141,0.16), rgba(255,77,141,0)); }
.glow-c { top: -90px; left: -80px; width: 280px; height: 280px; background: radial-gradient(closest-side, rgba(124,92,255,0.3), rgba(124,92,255,0)); }
.glow-d { bottom: -110px; right: -70px; width: 300px; height: 300px; background: radial-gradient(closest-side, rgba(255,77,141,0.18), rgba(255,77,141,0)); }
.dark-lead { color: #B6B3D6; }

.mascot-card { background: linear-gradient(150deg, #17123A, #2C1D63); padding: clamp(40px, 6vw, 68px); display: flex; flex-wrap: wrap; align-items: center; gap: 48px; }
.mascot-media { flex: 0 1 300px; min-width: 240px; display: flex; justify-content: center; position: relative; z-index: 1; }
.mascot-big { width: min(250px, 80%); border-radius: 50%; overflow: hidden; aspect-ratio: 1/1; background: #ffe6f0; animation: ld-bob 3.6s ease-in-out infinite; filter: drop-shadow(0 16px 30px rgba(0,0,0,0.3)); }
.mascot-big img { width: 100%; height: 100%; object-fit: cover; }
.mascot-copy { flex: 1 1 420px; min-width: 280px; position: relative; z-index: 1; }
.mascot-copy .h2 { color: #fff; font-size: clamp(30px, 3.8vw, 44px); line-height: 1.12; margin-bottom: 16px; }
.mascot-copy .dark-lead { font-size: 17.5px; line-height: 1.7; margin: 0 0 24px; }
.ticks { display: flex; flex-direction: column; gap: 13px; font-weight: 700; font-size: 16px; }
.ticks li { display: flex; gap: 12px; align-items: center; }
.tick { background: rgba(124,92,255,0.9); border-radius: 50%; width: 28px; height: 28px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 13px; color: #fff; }

/* Formula */
.formula { display: flex; flex-wrap: wrap; gap: 48px; align-items: flex-start; }
.formula-copy { flex: 1 1 400px; min-width: 280px; }
.formula-copy .section-lead { margin-bottom: 28px; max-width: 52ch; }
.pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { padding: 9px 18px; border-radius: 999px; font-weight: 800; font-size: 14px; }
.pill-pink { background: var(--pink-tint); color: var(--pink-deep); }
.pill-purple { background: var(--purple-tint); color: var(--violet-deep); }
.pill-gold { background: var(--gold-tint); color: #A06B10; }
.pill-green { background: var(--green-tint); color: #0E9B7A; }
.ingredients-card { flex: 1 1 380px; min-width: 280px; border-radius: 26px; padding: 36px; }
.ingredients-card h3 { font-size: 21px; margin-bottom: 6px; }
.underline-bar { display: block; width: 44px; height: 3px; border-radius: 2px; background: linear-gradient(90deg, #FF4D8D, #FFB03A); margin-bottom: 16px; }
.ingredients { margin: 0 0 18px; line-height: 1.85; color: var(--text); font-size: 15.5px; }
.ingredients-note { margin: 0; font-size: 13.5px; color: var(--muted); font-style: italic; }

/* Routine */
.step-card { border-radius: 24px; padding: 30px 28px; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.step-card:hover { transform: translateY(-5px); box-shadow: 0 20px 44px rgba(20,24,40,0.1); }
.step-badge { width: 44px; height: 44px; border-radius: 50%; font-family: var(--disp); font-weight: 700; font-size: 20px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.s1 { background: var(--pink-tint); color: var(--pink-deep); }
.s2 { background: var(--purple-tint); color: var(--violet-deep); }
.s3 { background: var(--gold-tint); color: #A06B10; }
.s4 { background: var(--green-tint); color: #0E9B7A; }
.step-card h3 { font-size: 20px; margin-bottom: 8px; }
.step-card p { margin: 0; line-height: 1.65; color: var(--text); font-size: 15.5px; }

/* FAQ */
.faq { max-width: 820px; }
.accordion { display: flex; flex-direction: column; gap: 14px; text-align: left; }
.acc-item { background: #fff; border-radius: 20px; border: 1px solid rgba(20,24,40,0.06); box-shadow: 0 8px 24px rgba(20,24,40,0.05); overflow: hidden; }
.acc-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 20px 24px; display: flex; align-items: center; gap: 16px; font-family: var(--disp); font-size: 18px; font-weight: 700; color: var(--ink); }
.acc-mark { margin-left: auto; width: 30px; height: 30px; border-radius: 50%; background: var(--pink-tint); display: inline-flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; font-family: var(--body); font-weight: 800; color: var(--pink-deep); }
.acc-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.acc-a p { margin: 0; padding: 0 24px 22px; line-height: 1.7; color: var(--text); font-size: 15.5px; }

/* CTA */
.cta-card { background: linear-gradient(150deg, #17123A, #3A1D63); padding: clamp(44px, 7vw, 76px); text-align: center; }
.cta-mascot { position: relative; z-index: 1; display: inline-block; width: 92px; height: 92px; border-radius: 50%; overflow: hidden; background: #ffe6f0; animation: ld-bob 3.6s ease-in-out infinite; filter: drop-shadow(0 12px 24px rgba(0,0,0,0.3)); }
.cta-mascot img { width: 122%; height: 122%; object-fit: cover; object-position: 50% 30%; }
.cta-card .h2 { position: relative; z-index: 1; color: #fff; font-size: clamp(32px, 4.4vw, 52px); margin: 16px auto 14px; max-width: 20ch; }
.cta-lead { position: relative; z-index: 1; font-size: 17.5px; line-height: 1.65; margin: 0 auto 32px; max-width: 50ch; }
.cta-actions { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* Footer */
.footer { background: var(--dark); color: #B6B3D6; padding: 52px 24px; }
.footer-inner { max-width: var(--wrap); margin: 0 auto; display: flex; flex-wrap: wrap; gap: 36px; align-items: flex-start; justify-content: space-between; }
.footer-word { display: inline-flex; align-items: center; gap: 10px; font-family: var(--disp); font-size: 23px; font-weight: 700; color: #fff; }
.fmark { width: 36px; height: 36px; border-radius: 50%; overflow: hidden; background: rgba(255,255,255,0.08); display: inline-flex; }
.fmark img { width: 132%; height: 132%; object-fit: cover; object-position: 50% 32%; }
.footer-word .pink { color: #FF7FAE; }
.footer-word sup { font-size: 11px; color: rgba(255,255,255,0.5); }
.footer-brand p { margin: 10px 0 0; font-weight: 700; color: var(--muted); }
.footer-nav { display: flex; gap: 26px; font-weight: 700; font-size: 15px; }
.footer-nav a { color: #B6B3D6; transition: color 0.15s ease; }
.footer-nav a:hover { color: #FF7FAE; }
.footer-contact { font-size: 15px; line-height: 1.9; }
.footer-contact strong { color: #fff; display: block; font-family: var(--disp); }
.footer-contact a { display: block; color: #FF7FAE; width: fit-content; }
.footer-base { max-width: var(--wrap); margin: 40px auto 0; font-size: 13px; color: #8E8BA6; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; }

/* Responsive */
@media (max-width: 860px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 4px; background: rgba(255,255,255,0.98); backdrop-filter: blur(12px); padding: 14px 24px 20px; box-shadow: 0 12px 30px rgba(20,24,40,0.1); margin: 0; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 11px 0; font-size: 17px; }
  .nav-btn { display: none; }
  .burger { display: flex; margin-left: auto; }
  .hero-inner { gap: 40px; }
  .hero-visual { order: -1; }
  .hero-frame { width: min(360px, 100%); }
  .footer-inner { gap: 28px; }
}
@media (max-width: 540px) {
  .hero-text h1 { font-size: 40px; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
  .mascot-card { padding: 36px 24px; }
  .cta-card { padding: 44px 22px; }
}
