/* =========================================================
   SERENATA — Landing Page
   Design system + components
   ========================================================= */

:root {
  /* Palette */
  --bg: #0b0910;
  --bg-2: #100c18;
  --surface: #16111f;
  --surface-2: #1c1628;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);

  --text: #f4eef7;
  --text-soft: #cdc3d6;
  --muted: #9a8fa9;

  --rose: #ff7ea3;
  --coral: #ff9e7a;
  --gold: #f4d0a0;
  --plum: #9b8cff;

  --grad: linear-gradient(120deg, #ff7ea3 0%, #ff9e7a 45%, #f4d0a0 100%);
  --grad-plum: linear-gradient(120deg, #9b8cff 0%, #ff7ea3 100%);
  --grad-text: linear-gradient(100deg, #ff8fb0, #ffb98f 55%, #f6dcb2);

  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.35);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 20px 60px -20px rgba(255, 126, 163, 0.5);

  --r-sm: 12px;
  --r: 18px;
  --r-lg: 26px;
  --r-xl: 34px;

  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-body: "Manrope", system-ui, -apple-system, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; }
::selection { background: rgba(255, 126, 163, 0.3); color: #fff; }

/* ===== Layout ===== */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 820px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }
.muted { color: var(--muted); }
.section { padding: clamp(64px, 9vw, 130px) 0; position: relative; }
.section--muted { background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.015), transparent); }

.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ===== Typography helpers ===== */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
  padding: 7px 15px; border: 1px solid var(--line-strong); border-radius: 100px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(6px);
}
.eyebrow--center { margin: 0 auto; }
.eyebrow__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--rose); box-shadow: 0 0 12px var(--rose); animation: pulse 2s infinite; }

.section__head { margin-bottom: clamp(40px, 6vw, 68px); }
.section__head .eyebrow { margin-bottom: 20px; }
.section__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.9rem, 4.6vw, 3.3rem); line-height: 1.1; letter-spacing: -0.01em;
}
.section__lead { color: var(--text-soft); font-size: clamp(1.02rem, 1.6vw, 1.22rem); margin-top: 18px; max-width: 60ch; }
.center .section__lead { margin-left: auto; margin-right: auto; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 0.98rem; letter-spacing: 0.01em;
  padding: 14px 26px; border-radius: 100px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s, color 0.3s;
  position: relative; white-space: nowrap; will-change: transform;
}
.btn:active { transform: scale(0.97); }
.btn--sm { padding: 10px 20px; font-size: 0.9rem; }
.btn--lg { padding: 17px 34px; font-size: 1.05rem; }
.btn--xl { padding: 20px 44px; font-size: 1.15rem; }
.btn--block { width: 100%; }

.btn--primary { color: #2a1420; background: var(--grad); background-size: 160% 160%; box-shadow: var(--shadow-glow); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 26px 70px -18px rgba(255, 126, 163, 0.7); background-position: 100% 50%; }

.btn--ghost { color: var(--text); border: 1px solid var(--line-strong); background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(8px); }
.btn--ghost:hover { transform: translateY(-3px); border-color: var(--rose); background: rgba(255, 126, 163, 0.08); box-shadow: var(--shadow-sm); }

/* ===== Scroll progress ===== */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: var(--grad); z-index: 200; box-shadow: 0 0 12px rgba(255, 126, 163, 0.7); transition: width 0.1s linear; }

/* ===== Ambient background ===== */
.aurora { position: fixed; inset: 0; z-index: -2; overflow: hidden; pointer-events: none; background: radial-gradient(120% 90% at 50% -10%, #17101f 0%, var(--bg) 55%); }
.aurora__blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5; will-change: transform; }
.aurora__blob--1 { width: 46vw; height: 46vw; background: radial-gradient(circle, rgba(255, 126, 163, 0.55), transparent 65%); top: -10%; left: -8%; animation: float1 22s ease-in-out infinite; }
.aurora__blob--2 { width: 40vw; height: 40vw; background: radial-gradient(circle, rgba(155, 140, 255, 0.42), transparent 65%); top: 30%; right: -12%; animation: float2 26s ease-in-out infinite; }
.aurora__blob--3 { width: 36vw; height: 36vw; background: radial-gradient(circle, rgba(244, 208, 160, 0.32), transparent 65%); bottom: -12%; left: 30%; animation: float3 30s ease-in-out infinite; }
.grain { position: absolute; inset: 0; opacity: 0.045; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

@keyframes float1 { 0%,100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(6%, 8%) scale(1.12); } }
@keyframes float2 { 0%,100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-7%, 5%) scale(1.08); } }
@keyframes float3 { 0%,100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(4%, -6%) scale(1.15); } }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }

