/* BHive - Open Source Incubator & Coworking Space */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #FFB800;
    --primary-dark: #E5A600;
    --accent: #00D4AA;
    --bg-dark: #0A0A0F;
    --bg-darker: #050508;
    --bg-card: #12121A;
    --bg-card-hover: #1A1A25;
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0B0;
    --text-muted: #9090A0;
    --border: #2A2A35;
    --gradient-1: linear-gradient(135deg, #FFB800 0%, #FF8C00 100%);
    --gradient-2: linear-gradient(135deg, #00D4AA 0%, #00A88A 100%);
    --gradient-hero: linear-gradient(180deg, #0A0A0F 0%, #0F0F18 50%, #0A0A0F 100%);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-dark);
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    border-radius: 8px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-cta {
    background: var(--gradient-1);
    color: var(--bg-dark) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 600 !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 184, 0, 0.3);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: 0.3s;
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--bg-dark);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 184, 0, 0.35);
}

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

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

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--gradient-hero);
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(255, 184, 0, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(0, 212, 170, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    width: 100%;
    padding: 0 1rem;
}

.hero-logo {
    height: clamp(140px, 35vw, 350px);
    width: auto;
    max-width: 90%;
    object-fit: contain;
    margin: 2rem auto;
    display: block;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 184, 0, 0.1);
    border: 1px solid rgba(255, 184, 0, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Section Styling */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header.left-align {
    text-align: left;
}

.section-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--bg-darker);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content .lead {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.about-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 184, 0, 0.1);
    border-radius: 10px;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.feature span {
    font-weight: 500;
    font-size: 0.95rem;
}

/* Code Block Visual */
.about-visual {
    display: flex;
    justify-content: center;
}

.visual-card {
    width: 100%;
    max-width: 450px;
}

.code-block {
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
}

.code-header {
    display: flex;
    gap: 8px;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #FF5F57; }
.dot.yellow { background: #FFBD2E; }
.dot.green { background: #28CA41; }

.code-block pre {
    padding: 1.5rem;
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 0.9rem;
    line-height: 1.8;
    overflow-x: auto;
}

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

.code-block .keyword { color: #FF79C6; }
.code-block .string { color: #F1FA8C; }
.code-block .number { color: #BD93F9; }
.code-block .function { color: #50FA7B; }

/* Programs Section */
.programs {
    background: var(--bg-dark);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.program-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.program-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.program-card.featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(255, 184, 0, 0.05) 0%, var(--bg-card) 100%);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-1);
    color: var(--bg-dark);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.program-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin-bottom: 1.5rem;
}

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

.program-icon.incubator {
    background: rgba(255, 184, 0, 0.15);
    color: var(--primary);
}

.program-icon.accelerator {
    background: rgba(0, 212, 170, 0.15);
    color: var(--accent);
}

.program-icon.fellowship {
    background: rgba(139, 92, 246, 0.15);
    color: #A78BFA;
}

.program-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.program-card > p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.program-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.program-benefits li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.program-benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

.program-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: gap 0.3s ease;
}

.program-link:hover {
    gap: 0.75rem;
}

/* Coworking Section */
.coworking {
    background: var(--bg-darker);
}

.coworking-content {
    max-width: 800px;
}

.coworking-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.amenity {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-card);
    border-radius: 10px;
    border: 1px solid var(--border);
}

.amenity svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
    flex-shrink: 0;
}

.amenity span {
    font-size: 0.95rem;
    font-weight: 500;
}

.pricing-preview {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.price-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
}

.price span {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-muted);
}

/* Community Section */
.community {
    background: var(--bg-dark);
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.community-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.community-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-3px);
}

.community-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.community-card > p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.event-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.event-day {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    padding: 0.25rem 0.5rem;
    background: rgba(255, 184, 0, 0.1);
    border-radius: 4px;
}

.event-name {
    font-size: 0.9rem;
    color: var(--text-primary);
}

.mentor-avatars {
    display: flex;
    align-items: center;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 3px solid var(--bg-card);
    margin-left: -12px;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar:nth-child(2) { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.avatar:nth-child(3) { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.avatar:nth-child(4) { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }

.avatar-count {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-card-hover);
    border: 3px solid var(--bg-card);
    margin-left: -12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.network-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 212, 170, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 170, 0.2);
}

.network-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.25rem;
}

.network-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Apply Section */
.apply {
    background: var(--bg-darker);
}

.apply-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.apply-content h2 {
    margin-bottom: 1.5rem;
}

.apply-content > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.apply-checklist {
    list-style: none;
}

.apply-checklist li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.apply-checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 16px;
    height: 16px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.2;
}

