:root {
    --bg: #1a0610;
    --bg-deep: #0f030a;
    --bg-surface: #2a0a14;
    --bg-card: rgba(255, 255, 255, 0.04);
    --line: rgba(255, 255, 255, 0.08);
    --line-hot: rgba(236, 72, 153, 0.5);
    --text: #fdf2f8;
    --text-soft: rgba(253, 242, 248, 0.72);
    --text-faint: rgba(253, 242, 248, 0.45);
    --pink: #ec4899;
    --pink-bright: #ff3a8a;
    --magenta: #d946ef;
    --violet: #8b5cf6;
    --grad: linear-gradient(135deg, #ec4899 0%, #d946ef 50%, #8b5cf6 100%);
    --grad-soft: linear-gradient(135deg, rgba(236, 72, 153, 0.16) 0%, rgba(139, 92, 246, 0.16) 100%);
    --display: "Manrope", system-ui, sans-serif;
    --r-sm: 12px;
    --r: 22px;
    --r-lg: 32px;
    --r-pill: 999px;
    --shadow-pink: 0 14px 44px rgba(236, 72, 153, 0.45);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--display);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.bg-aura {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 60% 40% at 30% 0%, rgba(236, 72, 153, 0.28) 0%, transparent 60%),
        radial-gradient(ellipse 70% 50% at 90% 60%, rgba(139, 92, 246, 0.18) 0%, transparent 65%),
        radial-gradient(ellipse 100% 60% at 50% 100%, rgba(217, 70, 239, 0.16) 0%, transparent 60%),
        var(--bg);
}
header, main, footer { position: relative; z-index: 1; }
.grad {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.head {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(15, 3, 10, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
}
.head.scrolled { background: rgba(15, 3, 10, 0.95); }
.head-in {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 1.6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.6rem;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: -0.01em;
}
.brand em {
    font-style: normal;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
}
.p-mark {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: var(--grad);
    display: grid;
    place-items: center;
    color: white;
    font-family: var(--display);
    font-weight: 800;
    font-style: italic;
    box-shadow: 0 6px 18px rgba(236, 72, 153, 0.5);
}
.head-nav {
    display: flex;
    gap: 2rem;
    color: var(--text-soft);
    font-size: 0.92rem;
    font-weight: 500;
}
.head-nav a:hover { color: var(--pink-bright); }
.head-cta {
    background: var(--grad);
    color: white;
    padding: 0.6rem 1.4rem;
    border-radius: var(--r-pill);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.head-cta:hover { transform: translateY(-1px); box-shadow: 0 12px 32px rgba(236, 72, 153, 0.6); }

.dot-tag {
    display: inline-block;
    color: var(--pink-bright);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 1.4rem;
}

.lead {
    max-width: 1080px;
    margin: 0 auto;
    padding: 6rem 1.6rem 5rem;
    text-align: center;
}
.bubble {
    display: inline-block;
    background: var(--grad-soft);
    border: 1px solid var(--line-hot);
    color: var(--pink-bright);
    padding: 0.45rem 1rem;
    border-radius: var(--r-pill);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.8rem;
    backdrop-filter: blur(8px);
}
.lead h1 {
    font-size: clamp(2.6rem, 6.5vw, 5.8rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    margin: 0 0 1.4rem;
}
.lead-sub {
    color: var(--text-soft);
    max-width: 580px;
    font-size: 1.15rem;
    margin: 0 auto 2.4rem;
}
.lead-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3.2rem;
}
.cta-grad, .cta-soft {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: var(--r-pill);
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    border: none;
    cursor: pointer;
    letter-spacing: 0.01em;
}
.cta-grad {
    background: var(--grad);
    color: white;
    box-shadow: var(--shadow-pink);
}
.cta-grad:hover { transform: translateY(-3px); box-shadow: 0 22px 56px rgba(236, 72, 153, 0.6); }
.cta-soft {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    border: 1px solid var(--line-hot);
    backdrop-filter: blur(8px);
}
.cta-soft:hover { background: rgba(255, 255, 255, 0.1); }
.cta-big { padding: 1.2rem 2.6rem; font-size: 1.1rem; }
.full { width: 100%; }

.strip-pix {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    padding: 2rem 0 0;
    border-top: 1px solid var(--line);
    max-width: 720px;
    margin: 0 auto;
}
.strip-pix div { text-align: center; }
.strip-pix strong {
    display: block;
    font-size: 1.7rem;
    font-weight: 800;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.strip-pix span {
    color: var(--text-faint);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.muses { max-width: 1280px; margin: 0 auto; padding: 6rem 1.6rem; }
.muses-head { text-align: center; margin-bottom: 3.5rem; }
.muses-head h2 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0 0 0.8rem;
}
.muses-head p { color: var(--text-soft); margin: 0; font-size: 1.05rem; }
.muse-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}
@media (max-width: 900px) { .muse-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .muse-grid { grid-template-columns: 1fr; } }
.muse {
    display: block;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 0.8rem 0.8rem 1.4rem;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(6px);
}
.muse:hover {
    transform: translateY(-6px);
    border-color: var(--pink);
    box-shadow: 0 22px 50px rgba(236, 72, 153, 0.25);
}
.muse-img {
    aspect-ratio: 9 / 16;
    border-radius: 16px;
    background-size: cover;
    background-position: center top;
    background-color: var(--bg-deep);
    transition: transform 0.45s ease;
}
.muse:hover .muse-img { transform: scale(1.03); }
.muse-line {
    margin: 1rem 0.4rem 0.4rem;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}
.muse-line h3 { margin: 0; font-size: 1.2rem; font-weight: 700; letter-spacing: -0.01em; }
.muse-age {
    color: var(--pink-bright);
    background: rgba(236, 72, 153, 0.15);
    padding: 0.18rem 0.55rem;
    border-radius: var(--r-pill);
    font-size: 0.78rem;
    font-weight: 700;
}
.muse p {
    margin: 0 0.4rem;
    color: var(--text-soft);
    font-size: 0.92rem;
}
.muses-cta { text-align: center; margin-top: 3rem; }

.magic { max-width: 1280px; margin: 0 auto; padding: 6rem 1.6rem; }
.magic-head { text-align: center; margin-bottom: 3.5rem; }
.magic-head h2 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0;
}
.magic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.4rem;
}
.magic-grid article {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 2rem 1.6rem;
    transition: border-color 0.3s ease, transform 0.3s ease;
    backdrop-filter: blur(6px);
}
.magic-grid article:hover { border-color: var(--pink); transform: translateY(-3px); }
.ico {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--grad);
    color: white;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.35);
}
.magic-grid h3 {
    margin: 0 0 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.magic-grid p {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.94rem;
}

.vid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 6rem 1.6rem;
}
.vid-head { text-align: center; margin-bottom: 3rem; }
.vid-head h2 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0 0 1rem;
}
.vid-head p {
    color: var(--text-soft);
    max-width: 580px;
    margin: 0 auto 2rem;
    font-size: 1.05rem;
}
.vid-mocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.2rem;
    align-items: end;
}
.mock {
    aspect-ratio: 9 / 16;
    border-radius: var(--r);
    overflow: hidden;
    border: 2px solid var(--line);
    background: var(--bg-deep);
    transition: transform 0.35s ease, border-color 0.35s ease;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}
