/* =========================================
   VARIABLES & DESIGN SYSTEM
   ========================================= */
:root {
    /* Colors */
    --bg-dark: #050505;
    --bg-surface: #111113;
    --bg-elevated: #1a1a1e;
    --border-color: rgba(255, 255, 255, 0.08);
    
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    
    --accent-primary: #ffffff;
    --accent-hover: #e4e4e7;
    --accent-glow: rgba(255, 255, 255, 0.15);

    /* Typography */
    --font-main: 'Inter', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    
    /* Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================
   RESET & BASE STYLES
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    background-image: radial-gradient(circle at 50% 0%, rgba(40, 40, 45, 0.4), transparent 70%);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-md);
    }
}

/* =========================================
   TYPOGRAPHY
   ========================================= */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 {
    font-size: 2.5rem;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-sm);
}

@media (min-width: 768px) {
    h1 {
        font-size: 4rem;
    }
}

h2 {
    font-size: 2rem;
    letter-spacing: -0.01em;
    margin-bottom: var(--space-xs);
}

h3 {
    font-size: 1.25rem;
}

.text-secondary {
    color: var(--text-secondary);
}

/* =========================================
   COMPONENTS
   ========================================= */

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--accent-primary);
    color: #000000;
    box-shadow: 0 4px 14px 0 var(--accent-glow);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.23);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--text-primary);
    background-color: rgba(255, 255, 255, 0.05);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

.btn-icon {
    padding: 0.75rem;
    background-color: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-icon:hover {
    background-color: var(--border-color);
}

.link-accent {
    color: var(--accent-primary);
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Badge */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: var(--space-sm);
    backdrop-filter: blur(8px);
}

/* =========================================
   LAYOUT & SECTIONS
   ========================================= */

.section {
    padding: var(--space-xl) 0;
}

.bg-surface {
    background-color: var(--bg-surface);
}

.section-header {
    display: flex;
    flex-direction: column;
    margin-bottom: var(--space-md);
}

.section-header p {
    color: var(--text-secondary);
}

@media (min-width: 768px) {
    .section-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
}

.view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-top: var(--space-xs);
}

.view-all:hover {
    color: var(--text-primary);
}

.beta-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: var(--text-primary);
    color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 101;
}

.navbar {
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(5, 5, 5, 0.6);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.05em;
}

.logo span {
    color: var(--text-secondary);
}

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    display: block;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
    .mobile-menu-btn {
        display: none;
    }
}

/* Hero */
.hero {
    position: relative;
    padding-top: 140px; /* Reduced to bring content higher */
    padding-bottom: 80px;
    min-height: 85vh; /* Reduced from 100vh */
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(5,5,5,0.8) 0%, rgba(5,5,5,1) 100%);
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    max-width: 600px;
}

@media (min-width: 768px) {
    .hero-content p {
        font-size: 1.25rem;
    }
}

/* Search Glass Panel */
.search-glass-panel {
    background: rgba(15, 15, 18, 0.5);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: var(--space-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.search-inputs {
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.4);
    border-radius: var(--radius-md);
}

.input-group {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    gap: 0.75rem;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.input-group:hover {
    color: var(--text-primary);
}

.input-group i {
    width: 20px;
    height: 20px;
    color: var(--accent-primary);
}

.input-group select {
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: var(--font-main);
    width: 100%;
    outline: none;
    cursor: pointer;
    appearance: none;
    font-weight: 500;
}

.input-group select option {
    background-color: var(--bg-elevated);
    color: var(--text-primary);
}

.divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
    .search-glass-panel {
        flex-direction: row;
        align-items: center;
        border-radius: var(--radius-full);
        padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    }
    
    .search-inputs {
        flex-direction: row;
        flex: 1;
        background: transparent;
        border-radius: var(--radius-full);
    }
    
    .input-group {
        border-radius: var(--radius-full);
    }
    
    .input-group:hover {
        background: rgba(255, 255, 255, 0.03);
    }
    
    .divider {
        width: 1px;
        height: 32px;
        margin: auto 0;
    }
    
    .search-btn {
        border-radius: var(--radius-full);
        padding: 1rem 2rem;
    }
}

.hero-secondary-cta {
    font-size: 0.95rem;
}

/* Cities Grid */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.city-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.city-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.05), transparent);
    opacity: 0;
    transition: var(--transition-smooth);
}

.city-card:hover {
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-4px);
}

.city-card:hover::before {
    opacity: 1;
}

.city-content h3 {
    margin-bottom: 0.25rem;
}