.apply-checklist li::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 9px;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

.apply-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
}

.apply-form h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg-darker);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 1rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.1);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236B6B7B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
    cursor: pointer;
}

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

.form-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand > p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    max-width: 280px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--bg-card-hover);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.1);
}

.social-links svg {
    width: 18px;
    height: 18px;
}

.footer-links h4 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .programs-grid,
    .community-grid {
        grid-template-columns: 1fr;
    }

    .about-grid,
    .apply-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        padding: 1.5rem;
        gap: 0;
        display: none;
        border-bottom: 1px solid var(--border);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 1rem;
        text-align: center;
    }

    .nav-cta {
        margin-top: 0.5rem;
    }

    .hero {
        padding: 6rem 1rem 3rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .pricing-preview {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand > p {
        max-width: none;
    }

    .social-links {
        justify-content: center;
    }

    .section-header.left-align {
        text-align: center;
    }

    .code-block pre {
        font-size: 0.75rem;
        padding: 1rem;
    }

    section {
        padding: 4rem 0;
    }
}

/* Hero Stat Icons */
.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: 0 auto 0.75rem;
    background: rgba(255, 184, 0, 0.1);
    border-radius: 12px;
}

.stat-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

/* Grants Section */
.grants {
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.grants-content {
    text-align: center;
}

.grants-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.grants-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.grant-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.grant-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-3px);
}

.grant-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 14px;
    margin: 0 auto 1.25rem;
}

.grant-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent);
}

.grant-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

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

/* Topic Tags */
.topics-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.topic-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 184, 0, 0.1);
    border: 1px solid rgba(255, 184, 0, 0.2);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary);
}

/* Network Features */
.network-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.network-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 212, 170, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 170, 0.15);
}

.network-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 170, 0.15);
    border-radius: 10px;
}

.network-icon svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

.network-feature span:last-child {
    font-weight: 500;
    font-size: 0.95rem;
}

/* Day Pass Section */
.day-pass-section {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 700px;
}

@media (max-width: 600px) {
    .day-pass-section {
        grid-template-columns: 1fr;
    }
}

.day-pass-card {
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.1) 0%, rgba(255, 140, 0, 0.05) 100%);
    border: 2px solid var(--primary);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.day-pass-label {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--gradient-1);
    color: var(--bg-dark);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.day-pass-price {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.day-pass-price span {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-muted);
}

.day-pass-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Space Highlight */
.space-highlight {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(0, 212, 170, 0.05);
    border-left: 4px solid var(--accent);
    border-radius: 0 12px 12px 0;
}

.space-highlight p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}

.space-highlight strong {
    color: var(--accent);
}

/* Responsive for new elements */
@media (max-width: 768px) {
    .grants-grid {
        grid-template-columns: 1fr;
    }

    .day-pass-card {
        max-width: 100%;
    }

    .day-pass-price {
        font-size: 2.5rem;
    }
}

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

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth scroll offset for fixed header */
:target {
    scroll-margin-top: 100px;
}

/* Support Section */
.support {
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.support-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
}

.support-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.support-card.featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(255, 184, 0, 0.05) 0%, var(--bg-card) 100%);
}

