/* ============================================
   BESTIES WEBSITE STYLES
   ============================================ */

:root {
    /* Brand Colors */
    --cardinal: #9F1239;
    --cardinal-light: #DC2626;
    --gold: #D97706;
    --gold-light: #F59E0B;
    
    /* Neutrals */
    --white: #FFFFFF;
    --cream: #FFFBF5;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-400: #94A3B8;
    --gray-600: #475569;
    --gray-800: #1E293B;
    --gray-900: #0F172A;
    
    /* Accents */
    --blue: #0EA5E9;
    --purple: #8B5CF6;
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --container-max: 1200px;
    --section-padding: 100px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-100);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--gray-900);
    font-weight: 700;
    font-size: 1.25rem;
}

.nav-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--cardinal);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--cardinal);
    border-radius: 2px;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding: 120px 24px 80px;
    max-width: var(--container-max);
    margin: 0 auto;
    position: relative;
}

.hero-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--cardinal), var(--cardinal-light));
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    bottom: -100px;
    left: -150px;
    animation-delay: -7s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--blue), #38BDF8);
    top: 50%;
    left: 30%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 10px) scale(1.02); }
}

.hero-content {
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--cardinal), var(--cardinal-light));
    color: var(--white);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out 0.1s backwards;
}

.highlight {
    background: linear-gradient(135deg, var(--cardinal), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 500px;
    margin-bottom: 32px;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.app-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.3s backwards;
}

.store-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--gray-900);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.store-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.store-badge.coming-soon {
    cursor: default;
    position: relative;
}

.store-badge.coming-soon::after {
    content: '';
    position: absolute;
    top: -8px;
    right: -8px;
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

.store-badge svg {
    width: 28px;
    height: 28px;
}

.store-badge div {
    display: flex;
    flex-direction: column;
}

.store-label {
    font-size: 0.7rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.store-name {
    font-size: 1.1rem;
    font-weight: 600;
}

.store-badge.light {
    background: var(--white);
    color: var(--gray-900);
}

/* Phone Mockup */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: var(--gray-900);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 
        0 50px 100px -20px rgba(0, 0, 0, 0.25),
        0 30px 60px -30px rgba(0, 0, 0, 0.3),
        inset 0 0 0 2px var(--gray-800);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    padding: 20px 16px;
}

.app-header {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-100);
}

.friend-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
    animation: slideIn 0.5s ease-out backwards;
}

.friend-card:nth-child(2) { animation-delay: 0.6s; }
.friend-card:nth-child(3) { animation-delay: 0.8s; }
.friend-card:nth-child(4) { animation-delay: 1s; }

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.friend-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.friend-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.friend-name {
    font-weight: 600;
    color: var(--gray-900);
}

.friend-details {
    font-size: 0.875rem;
    color: var(--gray-400);
}

.add-btn {
    background: var(--cardinal);
    color: var(--white);
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features {
    padding: var(--section-padding) 24px;
    background: var(--gray-50);
}

.features-container {
    max-width: var(--container-max);
    margin: 0 auto;
}

.features h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 60px;
    color: var(--gray-900);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--white);
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--white);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.feature-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   EXCLUSIVE SECTION
   ============================================ */

.exclusive {
    padding: var(--section-padding) 24px;
}

.exclusive-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.usc-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gray-100);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.exclusive h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--gray-900);
    margin-bottom: 20px;
}

.exclusive p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 32px;
    max-width: 480px;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-700);
    font-weight: 500;
}

.trust-item svg {
    width: 24px;
    height: 24px;
    color: var(--cardinal);
}

.exclusive-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.exclusive-logo {
    width: 300px;
    height: 300px;
    object-fit: contain;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta {
    padding: var(--section-padding) 24px;
    background: linear-gradient(135deg, var(--cardinal), var(--cardinal-light));
    text-align: center;
}

.cta-container {
    max-width: 600px;
    margin: 0 auto;
}

.cta h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--white);
    margin-bottom: 16px;
}

.cta p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.cta-badges {
    justify-content: center;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--gray-900);
    padding: 60px 24px 40px;
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    text-align: center;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.footer-brand img {
    width: 48px;
    height: 48px;
}

.footer-brand span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

.footer-bottom p {
    color: var(--gray-400);
    font-size: 0.95rem;
}

.footer-bottom .copyright {
    margin-top: 8px;
    font-size: 0.875rem;
    opacity: 0.7;
}

/* ============================================
   PRIVACY & SUPPORT PAGES
   ============================================ */

.page-content {
    min-height: 100vh;
    padding: 120px 24px 80px;
}

.page-container {
    max-width: 800px;
    margin: 0 auto;
}

.page-header {
    margin-bottom: 48px;
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--gray-900);
    margin-bottom: 16px;
}

.page-header p {
    color: var(--gray-600);
}

.content-section {
    margin-bottom: 40px;
}

.content-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gray-100);
}

.content-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-800);
    margin: 24px 0 12px;
}

.content-section p {
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.8;
}

.content-section ul {
    color: var(--gray-600);
    margin-bottom: 16px;
    padding-left: 24px;
}

.content-section li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.content-section a {
    color: var(--cardinal);
    text-decoration: none;
}

.content-section a:hover {
    text-decoration: underline;
}

.contact-card {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 32px;
    margin-top: 32px;
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 16px 24px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--cardinal);
    font-weight: 600;
    font-size: 1.125rem;
    border: 2px solid var(--gray-200);
    transition: all 0.2s ease;
}

.contact-email:hover {
    border-color: var(--cardinal);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(159, 18, 57, 0.1);
}

.contact-email svg {
    width: 24px;
    height: 24px;
}

/* Support Form Styles */
.support-options {
    display: grid;
    gap: 24px;
    margin-top: 32px;
}

.support-card {
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.2s ease;
}

.support-card:hover {
    border-color: var(--cardinal);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.support-card h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.support-card p {
    color: var(--gray-600);
    margin-bottom: 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        min-height: auto;
        padding-top: 100px;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-image {
        order: 2;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .app-badges {
        justify-content: center;
    }
    
    .exclusive-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .exclusive p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .trust-points {
        align-items: center;
    }
    
    .exclusive-visual {
        order: -1;
    }
    
    .exclusive-logo {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 600px) {
    .nav-links {
        gap: 16px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .phone-mockup {
        width: 240px;
        height: 480px;
    }
    
    .app-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .store-badge {
        width: 100%;
        max-width: 220px;
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
}