/* ===== Preloader ===== */
.preloader { position: fixed; inset: 0; z-index: 500; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; background: var(--bg); transition: opacity 0.6s var(--ease), visibility 0.6s; }
.preloader.is-hidden { opacity: 0; visibility: hidden; }
.preloader__mark { animation: bob 1.6s ease-in-out infinite; }
.preloader__note { stroke-dasharray: 220; stroke-dashoffset: 220; animation: draw 1.6s var(--ease) forwards; }
.preloader__word { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 0.32em; text-transform: uppercase; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; opacity: 0; animation: fadeUp 0.8s 0.4s var(--ease) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ===== Header ===== */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s; border-bottom: 1px solid transparent; }
.header.is-scrolled { background: rgba(11, 9, 16, 0.72); backdrop-filter: blur(18px) saturate(140%); border-bottom-color: var(--line); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; letter-spacing: 0.02em; }
.nav { display: flex; gap: 30px; }
.nav a { font-size: 0.95rem; color: var(--text-soft); position: relative; transition: color 0.25s; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--grad); border-radius: 2px; transition: width 0.3s var(--ease); }
.nav a:hover { color: var(--text); }
.nav a:hover::after { width: 100%; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { position: fixed; top: 74px; left: 0; right: 0; background: rgba(13, 10, 20, 0.96); backdrop-filter: blur(20px); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; gap: 6px; padding: 20px 24px 28px; transform: translateY(-120%); transition: transform 0.4s var(--ease); z-index: 99; }
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu a { padding: 12px 4px; font-size: 1.05rem; border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: 14px; }

/* ===== Hero ===== */
.hero { position: relative; padding: clamp(120px, 16vh, 180px) 0 70px; }
.hero__inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.hero__title { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.4rem, 5.6vw, 4.3rem); line-height: 1.06; letter-spacing: -0.015em; margin: 22px 0 0; }
.hero__lead { color: var(--text-soft); font-size: clamp(1.05rem, 1.7vw, 1.28rem); margin-top: 24px; max-width: 52ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* Offer card (hero) */
.offer-card { display: inline-flex; align-items: center; gap: 14px; margin-top: 22px; padding: 12px 18px 12px 14px; border-radius: 16px; border: 1px solid rgba(255, 126, 163, 0.45); background: linear-gradient(120deg, rgba(255, 126, 163, 0.14), rgba(244, 208, 160, 0.1)); position: relative; overflow: hidden; }
.offer-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, transparent 20%, rgba(255, 255, 255, 0.18) 50%, transparent 80%); transform: translateX(-120%); animation: shimmer 3.4s ease-in-out infinite; }
@keyframes shimmer { 0%, 60% { transform: translateX(-120%); } 100% { transform: translateX(120%); } }
.offer-card__badge { flex-shrink: 0; width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: var(--grad); color: #2a1420; box-shadow: var(--shadow-sm); position: relative; z-index: 1; }
.offer-card__text { display: flex; flex-direction: column; line-height: 1.25; position: relative; z-index: 1; }
.offer-card__text strong { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.09em; color: var(--gold); }
.offer-card__text span { font-size: 1rem; color: var(--text); }
.offer-card__text b { color: var(--rose); font-weight: 800; }
.offer-card__tag { flex-shrink: 0; margin-left: 4px; padding: 5px 12px; border-radius: 100px; background: var(--grad); color: #2a1420; font-weight: 800; font-size: 0.9rem; position: relative; z-index: 1; box-shadow: var(--shadow-sm); }

.hero__trust { list-style: none; margin-top: 32px; }
.hero__trust li { display: flex; align-items: center; gap: 16px; }
.avatars { display: flex; }
.avatars img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; margin-left: -12px; border: 2px solid var(--bg); box-shadow: var(--shadow-sm); }
.avatars img:first-child { margin-left: 0; }
.stars { color: var(--gold); letter-spacing: 2px; font-size: 0.95rem; }

/* Hero media / video frame */
.hero__media { position: relative; }
.video-frame { position: relative; aspect-ratio: 2 / 1; border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--line-strong); background: linear-gradient(160deg, var(--surface-2), var(--surface)); box-shadow: var(--shadow); }
.video-frame__el { width: 100%; height: 100%; object-fit: cover; background: var(--surface); }
.video-frame__glow { position: absolute; inset: 0; background: radial-gradient(70% 50% at 50% 40%, rgba(255, 126, 163, 0.16), transparent 70%); pointer-events: none; }