.support-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin: 0 auto 1.5rem;
}

.support-icon svg {
    width: 32px;
    height: 32px;
}

.support-icon.sponsor {
    background: rgba(255, 184, 0, 0.15);
    color: var(--primary);
}

.support-icon.invest {
    background: rgba(0, 212, 170, 0.15);
    color: var(--accent);
}

.support-icon.partner {
    background: rgba(139, 92, 246, 0.15);
    color: #A78BFA;
}

.support-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.support-card > p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.support-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 2000;
    overflow-y: auto;
    padding: 2rem;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-header {
    text-align: center;
    padding: 2.5rem 2rem 1.5rem;
    border-bottom: 1px solid var(--border);
}

.modal-logo {
    width: 80px;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 12px;
}

.modal-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
}

/* Deck Container */
.deck-container {
    padding: 2rem;
}

.deck-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.deck-nav-btn {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    background: var(--bg-darker);
    color: var(--text-primary);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.deck-nav-btn:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
}

.deck-nav-btn svg {
    width: 20px;
    height: 20px;
}

.deck-slide-counter {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    min-width: 60px;
    text-align: center;
}

/* Deck Slides */
.deck-slides {
    min-height: 350px;
}

.deck-slide {
    display: none;
    animation: slideFadeIn 0.4s ease;
}

.deck-slide.active {
    display: block;
}

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

.deck-slide .slide-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.deck-slide h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.slide-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-secondary);
    border-left: 3px solid var(--primary);
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.slide-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.slide-badge {
    padding: 0.5rem 1rem;
    background: var(--bg-darker);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.slide-badge.highlight {
    background: var(--gradient-1);
    color: var(--bg-dark);
    border: none;
}

/* Slide Features */
.slide-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.slide-feature {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--bg-darker);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.slide-feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 184, 0, 0.15);
    border-radius: 12px;
    margin: 0 auto 1rem;
}

.slide-feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.slide-feature-icon.secondary {
    background: rgba(0, 212, 170, 0.15);
}

.slide-feature-icon.secondary svg {
    color: var(--accent);
}

.slide-feature h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.slide-feature p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Slide Domains */
.slide-domains {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.slide-domain {
    padding: 1.25rem;
    background: var(--bg-darker);
    border-radius: 12px;
    border-left: 3px solid var(--primary);
}

.slide-domain h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

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

/* Slide Pricing */
.slide-pricing {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.slide-price-card {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.1) 0%, rgba(255, 140, 0, 0.05) 100%);
    border: 2px solid var(--primary);
    border-radius: 16px;
}

.slide-price-card .price-amount {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.slide-price-card .price-amount span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.slide-price-card .price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.slide-benefits {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.slide-benefits li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.slide-benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

/* Slide Events */
.slide-events {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.slide-event {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-darker);
    border-radius: 16px;
    border: 1px solid var(--border);
}

.event-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin: 0 auto 1rem;
}

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

.event-icon.nostr {
    background: rgba(0, 212, 170, 0.15);
    color: var(--accent);
}

.event-icon.bitcoin {
    background: rgba(255, 184, 0, 0.15);
    color: var(--primary);
}

.slide-event h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.slide-event p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Slide Sponsor Types */
.slide-sponsor-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.sponsor-type {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--bg-darker);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.sponsor-type h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.sponsor-type p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Slide Value List */
.slide-value-list {
    list-style: none;
}

.slide-value-list li {
    position: relative;
    padding: 1rem 0 1rem 2.5rem;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
}

.slide-value-list li:last-child {
    border-bottom: none;
}

.slide-value-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.2;
}

.slide-value-list li::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

/* Slide CTA */
.slide-cta-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.slide-cta-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.slide-contact {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-darker);
    border-radius: 12px;
}

.slide-contact p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.slide-contact a {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
}

