/* Prism Coat — vibrant gradient / light / rounded */
:root {
  --bg: #f7f5fb;
  --card: #ffffff;
  --ink: #1b1430;
  --text: #2c2542;
  --dim: #6b6480;
  --faint: #9b94ad;
  --line: rgba(27, 20, 48, 0.1);
  --violet: #7c3aed;
  --magenta: #d946ef;
  --blue: #5b6ef5;
  --grad: linear-gradient(120deg, var(--blue), var(--violet) 45%, var(--magenta));
  --radius: 26px;
  --radius-sm: 16px;
  --sans: "Plus Jakarta Sans", system-ui, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
h1, h2, h3, .brand { font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
a { color: inherit; text-decoration: none; }
.grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

.reveal { opacity: 0; }
.reveal.in { animation: pop 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) both; }
@keyframes pop { from { opacity: 0; transform: translateY(20px) scale(0.97); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .reveal { animation: none !important; opacity: 1 !important; } .chip { animation: none !important; } html { scroll-behavior: auto; } }

.ph { display: grid; place-items: center; aspect-ratio: 4/3; border-radius: var(--radius-sm); background: linear-gradient(160deg, #efeaf8, #e6def4); border: 1px solid var(--line); color: var(--faint); font-size: 0.82rem; }
.ph span::before { content: "◆  "; color: var(--violet); opacity: 0.6; }

/* Buttons */
.btn-grad, .btn-white, .btn-outline-w { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; font-family: inherit; font-weight: 700; font-size: 0.95rem; padding: 12px 24px; cursor: pointer; border: 0; transition: transform 0.2s, box-shadow 0.2s, background 0.2s; }
.btn-lg { padding: 15px 30px; font-size: 1rem; }
.btn-grad { background: var(--grad); color: #fff; box-shadow: 0 12px 30px -10px rgba(124, 58, 237, 0.5); }
.btn-grad:hover { transform: translateY(-2px); box-shadow: 0 20px 44px -12px rgba(217, 70, 239, 0.5); }
.btn-white { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.btn-white:hover { transform: translateY(-2px); }
.btn-outline-w { background: transparent; color: #fff; border: 1.5px solid rgba(255, 255, 255, 0.6); }
.btn-outline-w:hover { background: rgba(255, 255, 255, 0.15); }

/* Nav */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px clamp(20px, 5vw, 56px); border-bottom: 1px solid transparent; transition: background 0.35s, border-color 0.35s, padding 0.35s; }
.nav.scrolled { background: rgba(247, 245, 251, 0.85); backdrop-filter: blur(16px); border-color: var(--line); padding-top: 11px; padding-bottom: 11px; }
.brand { font-size: 1.3rem; }
.brand .accent { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.nav-links { display: flex; gap: 24px; font-size: 0.9rem; font-weight: 600; }
.nav-links a { color: var(--dim); }
.nav-links a:hover { color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.lang { display: inline-flex; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.lang-btn { background: none; border: 0; color: var(--faint); font-family: inherit; font-weight: 700; font-size: 0.7rem; padding: 5px 9px; cursor: pointer; }
.lang-btn.on { background: var(--grad); color: #fff; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 6px; cursor: pointer; }
.burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.25s, opacity 0.25s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { position: fixed; inset: 0; z-index: 90; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px; background: var(--bg); transform: translateY(-100%); transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1); }
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { font-size: 1.5rem; font-weight: 800; color: var(--ink); }
.mobile-menu a.btn-grad { font-size: 1rem; color: #fff; }
body.no-scroll { overflow: hidden; }

/* Hero */
.hero { max-width: 1160px; margin: 0 auto; padding: clamp(100px, 13vh, 150px) clamp(16px, 4vw, 40px) clamp(30px, 5vw, 60px); }
.hero-card { position: relative; overflow: hidden; border-radius: 40px; padding: clamp(48px, 8vw, 110px) clamp(24px, 5vw, 80px); text-align: center; color: #fff; background: var(--grad); box-shadow: 0 40px 90px -40px rgba(124, 58, 237, 0.6); }
.hero-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 80% 120%, rgba(255, 255, 255, 0.25), transparent 60%); pointer-events: none; }
.chip { position: absolute; background: rgba(255, 255, 255, 0.18); backdrop-filter: blur(6px); border: 1px solid rgba(255, 255, 255, 0.3); color: #fff; font-size: 0.78rem; font-weight: 600; padding: 7px 14px; border-radius: 999px; animation: bob 5s ease-in-out infinite; }
.chip-a { top: 12%; left: 8%; }
.chip-b { top: 20%; right: 9%; animation-delay: 0.8s; }
.chip-c { bottom: 16%; left: 11%; animation-delay: 1.6s; }
.chip-d { bottom: 22%; right: 8%; animation-delay: 2.4s; }
@keyframes bob { 50% { transform: translateY(-10px); } }
.hero-card .eyebrow { position: relative; text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.74rem; font-weight: 700; opacity: 0.9; }
.hero-card h1 { position: relative; font-size: clamp(2.4rem, 6vw, 4.4rem); margin: 16px 0 16px; }
.hero-card .grad { background: linear-gradient(120deg, #fff, #ffe6ff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-card .lead { position: relative; font-size: 1.12rem; max-width: 40ch; margin: 0 auto; opacity: 0.95; }
.hero-cta { position: relative; display: flex; gap: 12px; justify-content: center; margin-top: 30px; flex-wrap: wrap; }
.pill-stats { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }
.pill { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 9px 18px; font-size: 0.85rem; font-weight: 600; color: var(--dim); }

/* Sections */
.section { max-width: 1160px; margin: 0 auto; padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 56px); }
.section-soft { background: #f0ecf9; max-width: none; }
.section-soft > * { max-width: 1160px; margin-left: auto; margin-right: auto; }
.sec-eyebrow { color: var(--violet); text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.78rem; font-weight: 700; }
.section h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-top: 8px; max-width: 22ch; }

/* Finish cards */
.rcards { margin-top: 40px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.rcard { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; box-shadow: 0 20px 50px -36px rgba(124, 58, 237, 0.5); transition: transform 0.3s, box-shadow 0.3s; }
.rcard:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(217, 70, 239, 0.45); }
.rcard h3 { font-size: 1.2rem; margin: 14px 4px 4px; }
.rcard p { color: var(--dim); font-size: 0.92rem; margin: 0 4px; }

/* Why minis */
.rcards4 { margin-top: 40px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.rmini { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.emoji { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 14px; background: var(--grad); color: #fff; font-size: 1.2rem; margin-bottom: 14px; }
.rmini h3 { font-size: 1.1rem; }
.rmini p { color: var(--dim); font-size: 0.92rem; margin-top: 6px; }

/* Pill steps */
.psteps { margin-top: 40px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pstep { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.pbadge { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 999px; background: var(--grad); color: #fff; font-weight: 800; margin-bottom: 14px; }
.pstep h3 { font-size: 1.1rem; }
.pstep p { color: var(--dim); font-size: 0.9rem; margin-top: 6px; }

/* Gallery */
.rgal { margin-top: 40px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.rgal .ph { transition: transform 0.3s, box-shadow 0.3s; }
.rgal .ph:hover { transform: scale(1.03); box-shadow: 0 24px 50px -26px rgba(124, 58, 237, 0.4); }

/* FAQ */
.faq { max-width: 800px; margin: 40px auto 0; }
.faq details { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px 22px; margin-bottom: 12px; }
.faq details[open] { border-color: var(--violet); }
.faq summary { cursor: pointer; list-style: none; font-weight: 700; display: flex; justify-content: space-between; gap: 12px; }
.faq summary::after { content: "+"; color: var(--violet); }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--dim); margin-top: 12px; font-size: 0.95rem; }

/* Book */
.book { padding: clamp(40px, 6vw, 70px) clamp(16px, 4vw, 40px); }
.book-inner { max-width: 1000px; margin: 0 auto; text-align: center; color: #fff; background: var(--grad); border-radius: 40px; padding: clamp(56px, 8vw, 96px) clamp(24px, 5vw, 64px); box-shadow: 0 40px 90px -44px rgba(124, 58, 237, 0.6); }
.book h2 { font-size: clamp(2rem, 4.5vw, 2.9rem); }
.book p { opacity: 0.95; margin: 14px auto 16px; max-width: 40ch; }
.phone-big { display: block; color: #fff; font-size: 2.1rem; font-weight: 800; }
.book-actions { display: flex; gap: 12px; justify-content: center; margin-top: 24px; flex-wrap: wrap; }

/* Footer */
.site-footer { padding: clamp(40px, 5vw, 60px) clamp(20px, 5vw, 56px); border-top: 1px solid var(--line); }
.foot-cols { display: grid; grid-template-columns: repeat(3, auto); gap: 44px; margin: 22px 0; }
.foot-cols strong { display: block; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--faint); margin-bottom: 4px; }
.copyright { color: var(--faint); font-size: 0.85rem; }

/* Responsive */
@media (max-width: 900px) {
  .nav-links, .nav-quote { display: none; }
  .burger { display: flex; }
  .rcards, .rcards4, .psteps, .rgal { grid-template-columns: 1fr 1fr; }
  .chip { display: none; }
}
@media (max-width: 560px) {
  .rcards, .rcards4, .psteps, .rgal, .foot-cols { grid-template-columns: 1fr; }
}