.city-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Styles Grid */
.styles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.style-card {
    background-color: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.style-card:hover {
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.style-img-wrapper {
    height: 200px;
    width: 100%;
    overflow: hidden;
}

.style-img-wrapper img, .placeholder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.style-card:hover .style-img-wrapper img {
    transform: scale(1.05);
}

.style-info {
    padding: 1.25rem;
}

.style-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.style-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Artists Grid */
.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.artist-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: var(--transition-smooth);
}

.artist-card:hover {
    border-color: rgba(255,255,255,0.15);
    background-color: var(--bg-elevated);
}

.artist-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.artist-avatar {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-full);
    object-fit: cover;
}

.artist-title h3 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.artist-city {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.artist-city i {
    width: 14px;
    height: 14px;
}

.artist-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    color: var(--text-secondary);
    border: 1px solid rgba(255,255,255,0.05);
}

.artist-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.artist-actions {
    display: flex;
    gap: 0.5rem;
}

/* Signup Section */
.signup-section {
    background: linear-gradient(to bottom, var(--bg-dark), var(--bg-surface));
}

.signup-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .signup-container {
        grid-template-columns: 1fr 1fr;
    }
}

.signup-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.signup-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 480px;
}

.signup-visual {
    position: relative;
    perspective: 1000px;
}

.mockup-card {
    background-color: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transform: rotateY(-5deg) rotateX(5deg);
    box-shadow: 20px 20px 60px rgba(0,0,0,0.5);
    transition: transform var(--transition-smooth);
}

.mockup-card:hover {
    transform: rotateY(0) rotateX(0);
}

.mockup-header {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border-color);
}

.dot:nth-child(1) { background-color: #ef4444; }
.dot:nth-child(2) { background-color: #f59e0b; }
.dot:nth-child(3) { background-color: #10b981; }

.mockup-line {
    height: 12px;
    background-color: var(--border-color);
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.w-50 { width: 50%; }
.w-80 { width: 80%; }
.w-60 { width: 60%; }

.mockup-box {
    height: 120px;
    background-color: rgba(255,255,255,0.02);
    border: 1px dashed var(--border-color);
    border-radius: var(--radius-md);
    margin-top: 1.5rem;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-color);
    padding-top: var(--space-xl);
    background-color: var(--bg-dark);
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: 2fr 3fr;
    }
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 1rem;
    max-width: 250px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.link-column h4 {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.link-column a {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.link-column a:hover {
    color: var(--accent-primary);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
}

.social-links a:hover {
    background-color: var(--border-color);
    color: var(--text-primary);
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* =========================================
   BETA SECTIONS (Benefits & How It Works)
   ========================================= */

.text-center {
    text-align: center;
    align-items: center;
}

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: var(--space-md);
}

.benefit-card {
    background-color: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.benefit-icon i {
    width: 28px;
    height: 28px;
}

.benefit-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* How It Works (Steps) */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: var(--space-md);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .steps-container {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }
}

.step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: var(--text-primary);
    color: var(--bg-dark);
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: 0 4px 14px 0 var(--accent-glow);
}

.step-card h3 {
    font-size: 1.1rem;
    color: var(--text-primary);
}

.step-line {
    display: none;
    height: 2px;
    background-color: var(--border-color);
    flex: 1;
    margin-top: 24px;
}

@media (min-width: 768px) {
    .step-line {
        display: block;
    }
}

/* =========================================
   FORMS & INPUTS
   ========================================= */

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.08);
}

.form-control::placeholder {
    color: var(--text-muted);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.form-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

/* Checkbox Grid */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    cursor: pointer;
    color: var(--text-secondary);
}

.checkbox-label input[type="checkbox"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: rgba(255,255,255,0.05);
    display: grid;
    place-content: center;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"]::before {
    content: "";
    width: 10px;
    height: 10px;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--text-primary);
    background-color: transform;
    transform-origin: center;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

.checkbox-label input[type="checkbox"]:checked {
    background-color: var(--accent-primary);
    border-color: var(--accent-primary);
}

.checkbox-label input[type="checkbox"]:checked::before {
    transform: scale(1);
    box-shadow: inset 1em 1em #000;
}

.checkbox-label:hover {
    color: var(--text-primary);
}

/* File Upload */
.file-upload-wrapper {
    position: relative;
    border: 1px dashed var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
    background-color: rgba(255,255,255,0.02);
    transition: var(--transition-fast);
}

.file-upload-wrapper:hover {
    border-color: rgba(255,255,255,0.2);
    background-color: rgba(255,255,255,0.05);
}

.file-upload-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-icon {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

/* Admin Table */
.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    font-size: 0.95rem;
}

.admin-table th, .admin-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.admin-table th {
    font-weight: 600;
    color: var(--text-secondary);
    background-color: var(--bg-elevated);
}

.admin-table tr:hover {
    background-color: rgba(255,255,255,0.02);
}

.badge-style {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    font-size: 0.8rem;
    margin-right: 0.25rem;
    margin-bottom: 0.25rem;
}