.contact-email a {
    color: var(--text-primary);
    text-decoration: none;
}

.contact-email a:hover {
    text-decoration: underline;
}

.slide-contact a:hover {
    text-decoration: underline;
}

.slide-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.slide-contact.discord {
    background: rgba(88, 101, 242, 0.1);
    border: 1px solid rgba(88, 101, 242, 0.3);
}

.slide-contact.discord a {
    color: #5865F2;
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal {
        padding: 1rem;
    }

    .modal-content {
        border-radius: 16px;
    }

    .modal-header {
        padding: 2rem 1.5rem 1rem;
    }

    .modal-header h2 {
        font-size: 1.35rem;
    }

    .deck-container {
        padding: 1.5rem;
    }

    .deck-slide h3 {
        font-size: 1.35rem;
    }

    .slide-features,
    .slide-sponsor-types {
        grid-template-columns: 1fr;
    }

    .slide-pricing,
    .slide-events {
        grid-template-columns: 1fr;
    }

    .slide-benefits {
        grid-template-columns: 1fr;
    }

    .support-grid {
        grid-template-columns: 1fr;
    }

    .slide-contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Angels & Partners Expandable Section */
.angels-partners-expandable {
    margin-top: 4rem;
    border-top: 1px solid var(--border);
    padding-top: 3rem;
}

.expand-trigger {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: all 0.3s ease;
}

.expand-trigger:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
}

.expand-trigger-content {
    text-align: left;
}

.expand-trigger-content h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.expand-trigger-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.expand-arrow {
    width: 24px;
    height: 24px;
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.expand-trigger[aria-expanded="true"] .expand-arrow {
    transform: rotate(180deg);
}

.angels-partners-content {
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}

.angels-partners-content.collapsed {
    max-height: 0;
    opacity: 0;
}

.angels-partners-content.expanded {
    max-height: 2000px;
    opacity: 1;
}

/* BHive Angels Section */
.angels-section {
    margin-top: 2rem;
    padding-top: 2rem;
}

.angels-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.angels-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.angels-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.2) 0%, rgba(255, 140, 0, 0.1) 100%);
    border: 2px solid var(--primary);
    border-radius: 50%;
}

.angels-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.angels-badge {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    background: rgba(255, 184, 0, 0.1);
    border: 1px solid rgba(255, 184, 0, 0.3);
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.angels-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
    text-align: left;
}

.angels-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.angels-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.angels-benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.angels-benefit:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 184, 0, 0.3);
}

.angels-benefit svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

.angels-benefit span {
    font-size: 0.95rem;
    font-weight: 500;
}

.angels-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border-left: 3px solid var(--primary);
}

.btn-angels {
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.15) 0%, rgba(255, 140, 0, 0.1) 100%);
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 1rem 2.5rem;
    font-weight: 600;
}

.btn-angels:hover {
    background: var(--gradient-1);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 184, 0, 0.25);
}

@media (max-width: 768px) {
    .angels-header {
        flex-direction: column;
        text-align: center;
    }

    .angels-header h3 {
        text-align: center;
    }

    .angels-benefits {
        grid-template-columns: 1fr;
    }

    .angels-benefit {
        justify-content: center;
    }
}

/* Angels Form Modal */
.angels-form-modal {
    max-width: 600px;
}

.angels-form-modal .modal-header {
    padding-bottom: 1.5rem;
}

.modal-icon {
    margin: 0 auto 1rem;
}

.modal-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.angels-application-form {
    padding: 0 2rem 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.angels-application-form .form-group {
    margin-bottom: 1.25rem;
}

.angels-application-form textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg-darker);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 1rem;
    color: var(--text-primary);
    font-family: inherit;
    resize: vertical;
    transition: all 0.3s ease;
}

.angels-application-form textarea::placeholder {
    color: var(--text-muted);
}

.angels-application-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.1);
}

