/* masturbation.css */

:root {
    --bg: #08060d;
    --surface: #110d19;
    --surface-2: #181020;
    --pink: #ff4fa3;
    --pink-light: #ff9dce;
    --purple: #a879ff;
    --violet: #6d45c7;
    --white: #fff8fc;
    --muted: #c6b9c5;
    --border: rgba(255,255,255,.10);
    --shadow: 0 25px 80px rgba(0,0,0,.45);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 10% 10%, rgba(255,79,163,.16), transparent 28%),
        radial-gradient(circle at 90% 20%, rgba(168,121,255,.14), transparent 30%),
        var(--bg);
    color: var(--white);
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    line-height: 1.75;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}


/* HERO */

.hero {
    min-height: 760px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            135deg,
            rgba(255,79,163,.12),
            transparent 40%,
            rgba(168,121,255,.14)
        );
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .25;
    animation: floatOrb 9s ease-in-out infinite alternate;
}

.hero::before {
    background: var(--pink);
    top: -180px;
    left: -120px;
}

.hero::after {
    background: var(--purple);
    right: -150px;
    bottom: -160px;
    animation-delay: -4s;
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: min(1100px, calc(100% - 40px));
    text-align: center;
}

.eyebrow,
.section-kicker {
    color: var(--pink-light);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .28em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 20px 0;
    font-size: clamp(52px, 10vw, 120px);
    line-height: .95;
    letter-spacing: -.07em;
    font-weight: 900;
}

.hero h1 span {
    color: var(--pink);
}

.hero-lead {
    max-width: 760px;
    margin: 30px auto;
    color: var(--muted);
    font-size: clamp(17px, 2vw, 22px);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin: 35px 0;
}

.primary-button,
.secondary-button,
.app-button,
.premium-button,
.story-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 800;
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.primary-button {
    background: linear-gradient(135deg, #ff4fa3, #ff7bc0);
    color: #160813;
    box-shadow: 0 15px 40px rgba(255,79,163,.3);
}

.secondary-button {
    border: 1px solid var(--border);
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(20px);
}

.primary-button:hover,
.secondary-button:hover,
.app-button:hover,
.premium-button:hover,
.story-button:hover {
    transform: translateY(-4px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 55px;
}

.hero-stats div {
    min-width: 160px;
    padding: 18px 25px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.045);
    backdrop-filter: blur(18px);
    border-radius: 20px;
}

.hero-stats strong {
    display: block;
    color: var(--pink);
    font-size: 25px;
}

.hero-stats span {
    color: var(--muted);
    font-size: 13px;
}


/* GENERAL */

section {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 110px 0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 55px;
}

.section-heading.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-heading h2,
.story-intro h2,
.editorial-copy h2,
.app-card h2,
.premium-card h2,
.closing-section h2 {
    margin: 10px 0 20px;
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.05;
    letter-spacing: -.045em;
}

.section-heading p,
.story-intro p {
    color: var(--muted);
    font-size: 17px;
}


/* FEATURE CARDS */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.feature-card {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    border: 1px solid var(--border);
    background: var(--surface);
    box-shadow: var(--shadow);
    transition: transform .4s ease;
}

.feature-card:hover {
    transform: translateY(-10px) rotate(-.4deg);
}

.card-image {
    height: 340px;
    position: relative;
    overflow: hidden;
}

.card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10,6,14,.85),
        transparent 55%
    );
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.feature-card:hover .card-image img {
    transform: scale(1.07);
}

.floating-label {
    position: absolute;
    z-index: 2;
    right: 20px;
    top: 20px;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(15px);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
}

.card-content {
    padding: 35px;
}

.card-number {
    color: var(--pink);
    font-weight: 900;
}

.card-content h3 {
    margin: 5px 0 15px;
    font-size: 31px;
}

.card-content p {
    color: var(--muted);
}

.card-link {
    display: inline-block;
    margin-top: 12px;
    color: var(--pink-light);
    font-weight: 800;
}


/* STORIES */

.story-section {
    max-width: 1240px;
}

.story-intro {
    max-width: 760px;
    margin-bottom: 50px;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.story-card {
    position: relative;
    padding: 32px;
    min-height: 650px;
    border-radius: 30px;
    border: 1px solid var(--border);
    overflow: hidden;
    background:
        radial-gradient(circle at 100% 0%, rgba(255,79,163,.14), transparent 35%),
        var(--surface);
    transition: transform .35s ease;
}

.story-card:hover {
    transform: translateY(-8px);
}

.story-two {
    background:
        radial-gradient(circle at 0% 100%, rgba(168,121,255,.18), transparent 40%),
        var(--surface);
}

.story-three {
    background:
        radial-gradient(circle at 100% 100%, rgba(255,130,190,.12), transparent 40%),
        var(--surface);
}

.story-top {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: var(--pink-light);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .13em;
}

.story-card h3 {
    margin: 35px 0 18px;
    font-size: 30px;
    line-height: 1.1;
}

.story-card p {
    color: var(--muted);
    font-size: 15px;
}

.story-lead {
    color: var(--white) !important;
    font-size: 19px !important;
    font-weight: 700;
    font-style: italic;
}

.story-button {
    margin-top: 15px;
    border: 1px solid rgba(255,79,163,.35);
    background: rgba(255,79,163,.09);
    color: var(--pink-light);
}


/* GALLERY */

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr 1fr;
    gap: 20px;
    align-items: stretch;
}

