﻿/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
}

ul, ol {
    list-style: none;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Root Variables */
:root {
    --bg: #020408;
    --header-bg: rgba(10,10,10,0.35);
    --card-hover-bg: rgba(77,138,240,0.05);
    --card: rgba(255,255,255,0.04);
    --card-border: rgba(255,255,255,0.07);
    --blue: #3b6fd4;
    --blue-bright: #4d8af0;
    --blue-orb: rgba(59,111,212,0.55);
    --text: #e8eaf0;
    --text-muted: #e6e7eb;
    --text-dim: rgba(200,190,215,0.4);
    --white: #ffffff;
    --red-node-bg: rgba(190,65,50,0.22);
    --red-node-border: rgba(190,65,50,0.45);
    --red-node-text: #ff9f8c;
}

/* Base Styles */
body {
}

body {
    font-family: Manrope,Poppins,sans-serif;
    line-height: 1.6;
    background-color: var(--bg);
    /*color: white;*/
    background-image: radial-gradient(ellipse 90% 40% at 50% 0%, rgba(60,50,180,0.26) 0%, transparent 70%), radial-gradient(ellipse 70% 35% at 50% 100%, rgba(110,40,190,0.20) 0%, transparent 70%), radial-gradient(ellipse 35% 30% at 20% 50%, rgba(59,111,212,0.10) 0%, transparent 70%);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* All content sits above background */
nav, section, footer, .divider {
    position: relative;
    z-index: 2;
}


/* Section Styles */

.section-wrap {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    padding: 100px 24px;
}

.section-label {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dim);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: 48px;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: var(--white);
    text-align: center;
    line-height: 1.15;
    margin-bottom: 70px;
}

@media (max-width: 768px) {
    .section-wrap {
        padding: 50px 0;
    }

    .section-label {
        font-size: 10px;
        margin-bottom: 12px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
}

/* Header Styles */
header {
    background: var(--header-bg);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Logo Styles */
.nav-logo {
    color: var(--text-muted);
    font-family: 'Manrope', sans-serif;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* Nav menu items*/
.nav-item a {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
    text-decoration: none;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.2s;
}

    .nav-item a:hover {
        color: var(--blue);
    }

/* Section divider */
.divider {
    position: relative;
    z-index: 2;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
    margin: 0 60px;
}

/* Hero badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    border-radius: 100px;
    border: 1px solid rgba(77,138,240,0.28);
    font-size: 0.62rem;
    font-weight: 600;
    color: var(--blue-bright);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: fadeUp 0.7s ease both;
}

    /* Hero badge shape*/
    .hero-badge::before {
        content: '';
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: var(--blue-bright);
        animation: blink 2s ease infinite;
    }

/* Hero badge shape animation*/
@keyframes blink {
    0%,100% {
        opacity: 1
    }

    50% {
        opacity: 0.3
    }
}

/* Hero title*/
.hero-title {
    font-size: 86px;
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 40px;
    animation: fadeUp 0.8s 0.06s ease both;
}

/* Hero sub-title*/
.hero-sub {
    font-size: 16px;
    max-width: 400px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 20px;
    animation: fadeUp 0.9s 0.12s ease both;
}

@media (max-width: 768px) {
    /* Hero title */
    .hero-title {
        font-size: 42px;
        font-weight: 600;
        margin-bottom: 24px;
    }

    /* Hero sub-title */
    .hero-sub {
        font-size: 12px;
        margin-bottom: 12px;
    }
}

/* Hero primary button */
.hero-btn-primary {
    padding: 12px 26px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    background: var(--white);
    color: #050608;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s;
}

    .hero-btn-primary:hover {
        opacity: 0.88;
        transform: translateY(-2px);
    }


/* Hero secondary button */
.hero-btn-secondary {
    padding: 12px 26px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    background: rgba(255,255,255,0.04);
    color: var(--text);
    border: 1px solid rgba(255,255,255,0.09);
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: background 0.2s, transform 0.15s;
}

    .hero-btn-secondary:hover {
        background: rgba(255,255,255,0.07);
        transform: translateY(-2px);
    }


/* Model section card*/
.mod-card {
    padding: 24px 14px;
    height: 100%;
    border-radius: 12px;
    background: var(--card);
    border: 1px solid var(--card-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(12px);
    text-align: center;
    cursor: default;
    transition: border-color 0.25s, background 0.25s, transform 0.2s;
}

    .mod-card:hover {
        border-color: var(--card-hover-border);
        background: var(--card-hover-bg);
        transform: translateY(-3px);
    }

/* Model card icon*/
.mod-icon {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    font-size: 1rem;
    flex-shrink: 0;
}

/* Model card label*/
.mod-label {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Deployment section card*/
.dep-card {
    padding: 38px 26px 36px;
    border-radius: 16px;
    height: 100%;
    background: var(--card);
    border: 1px solid var(--card-border);
    text-align: center;
    backdrop-filter: blur(12px);
    transition: border-color 0.25s, background 0.25s, transform 0.2s;
    cursor: default;
}

    .dep-card:hover {
        border-color: var(--card-hover-border);
        background: var(--card-hover-bg);
        transform: translateY(-4px);
    }

/* Deployment card icon*/
.dep-icon {
    font-size: 1.7rem;
    display: block;
    margin-bottom: 14px;
}

/* Deployment card title*/
.dep-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

/* Deployment card describtion*/
.dep-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
}

/* Form style*/
.form-card {
    max-width: 550px;
    margin: 0 auto;
    padding: 60px;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.075);
    border-radius: 18px;
    backdrop-filter: blur(20px);
}

@media (max-width: 768px) {
    .form-card {
        padding: 30px 20px;
    }
}

/* Form input field*/
.form-input {
    display: block;
    width: 100%;
    margin-bottom: 16px;
    padding: 12px 15px;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    font-size: 14px;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    -webkit-appearance: none;
}

    .form-input::placeholder {
        color: var(--text-dim);
    }

    .form-input:focus {
        border-color: rgba(77,138,240,0.42);
        background: rgba(77,138,240,0.03);
    }

textarea.form-input {
    min-height: 88px;
    resize: vertical;
}

/* Form button*/
.btn-submit {
    display: block;
    width: 100%;
    padding: 13px;
    border-radius: 7px;
    font-size: 0.83rem;
    font-weight: 700;
    background: var(--white);
    color: #050608;
    border: none;
    cursor: pointer;
    margin-top: 6px;
    transition: opacity 0.2s, transform 0.15s;
}

    .btn-submit:hover {
        opacity: 0.88;
        transform: translateY(-1px);
    }


/* Footer section style */

.footer {
    background: var(--header-bg);
    backdrop-filter: blur(14px);
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-copy {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

@media (max-width:576px) {

    .footer .container {
        flex-direction: column;
        gap: 10px;
        align-items: start !important;
    }

    .footer-copy {
        font-size: 12px;
    }
}





