/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', sans-serif;
    margin: 0;
    padding: 0;
}


/* Landing Component Styles */
.landing-container {
    position: relative;
    min-height: calc(100vh - 300px);
    width: 100%;
    background-color: #150F2B;
    color: #FAFBFF;
    overflow-x: hidden;
}

/* Hero Background */
.hero-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 192, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 192, 246, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.gradient-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #00C0F6 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation: float 20s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #FF6351 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: float 25s ease-in-out infinite reverse;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #0099CC 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.2); }
}

#network-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

/* Content Container */
.landing-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo img {
    height: clamp(120px, 15vw, 200px);
    width: auto;
    filter: drop-shadow(0 0 20px rgba(0, 192, 246, 0.3));
}

/* Main Content */
.landing-main {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
    padding: 60px 0 0 0;
    position: relative;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
}

.hero-title {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    margin-top: 24px;
}

.title-line {
    display: block;
}

.title-line em {
    font-style: normal;
    color: #FF6351;
}

.gradient-text {
    background: linear-gradient(135deg, #00C0F6 0%, #FF6351 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: clamp(0.6em, 1.2vw, 0.75em);
}

.hero-subtitle {
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 300;
    color: #9DA2B3;
    margin-bottom: 48px;
}

/* Hero Visual */
.hero-visual {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    pointer-events: none;
}

.network-visualization {
    position: relative;
    width: 100%;
    height: 100%;
    animation: rotate 60s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #00C0F6;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 192, 246, 0.8);
}

.node-center {
    width: 24px;
    height: 24px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #FF6351;
    box-shadow: 0 0 30px rgba(255, 99, 81, 0.8);
}

.node-1 { top: 20%; left: 50%; transform: translateX(-50%); }
.node-2 { top: 35%; right: 15%; }
.node-3 { bottom: 35%; right: 15%; }
.node-4 { bottom: 20%; left: 50%; transform: translateX(-50%); }
.node-5 { bottom: 35%; left: 15%; }
.node-6 { top: 35%; left: 15%; }

.connection {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00C0F6, transparent);
    transform-origin: left center;
    opacity: 0.5;
}

.connection-1 { top: 50%; left: 50%; width: 150px; transform: translate(-50%, -50%) rotate(90deg); }
.connection-2 { top: 50%; left: 50%; width: 150px; transform: translate(-50%, -50%) rotate(30deg); }
.connection-3 { top: 50%; left: 50%; width: 150px; transform: translate(-50%, -50%) rotate(150deg); }
.connection-4 { top: 50%; left: 50%; width: 150px; transform: translate(-50%, -50%) rotate(-30deg); }
.connection-5 { top: 50%; left: 50%; width: 150px; transform: translate(-50%, -50%) rotate(-90deg); }
.connection-6 { top: 50%; left: 50%; width: 150px; transform: translate(-50%, -50%) rotate(-150deg); }

/* CTA Form */
.hero-cta {
    margin-top: 48px;
}

.signup-form {
    display: flex;
    gap: 16px;
    max-width: 700px;
    flex-wrap: nowrap;
}

.signup-form input {
    flex: 1;
    min-width: 200px;
    padding: 16px 24px;
    font-size: 16px;
    font-family: 'Manrope', sans-serif;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #FAFBFF;
    transition: all 0.3s ease;
}

.signup-form input::placeholder {
    color: #6E7180;
}

.signup-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: #00C0F6;
    box-shadow: 0 0 0 3px rgba(0, 192, 246, 0.1);
}

.signup-form button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Manrope', sans-serif;
    background: linear-gradient(135deg, #00C0F6 0%, #0099CC 100%);
    color: #FAFBFF;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    min-width: 250px;
}

.signup-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.signup-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 192, 246, 0.3);
}

.signup-form button:hover::before {
    left: 100%;
}

.signup-form button:disabled {
    cursor: not-allowed;
}

.signup-form button:disabled:hover {
    transform: none;
    box-shadow: none;
}

.privacy-note {
    margin-top: 16px;
    font-size: 14px;
    color: #6E7180;
}

/* Form States */
.signup-form.submitting {
    opacity: 0.8;
    pointer-events: none;
}

.signup-form.submitting input {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.05);
}

.signup-form.submitting button {
    background: linear-gradient(135deg, #0099CC 0%, #007799 100%);
    transform: scale(0.98);
}

.signup-form.success {
    opacity: 0.9;
}

.signup-form.success input {
    background: rgba(0, 192, 246, 0.05);
    border-color: rgba(0, 192, 246, 0.2);
}

.signup-form.success button {
    background: linear-gradient(135deg, #00C0F6 0%, #00A86B 100%);
    transform: scale(1.02);
}

/* Spinner Animation */
.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success Message */
.success-message {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 16px 24px;
    background: rgba(0, 192, 246, 0.1);
    border: 1px solid rgba(0, 192, 246, 0.2);
    border-radius: 12px;
    color: #00C0F6;
    font-size: 16px;
    font-weight: 500;
    animation: slideInUp 0.5s ease-out;
}

.success-message svg {
    flex-shrink: 0;
    animation: checkmark 0.5s ease-out 0.2s both;
}

.success-message p {
    margin: 0;
    color: #FAFBFF;
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes checkmark {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Footer */
.landing-footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.landing-footer p {
    font-size: 14px;
    color: #6E7180;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-visual {
        display: none;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .signup-form {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
    }

    .signup-form {
        flex-direction: column;
    }

    .signup-form input,
    .signup-form button {
        width: 100%;
    }
}

/* Strategic Partners Section */
.partners {
    padding: 0 0 80px 0;
}

.partners-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.partners-title {
    font-size: 18px;
    font-weight: 500;
    color: #9DA2B3;
    white-space: nowrap;
    flex-shrink: 0;
}

.partners-logos {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.partner-logo {
    height: 40px;
    width: auto;
    max-width: 140px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .partners {
        margin-top: 3rem;
    }
    .partners-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .partners-logos {
        gap: 30px;
    }

    .partner-logo {
        height: 32px;
        max-width: 120px;
    }
}