/* Checkbox Group */
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--bg-darker);
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.checkbox-label:hover {
    border-color: rgba(255, 184, 0, 0.3);
    background: var(--bg-card);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-label .checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

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

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid var(--bg-dark);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

.checkbox-label input[type="checkbox"]:checked ~ span:last-child {
    color: var(--text-primary);
}

/* Form Disclaimer */
.form-disclaimer {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border-left: 3px solid var(--accent);
    margin-bottom: 1.5rem;
}

.form-disclaimer p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* Angels Form Responsive */
@media (max-width: 768px) {
    .angels-application-form {
        padding: 0 1.5rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }
}

/* Partners & Sponsors Form Modal */
.partners-form-modal {
    max-width: 680px;
}

.partners-form-modal .modal-header {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.partners-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.2) 0%, rgba(255, 140, 0, 0.1) 100%);
    border: 2px solid var(--primary);
    border-radius: 50%;
}

.partners-icon svg {
    width: 30px;
    height: 30px;
    color: var(--primary);
}

.partners-application-form {
    padding: 2rem;
}

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

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

.partners-application-form input,
.partners-application-form select {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--bg-darker);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.partners-application-form input:focus,
.partners-application-form select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.1);
}

.partners-application-form input::placeholder {
    color: var(--text-muted);
}

.partners-application-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--bg-darker);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-primary);
    font-family: inherit;
    resize: vertical;
    transition: all 0.3s ease;
    min-height: 100px;
}

.partners-application-form textarea::placeholder {
    color: var(--text-muted);
}

.partners-application-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.1);
}

.partners-application-form .checkbox-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.partners-application-form .checkbox-label {
    padding: 0.65rem 0.85rem;
    font-size: 0.85rem;
}

.partners-application-form .form-disclaimer {
    background: rgba(255, 184, 0, 0.05);
    border-left-color: var(--primary);
}

/* Partners CTA Button */
.btn-partners {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 0.875rem 2rem;
    font-weight: 600;
}

.btn-partners:hover {
    background: var(--gradient-1);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 184, 0, 0.25);
}

/* Partners Form Responsive */
@media (max-width: 768px) {
    .partners-application-form {
        padding: 1.5rem;
    }

    .partners-application-form .checkbox-group {
        grid-template-columns: 1fr;
    }
}

/* NIP-05 Verification Info */
.nip05-info {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    text-align: center;
}

.nip05-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(139, 92, 246, 0.15);
    color: #8B5CF6;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.nip05-badge svg {
    width: 16px;
    height: 16px;
}

.nip05-info p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.nip05-info strong {
    color: var(--accent);
    font-family: monospace;
}

.nip05-info small {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Lightning/Zap Donation Section */
.zap-donation {
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.1) 0%, rgba(255, 140, 0, 0.05) 100%);
    border: 1px solid rgba(255, 184, 0, 0.3);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 3rem;
    text-align: center;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.zap-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.zap-icon {
    width: 28px;
    height: 28px;
    stroke: var(--primary);
}

.zap-header h4 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin: 0;
}

.zap-donation p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.lightning-address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--bg-card);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.lightning-address code {
    font-family: monospace;
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
}

.copy-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.copy-btn svg {
    width: 18px;
    height: 18px;
    stroke: var(--text-secondary);
    transition: stroke 0.2s ease;
}

.copy-btn:hover svg {
    stroke: var(--primary);
}

.copy-btn.copied svg {
    stroke: var(--accent);
}

.zap-donation small {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Lightning QR Code */
.lightning-qr-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.lightning-qr {
    background: #fff;
    padding: 12px;
    border-radius: 12px;
    display: inline-block;
}

.lightning-qr svg {
    display: block;
}

/* Responsive Zap Styles */
@media (max-width: 768px) {
    .zap-donation {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .lightning-address {
        flex-direction: column;
        gap: 0.75rem;
    }

    .lightning-address code {
        font-size: 0.9rem;
    }
}