.gallery-card {
    min-height: 440px;
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid var(--border);
}

.gallery-card.tall {
    min-height: 540px;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: auto 18px 18px;
    padding: 22px;
    border-radius: 20px;
    background: rgba(8,6,13,.72);
    backdrop-filter: blur(18px);
}

.gallery-overlay span {
    display: block;
    color: var(--pink-light);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .15em;
}

.gallery-overlay strong {
    font-size: 25px;
}


/* EDITORIAL */

.editorial-panel {
    display: grid;
    grid-template-columns: 1.4fr .8fr;
    gap: 45px;
    padding: 65px;
    border-radius: 40px;
    border: 1px solid var(--border);
    background:
        linear-gradient(
            135deg,
            rgba(255,79,163,.13),
            rgba(168,121,255,.08)
        );
    box-shadow: var(--shadow);
}

.editorial-copy p {
    color: var(--muted);
    font-size: 17px;
}

.editorial-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.editorial-links a {
    padding: 11px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,.07);
    border: 1px solid var(--border);
    font-weight: 800;
    transition: .25s ease;
}

.editorial-links a:hover {
    background: var(--pink);
    color: #160813;
}

.editorial-quote {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    border-left: 1px solid rgba(255,79,163,.35);
}

.editorial-quote span {
    font-size: 100px;
    line-height: .5;
    color: var(--pink);
}

.editorial-quote p {
    font-size: 25px;
    font-weight: 700;
    line-height: 1.4;
}

.editorial-quote small {
    color: var(--muted);
}


/* APP + PREMIUM */

.app-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.app-card,
.premium-card {
    padding: 40px;
    border-radius: 30px;
    border: 1px solid var(--border);
}

.app-card {
    background:
        linear-gradient(135deg, rgba(255,79,163,.14), rgba(255,79,163,.03));
}

.premium-card {
    background:
        linear-gradient(135deg, rgba(168,121,255,.16), rgba(168,121,255,.03));
}

.app-card p,
.premium-card p {
    color: var(--muted);
}

.app-button,
.premium-button {
    margin-top: 20px;
    background: rgba(255,255,255,.07);
    border: 1px solid var(--border);
}

.premium-button {
    color: var(--pink-light);
}


/* CLOSING */

.closing-section {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.closing-section p {
    max-width: 760px;
    margin: 0 auto 35px;
    color: var(--muted);
    font-size: 18px;
}

.closing-orb {
    width: 250px;
    height: 250px;
    position: absolute;
    left: 50%;
    top: 30%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: var(--pink);
    filter: blur(130px);
    opacity: .14;
    animation: breathe 5s ease-in-out infinite;
}

.closing-links {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.closing-links a {
    padding: 12px 20px;
    border-radius: 999px;
    background: rgba(255,255,255,.05);
    border: 1px solid var(--border);
    font-weight: 800;
    transition: .25s ease;
}

.closing-links a:hover {
    background: var(--pink);
    color: #160813;
    transform: translateY(-4px);
}


/* FOOTER */

footer {
    padding: 65px 20px;
    text-align: center;
    border-top: 1px solid var(--border);
    background: rgba(0,0,0,.25);
}

footer strong {
    color: var(--pink);
    font-size: 20px;
}

footer p {
    color: var(--muted);
    margin: 8px 0;
}


/* ANIMATION */

@keyframes floatOrb {
    from {
        transform: translate3d(0,0,0) scale(1);
    }

    to {
        transform: translate3d(60px,40px,0) scale(1.15);
    }
}

@keyframes breathe {
    0%, 100% {
        transform: translate(-50%, -50%) scale(.85);
        opacity: .10;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: .2;
    }
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .story-grid {
        grid-template-columns: 1fr;
    }

    .story-card {
        min-height: auto;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-card,
    .gallery-card.tall {
        min-height: 420px;
    }

    .editorial-panel {
        grid-template-columns: 1fr;
        padding: 40px;
    }

    .editorial-quote {
        border-left: 0;
        border-top: 1px solid rgba(255,79,163,.35);
        padding-top: 40px;
    }

    .app-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 650px) {

    section {
        width: min(100% - 24px, 1180px);
        padding: 75px 0;
    }

    .hero {
        min-height: 680px;
    }

    .hero-inner {
        width: calc(100% - 28px);
    }

    .hero-stats div {
        min-width: 130px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .card-image {
        height: 280px;
    }

    .story-card {
        padding: 25px;
    }

    .editorial-panel {
        padding: 28px;
        border-radius: 28px;
    }

    .app-card,
    .premium-card {
        padding: 30px;
    }
}