.floating-card { position: absolute; display: flex; align-items: center; gap: 9px; padding: 8px 12px; background: rgba(22, 17, 31, 0.82); backdrop-filter: blur(14px); border: 1px solid var(--line-strong); border-radius: var(--r-sm); box-shadow: var(--shadow); animation: floaty 5s ease-in-out infinite; }
.floating-card strong { display: block; font-size: 0.8rem; line-height: 1.25; }
.floating-card .muted { font-size: 0.68rem; line-height: 1.25; }
.floating-card--1 { left: -22px; bottom: -22px; animation-delay: 0.4s; }
.floating-card--2 { right: -18px; top: -22px; animation-delay: 1.2s; }
.fc__heart { font-size: 1.15rem; color: var(--rose); filter: drop-shadow(0 0 8px rgba(255,126,163,0.6)); }
.fc__wave { display: flex; align-items: flex-end; gap: 2px; height: 20px; }
.fc__wave i { width: 2.5px; background: var(--grad); border-radius: 3px; animation: eq 1.1s ease-in-out infinite; }
.fc__wave i:nth-child(1){ height: 40%; animation-delay: 0s; }
.fc__wave i:nth-child(2){ height: 80%; animation-delay: .15s; }
.fc__wave i:nth-child(3){ height: 55%; animation-delay: .3s; }
.fc__wave i:nth-child(4){ height: 100%; animation-delay: .45s; }
.fc__wave i:nth-child(5){ height: 60%; animation-delay: .6s; }
.fc__wave i:nth-child(6){ height: 85%; animation-delay: .75s; }
.fc__wave i:nth-child(7){ height: 45%; animation-delay: .9s; }
@keyframes eq { 0%,100% { transform: scaleY(0.4); } 50% { transform: scaleY(1); } }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.hero__scroll { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-top: 60px; }
.hero__scroll .muted { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; }
.mouse { width: 24px; height: 38px; border: 2px solid var(--line-strong); border-radius: 14px; display: flex; justify-content: center; padding-top: 7px; }
.mouse i { width: 4px; height: 8px; border-radius: 4px; background: var(--rose); animation: scroll 1.6s ease-in-out infinite; }
@keyframes scroll { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(12px); } }

