html {
    scroll-behavior: smooth;
}

:root {
    --primary-gold: #C5A059;
    --accent-cyan: #00FFC2;
    --bg-dark: #020202;
    --bg-card: #111111;
    --text-white: #FFFFFF;
    --text-gray: #CCCCCC;
    --font-main: 'Montserrat', sans-serif;
    --container-width: 1200px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.main-header {
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.logo-main {
    height: 50px;
    filter: drop-shadow(0 0 15px rgba(197, 160, 89, 0.4));
}

.event-info {
    text-align: right;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-color: #000;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/hero-20-a-1.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 1;
}

.hero-content-center {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    padding-right: 5%;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
    background: transparent;
    padding: 0;
    border-radius: 0;
    backdrop-filter: none;
    border: none;
}

.hero-content h1 {
    font-family: 'Inter', sans-serif;
    font-size: 34px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFF;
}

.gradient-text {
    background: linear-gradient(180deg, #F3D991 0%, #C5A059 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-top-logo {
    max-width: 368px;
    margin: 0 0 40px 0;
    display: block;
    filter: drop-shadow(0 0 20px rgba(197, 160, 89, 0.4));
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 30px;
}

/* Form */
.capture-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 15px;
}

.capture-form input {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
}

.capture-form input:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0, 255, 194, 0.3);
}

.form-yellow-text {
    text-align: center;
    margin: 20px 0;
}

.form-yellow-text p {
    color: #F3D991;
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 10px;
    font-weight: 600;
}

.btn-primary {
    width: 100%;
    padding: 18px;
    background-color: var(--accent-cyan);
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0, 255, 194, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 255, 194, 0.6);
    background-color: #00e6af;
}

/* Social Proof */
.social-proof {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(40, 40, 40, 0.95);
    padding: 8px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.avatars {
    display: flex;
}

.avatars img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid #FFF;
    margin-left: -15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.avatars img:first-child {
    margin-left: 0;
}

.social-proof p {
    font-size: 0.95rem;
    color: #FFF;
    font-weight: 600;
    margin: 0;
    letter-spacing: -0.2px;
}

/* Pillars Section */
.pillars {
    padding: 60px 0;
    background: #080808;
}

.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
    background: linear-gradient(180deg, #F3D991 0%, #C5A059 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.cta-mid-section {
    text-align: center;
    margin-top: 60px;
    padding: 40px 20px;
}

.gold-text-bold {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.4;
    background: linear-gradient(180deg, #F3D991 0%, #C5A059 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.white-text-bold {
    color: var(--text-white);
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 30px;
    line-height: 1.4;
}

.gold-span {
    background: linear-gradient(180deg, #F3D991 0%, #C5A059 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pillar-card {
    height: 400px;
    padding: 40px 30px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid rgba(197, 160, 89, 0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.9) 100%);
    z-index: 1;
}

.pillar-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.2);
}

.pillar-card h3 {
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.pillar-card p {
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

.cta-center {
    display: flex;
    justify-content: center;
}

.cta-center .btn-primary {
    max-width: 400px;
}

/* Bio Section */
.bio {
    padding: 60px 0;
}

.bio-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.gold-text {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 40px;
    line-height: 1.1;
    background: linear-gradient(180deg, #F3D991 0%, #C5A059 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bio-text-scroll {
    max-height: 450px;
    overflow-y: auto;
    padding-right: 30px;
}

.bio-text-scroll::-webkit-scrollbar {
    width: 8px;
}

.bio-text-scroll::-webkit-scrollbar-track {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-radius: 10px;
}

.bio-text-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #F3D991 0%, #C5A059 100%);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.3);
}

.bio-text-scroll p {
    margin-bottom: 20px;
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.8;
}

.bio-main-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(197, 160, 89, 0.2));
}

/* Footer */
.main-footer {
    padding: 80px 0 40px;
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.form-disclaimer-bottom {
    color: var(--primary-gold);
    font-size: 0.9rem;
    text-align: center;
    margin-top: 20px;
    font-weight: 600;
}

/* Footer */
.main-footer {
    background-color: #000;
    padding: 60px 0;
    text-align: center;
}

.footer-legal p {
    color: #FFF;
    font-size: 0.75rem;
    line-height: 1.6;
    opacity: 0.7;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    gap: 20px;
}

.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
}

.footer-logo-left img {
    height: 50px;
    width: auto;
}

.footer-copyright-center p {
    color: #FFF;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}

.footer-links-right {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

.footer-links-right a {
    color: #FFF;
    text-decoration: none;
    transition: var(--transition);
}

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

/* Footer Form Section */
.footer-form-section {
    padding: 60px 0;
    background-image: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)), url('assets/hero-20-b.webp');
    background-size: cover;
    background-position: center left;
    border-top: 1px solid rgba(197, 160, 89, 0.3);
}

.footer-form-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    font-weight: 800;
}

.white-bg-box {
    background-color: #FFF;
    color: #000;
    padding: 2px 12px;
    display: inline-block;
    font-weight: 900;
    line-height: 1.1;
    border-radius: 2px;
}

.footer-form-container {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.footer-form-header {
    display: none;
}

.footer-form-logo-final {
    max-width: 320px;
    margin: 0 auto 40px;
    display: block;
    filter: drop-shadow(0 0 20px rgba(197, 160, 89, 0.5));
}

.form-disclaimer-bottom-full {
    color: var(--primary-gold);
    font-size: 0.9rem;
    text-align: center;
    margin-top: 30px;
    font-weight: 600;
    width: 100%;
}

.form-header-small {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.mini-logo {
    height: 40px;
}

.event-info-mini {
    display: flex;
    flex-direction: column;
}

.date-mini {
    font-weight: 800;
    color: var(--primary-gold);
    font-size: 0.9rem;
}

.sub-date-mini {
    font-size: 0.7rem;
    color: var(--text-gray);
}

.footer-form .form-info {
    color: #fff;
    background: rgba(197, 160, 89, 0.2);
    padding: 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
    .hero {
        padding: 40px 0;
        min-height: auto;
    }

    .hero::before {
        background-image: url('assets/hero-20-a-mobile.webp');
        background-position: center top;
        background-size: contain;
        background-repeat: no-repeat;
        opacity: 0.15;
    }

    .hero-content-center {
        justify-content: center;
        padding-right: 0;
        text-align: center;
    }

    .hero-top-logo {
        margin: 0 auto 30px;
        max-width: 280px;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 28px;
        text-align: center;
    }

    .hero-description {
        font-size: 1.1rem;
        text-align: center;
        margin-bottom: 30px;
    }

    .capture-form {
        padding: 25px 20px;
        margin: 0 auto;
        max-width: 500px;
    }

    .social-proof {
        margin: 30px auto 0;
        justify-content: center;
    }

    .bio-grid {
        grid-template-columns: 1fr;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .event-info {
        display: none;
    }
    
    .footer-bottom-bar {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 30px 0;
    }

    .footer-links-right {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 24px;
    }

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

    .hero-top-logo {
        max-width: 220px;
    }

    .capture-form {
        padding: 20px 15px;
    }

    .form-yellow-text p {
        font-size: 0.75rem;
    }

    .social-proof {
        flex-direction: column;
        gap: 12px;
        padding: 15px 20px;
    }

    .social-proof p {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .btn-primary {
        font-size: 1rem;
        padding: 15px;
    }
}
