/* ============================================
   $CLAWMATE - DATING APP THEME
   Romantic, Pink, Hearts, Soft
   ============================================ */

:root {
    --pink: #ff6b9d;
    --pink-light: #ffa3c4;
    --pink-dark: #e84a80;
    --purple: #9d4edd;
    --purple-light: #c77dff;
    --red: #ff4d6d;
    --white: #ffffff;
    --bg: #fff5f8;
    --bg-dark: #1a1a2e;
    --text: #333333;
    --text-light: #666666;
    --text-white: #ffffff;
    --gradient: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
    --font-main: 'Quicksand', sans-serif;
    --font-script: 'Pacifico', cursive;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

::selection {
    background: var(--pink);
    color: var(--white);
}

/* Hearts Background */
.hearts-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.floating-heart {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.3;
    animation: floatHeart 15s linear infinite;
}

@keyframes floatHeart {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(255, 107, 157, 0.1);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-heart {
    font-size: 1.5rem;
}

.logo-text {
    font-family: var(--font-script);
    font-size: 1.75rem;
    color: var(--text);
}

.logo-text .accent {
    color: var(--pink);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 600;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--pink);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--gradient);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
}

.nav-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 107, 157, 0.4);
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--gradient);
    color: var(--white);
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.4);
}

.btn-primary.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn-primary.white {
    background: var(--white);
    color: var(--pink);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--pink);
    color: var(--pink);
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--pink);
    color: var(--white);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8rem 5rem;
    gap: 4rem;
}

.hero-content {
    max-width: 550px;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 107, 157, 0.1);
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.hero-badge span {
    font-weight: 600;
    color: var(--pink);
    font-size: 0.9rem;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.title-small {
    display: block;
    font-size: 1.5rem;
    color: var(--text-light);
    font-weight: 500;
}

.title-main {
    display: block;
    font-family: var(--font-script);
    font-size: 4rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
}

.stat {
    text-align: center;
}

.stat-icon {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.stat-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--pink);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Phone Mockup */
.hero-phone {
    position: relative;
}

.phone-frame {
    width: 300px;
    height: 600px;
    background: var(--bg-dark);
    border-radius: 40px;
    padding: 10px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    position: relative;
}

.phone-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: var(--bg-dark);
    border-radius: 0 0 15px 15px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #fff5f8 0%, #ffe6ee 100%);
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.app-header {
    padding: 2rem 1rem 1rem;
    text-align: center;
}

.app-logo {
    font-family: var(--font-script);
    font-size: 1.25rem;
    color: var(--pink);
}

.profile-card {
    flex: 1;
    margin: 0 1rem;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s;
}

.profile-card.swiping-left {
    transform: translateX(-150%) rotate(-20deg);
    opacity: 0;
}

.profile-card.swiping-right {
    transform: translateX(150%) rotate(20deg);
    opacity: 0;
}

.profile-image {
    height: 200px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar {
    font-size: 5rem;
}

.profile-info {
    padding: 1.5rem;
}

.profile-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.profile-age {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.profile-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.profile-tags span {
    padding: 0.25rem 0.75rem;
    background: rgba(255, 107, 157, 0.1);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--pink);
}

.swipe-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 1.5rem;
}

.swipe-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.swipe-btn.nope {
    background: var(--white);
    color: var(--red);
    border: 2px solid var(--red);
}

.swipe-btn.super {
    background: var(--white);
    color: #ffd700;
    border: 2px solid #ffd700;
}

.swipe-btn.like {
    background: var(--gradient);
    color: var(--white);
}

.swipe-btn:hover {
    transform: scale(1.1);
}

.swipe-btn:active {
    transform: scale(0.95);
}

/* Match Popup */
.match-popup {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 107, 157, 0.95);
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.match-popup.show {
    opacity: 1;
    visibility: visible;
}

.match-content {
    text-align: center;
    color: var(--white);
}

.match-title {
    display: block;
    font-family: var(--font-script);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.match-avatars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.match-heart {
    font-size: 2rem;
    animation: heartBeat 1s infinite;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.match-btn {
    padding: 0.75rem 2rem;
    background: var(--white);
    color: var(--pink);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.match-btn:hover {
    transform: scale(1.05);
}

/* Sections Common */
section {
    padding: 6rem 2rem;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-family: var(--font-script);
    font-size: 3rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.section-sub {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* About Section */
.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.about-card {
    background: var(--bg);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 107, 157, 0.15);
}

.card-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--pink-dark);
}

.about-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Features Section */
.features-section {
    background: var(--bg);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.1);
}

.feature-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--pink-light);
    min-width: 80px;
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--pink-dark);
}

