:root {
    --bg: #0e0820;
    --bg-deep: #07041a;
    --bg-tinted: #150a30;
    --surface: rgba(255, 255, 255, 0.04);
    --surface-strong: rgba(255, 255, 255, 0.08);
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(232, 121, 249, 0.35);
    --text: #f5edff;
    --text-soft: #b8a8d4;
    --text-faint: #8071a8;
    --primary: #c084fc;
    --primary-strong: #a855f7;
    --pink: #e879f9;
    --pink-hot: #ec4899;
    --grad: linear-gradient(135deg, #ec4899 0%, #a855f7 50%, #6366f1 100%);
    --grad-soft: linear-gradient(135deg, rgba(236, 72, 153, 0.18) 0%, rgba(168, 85, 247, 0.18) 100%);
    --radius-sm: 14px;
    --radius: 22px;
    --radius-lg: 28px;
    --shadow-glow: 0 0 60px rgba(232, 121, 249, 0.25);
    --shadow-card: 0 18px 50px rgba(7, 4, 26, 0.6);
    --font: "Outfit", "Segoe UI", system-ui, sans-serif;
}

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

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    background-image:
        radial-gradient(ellipse at 20% -10%, rgba(232, 121, 249, 0.18), transparent 50%),
        radial-gradient(ellipse at 90% 20%, rgba(99, 102, 241, 0.15), transparent 55%),
        radial-gradient(ellipse at 50% 100%, rgba(168, 85, 247, 0.12), transparent 55%);
}

a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(20px);
    background: rgba(14, 8, 32, 0.7);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s ease;
}
.site-header.scrolled { background: rgba(7, 4, 26, 0.92); }

.nav {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.logo {
    font-weight: 900;
    font-size: 1.4rem;
    letter-spacing: -0.02em;
    color: var(--text);
}
.logo span {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.nav-links {
    display: flex;
    gap: 2rem;
    font-weight: 500;
    color: var(--text-soft);
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
    padding: 0.6rem 1.4rem;
    border-radius: 999px;
    background: var(--grad);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 8px 24px rgba(232, 121, 249, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 12px 32px rgba(232, 121, 249, 0.5); }

.hero {
    position: relative;
    padding: 6rem 1.5rem 5rem;
    text-align: center;
    overflow: hidden;
}
.hero-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(232, 121, 249, 0.25) 0%, transparent 60%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
    animation: float 12s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-30px); }
}
.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 880px;
    margin: 0 auto;
}
.hero-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: var(--grad-soft);
    border: 1px solid var(--border-strong);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--pink);
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}
.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.8rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin: 0 0 1.5rem;
}
.hero-sub {
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    color: var(--text-soft);
    max-width: 640px;
    margin: 0 auto 2.5rem;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}
.hero-stats div { display: flex; flex-direction: column; align-items: center; }
.hero-stats strong {
    font-size: 2rem;
    font-weight: 800;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-stats span { color: var(--text-faint); font-size: 0.85rem; letter-spacing: 0.05em; text-transform: uppercase; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 2rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    letter-spacing: 0.01em;
}
.btn-primary {
    background: var(--grad);
    color: white;
    box-shadow: 0 12px 32px rgba(232, 121, 249, 0.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 44px rgba(232, 121, 249, 0.55);
}
.btn-ghost {
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--border-strong);
    backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: var(--surface-strong); }
.btn-lg { padding: 1.2rem 2.6rem; font-size: 1.1rem; }

.section {
    padding: 6rem 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
}
.section-tinted {
    max-width: none;
    background: linear-gradient(180deg, transparent, var(--bg-tinted) 30%, var(--bg-tinted) 70%, transparent);
    margin: 0;
}
.section-tinted > .section-head,
.section-tinted > .feature-grid,
.section-tinted > .pricing-grid { max-width: 1280px; margin-left: auto; margin-right: auto; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 4rem; }
.kicker {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--pink);
    font-weight: 700;
    margin-bottom: 1rem;
}
.section-head h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.section-head p { color: var(--text-soft); font-size: 1.1rem; margin: 0; }
.section-cta { text-align: center; margin-top: 3rem; }

.char-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 900px) { .char-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .char-grid { grid-template-columns: 1fr; } }
.char-card {
    display: block;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: var(--shadow-card);
}
.char-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-strong);
    box-shadow: 0 24px 60px rgba(232, 121, 249, 0.25);
}
.char-media {
    aspect-ratio: 9 / 16;
    width: 100%;
    background: var(--bg-deep);
    overflow: hidden;
}
.char-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}
.char-card:hover .char-media img { transform: scale(1.04); }
.char-meta { padding: 1.2rem 1.4rem 1.6rem; }
.char-meta h3 {
    margin: 0 0 0.4rem;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}
