/* ============================================
   PARTIED - Clean & Minimal
   Inspired by tryholo.ai structure
============================================ */

:root {
    --accent: #c41b8e;
    --accent-light: #e052a0;
    --accent-glow: rgba(196, 27, 142, 0.4);
    
    --bg: #0a0a0a;
    --bg-card: #131313;
    --bg-elevated: #1a1a1a;
    
    --text: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.65);
    --text-muted: rgba(255, 255, 255, 0.4);
    
    --gold: #d4af37;
    --gold-light: #f5d76e;
    
    --radius: 12px;
    --radius-lg: 20px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   NAVIGATION
============================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    background: transparent;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    position: relative;
}

.logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 40px;
    background: radial-gradient(ellipse, rgba(196, 27, 142, 0.6) 0%, transparent 70%);
    filter: blur(12px);
    pointer-events: none;
    z-index: -1;
}

.logo-img {
    height: 28px;
    position: relative;
    z-index: 1;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--text);
}

/* ============================================
   BUTTONS
============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.2s;
}

.btn-primary {
    background: var(--accent);
    color: white;
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.btn-sm { padding: 8px 16px; font-size: 14px; }
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-xl { padding: 16px 32px; font-size: 16px; }

.btn-arrow {
    transition: transform 0.2s;
}

.btn:hover .btn-arrow {
    transform: translateX(3px);
}

.full-width { width: 100%; justify-content: center; }

/* ============================================
   HERO
============================================ */

.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 0 0px;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Replaces the need for min-width/transform */
    z-index: 0;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: -50px;
    background: rgba(10, 10, 10, 0.75);
    z-index: 1;
}

.hero-video-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, transparent 0%, var(--bg) 100%);
    z-index: 2;
}

.hero-glow {
    position: absolute;
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    filter: blur(80px);
    opacity: 0.5;
    pointer-events: none;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(196, 27, 142, 0.15);
    border: 1px solid rgba(196, 27, 142, 0.3);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-badge strong {
    color: var(--accent);
}

.hero-title {
    font-size: clamp(44px, 8vw, 80px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.hero-sub {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.hero-sub br {
    display: block;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

.cta-note {
    font-size: 13px;
    color: var(--text-muted);
}

.hero-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-muted);
}

.avatars {
    display: flex;
}

.avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg-elevated);
    border: 2px solid var(--bg);
    margin-left: -8px;
}

.avatar:first-child { margin-left: 0; }

.avatar.gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
}


/* ============================================
   HOW SECTION
============================================ */

.how-section {
    padding: 40px 0 24px;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.step {
    text-align: center;
}

.step-num {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.step h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.step p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ============================================
   VALUE SECTION
============================================ */

.value-section {
    padding: 60px 0;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: border-color 0.2s;
}

.value-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.value-icon {
    font-size: 28px;
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ============================================
   JOIN SECTION
============================================ */

.join-section {
    padding: 46px 0;
    background: var(--bg);
}

.join-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.tag {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 12px;
}

.join-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.join-lead {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.6;
}

.requirements {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.req {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-secondary);
}

.req-num {
    width: 28px;
    height: 28px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.join-result {
    font-size: 15px;
    color: var(--text-secondary);
}

.join-result strong {
    color: var(--gold);
}

/* CTA Box */
.join-cta-box {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.founder-preview {
    text-align: center;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.founder-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #000;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.founder-avatar {
    width: 64px;
    height: 64px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: var(--bg-elevated);
    border: 3px solid var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.founder-name {
    font-weight: 600;
    font-size: 16px;
}

.spots-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.spots-fill {
    width: 5%;
    height: 100%;
    background: var(--accent);
    border-radius: 3px;
}

.spots-text {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.spots-text strong {
    color: var(--accent);
}

.cta-fine {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 12px;
}

/* ============================================
   VENUES SECTION
============================================ */

.venues-section {
    padding: 100px 0 120px;
    background: #e8f0f5;
    position: relative;
    overflow: visible;
}

.venues-transition-top {
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--bg);
    z-index: 2;
}

.venues-transition-top::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, 
        transparent 0%,
        rgba(196, 27, 142, 0.03) 20%,
        rgba(196, 27, 142, 0.08) 40%,
        rgba(196, 27, 142, 0.05) 60%,
        rgba(196, 27, 142, 0.02) 80%,
        transparent 100%);
    filter: blur(8px);
}

.venues-transition-bottom {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--bg);
    z-index: 2;
}

.venues-transition-bottom::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, 
        transparent 0%,
        rgba(196, 27, 142, 0.03) 20%,
        rgba(196, 27, 142, 0.08) 40%,
        rgba(196, 27, 142, 0.05) 60%,
        rgba(196, 27, 142, 0.02) 80%,
        transparent 100%);
    filter: blur(8px);
}

.venues-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

.venues-header .tag {
    color: var(--accent);
}

.venues-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000000;
}

.venues-header p {
    font-size: 16px;
    color: #333333;
}

.venue-offer {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid rgba(196, 27, 142, 0.2);
}

.offer-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.offer-content p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.offer-stats {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.stat {
    text-align: center;
}

.stat-num {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent);
    display: block;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
}

/* ============================================
   FINAL SECTION
============================================ */

.final-section {
    padding: 30px 0;
    text-align: center;
}

.final-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.final-section p {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

/* ============================================
   FOOTER
============================================ */

.footer {
    padding: 48px 0 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
    position: relative;
    filter: drop-shadow(0 0 20px rgba(196, 27, 142, 0.5)) drop-shadow(0 0 40px rgba(196, 27, 142, 0.3));
}

.footer-links {
    display: flex;
    gap: 28px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text);
}

.footer-copy {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
}

/* ============================================
   RESPONSIVE
============================================ */

@media (max-width: 900px) {
    .steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
    }
    
    .join-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .venue-offer {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .offer-stats {
        justify-content: flex-start;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-sub br {
        display: none;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .join-content h2,
    .venues-header h2,
    .final-section h2 {
        font-size: 28px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-link {
        display: none;
    }
}

/* ============================================
   LEGAL PAGES (Privacy Policy, Terms)
============================================ */

.legal-section {
    padding: 140px 0 80px;
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--text);
}

.legal-content h2 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text);
}

.legal-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--text);
}

.legal-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.legal-content a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s;
}

.legal-content a:hover {
    color: var(--accent-light);
}

.legal-content strong {
    color: var(--text);
    font-weight: 600;
}