.feature-content p {
    color: var(--text-light);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

/* Match/Chat Section */
.match-section {
    background: var(--white);
}

.chat-container {
    max-width: 600px;
    margin: 0 auto;
}

.chat-window {
    background: var(--bg);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(255, 107, 157, 0.15);
}

.chat-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--gradient);
    color: var(--white);
}

.chat-avatar {
    font-size: 2.5rem;
}

.chat-name {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
}

.chat-status {
    font-size: 0.85rem;
    opacity: 0.9;
}

.chat-messages {
    padding: 1.5rem;
    min-height: 300px;
    max-height: 400px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    display: flex;
    gap: 0.75rem;
    animation: msgPop 0.3s ease;
}

@keyframes msgPop {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.message.user {
    flex-direction: row-reverse;
}

.message-avatar {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.message-bubble {
    max-width: 80%;
    padding: 1rem 1.25rem;
    border-radius: 20px;
    line-height: 1.6;
}

.message.bot .message-bubble {
    background: var(--white);
    border-bottom-left-radius: 5px;
}

.message.user .message-bubble {
    background: var(--gradient);
    color: var(--white);
    border-bottom-right-radius: 5px;
}

.chat-input-area {
    display: flex;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--white);
    border-top: 1px solid rgba(255, 107, 157, 0.1);
}

#chatInput {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 107, 157, 0.2);
    border-radius: 50px;
    font-family: var(--font-main);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

#chatInput:focus {
    border-color: var(--pink);
}

.chat-send {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s;
}

.chat-send:hover {
    transform: scale(1.1);
}

.chat-suggestions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.chat-suggestions button {
    padding: 0.5rem 1rem;
    background: var(--white);
    border: 2px solid var(--pink-light);
    border-radius: 50px;
    color: var(--pink);
    font-family: var(--font-main);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.chat-suggestions button:hover {
    background: var(--pink);
    color: var(--white);
}

/* Token Section */
.token-section {
    background: var(--bg);
}

.token-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.token-stats {
    background: var(--white);
    border-radius: 25px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.token-stat {
    margin-bottom: 1.5rem;
}

.token-stat:last-child {
    margin-bottom: 0;
}

.ts-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.ts-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--pink);
    margin-bottom: 0.5rem;
}

.ts-bar {
    height: 10px;
    background: rgba(255, 107, 157, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--gradient);
    border-radius: 10px;
    transition: width 1s ease;
}

.bar-fill.pink {
    background: var(--pink-light);
}

.bar-fill.purple {
    background: var(--purple);
}

.token-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--white);
    border-radius: 50px;
    font-weight: 600;
    color: var(--pink-dark);
}

/* Roadmap Section */
.roadmap-section {
    background: var(--white);
}

.roadmap {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.roadmap::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient);
    border-radius: 3px;
}

.road-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.road-heart {
    width: 50px;
    height: 50px;
    background: var(--bg);
    border: 3px solid var(--pink-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    z-index: 1;
    flex-shrink: 0;
}

.road-item.done .road-heart,
.road-item.active .road-heart {
    background: var(--gradient);
    border-color: var(--pink);
}

.road-item.active .road-heart {
    animation: heartBeat 1.5s infinite;
}

.road-content {
    flex: 1;
    padding-top: 0.5rem;
}

.road-phase {
    font-size: 0.85rem;
    color: var(--pink);
    font-weight: 600;
}

.road-content h3 {
    font-size: 1.5rem;
    color: var(--pink-dark);
    margin: 0.25rem 0 0.5rem;
}

.road-content p {
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    background: var(--gradient);
    text-align: center;
    padding: 5rem 2rem;
}

.cta-inner {
    max-width: 600px;
    margin: 0 auto;
}

.cta-hearts {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section h2 {
    font-family: var(--font-script);
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 3rem 2rem;
    text-align: center;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer .logo-text {
    color: var(--white);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--pink);
}

.footer-copy p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 8rem 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-phone {
        transform: scale(0.9);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .title-main {
        font-size: 2.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-number {
        min-width: auto;
    }
    
    .hero-phone {
        display: none;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}
