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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background: #010A13;
    color: #F0F6F6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* ===== BACKGROUND & PARTICLES ===== */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, rgba(1, 10, 19, 0.95) 0%, rgba(1, 10, 19, 0.3) 60%, rgba(1, 10, 19, 0) 100%),
        url('images/landing page bg.jpg') center/cover;
    z-index: -2;
}

.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(155, 111, 232, 0.3);
    border-radius: 50%;
    animation: float linear infinite;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

/* ===== HERO CONTAINER ===== */
.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 85vh;
    padding: 80px 100px;
    max-width: 1600px;
    margin: 0 auto;
    gap: 80px;
}

/* ===== LEFT SIDE - BRAND & MESSAGE ===== */
.hero-left {
    flex: 1;
    max-width: 650px;
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.logo-section {
    margin-bottom: 0px;
}

.logo-image {
    height: 250px;
    width: auto;
    display: block;
    margin-bottom: -30px;
    margin-left : -10px;
    filter: drop-shadow(0 2px 10px rgba(155, 111, 232, 0.4));
}

.logo {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 3px;
    color: #9B6FE8;
    text-shadow: 0 0 20px rgba(155, 111, 232, 0.5);
    margin-bottom: 8px;
}

.logo-subtext {
    font-size: 14px;
    color: #AAB3B8;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

.main-content {
    /* Content wrapper */
}

.main-headline {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #F0F6F6;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.subheading {
    font-size: 18px;
    line-height: 1.7;
    color: #AAB3B8;
    margin-bottom: 50px;
    max-width: 550px;
    font-weight: 400;
}

/* ===== CTA BUTTONS ===== */
.cta-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-primary {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    color: #F0F6F6;
    background: linear-gradient(135deg, #7B3FF2 0%, #5E2DB8 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(123, 63, 242, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px rgba(123, 63, 242, 0.6);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon {
    transform: translateX(4px);
}

.btn-secondary {
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    color: #C89B3C;
    background: transparent;
    border: 2px solid #C89B3C;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(200, 155, 60, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(200, 155, 60, 0.2);
}

/* ===== RIGHT SIDE - REMOVED ===== */
.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===== PROFESSOR PORO - BOTTOM RIGHT CORNER ===== */
.poro-corner {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    animation: poroEntrance 1.5s ease-out 0.5s forwards;
    opacity: 0;
}

@keyframes poroEntrance {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.poro-image {
    width: 200px;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.poro-corner:hover .poro-image {
    transform: scale(1.05);
}

.speech-bubble {
    position: absolute;
    bottom: 160px;
    right: 40px;
    background: rgba(255, 255, 255, 0.98);
    border: 3px solid #000000;
    border-radius: 20px;
    padding: 14px 22px;
    font-size: 15px;
    color: #010A13;
    font-style: italic;
    font-weight: 500;
    white-space: nowrap;
    animation: bubbleFade 1s ease-in 2s forwards;
    opacity: 0;
}

.speech-bubble::before {
    content: '';
    position: absolute;
    bottom: -21px;
    right: 30px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 18px solid #000000;
}

.speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: 33px;
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 15px solid rgba(255, 255, 255, 0.98);
}

@keyframes bubbleFade {
    to {
        opacity: 1;
    }
}

/* ===== TRUST SIGNALS - REMOVED ===== */

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .hero-container {
        padding: 60px 60px;
        gap: 60px;
    }
    
    .main-headline {
        font-size: 56px;
    }
}

@media (max-width: 968px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding: 40px 40px;
    }
    
    .hero-left {
        max-width: 100%;
    }
    
    .main-headline {
        font-size: 48px;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .poro-container {
        width: 400px;
        height: 400px;
    }
    
    .trust-signals {
        padding: 30px 40px;
        gap: 15px;
    }
}

@media (max-width: 640px) {
    .main-headline {
        font-size: 36px;
    }
    
    .subheading {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .poro-corner {
        bottom: 20px;
        right: 20px;
    }
    
    .poro-image {
        width: 150px;
    }
    
    .speech-bubble {
        bottom: 130px;
        right: 30px;
        font-size: 13px;
        padding: 10px 16px;
    }
}


/* ===== MODAL OVERLAY ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 10, 19, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease-in-out;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* ===== MODAL PANEL ===== */
.modal-panel {
    background: #010A13;
    position: relative;
    width: 90%;
    max-width: 700px;
    padding: 50px 60px;
    clip-path: polygon(
        20px 0,
        calc(100% - 20px) 0,
        100% 20px,
        100% calc(100% - 20px),
        calc(100% - 20px) 100%,
        20px 100%,
        0 calc(100% - 20px),
        0 20px
    );
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.9),
        0 0 0 2px rgba(155, 111, 232, 0.4);
    transform: translateY(100vh);
    transition: transform 0.9s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-panel {
    transform: translateY(0);
}

/* Golden corner accents */
.modal-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    border-top: 2px solid #C89B3C;
    border-left: 2px solid #C89B3C;
    clip-path: polygon(
        0 0,
        100% 0,
        100% 2px,
        20px 2px,
        20px 20px,
        2px 20px,
        2px 100%,
        0 100%
    );
    box-shadow: 
        0 0 10px rgba(200, 155, 60, 0.6),
        inset 0 0 10px rgba(200, 155, 60, 0.3);
    animation: cornerGlow 2s ease-in-out infinite;
}

.modal-panel::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 80px;
    border-bottom: 2px solid #C89B3C;
    border-right: 2px solid #C89B3C;
    clip-path: polygon(
        0 calc(100% - 2px),
        calc(100% - 20px) calc(100% - 2px),
        calc(100% - 20px) calc(100% - 20px),
        calc(100% - 2px) calc(100% - 20px),
        calc(100% - 2px) 0,
        100% 0,
        100% 100%,
        0 100%
    );
    box-shadow: 
        0 0 10px rgba(200, 155, 60, 0.6),
        inset 0 0 10px rgba(200, 155, 60, 0.3);
    animation: cornerGlow 2s ease-in-out infinite;
    animation-delay: 1s;
}

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

/* ===== MODAL HEADER ===== */
.modal-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.modal-icon {
    margin-bottom: 20px;
    animation: iconGlow 2s ease-in-out infinite;
}

@keyframes iconGlow {
    0%, 100% {
        filter: drop-shadow(0 0 8px rgba(155, 111, 232, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 16px rgba(155, 111, 232, 0.9));
    }
}

.modal-icon path {
    stroke: #9B6FE8;
}

.modal-title {
    font-size: 32px;
    font-weight: 800;
    color: #9B6FE8;
    letter-spacing: 3px;
    margin-bottom: 12px;
    text-shadow: 0 0 20px rgba(155, 111, 232, 0.5);
    text-transform: uppercase;
}

.modal-subtitle {
    font-size: 15px;
    color: #AAB3B8;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.5px;
}

/* ===== MODAL INPUTS ===== */
.modal-inputs {
    margin-bottom: 40px;
}

.input-group {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    font-size: 13px;
    color: #B89EED;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

.modal-input {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    color: #F0F6F6;
    background: rgba(1, 10, 19, 0.6);
    border: 2px solid rgba(200, 155, 60, 0.3);
    border-radius: 8px;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
    clip-path: polygon(
        8px 0,
        calc(100% - 8px) 0,
        100% 8px,
        100% calc(100% - 8px),
        calc(100% - 8px) 100%,
        8px 100%,
        0 calc(100% - 8px),
        0 8px
    );
}

.modal-input::placeholder {
    color: rgba(170, 179, 184, 0.4);
}

.modal-input:focus {
    border-color: #C89B3C;
    background: rgba(200, 155, 60, 0.08);
    box-shadow: 
        0 0 20px rgba(200, 155, 60, 0.3),
        inset 0 0 20px rgba(200, 155, 60, 0.05);
}

.modal-input.opponent-input:focus {
    border-color: #C89B3C;
    background: rgba(200, 155, 60, 0.08);
    box-shadow: 
        0 0 20px rgba(200, 155, 60, 0.3),
        inset 0 0 20px rgba(200, 155, 60, 0.05);
}

.input-group:last-child label {
    color: #C89B3C;
}

/* ===== MODAL ACTIONS ===== */
.modal-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.modal-btn-primary {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    color: #F0F6F6;
    background: #9B6FE8;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(155, 111, 232, 0.4);
    clip-path: polygon(
        8px 0,
        calc(100% - 8px) 0,
        100% 8px,
        100% calc(100% - 8px),
        calc(100% - 8px) 100%,
        8px 100%,
        0 calc(100% - 8px),
        0 8px
    );
}

.modal-btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px rgba(155, 111, 232, 0.7);
    background: #AB7FF0;
}

.modal-btn-secondary {
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    color: #AAB3B8;
    background: transparent;
    border: 2px solid rgba(170, 179, 184, 0.3);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    clip-path: polygon(
        8px 0,
        calc(100% - 8px) 0,
        100% 8px,
        100% calc(100% - 8px),
        calc(100% - 8px) 100%,
        8px 100%,
        0 calc(100% - 8px),
        0 8px
    );
}

.modal-btn-secondary:hover {
    color: #F0F6F6;
    background: rgba(170, 179, 184, 0.1);
    border-color: rgba(170, 179, 184, 0.5);
}

/* ===== PORO ANALYSIS MODE ===== */
.poro-corner.analysis-mode .poro-image {
    filter: drop-shadow(0 0 20px rgba(155, 111, 232, 0.6));
}

/* ===== CONTENT EXIT ANIMATIONS ===== */
body.modal-active {
    overflow: hidden;
}

body.modal-active .main-headline {
    animation: exitLeft 0.7s ease-in-out forwards;
    animation-delay: 0s;
    opacity: 0;
    transform: translateX(-15px);
}

body.modal-active .subheading {
    animation: exitLeft 0.7s ease-in-out forwards;
    animation-delay: 0.1s;
    opacity: 0;
    transform: translateX(-15px);
}

body.modal-active .cta-buttons {
    animation: exitLeft 0.7s ease-in-out forwards;
    animation-delay: 0.2s;
    opacity: 0;
    transform: translateX(-15px);
}

@keyframes exitLeft {
    to {
        opacity: 0;
        transform: translateX(-15px);
    }
}

/* ===== CONTENT ENTER ANIMATIONS ===== */
body.modal-closing .main-headline {
    animation: enterRight 0.7s ease-in-out forwards;
    animation-delay: 0.2s;
    opacity: 0;
    transform: translateX(-15px);
}

body.modal-closing .subheading {
    animation: enterRight 0.7s ease-in-out forwards;
    animation-delay: 0.1s;
    opacity: 0;
    transform: translateX(-15px);
}

body.modal-closing .cta-buttons {
    animation: enterRight 0.7s ease-in-out forwards;
    animation-delay: 0s;
    opacity: 0;
    transform: translateX(-15px);
}

@keyframes enterRight {
    from {
        opacity: 0;
        transform: translateX(-15px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

body.modal-active .particles-container .particle {
    animation-play-state: paused;
    opacity: 0.1 !important;
}

body.modal-active body::before {
    background: 
        linear-gradient(90deg, rgba(1, 10, 19, 0.98) 0%, rgba(1, 10, 19, 0.5) 60%, rgba(1, 10, 19, 0.2) 100%),
        url('images/la
