@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;500;700;900&display=swap');

:root {
    --pink-gradient: linear-gradient(180deg, #FF5E8E 0%, #FF8FB1 100%);
    --blue-gradient: linear-gradient(180deg, #33D7FF 0%, #87E9FF 100%);
    --pink-bg: #FF5E8E;
    --blue-bg: #33D7FF;
    --dark-grey: #2D3436;
    --white: #FFFFFF;
    --black: #000000;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--white);
    color: var(--black);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Layout */
.page-wrapper {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

.left-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    padding: 2rem;
}

.right-panel {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 5rem;
}

.headline {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 8vw, 10rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.05em;
    text-transform: uppercase;
}

/* Phone Mockup */
.phone-mockup {
    width: 320px;
    height: 650px;
    background: #000;
    border-radius: 40px;
    padding: 10px;
    position: relative;
    box-shadow: 0 50px 100px -20px rgba(0,0,0,0.25), 0 30px 60px -30px rgba(0,0,0,0.3);
    border: 4px solid #1a1a1a;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Screen Content */
.gender-split {
    flex: 1;
    display: flex;
    position: relative;
}

.split-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 2rem;
    position: relative;
}

.side-female {
    background-color: var(--pink-bg);
}

.side-male {
    background-color: var(--blue-bg);
}

.silhouette {
    width: 100%;
    height: auto;
    max-width: 180px;
    position: absolute;
    bottom: 20%;
    opacity: 0.4;
    pointer-events: none;
}

.gender-btn {
    background: var(--dark-grey);
    color: var(--white);
    border: none;
    padding: 10px 24px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    z-index: 10;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gender-btn:hover {
    transform: scale(1.1);
}

.bottom-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    text-align: center;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.05);
    margin-top: -24px;
    z-index: 20;
}

.welcome-text {
    margin-bottom: 2rem;
}

.welcome-text h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #444;
}

.welcome-text p {
    font-size: 0.9rem;
    color: #888;
    margin-top: 5px;
}

.logo {
    text-decoration: none;
    color: #535861;
    font-family: var(--font-heading);
    font-weight: 700;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo-container .logo {
    font-size: 2.2rem;
    letter-spacing: -1px;
}

.logo-dot {
    color: #FA2287;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.headline {
    animation: fadeInUp 1s ease-out forwards;
}

.phone-mockup {
    animation: fadeInUp 1.2s ease-out forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    padding: 1rem 2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--pink-bg);
}

/* Support Section */
.support {
    padding: 8rem 2rem;
    background-color: var(--white);
    display: flex;
    justify-content: center;
}

.support-inner {
    max-width: 1000px;
    width: 100%;
    text-align: center;
}

.section-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--pink-bg);
    margin-bottom: 1rem;
}

.support h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.support-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    text-align: left;
}

.card {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.card.accent {
    border-left: 6px solid var(--blue-bg);
}

.card-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.card-icon.pink { background: rgba(255, 94, 142, 0.1); color: var(--pink-bg); }
.card-icon.blue { background: rgba(51, 215, 255, 0.1); color: var(--blue-bg); }

.card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.info-list {
    list-style: none;
    margin-bottom: 2rem;
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.bullet {
    width: 24px;
    height: 24px;
    background: rgba(51, 215, 255, 0.2);
    color: #33a7ff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

.email-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: var(--dark-grey);
    color: var(--white);
    text-decoration: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.email-btn:hover {
    background: var(--black);
}

.note {
    font-size: 0.8rem;
    color: #999;
    margin-top: 1.5rem;
    font-style: italic;
}

/* Footer */
footer {
    padding: 4rem 2rem;
    background: var(--black);
    color: #888;
}

.footer-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    color: var(--white) !important;
    font-size: 1.2rem;
}

.footer-nav {
    display: flex;
    gap: 2rem;
}

.footer-nav a {
    color: #888;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--white);
}

.footer-copy {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #222;
    font-size: 0.75rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .page-wrapper {
        flex-direction: column-reverse;
    }
    .right-panel {
        padding: 6rem 2rem 3rem;
        text-align: center;
        justify-content: center;
    }
    .headline {
        font-size: 5rem;
    }
    .left-panel {
        padding: 4rem 2rem;
    }
}

@media (max-width: 768px) {
    .cards {
        grid-template-columns: 1fr;
    }
    .support h2 {
        font-size: 2.2rem;
    }
    .footer-inner {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .headline {
        font-size: 3.5rem;
    }
    .phone-mockup {
        width: 100%;
        max-width: 320px;
        height: 600px;
    }
}
