:root {
    --brand-primary: #2563eb;
    --brand-primary-light: #3b82f6;
    --brand-primary-dark: #1e40af;
}
html, body {
    height: 100%;
}
body {
    min-height: 100vh;
    font-family: 'Lexend', 'Lexend Fallback', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background:
        radial-gradient(ellipse 80% 60% at 20% 20%, #a5b4fc 0%, transparent 100%),
        radial-gradient(ellipse 60% 40% at 80% 0%, #f0abfc 0%, transparent 100%),
        radial-gradient(ellipse 60% 40% at 80% 100%, #bae6fd 0%, transparent 100%),
        linear-gradient(120deg, var(--brand-primary) 0%, #a1c4fd 100%);
    position: relative;
    overflow-x: hidden;
}
.bg-blob {
    position: absolute;
    top: -120px;
    left: -120px;
    width: 500px;
    height: 500px;
    z-index: 0;
    opacity: 0.35;
    pointer-events: none;
    filter: blur(2px);
}
/* Floating background elements */
.floating-shape {
    position: absolute;
    z-index: 0;
    opacity: 0.18;
    pointer-events: none;
    animation: floatY 8s ease-in-out infinite alternate;
    filter: blur(0.5px);
}
.floating-shape.shape1 {
    top: 8%;
    left: 10%;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #bae6fd 60%, #2563eb 100%);
    border-radius: 50% 60% 70% 60% / 60% 50% 70% 60%;
    animation-delay: 0s;
}
.floating-shape.shape2 {
    top: 70%;
    left: 5%;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f0abfc 60%, #2563eb 100%);
    border-radius: 60% 40% 60% 40% / 40% 60% 40% 60%;
    animation-delay: 2s;
}
.floating-shape.shape3 {
    top: 20%;
    right: 12%;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #a5b4fc 60%, #2563eb 100%);
    border-radius: 50% 60% 50% 60% / 60% 50% 60% 50%;
    animation-delay: 1s;
}
.floating-shape.shape4 {
    bottom: 10%;
    right: 8%;
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, #3b82f6 60%, #f0abfc 100%);
    border-radius: 60% 50% 60% 50% / 50% 60% 50% 60%;
    animation-delay: 3s;
}
@keyframes floatY {
    0% { transform: translateY(0) scale(1);}
    100% { transform: translateY(-30px) scale(1.08);}
}
.main-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    position: relative;
    z-index: 1;
}
.content-wrapper {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(18px);
    border-radius: 32px;
    box-shadow: 0 12px 48px 0 rgba(99,102,241,0.18), 0 1.5px 8px 0 rgba(0,0,0,0.04);
    width: 100%;
    max-width: 1100px;
    overflow: hidden;
    border: 1.5px solid rgba(99,102,241,0.10);
    transition: box-shadow 0.3s;
    animation: fadeIn 1.2s cubic-bezier(.4,0,.2,1);
}
.content-wrapper:hover {
    box-shadow: 0 24px 64px 0 rgba(99,102,241,0.22), 0 2px 12px 0 rgba(0,0,0,0.06);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}
.left-section {
    padding: 3.5rem 3rem 3.5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37,99,235,0.07) 0%, rgba(139,92,246,0.07) 100%);
}
.right-section {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: rgba(248,250,252,0.85);
    border-left: 1.5px solid rgba(37,99,235,0.08);
    min-width: 0;
    text-align: center;
    position: relative;
}
.main-heading {
    position: relative;
    transition: height 0.2s;
    word-break: break-word;
    overflow-wrap: break-word;
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    background: linear-gradient(90deg, var(--brand-primary) 10%, var(--brand-primary-light) 60%, #d946ef 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    letter-spacing: -1.5px;
    text-shadow: 0 2px 8px rgba(37,99,235,0.08);
}
.typewriter-cursor {
    display: inline-block;
    width: 1ch;
    color: var(--brand-primary, #2563eb);
    animation: blink 1s steps(1) infinite;
    font-weight: 800;
    font-size: 1em;
    vertical-align: baseline;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
.subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    font-weight: 400;
    max-width: 90%;
}
.cta-button {
    background: linear-gradient(90deg, var(--brand-primary) 0%, var(--brand-primary-light) 100%);
    color: white;
    padding: 0.9rem 1.5rem;
    text-decoration: none;
    border: none;
    border-radius: 10px;
    font-size: 1.08rem;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(37,99,235,0.13);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    margin-top: 0.5rem;
}
.cta-button:hover:not(:disabled) {
    background: linear-gradient(90deg, var(--brand-primary-light) 0%, var(--brand-primary) 100%);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 24px rgba(37,99,235,0.18);
}
.cta-button:active:not(:disabled) {
    transform: scale(0.98);
}
.cta-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

#globe-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: none;
    backdrop-filter: blur(10px);
}

#globe-container canvas {
    width: 100% !important;
    height: 100% !important;
    opacity: 0.9;
}

.globe-description {
    text-align: center;
    margin-top: 20px;
    color: #1f2937;
    font-size: 1.1rem;
    line-height: 1.5;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.globe-text {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    text-align: center;
    color: #1f2937;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 1rem;
    font-weight: 400;
    width: 100%;
    z-index: 1;
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .left-section, .right-section {
        padding: 2rem 1.5rem;
    }
    .right-section {
        border-left: none;
        border-top: 1.5px solid rgba(37,99,235,0.08);
    }
    .main-heading {
        font-size: 2rem;
        line-height: 1.2;
    }
    #globe-container {
        width: 450px;
        height: 450px;
    }
}

@media (max-width: 600px) {
    .main-container {
        padding: 0.5rem;
    }
    .content-wrapper {
        border-radius: 16px;
    }
    .left-section, .right-section {
        padding: 1.5rem 1rem;
    }
    .main-heading,
    .subtitle,
    .cta-button {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    .main-heading {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    .subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    .cta-button {
        font-size: 1rem;
        padding: 0.8rem 2rem;
    }
    #globe-container {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 480px) {
    .main-container {
        padding: 0.3rem;
    }
    .left-section, .right-section {
        padding: 1rem 0.8rem;
    }
    .main-heading {
        font-size: 1.4rem;
        line-height: 1.3;
    }
    .subtitle {
        font-size: 0.9rem;
    }
    .cta-button {
        font-size: 0.9rem;
        padding: 0.7rem 1.5rem;
    }
    #globe-container {
        width: 350px;
        height: 350px;
    }
    .bg-blob,
    .floating-shape {
        display: none;
    }
}

@media (max-width: 400px) {
    .main-container {
        padding: 0.2rem;
    }
    .content-wrapper {
        border-radius: 12px;
    }
    .left-section, .right-section {
        padding: 0.8rem 0.6rem;
    }
    .main-heading {
        font-size: 1.2rem;
        line-height: 1.4;
        margin-bottom: 0.8rem;
    }
    .subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
    }
    .cta-button {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }
    #globe-container {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 360px) {
    .main-container {
        padding: 0.1rem;
    }
    .left-section, .right-section {
        padding: 0.6rem 0.4rem;
    }
    .main-heading {
        font-size: 1.1rem;
        line-height: 1.4;
    }
    .subtitle {
        font-size: 0.8rem;
    }
    .cta-button {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    #globe-container {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 320px) {
    .main-container {
        padding: 0.05rem;
    }
    .content-wrapper {
        border-radius: 8px;
    }
    .left-section, .right-section {
        padding: 0.5rem 0.3rem;
    }
    .main-heading {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 0.6rem;
    }
    .subtitle {
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }
    .cta-button {
        font-size: 0.75rem;
        padding: 0.45rem 0.8rem;
        border-radius: 8px;
    }
    .typewriter-cursor {
        font-size: 0.9em;
    }
    #globe-container {
        width: 250px;
        height: 250px;
    }
} 