.mock:hover { transform: translateY(-6px); border-color: var(--pink); }
.mock img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.mock-tall { transform: translateY(-20px); }

.prc { max-width: 1280px; margin: 0 auto; padding: 6rem 1.6rem; }
.prc-head { text-align: center; margin-bottom: 3.5rem; }
.prc-head h2 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0;
}
.prc-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.4rem;
    align-items: stretch;
}
.prc-card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 2.2rem 1.8rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    position: relative;
    backdrop-filter: blur(6px);
}
.prc-card h3 {
    margin: 0 0 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}
.prc-amt {
    font-size: 2.6rem;
    font-weight: 800;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1.4rem;
}
.prc-amt small {
    font-size: 0.85rem;
    color: var(--text-faint);
    -webkit-text-fill-color: var(--text-faint);
    margin-left: 0.3rem;
    font-weight: 500;
}
.prc-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.8rem;
    text-align: left;
    color: var(--text-soft);
    font-size: 0.95rem;
    flex-grow: 1;
}
.prc-card li {
    padding: 0.55rem 0;
    border-bottom: 1px dashed var(--line);
}
.prc-card li:last-child { border-bottom: none; }
.prc-card li::before { content: "✦"; color: var(--pink-bright); margin-right: 0.5rem; }
.prc-best {
    border-color: var(--pink);
    background: linear-gradient(180deg, rgba(236, 72, 153, 0.08), var(--bg-card));
    transform: translateY(-12px);
    box-shadow: 0 22px 50px rgba(236, 72, 153, 0.25);
}
.prc-flag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--grad);
    color: white;
    padding: 0.35rem 1rem;
    border-radius: var(--r-pill);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    box-shadow: 0 8px 22px rgba(236, 72, 153, 0.5);
}

.qf { max-width: 820px; margin: 0 auto; padding: 6rem 1.6rem; }
.qf-head { text-align: center; margin-bottom: 3rem; }
.qf-head h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.02em;
}
.qf-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.qf-list details {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
    transition: border-color 0.2s ease;
    backdrop-filter: blur(6px);
}
.qf-list details[open] { border-color: var(--pink); }
.qf-list summary {
    list-style: none;
    cursor: pointer;
    padding: 1.15rem 1.4rem;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.qf-list summary::-webkit-details-marker { display: none; }
.qf-list summary::after {
    content: "+";
    font-size: 1.4rem;
    color: var(--pink-bright);
    line-height: 1;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}
.qf-list details[open] summary::after { transform: rotate(45deg); }
.qf-list p {
    margin: 0;
    padding: 0 1.4rem 1.4rem;
    color: var(--text-soft);
    font-size: 0.93rem;
    line-height: 1.6;
}

.last-pix {
    text-align: center;
    padding: 7rem 1.6rem 8rem;
    position: relative;
    overflow: hidden;
}
.last-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.18) 0%, transparent 60%);
    filter: blur(60px);
    pointer-events: none;
}
.last-pix h2 {
    position: relative;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0 0 2.4rem;
}
.last-pix .cta-grad { position: relative; }

.foot-pix {
    background: var(--bg-deep);
    padding: 3rem 1.6rem 2rem;
    border-top: 1px solid var(--line);
    text-align: center;
}
.foot-in { max-width: 1280px; margin: 0 auto; }
.foot-pix .brand { display: inline-flex; font-size: 1.3rem; }
.foot-pix p {
    color: var(--text-soft);
    margin: 0.6rem auto 1.4rem;
    max-width: 460px;
    font-size: 0.94rem;
}
.foot-cc {
    display: flex;
    gap: 1.6rem;
    justify-content: center;
    margin-bottom: 1.4rem;
    color: var(--text-faint);
    font-size: 0.9rem;
    font-weight: 600;
}
.foot-cc a {
    transition: color 0.2s ease;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}
.foot-cc a:hover { color: var(--pink-bright); border-color: var(--pink-bright); }
.foot-cp { color: var(--text-faint); font-size: 0.78rem; margin: 0; line-height: 1.6; }

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

@media (max-width: 880px) {
    .head-nav { display: none; }
    .prc-best { transform: none; }
    .mock-tall { transform: none; }
}