/* ===== Marquee ===== */
.marquee-wrap { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 20px 0; background: rgba(255, 255, 255, 0.015); overflow: hidden; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; gap: 26px; white-space: nowrap; width: max-content; animation: marquee 32s linear infinite; color: var(--text-soft); font-weight: 500; }
.marquee__track span { font-size: 1rem; }
.marquee__track span:nth-child(even) { color: var(--rose); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ===== Intro ===== */
.section--intro { padding-top: clamp(70px, 10vw, 120px); }
.section--intro .section__title { margin-top: 20px; }
.section--intro .section__lead { margin-top: 26px; }

/* ===== Audio explainer ===== */
.audio-explainer { display: flex; align-items: center; gap: 22px; padding: 22px 28px; margin-bottom: 36px; border-radius: var(--r-lg); border: 1px solid var(--line-strong); background: linear-gradient(120deg, rgba(255, 126, 163, 0.07), rgba(155, 140, 255, 0.05)); }
.audio-explainer__play { flex-shrink: 0; width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; background: var(--grad); color: #2a1420; box-shadow: var(--shadow-glow); transition: transform 0.3s var(--ease); }
.audio-explainer__play:hover { transform: scale(1.06); }
.audio-explainer__play:active { transform: scale(0.96); }
.audio-explainer__icon--play { margin-left: 2px; }
.audio-explainer__body { flex: 1; min-width: 0; }
.audio-explainer__head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px; margin-bottom: 12px; }
.audio-explainer__head strong { font-size: 1.05rem; }
.audio-explainer__head .muted { font-size: 0.9rem; }
.audio-explainer__wave { display: flex; align-items: center; gap: 2px; height: 30px; }
.audio-explainer__wave i { flex: 1; min-width: 2px; background: linear-gradient(var(--line-strong), var(--line-strong)); border-radius: 2px; height: 25%; transition: background 0.25s; }
.audio-explainer__wave i.is-played { background: linear-gradient(var(--rose), var(--gold)); }
.audio-explainer.is-playing .audio-explainer__wave i.is-played { animation: eq 0.9s ease-in-out infinite; }
.audio-explainer.is-playing .audio-explainer__wave i.is-played:nth-child(odd) { animation-delay: 0.15s; }
.audio-explainer.is-playing .audio-explainer__wave i.is-played:nth-child(3n) { animation-delay: 0.3s; }
.audio-explainer__time { display: flex; justify-content: space-between; margin-top: 8px; font-size: 0.78rem; color: var(--muted); font-variant-numeric: tabular-nums; }

/* ===== Steps ===== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { position: relative; padding: 38px 30px; border-radius: var(--r-lg); border: 1px solid var(--line); background: linear-gradient(180deg, var(--surface), rgba(22, 17, 31, 0.4)); overflow: hidden; transition: transform 0.4s var(--ease), border-color 0.4s; }
.step::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 50% at 50% 0%, rgba(255, 126, 163, 0.1), transparent 70%); opacity: 0; transition: opacity 0.4s; }
.step:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.step:hover::before { opacity: 1; }
.step__num { font-family: var(--font-display); font-size: 3rem; font-weight: 700; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; opacity: 0.35; line-height: 1; }
.step__icon { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; color: var(--rose); background: rgba(255, 126, 163, 0.1); border: 1px solid var(--line-strong); margin: 14px 0 20px; }
.step h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; margin-bottom: 10px; }
.step p { color: var(--text-soft); }

/* ===== Bento benefits ===== */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bento__card { padding: 32px 28px; border-radius: var(--r-lg); border: 1px solid var(--line); background: linear-gradient(180deg, var(--surface), rgba(22, 17, 31, 0.3)); transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s; position: relative; overflow: hidden; }
.bento__card--wide { grid-column: span 2; }
.bento__card:hover { transform: translateY(-5px); border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.bento__icon { font-size: 2rem; margin-bottom: 16px; }
.bento__card h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; margin-bottom: 8px; }
.bento__card p { color: var(--text-soft); }

/* ===== Styles grid ===== */
.styles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.style-card { display: flex; align-items: center; gap: 16px; text-align: left; padding: 20px 22px; border-radius: var(--r); border: 1px solid var(--line); background: linear-gradient(120deg, var(--surface), rgba(22, 17, 31, 0.3)); transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s; }
.style-card:hover { transform: translateY(-4px); border-color: var(--rose); box-shadow: var(--shadow-glow); }
.style-card__wave { display: flex; align-items: center; gap: 2px; height: 34px; width: 60px; flex-shrink: 0; }
.style-card__wave i { flex: 1; background: linear-gradient(var(--rose), var(--gold)); border-radius: 2px; height: 30%; opacity: 0.5; }
.style-card__meta { flex: 1; }
.style-card__meta strong { display: block; font-size: 1.05rem; }
.style-card__meta .muted { font-size: 0.85rem; }
.styles__note { margin-top: 28px; font-size: 0.9rem; }

/* ===== Story ===== */
.story__inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(30px, 6vw, 80px); align-items: center; }
.story__art { position: relative; aspect-ratio: 1; display: grid; place-items: center; }
.story__disc { width: min(78%, 320px); aspect-ratio: 1; border-radius: 50%; background: repeating-radial-gradient(circle at center, #14101d 0 3px, #1c1628 3px 6px); border: 1px solid var(--line-strong); display: grid; place-items: center; box-shadow: var(--shadow), inset 0 0 60px rgba(0,0,0,0.6); animation: spin 14s linear infinite; }
.story__disc-center { width: 32%; aspect-ratio: 1; border-radius: 50%; background: var(--grad); box-shadow: 0 0 40px rgba(255, 126, 163, 0.5); position: relative; }
.story__disc-center::after { content: ""; position: absolute; inset: 42%; border-radius: 50%; background: var(--bg); }
@keyframes spin { to { transform: rotate(360deg); } }
.story__note { position: absolute; font-size: 2rem; color: var(--rose); filter: drop-shadow(0 0 10px rgba(255,126,163,0.5)); animation: floaty 5s ease-in-out infinite; }
.story__note--a { top: 8%; left: 12%; }
.story__note--b { bottom: 14%; left: 4%; animation-delay: 1s; color: var(--plum); }
.story__note--c { top: 20%; right: 8%; animation-delay: 2s; color: var(--gold); }
.pullquote { font-family: var(--font-serif); font-style: italic; font-size: clamp(1.3rem, 2.5vw, 1.7rem); line-height: 1.4; color: var(--text); border-left: 3px solid var(--rose); padding-left: 20px; margin: 26px 0 30px; }

/* ===== Stats ===== */
.section--stats { padding: clamp(50px, 7vw, 90px) 0; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(30px, 5vw, 54px); background: linear-gradient(120deg, rgba(255, 126, 163, 0.06), rgba(155, 140, 255, 0.05)); backdrop-filter: blur(8px); }
.stat { text-align: center; }
.stat__num { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 700; line-height: 1; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; display: block; }
.stat__label { color: var(--text-soft); font-size: 0.95rem; margin-top: 8px; display: block; }

/* ===== Testimonials ===== */
.testimonials { position: relative; }
.testimonials__track { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 6px 2px 22px; scrollbar-width: none; }
.testimonials__track::-webkit-scrollbar { display: none; }
.testi { scroll-snap-align: center; flex: 0 0 min(420px, 82vw); padding: 32px 30px; border-radius: var(--r-lg); border: 1px solid var(--line); background: linear-gradient(180deg, var(--surface), rgba(22, 17, 31, 0.4)); display: flex; flex-direction: column; gap: 16px; }
.testi blockquote { font-size: 1.06rem; color: var(--text-soft); line-height: 1.6; font-style: italic; }
.testi figcaption { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testi__avatar { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; color: #241019; background: linear-gradient(135deg, var(--c1), var(--c2)); }
.testi figcaption strong { display: block; }
.testi figcaption .muted { font-size: 0.85rem; }
.testimonials__nav { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 24px; }
.tnav { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line-strong); background: rgba(255,255,255,0.03); font-size: 1.5rem; color: var(--text); display: grid; place-items: center; transition: transform 0.3s, background 0.3s, border-color 0.3s; }
.tnav:hover { transform: scale(1.08); border-color: var(--rose); background: rgba(255, 126, 163, 0.1); }
.testimonials__dots { display: flex; gap: 8px; }
.testimonials__dots button { width: 8px; height: 8px; border-radius: 50%; background: var(--line-strong); transition: width 0.3s, background 0.3s; }
.testimonials__dots button.is-active { width: 24px; border-radius: 8px; background: var(--grad); }

/* ===== Audio testimonials (WhatsApp chat) ===== */
.wa { max-width: 480px; margin: 0 auto; border-radius: 18px; overflow: hidden; border: 1px solid var(--line-strong); box-shadow: var(--shadow); }
.wa__bar { display: flex; align-items: center; gap: 12px; padding: 11px 16px; background: #075e54; color: #fff; }
.wa__bar-avatar { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.wa__bar-info { flex: 1; min-width: 0; display: flex; flex-direction: column; line-height: 1.25; }
.wa__bar-info strong { font-size: 0.98rem; }
.wa__bar-info span { font-size: 0.76rem; color: rgba(255, 255, 255, 0.72); }
.wa__bar-dots { fill: rgba(255, 255, 255, 0.8); flex-shrink: 0; }
.wa__thread { padding: 20px 14px; background-color: #e3ddd3; background-image: radial-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px); background-size: 22px 22px; }
.wa-msg { display: flex; align-items: flex-end; gap: 8px; margin-bottom: 10px; }
.wa-msg:last-child { margin-bottom: 0; }
.wa-msg--cont { padding-left: 42px; }
.wa-msg__avatar { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; flex-shrink: 0; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); }
.wa-bubble { position: relative; flex: 1; min-width: 0; max-width: 340px; background: #d9fdd3; color: #111b21; border-radius: 10px 10px 10px 10px; padding: 9px 11px 6px; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.16); }
.wa-msg:not(.wa-msg--cont) .wa-bubble { border-top-left-radius: 2px; }
.wa-msg:not(.wa-msg--cont) .wa-bubble::before { content: ""; position: absolute; top: 0; left: -7px; border-width: 0 8px 8px 0; border-style: solid; border-color: transparent #d9fdd3 transparent transparent; }
.wa-player { display: flex; align-items: center; gap: 11px; }
.wa-player__play { flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: #00a884; color: #fff; box-shadow: 0 2px 6px rgba(0, 168, 132, 0.4); transition: transform 0.2s var(--ease), background 0.2s; }
.wa-player__play:hover { transform: scale(1.05); background: #029c7c; }
.wa-ico--play { margin-left: 3px; }
.wa-player__main { flex: 1; min-width: 0; }
.wa-player__track { position: relative; height: 4px; border-radius: 4px; background: rgba(0, 0, 0, 0.15); cursor: pointer; margin: 10px 0 2px; }
.wa-player__track:focus-visible { outline: 2px solid #00a884; outline-offset: 4px; }
.wa-player__played { height: 100%; width: 0; border-radius: 4px; background: #00a884; }
.wa-player__knob { position: absolute; top: 50%; left: 0; width: 13px; height: 13px; border-radius: 50%; background: #00a884; transform: translate(-50%, -50%); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35); }
.wa-player__meta { margin-top: 5px; }
.wa-time { font-size: 0.74rem; color: #667781; font-variant-numeric: tabular-nums; }
.wa-bubble__stamp { display: flex; align-items: center; justify-content: flex-end; gap: 3px; margin-top: 1px; font-size: 0.64rem; color: #667781; }
.wa-bubble__stamp svg { color: #53bdeb; }

/* ===== Pricing (single package) ===== */
.offer-plan { position: relative; max-width: 440px; margin: 0 auto; padding: 40px 32px 30px; border-radius: var(--r-xl); border: 1px solid rgba(255, 126, 163, 0.4); background: linear-gradient(180deg, rgba(255, 126, 163, 0.1), rgba(155, 140, 255, 0.05)); box-shadow: var(--shadow-glow); text-align: center; overflow: hidden; }
.offer-plan__discount { position: absolute; top: 18px; right: 18px; background: var(--grad); color: #2a1420; font-weight: 800; font-size: 0.92rem; padding: 6px 12px; border-radius: 100px; box-shadow: var(--shadow-sm); }
.offer-plan__badge { display: inline-flex; align-items: center; gap: 6px; padding: 7px 16px; border-radius: 100px; border: 1px solid var(--line-strong); background: rgba(255, 255, 255, 0.04); color: var(--gold); font-size: 0.76rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
.offer-plan__badge svg { color: var(--gold); }
.offer-plan__name { font-family: var(--font-display); font-size: clamp(1.9rem, 4.4vw, 2.5rem); font-weight: 700; margin-top: 18px; }
.offer-plan__sub { color: var(--muted); text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.76rem; margin-top: 4px; }
.offer-plan__price { margin: 22px 0; }
.offer-plan__old { display: block; color: var(--muted); text-decoration: line-through; font-size: 1.05rem; }
.offer-plan__now { display: flex; align-items: flex-start; justify-content: center; gap: 5px; font-family: var(--font-display); margin-top: 4px; }
.offer-plan__cur { font-size: 1.7rem; margin-top: 12px; color: var(--text-soft); }
.offer-plan__val { font-size: clamp(3.6rem, 10vw, 4.6rem); font-weight: 700; line-height: 0.9; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.offer-plan__once { display: block; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.72rem; margin-top: 8px; }
.offer-plan__gift { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 12px 16px; border-radius: 12px; border: 1px dashed rgba(244, 208, 160, 0.55); background: rgba(244, 208, 160, 0.08); color: var(--text); font-size: 0.95rem; margin-bottom: 26px; }
.offer-plan__gift svg { color: var(--gold); flex-shrink: 0; }
.offer-plan__gift b { color: var(--rose); }
.offer-plan__list { list-style: none; text-align: left; display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.offer-plan__list li { position: relative; padding-left: 32px; color: var(--text-soft); font-size: 1rem; }
.offer-plan__list li::before { content: "✓"; position: absolute; left: 0; top: -1px; width: 22px; height: 22px; border-radius: 50%; background: rgba(37, 211, 102, 0.18); color: #46e089; font-size: 0.72rem; display: grid; place-items: center; font-weight: 800; }
.offer-plan__bonus { display: inline-block; margin-left: 6px; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gold); }
.offer-plan__secure { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 16px; color: var(--muted); font-size: 0.85rem; }
.offer-plan__secure svg { color: #46e089; }
.offer-plan__foot { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--line); text-align: left; }
.offer-plan__foot-item { display: flex; align-items: flex-start; gap: 10px; }
.offer-plan__foot-item svg { color: var(--rose); flex-shrink: 0; margin-top: 2px; }
.offer-plan__foot-item strong { display: block; font-size: 0.9rem; }
.offer-plan__foot-item span { font-size: 0.8rem; color: var(--muted); }

/* ===== Guarantee ===== */
.guarantee { display: flex; align-items: center; gap: 34px; padding: clamp(30px, 5vw, 52px); border-radius: var(--r-xl); border: 1px solid var(--line-strong); background: linear-gradient(120deg, rgba(255, 126, 163, 0.07), rgba(244, 208, 160, 0.05)); }
.guarantee h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 600; margin-bottom: 10px; }
.guarantee p { color: var(--text-soft); max-width: 62ch; }
.guarantee__seal { flex-shrink: 0; width: 128px; height: 128px; border-radius: 50%; display: grid; place-items: center; text-align: center; background: var(--grad); color: #2a1420; box-shadow: var(--shadow-glow); border: 4px solid rgba(255,255,255,0.2); }
.guarantee__seal span { font-family: var(--font-display); font-size: 3rem; font-weight: 700; line-height: 0.8; }
.guarantee__seal small { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }

/* ===== FAQ ===== */
.faq { display: flex; flex-direction: column; gap: 14px; }
.faq__item { border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); overflow: hidden; transition: border-color 0.3s; }
.faq__item[open] { border-color: var(--line-strong); }
.faq__item summary { list-style: none; cursor: pointer; padding: 22px 24px; font-weight: 600; font-size: 1.08rem; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-size: 1.5rem; color: var(--rose); font-weight: 400; transition: transform 0.3s var(--ease); flex-shrink: 0; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__body { padding: 0 24px 22px; color: var(--text-soft); }

/* ===== Final CTA ===== */
.final-cta__card { position: relative; padding: clamp(44px, 7vw, 80px) clamp(24px, 5vw, 60px); border-radius: var(--r-xl); border: 1px solid var(--line-strong); background: linear-gradient(140deg, rgba(255, 126, 163, 0.12), rgba(155, 140, 255, 0.08)); overflow: hidden; }
.final-cta__card::before { content: ""; position: absolute; inset: -40% 30% auto; height: 60%; background: radial-gradient(closest-side, rgba(255, 126, 163, 0.35), transparent); filter: blur(30px); }
.final-cta__card > * { position: relative; }
.final-cta__title { font-family: var(--font-display); font-weight: 600; font-size: clamp(2rem, 4.6vw, 3.2rem); line-height: 1.1; margin: 20px 0 6px; }
.final-cta__card .btn { margin-top: 30px; }
.final-cta__mini { margin-top: 22px; font-size: 0.92rem; }

/* ===== Footer ===== */
.footer { border-top: 1px solid var(--line); padding: 60px 0 30px; background: rgba(255, 255, 255, 0.012); }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer__brand .brand { margin-bottom: 14px; }
.footer__brand p { max-width: 34ch; }
.footer__col h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 16px; }
.footer__col a { display: block; color: var(--text-soft); padding: 6px 0; transition: color 0.25s; }
.footer__col a:hover { color: var(--rose); }
.footer__bottom { display: flex; justify-content: space-between; padding-top: 28px; border-top: 1px solid var(--line); font-size: 0.88rem; gap: 12px; flex-wrap: wrap; }

/* ===== Floating mobile CTA ===== */
.float-cta { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90; display: none; justify-content: center; padding: 16px; border-radius: 100px; background: var(--grad); color: #2a1420; font-weight: 700; font-size: 1rem; box-shadow: 0 12px 40px rgba(255, 126, 163, 0.5); transform: translateY(140%); transition: transform 0.45s var(--ease); }
.float-cta.is-visible { transform: translateY(0); }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@keyframes fadeUp { to { opacity: 1; transform: none; } }

/* ===== Modal / Wizard ===== */
.modal { position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center; padding: 20px; visibility: hidden; opacity: 0; transition: opacity 0.35s, visibility 0.35s; }
.modal.is-open { visibility: visible; opacity: 1; }
.modal__overlay { position: absolute; inset: 0; background: rgba(6, 4, 10, 0.75); backdrop-filter: blur(8px); }
.modal__panel { position: relative; width: 100%; max-width: 560px; max-height: 92vh; overflow-y: auto; background: linear-gradient(180deg, var(--surface-2), var(--surface)); border: 1px solid var(--line-strong); border-radius: var(--r-xl); box-shadow: var(--shadow); transform: translateY(24px) scale(0.98); transition: transform 0.4s var(--ease); scrollbar-width: thin; }
.modal.is-open .modal__panel { transform: none; }
.modal__panel::-webkit-scrollbar { width: 8px; }
.modal__panel::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 8px; }
.modal__close { position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.05); border: 1px solid var(--line); font-size: 1rem; z-index: 3; transition: background 0.25s, transform 0.25s; }
.modal__close:hover { background: rgba(255, 126, 163, 0.15); transform: rotate(90deg); }

.wizard { padding: clamp(26px, 4vw, 40px); }
.wizard__head { margin-bottom: 24px; }
.wizard__title { font-family: var(--font-display); font-size: clamp(1.5rem, 3.5vw, 2rem); font-weight: 600; }
.wizard__sub { color: var(--muted); font-size: 0.95rem; margin-top: 6px; }
.wizard__progress { height: 6px; border-radius: 6px; background: rgba(255,255,255,0.07); margin: 20px 0 10px; overflow: hidden; }
.wizard__bar { height: 100%; width: 14%; border-radius: 6px; background: var(--grad); transition: width 0.5s var(--ease); }
.wizard__stepinfo { font-size: 0.85rem; color: var(--muted); }
.wizard__stepinfo span { color: var(--text-soft); }

.wizard__step { display: none; border: none; animation: stepIn 0.45s var(--ease); }
.wizard__step.is-active { display: block; }
@keyframes stepIn { from { opacity: 0; transform: translateX(16px); } to { opacity: 1; transform: none; } }

.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: 0.95rem; margin-bottom: 8px; }
.field__hint { display: block; font-size: 0.82rem; color: var(--muted); margin-top: 6px; }
.field input[type="text"], .field input[type="email"], .field textarea {
  width: 100%; padding: 14px 16px; border-radius: var(--r-sm); background: rgba(0,0,0,0.25); border: 1px solid var(--line-strong); color: var(--text); font-size: 1rem; transition: border-color 0.25s, box-shadow 0.25s; resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: #6f6580; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--rose); box-shadow: 0 0 0 3px rgba(255, 126, 163, 0.15); }
.field input.is-error, .field textarea.is-error { border-color: #ff6b6b; box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.14); }

.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { padding: 10px 18px; border-radius: 100px; border: 1px solid var(--line-strong); background: rgba(255,255,255,0.03); font-size: 0.92rem; font-weight: 500; color: var(--text-soft); transition: all 0.25s var(--ease); }
.chip:hover { border-color: var(--rose); color: var(--text); }
.chip.is-selected { background: var(--grad); color: #2a1420; border-color: transparent; font-weight: 700; box-shadow: var(--shadow-sm); }

.range { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 6px; background: linear-gradient(90deg, var(--rose), var(--gold)); outline: none; }
.range::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-sm); cursor: pointer; border: 3px solid var(--rose); }
.range::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: #fff; cursor: pointer; border: 3px solid var(--rose); }
.range__labels { display: flex; justify-content: space-between; margin-top: 10px; font-size: 0.78rem; color: var(--muted); }
.range__labels span:nth-child(2) { color: var(--rose); font-weight: 600; }

.review { border: 1px solid var(--line); border-radius: var(--r); padding: 20px 22px; background: rgba(0,0,0,0.2); margin-bottom: 18px; }
.review h3 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 14px; }
.review__content { display: flex; flex-direction: column; gap: 10px; }
.review__row { display: flex; gap: 10px; font-size: 0.92rem; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.review__row:last-child { border-bottom: none; padding-bottom: 0; }
.review__row strong { flex: 0 0 130px; color: var(--muted); font-weight: 600; }
.review__row span { color: var(--text-soft); word-break: break-word; }
.wizard__nextnote { font-size: 0.88rem; color: var(--muted); margin-top: 6px; }
.wizard__nextnote strong { color: var(--gold); }

.wizard__error { color: #ff8f8f; font-size: 0.9rem; min-height: 20px; margin: 6px 0; }
.wizard__nav { display: flex; gap: 12px; margin-top: 24px; }
.wizard__nav .btn { flex: 1; }
.wizard__nav .btn--ghost:disabled { opacity: 0.4; cursor: not-allowed; }

.wizard__success { text-align: center; padding: 20px 6px; animation: stepIn 0.5s var(--ease); }
.wizard__success-icon { width: 84px; height: 84px; border-radius: 50%; background: var(--grad); color: #fff; font-size: 2.4rem; display: grid; place-items: center; margin: 0 auto 22px; box-shadow: var(--shadow-glow); animation: pop 0.6s var(--ease); }
@keyframes pop { 0% { transform: scale(0); } 60% { transform: scale(1.15); } 100% { transform: scale(1); } }
.wizard__success h2 { font-family: var(--font-display); font-size: 1.7rem; margin-bottom: 12px; }
.wizard__success p { color: var(--text-soft); margin-bottom: 12px; }
.wizard__success .btn { margin-top: 14px; }

/* ===== Toast ===== */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translate(-50%, 140%); background: var(--surface-2); border: 1px solid var(--line-strong); color: var(--text); padding: 14px 22px; border-radius: 100px; box-shadow: var(--shadow); z-index: 400; font-size: 0.95rem; transition: transform 0.4s var(--ease); max-width: 90vw; }
.toast.is-visible { transform: translate(-50%, 0); }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .nav, .header__cta { display: none; }
  .nav-toggle { display: flex; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { width: 100%; max-width: 440px; margin: 10px auto 0; order: -1; justify-self: center; }
  .story__inner { grid-template-columns: 1fr; }
  .story__art { max-width: 320px; margin: 0 auto; }
  .steps, .bento, .styles { grid-template-columns: 1fr 1fr; }
  .bento__card--wide { grid-column: span 2; }
  .stats { grid-template-columns: 1fr 1fr; gap: 30px 20px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
}

@media (max-width: 620px) {
  .container { padding: 0 18px; }
  .hero { padding-top: 118px; }
  .hero__actions .btn { width: 100%; }
  .offer-card { width: 100%; }
  .steps, .bento, .styles { grid-template-columns: 1fr; }
  .bento__card--wide { grid-column: span 1; }
  .offer-plan { padding: 34px 22px 26px; }
  .offer-plan__foot { grid-template-columns: 1fr; gap: 14px; }
  .audio-explainer { flex-direction: column; align-items: stretch; text-align: center; padding: 22px; }
  .audio-explainer__play { margin: 0 auto; }
  .audio-explainer__head { justify-content: center; text-align: center; }
  .guarantee { flex-direction: column; text-align: center; }
  .guarantee p { max-width: none; }
  .float-cta { display: flex; }
  .floating-card { display: none; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .marquee__track { animation-duration: 22s; }
  .story__note { display: none; }
}

@media (max-width: 400px) {
  .floating-card { padding: 9px 12px; }
  .floating-card strong { font-size: 0.82rem; }
}
