/* ===================================
   EVLVD Partnership & Connection Call
   Brand Theme: Bold Authority · Creative Energy · Futuristic & Soulful
   =================================== */

/* Color Tokens */
:root {
    --ink: #000000;
    --plum: #2B1B65;
    --violet: #6A2FD8;
    --magenta: #B312FF;
    --snow: #FFFFFF;
    --mist: #E6E8EE;
    --ice: #9EC9E9;
    --sky: #5AA7E6;
    --royal: #0B3EA8;
    --grad: linear-gradient(90deg, var(--magenta), var(--sky), var(--royal));
    
    /* Additional UI Colors */
    --charcoal: #0b0b0b;
    --card-bg: #0f0f0f;
    --border: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.85);
    --text-muted: rgba(255, 255, 255, 0.6);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--ink);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    padding-top: 80px; /* Space for fixed header */
}

/* ===================================
   HEADER NAVIGATION
   =================================== */
.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo h2 {
    font-size: 1.75rem;
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

.nav-cta {
    display: flex;
    align-items: center;
}

.btn-nav {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    background: var(--grad);
    color: var(--snow);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(179, 18, 255, 0.3);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(179, 18, 255, 0.4);
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .header-nav {
        padding: 0.75rem 0;
    }
    
    .logo h2 {
        font-size: 1.5rem;
    }
    
    .btn-nav {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

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

a {
    text-decoration: none;
    color: inherit;
}

/* Gradient Text Effect */
.gradient-text {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}

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

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

/* Section Divider */
.section-divider {
    height: 2px;
    max-width: 1280px;
    margin: 4rem auto;
    background: radial-gradient(120px 2px at 50% 50%, var(--violet), transparent 60%);
    opacity: 0.5;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Space Grotesk', sans-serif;
}

.btn-primary {
    background: var(--grad);
    color: var(--snow);
    box-shadow: 0 8px 24px rgba(179, 18, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(179, 18, 255, 0.4);
}

.btn-secondary {
    background: rgba(179, 18, 255, 0.15);
    color: var(--snow);
    border: 2px solid var(--magenta);
}

.btn-secondary:hover {
    background: rgba(179, 18, 255, 0.25);
    transform: translateY(-2px);
}

.btn-hero {
    font-size: 1.2rem;
    padding: 1.25rem 2.5rem;
    margin-top: 1.5rem;
}

.btn-submit {
    width: 100%;
    padding: 1.25rem;
    font-size: 1.25rem;
    margin-top: 1rem;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 0 4rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.waveform-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(179, 18, 255, 0.03) 2px,
            rgba(179, 18, 255, 0.03) 4px
        );
    animation: waveformSlide 20s linear infinite;
}

@keyframes waveformSlide {
    0% { background-position: 0 0; }
    100% { background-position: 100px 0; }
}

.gradient-glow {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 120%;
    background: radial-gradient(circle, rgba(179, 18, 255, 0.15), transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    gap: 3rem;
    align-items: center;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.hero-text {
    text-align: left;
    flex: 1 1 50%;
    max-width: 550px;
}

.hero-image {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 420px;
}

@media (max-width: 968px) {
    .hero-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-image {
        width: 100%;
    }
}

.hero-title {
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.hero-supporting {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-style: italic;
}

.btn-explore {
    display: inline-block;
    margin-top: 1rem;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--snow);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
}

.btn-explore:hover {
    border-color: var(--magenta);
    background: rgba(179, 18, 255, 0.1);
    transform: translateY(-2px);
}

.hero-micro {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    opacity: 0.85;
    margin-top: 1rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, rgba(179, 18, 255, 0.1), rgba(90, 167, 230, 0.1));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.neon-frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid transparent;
    border-radius: 24px;
    background: var(--grad);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 3px;
    animation: neonPulse 3s ease-in-out infinite;
}

@keyframes neonPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.image-note {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 2rem;
    z-index: 1;
}

.sammy-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    position: relative;
    z-index: 1;
}

.sammy-photo-about {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    position: relative;
    z-index: 1;
}

/* ===================================
   STATS STRIP
   =================================== */
.stats-strip {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(43, 27, 101, 0.2), rgba(11, 62, 168, 0.2));
}

.stats-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===================================
   POSITIONING
   =================================== */
.positioning {
    padding: 5rem 0;
    text-align: center;
}

.section-title {
    margin-bottom: 1.5rem;
}

.positioning-copy {
    font-size: 1.35rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* ===================================
   PROBLEM SECTION
   =================================== */
.problem {
    padding: 5rem 0;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.problem-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(179, 18, 255, 0.2);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

/* ===================================
   SOLUTION SECTION
   =================================== */
.solution {
    padding: 5rem 0;
}

.comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 868px) {
    .comparison-table {
        grid-template-columns: 1fr;
    }
}

.comparison-column {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.comparison-column.with {
    border: 2px solid var(--magenta);
    box-shadow: 0 8px 24px rgba(179, 18, 255, 0.2);
}

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

.comparison-list {
    list-style: none;
}

.comparison-list li {
    padding: 0.75rem 0;
    font-size: 1.05rem;
    line-height: 1.6;
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

/* ===================================
   BENEFITS SECTION
   =================================== */
.benefits {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(43, 27, 101, 0.15), rgba(11, 62, 168, 0.15));
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(179, 18, 255, 0.2);
    border-color: var(--violet);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: var(--snow);
    margin-bottom: 0.75rem;
}

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

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials {
    padding: 5rem 0;
}

.testimonials-sub {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-top: -1rem;
    margin-bottom: 3rem;
}

.testimonial-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    justify-items: center;
    margin: 0 auto;
}

@media (min-width: 900px) {
    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1200px;
    }
}

@media (min-width: 600px) and (max-width: 899px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    box-shadow: 0 8px 24px rgba(179, 18, 255, 0.15);
    transform: translateY(-2px);
}

.quote-icon {
    font-size: 2.5rem;
    line-height: 1;
    color: var(--magenta);
    opacity: 0.5;
    margin-bottom: 0.5rem;
}

.testimonial-quote {
    font-weight: 700;
    font-size: 1.15rem;
    margin: 0.75rem 0;
    color: var(--snow);
    line-height: 1.4;
}

.testimonial-body {
    opacity: 0.85;
    margin: 1rem 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.testimonial-author {
    margin-top: 1rem;
    font-weight: 600;
    opacity: 0.7;
    font-style: italic;
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about {
    padding: 5rem 0;
}

.about-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-top: -1rem;
    margin-bottom: 3rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-placeholder-about {
    width: 100%;
    max-width: 380px;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, rgba(179, 18, 255, 0.1), rgba(90, 167, 230, 0.1));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.neon-frame-about {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid transparent;
    border-radius: 24px;
    background: var(--grad);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 3px;
    animation: neonPulse 3s ease-in-out infinite;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-cta-text {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* ===================================
   VALUES SECTION
   =================================== */
.values {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(43, 27, 101, 0.15), rgba(11, 62, 168, 0.15));
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(179, 18, 255, 0.2);
    border-color: var(--violet);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-verse {
    font-size: 0.9rem;
    color: var(--magenta);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.value-card h3 {
    color: var(--snow);
    margin-bottom: 0.75rem;
}

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

/* ===================================
   APPLICATION FORM SECTION
   =================================== */
.apply {
    padding: 5rem 0;
    background: radial-gradient(circle at top, rgba(179, 18, 255, 0.1), transparent 60%);
}

.apply-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-top: -1rem;
    margin-bottom: 3rem;
}

.application-form {
    max-width: 800px;
    margin: 3rem auto 0;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(179, 18, 255, 0.15);
}

@media (max-width: 768px) {
    .application-form {
        padding: 2rem 1.5rem;
    }
}

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

@media (max-width: 668px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--snow);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--snow);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--magenta);
    box-shadow: 0 0 0 3px rgba(179, 18, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

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

.consent-group {
    margin-top: 2rem;
}

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

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    cursor: pointer;
    flex-shrink: 0;
}

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

/* Final CTA Wrapper */
.final-cta-wrapper {
    max-width: 600px;
    margin: 3rem auto 0;
    text-align: center;
}

.cta-note {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
    font-style: italic;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--charcoal);
    padding: 3rem 0 2rem;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--text-muted);
    margin: 0;
}

.footer-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-stats p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
}

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

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

.accessibility-note {
    font-style: italic;
    opacity: 0.7;
}

/* ===================================
   RESPONSIVE ADJUSTMENTS
   =================================== */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 4rem 0 3rem;
    }
    
    .stats-strip,
    .positioning,
    .problem,
    .solution,
    .benefits,
    .testimonials,
    .about,
    .values,
    .apply {
        padding: 3rem 0;
    }
    
    .section-divider {
        margin: 2rem auto;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .btn-hero {
        font-size: 1.1rem;
        padding: 1rem 1.75rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-stats {
        justify-content: center;
    }
}

/* ===================================
   ACCESSIBILITY
   =================================== */
/* Focus visible styles for keyboard navigation */
*:focus-visible {
    outline: 3px solid var(--magenta);
    outline-offset: 2px;
}

/* Skip to main content link (for screen readers) */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--magenta);
    color: white;
    padding: 0.75rem 1.5rem;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* Reduced motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}