:root {
    --bg: #F7F5F2; /* Soft pastel cream background */
    --text: #2D3748;
    --text-muted: #718096;
    --primary: #FF7B54; /* Fashionable orange/coral */
    --secondary: #93B5C6; /* Soft blue */
    --surface: #FFFFFF;
    --border: #E2E8F0;
    --like: #48BB78;
    --pass: #F56565;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    background-image: radial-gradient(#E2E8F0 1px, transparent 1px);
    background-size: 30px 30px;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.content { flex: 1; max-width: 500px; position: relative; z-index: 10; }

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.logo-icon {
    font-size: 2.5rem;
    background: var(--surface);
    padding: 10px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.5px;
}

h2 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text);
    letter-spacing: -1px;
}

.highlight { color: var(--primary); }

p {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 40px;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--surface);
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border: 1px solid var(--border);
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border-color: var(--primary);
}

.feature .icon { font-size: 1.8rem; }

.feature h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--text);
}

.feature p {
    font-size: 0.95rem;
    margin: 0;
}

.btn {
    display: inline-block;
    background: var(--text);
    color: var(--surface);
    padding: 16px 36px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(45,55,72,0.2);
    background: var(--primary);
}

/* Phone Mockup & Animations */
.mockup-container {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 700px;
}

.shape {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    opacity: 0.6;
}

.shape-1 {
    width: 400px; height: 400px;
    background: linear-gradient(135deg, var(--primary) 0%, #FFB7A1 100%);
    top: 10%; right: 5%;
    filter: blur(40px);
}

.shape-2 {
    width: 300px; height: 300px;
    background: linear-gradient(135deg, var(--secondary) 0%, #C4D7E0 100%);
    bottom: 15%; left: 10%;
    filter: blur(30px);
}

.phone-mockup {
    width: 320px;
    height: 660px;
    background: #fff;
    border-radius: 44px;
    border: 10px solid #FFFFFF;
    box-shadow: 0 25px 60px rgba(0,0,0,0.1), 0 0 0 1px var(--border);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.notch {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 120px; height: 28px;
    background: #FFFFFF;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    z-index: 30;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.screen {
    width: 100%; height: 100%;
    background: #F8FAFC;
    display: flex;
    flex-direction: column;
    position: relative;
}

.app-header {
    padding: 40px 20px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--text);
    background: var(--surface);
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    z-index: 20;
}

.menu-icon { color: var(--text-muted); font-size: 1.5rem; line-height: 1;}

.swipe-area {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.card {
    position: absolute;
    width: 260px;
    height: 380px;
    background: var(--surface);
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    border: 1px solid var(--border);
}

.card-bg {
    transform: scale(0.95) translateY(10px);
    z-index: 1;
    opacity: 0.8;
}

.card-fg {
    z-index: 2;
    animation: swipeRight 4s infinite ease-in-out;
    transform-origin: bottom center;
}

.clothing-item {
    width: 100%;
    text-align: center;
    padding: 15px;
    background: #F1F5F9;
    border-radius: 12px;
    font-weight: 600;
    color: var(--text);
    font-size: 1.1rem;
}

/* Background card dummy items */
.card-bg .clothing-item { color: transparent; background: #E2E8F0; }
.card-bg .clothing-item::after { content: "Loading..."; color: var(--text-muted); font-size: 0.9rem;}

.stamp {
    position: absolute;
    top: 30px;
    font-weight: 800;
    font-size: 2rem;
    padding: 5px 15px;
    border-radius: 10px;
    border: 4px solid;
    opacity: 0;
}

.stamp.like {
    color: var(--like);
    border-color: var(--like);
    left: 20px;
    transform: rotate(-15deg);
    animation: showStampLike 4s infinite ease-in-out;
}

@keyframes swipeRight {
    0%, 20% { transform: translateX(0) rotate(0deg); opacity: 1; }
    50% { transform: translateX(150px) rotate(15deg); opacity: 0; }
    51%, 80% { transform: translateX(0) rotate(0deg); opacity: 0; }
    100% { transform: translateX(0) rotate(0deg); opacity: 1; }
}

@keyframes showStampLike {
    0%, 20% { opacity: 0; }
    30%, 45% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px 0 40px;
}

.btn-action {
    width: 60px; height: 60px;
    border-radius: 50%;
    border: none;
    background: var(--surface);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-action.pass { color: var(--pass); }
.btn-action.like { color: var(--like); }
.btn-action.like { animation: pulseHeart 4s infinite ease-in-out; }

@keyframes pulseHeart {
    0%, 25% { transform: scale(1); }
    35% { transform: scale(1.15); box-shadow: 0 4px 20px rgba(72,187,120,0.3); }
    45%, 100% { transform: scale(1); }
}

@media (max-width: 968px) {
    .container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }
    .feature { text-align: left; }
    .logo-area { justify-content: center; }
    h2 { font-size: 2.8rem; }
    .mockup-container { min-height: 600px; }
}
