:root {
    /* Colors */
    --primary-pink: #FF007F;
    /* The core brand color */
    --primary-soft: #FF66B2;
    /* Softer pink for gradients */
    --accent-pastel: #FFF0F5;
    /* Very light pastel background tint */
    --bg-white: #FFFFFF;
    --text-main: #1A1A1A;
    /* Almost black */
    --text-muted: #666666;
    --glass-border: rgba(255, 255, 255, 0.4);

    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(255, 0, 127, 0.05);
    --shadow-lg: 0 20px 40px -10px rgba(255, 0, 127, 0.15);
    --glow: 0 0 80px rgba(255, 0, 127, 0.3);

    /* Fonts */
    --font-display: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Layout */
    --container-width: 1200px;
    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-white);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    min-height: 100vh;
    cursor: none;
    /* Hide default cursor for custom trail later */
}

/* --- UTILITIES --- */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-pink) 0%, #FF85C2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-pink);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    border: none;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 20px -5px rgba(255, 0, 127, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 20px 30px -8px rgba(255, 0, 127, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    padding: 0.8rem 1.5rem;
    border-radius: 100px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-family: var(--font-display);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--primary-pink);
    color: var(--primary-pink);
}

/* --- HERO SECTION --- */
#hero-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 10;
    background: radial-gradient(circle at 50% 50%, #FFFAFC 0%, #FFFFFF 60%);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    z-index: 2;
    position: relative;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 0, 127, 0.08);
    border-radius: 50px;
    color: var(--primary-pink);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 0, 127, 0.1);
}

.dot {
    width: 8px;
    height: 8px;
    background: var(--primary-pink);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-pink);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--primary-pink);
    letter-spacing: -0.03em;
}

/* Background Decoration */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: 1;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--accent-pastel);
    top: -200px;
    right: -100px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: #FFF5F9;
    bottom: -100px;
    left: -100px;
}

/* --- EXPLORE SECTION --- */
#explore-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease, transform 0.8s ease;
    transform: translateY(20px);
}

body.explore-active #explore-section {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

body.explore-active #hero-section {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
}


/* --- WAITLIST SECTION --- */
#waitlist-container {
    margin-top: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.waitlist-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    font-weight: 500;
}

#waitlist-form {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.waitlist-input {
    padding: 1rem 1.5rem;
    border-radius: 100px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-family: var(--font-body);
    font-size: 1rem;
    width: 60%;
    outline: none;
    transition: all 0.3s ease;
}

.waitlist-input:focus {
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 4px rgba(255, 0, 127, 0.1);
}

#success-message {
    margin-top: 2rem;
    animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

#success-message h3 {
    font-family: var(--font-display);
    color: var(--primary-pink);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- STATES --- */
body.app-active #hero-section {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
}

body.app-active #app-section {
    display: block;
    opacity: 1;
    pointer-events: all;
}

/* --- CURSOR --- */
body {
    cursor: default;
    /* Fallback */
}

/* --- CURSOR HEARTS --- */
.cursor-heart {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z' fill='%23FF007F'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    opacity: 0.8;
}

@keyframes floatUp {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -150%) scale(0.5);
        opacity: 0;
    }
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--text-main) 0%, var(--primary-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    /* Responsive */
    gap: 24px;
    justify-content: center;
}

.profile-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.profile-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card-image {
    height: 320px;
    background-size: cover;
    background-position: center;
    position: relative;
    width: 100%;
}

.card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-header h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.card-bio {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-actions {
    display: flex;
    gap: 10px;
}

.btn-action {
    flex: 1;
    padding: 12px;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font-display);
}

.btn-action.chat {
    background: var(--text-main);
    color: white;
}

.btn-action.leave {
    background: #FFF0F5;
    color: #FF007F;
}

.btn-action.leave:hover {
    background: #FFD1DC;
}

/* Fix for lint: background-clip standard property */
.text-gradient,
.section-title h2 {
    background-clip: text;
    /* Standard property */
}

/* --- ABOUT / EXPLORE REDESIGN --- */
.about-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    width: 100%;
}

/* Centered Text Styling */
.about-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-heading {
    text-align: center;
    margin-bottom: 2rem;
}

.about-description {
    text-align: center;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* Left Column */
.label-small {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--primary-pink);
    display: block;
    margin-bottom: 20px;
}

/* Duplicates consolidated above */

.about-description p {
    margin-bottom: 20px;
}

.mini-features {
    display: flex;
    flex-direction: row;
    /* Side by side */
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    /* Safe wrapping */
}

.mini-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    background: white;
    padding: 16px 24px;
    border-radius: 100px;
    /* Pill shape */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.mini-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 0, 127, 0.05);
    color: var(--primary-pink);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.mini-text {
    display: flex;
    flex-direction: column;
}

.mini-text strong {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text-main);
}

.mini-text span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Right Column (Card) */
/* Unused Right Column Styles Removed */

/* Waitlist Adjustments for layout */
#waitlist-container.aligned-left {
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
}

#waitlist-container.aligned-left #waitlist-form {
    justify-content: flex-start;
}

#waitlist-container.aligned-left .waitlist-text {
    text-align: left;
}

/* Responsive */
@media (max-width: 1100px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-text {
        text-align: center;
    }

    .about-description,
    .mini-features,
    #waitlist-container.aligned-left {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        align-items: center;
    }

    .mini-feature {
        justify-content: center;
        text-align: left;
    }

    #waitlist-container.aligned-left #waitlist-form {
        justify-content: center;
    }

    #waitlist-container.aligned-left .waitlist-text {
        text-align: center;
    }
}