.age {
    font-size: 0.85rem;
    color: var(--text-faint);
    font-weight: 500;
}
.char-meta p {
    margin: 0 0 0.8rem;
    font-size: 0.92rem;
    color: var(--text-soft);
    line-height: 1.5;
}
.tag {
    display: inline-block;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.tag-anim { background: rgba(232, 121, 249, 0.15); color: var(--pink); }
.tag-real { background: rgba(99, 102, 241, 0.18); color: #a5b4fc; }

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.4rem;
}
.feature {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.6rem;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.feature:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
    background: var(--surface-strong);
}
.feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: var(--grad);
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.2rem;
    box-shadow: 0 8px 24px rgba(232, 121, 249, 0.35);
}
.feature h3 { margin: 0 0 0.6rem; font-size: 1.2rem; font-weight: 700; }
.feature p { margin: 0; color: var(--text-soft); font-size: 0.95rem; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}
.gallery-item {
    display: block;
    aspect-ratio: 9 / 16;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-deep);
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.gallery-item:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}
.price-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.4rem 1.8rem;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
}
.price-card h3 {
    margin: 0 0 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.price {
    margin-bottom: 1.6rem;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.3rem;
}
.amount {
    font-size: 2.6rem;
    font-weight: 900;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.per { color: var(--text-faint); font-size: 0.95rem; }
.price-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    text-align: left;
    color: var(--text-soft);
    font-size: 0.95rem;
    flex-grow: 1;
}
.price-card li {
    padding: 0.55rem 0;
    border-bottom: 1px dashed var(--border);
}
.price-card li:last-child { border-bottom: none; }
.price-card li::before {
    content: "✦";
    color: var(--pink);
    margin-right: 0.6rem;
}
.price-card .btn { width: 100%; }
.price-featured {
    background: var(--grad-soft);
    border: 2px solid var(--border-strong);
    transform: translateY(-12px);
    box-shadow: 0 24px 60px rgba(232, 121, 249, 0.3);
}
.ribbon {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--grad);
    padding: 0.35rem 1.2rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: white;
    box-shadow: 0 6px 18px rgba(232, 121, 249, 0.4);
}

.faq {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: border-color 0.3s ease, background 0.3s ease;
}
.faq-item[open] {
    border-color: var(--border-strong);
    background: var(--surface-strong);
}
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.2rem 1.4rem;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    font-size: 1.6rem;
    line-height: 1;
    color: var(--pink);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
    margin: 0;
    padding: 0 1.4rem 1.4rem;
    color: var(--text-soft);
    font-size: 0.95rem;
}

.cta-final {
    text-align: center;
    padding: 6rem 1.5rem;
    position: relative;
    overflow: hidden;
}
.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 121, 249, 0.18) 0%, transparent 60%);
    filter: blur(60px);
    pointer-events: none;
}
.cta-final h2 {
    position: relative;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}
.cta-final p {
    position: relative;
    color: var(--text-soft);
    margin: 0 0 2rem;
    font-size: 1.1rem;
}
.cta-final .btn { position: relative; }

.site-footer {
    background: var(--bg-deep);
    border-top: 1px solid var(--border);
    padding: 3rem 1.5rem 2rem;
}
.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}
.footer-brand .logo { font-size: 1.5rem; }
.footer-brand p {
    color: var(--text-soft);
    max-width: 480px;
    margin: 0.6rem auto 1.6rem;
    font-size: 0.95rem;
}
.footer-links {
    display: flex;
    gap: 1.6rem;
    justify-content: center;
    margin-bottom: 1.6rem;
    color: var(--text-faint);
    font-size: 0.9rem;
}
.footer-links a {
    transition: color 0.2s ease;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}
.footer-links a:hover { color: var(--pink); border-color: var(--pink); }
.footer-copy {
    color: var(--text-faint);
    font-size: 0.78rem;
    margin: 0;
    line-height: 1.6;
}

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 760px) {
    .nav-links { display: none; }
    .hero { padding: 4rem 1.25rem 3rem; }
    .hero-stats { gap: 1.6rem; }
    .section { padding: 4rem 1.25rem; }
    .section-head { margin-bottom: 2.5rem; }
    .price-featured { transform: none; }
}
