:root {
    --primary: #000000;
    --secondary: #64ffda;
    --text-primary: #ffffff;
    --text-secondary: #a8b2d1;
    --accent: #20f3e6;
    --glass: rgba(255, 255, 255, 0.03);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    background-color: var(--primary);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
}

header {
    width: 100%;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-logo {
    height: 40px;
    filter: drop-shadow(0 0 10px rgba(32, 243, 230, 0.3));
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--accent);
}

.hero-section {
    width: 100%;
    height: 60vh;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.hero-content {
    position: absolute;
    z-index: 10;
    text-align: center;
    padding: 2rem;
}

main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(to right, #fff, var(--accent));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 750px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.launching-soon {
    display: inline-block;
    padding: 0.6rem 1.8rem;
    border: 1px solid var(--accent);
    color: var(--accent);
    border-radius: 50px;
    margin-bottom: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    box-shadow: 0 0 20px rgba(32, 243, 230, 0.2);
}

.map-container {
    margin-top: 5rem;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 450px;
    background: #111;
    position: relative;
}

.map-static {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.map-container:hover .map-static {
    transform: scale(1.02);
}

footer {
    padding: 5rem 2rem;
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.info-item h3 {
    color: var(--accent);
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.info-item p {
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Consent Banner */
#consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    border-top: 1px solid var(--accent);
    padding: 1.5rem 2rem;
    display: none;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.consent-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.consent-btns {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.6rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    border: none;
    transition: 0.3s;
}

.btn-accept {
    background: var(--accent);
    color: #000;
}

.btn-decline {
    background: transparent;
    border: 1px solid #444;
    color: #888;
}

.btn:hover {
    opacity: 0.8;
}

/* Aithra Voice UI */
.aithra-container {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 20;
}

.aithra-orb-container {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.aithra-orb {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, var(--accent), #00a4ef);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(32, 243, 230, 0.5);
    transition: all 0.5s ease;
    animation: pulse-attract 3s infinite ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.aithra-icon {
    font-size: 1.5rem;
    color: #000;
    opacity: 0;
    transition: opacity 0.3s;
    position: absolute;
}

.aithra-icon.active {
    opacity: 1;
}

.aithra-status-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    min-height: 1.2rem;
}

.language-list {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    line-height: 1.6;
    animation: fadeIn 2s ease-in;
}

.language-list span {
    font-weight: 700;
    margin: 0 2px;
    text-shadow: 0 0 10px currentColor;
    display: inline-block;
    transition: transform 0.3s;
}

.language-list span:hover {
    transform: scale(1.2);
}

/* Individual Neon Colors for Languages */
.lang-en {
    color: #00ff00;
}

/* Neon Green */
.lang-ta {
    color: #ff00ff;
}

/* Neon Magenta */
.lang-ml {
    color: #00ffff;
}

/* Neon Cyan */
.lang-te {
    color: #ffff00;
}

/* Neon Yellow */
.lang-kn {
    color: #ffa500;
}

/* Neon Orange */
.lang-hi {
    color: #ff3333;
}

/* Neon Red */
.lang-mr {
    color: #bf00ff;
}

/* Neon Purple */
.lang-gu {
    color: #00ff80;
}

/* Neon Spring Green */
.lang-pa {
    color: #ff0080;
}

/* Neon Rose */
.lang-bn {
    color: #4d4dff;
}

/* Neon Blue */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* States */
.state-speaking .aithra-orb {
    animation: pulse-speaking 1.5s infinite ease-in-out;
    box-shadow: 0 0 50px rgba(32, 243, 230, 0.8);
}

.state-listening .aithra-orb {
    animation: pulse-listening 1s infinite ease-in-out;
    background: radial-gradient(circle, #ff4d4d, #b30000);
    box-shadow: 0 0 40px rgba(255, 77, 77, 0.6);
}

.state-processing .aithra-orb {
    animation: rotate-processing 2s infinite linear;
    background: radial-gradient(circle, #f39c12, #e67e22);
    box-shadow: 0 0 40px rgba(243, 156, 18, 0.6);
}

@keyframes pulse-speaking {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

@keyframes pulse-listening {
    0% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 77, 77, 0.4);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 50px rgba(255, 77, 77, 0.8);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 77, 77, 0.4);
    }
}

@keyframes rotate-processing {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(0.9);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes pulse-attract {
    0% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(32, 243, 230, 0.5);
    }

    50% {
        transform: scale(1.08);
        box-shadow: 0 0 50px rgba(32, 243, 230, 0.8);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(32, 243, 230, 0.5);
    }
}

.hero-banner-img.speaking {
    animation: banner-glow 3s infinite alternate;
}

@keyframes banner-glow {
    from {
        filter: brightness(0.5) contrast(1);
    }

    to {
        filter: brightness(0.7) contrast(1.1) saturate(1.2);
    }
}

/* Launch Event Section */
.launch-container {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin-bottom: 4rem;
    text-align: center;
}

.launch-label {
    color: var(--accent);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    font-weight: 700;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border: 1px solid var(--accent);
    min-width: 140px;
    box-shadow: 0 0 20px rgba(32, 243, 230, 0.3), inset 0 0 15px rgba(32, 243, 230, 0.1);
    backdrop-filter: blur(5px);
}

.time-block span {
    font-size: 5rem;
    font-weight: 800;
    color: #fff;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 10px var(--accent), 0 0 20px var(--accent), 0 0 40px var(--accent);
    line-height: 1;
}

.time-block label {
    font-size: 0.9rem;
    color: var(--accent);
    text-transform: uppercase;
    margin-top: 1rem;
    letter-spacing: 2px;
    font-weight: 600;
    text-shadow: 0 0 5px rgba(32, 243, 230, 0.5);
}

.launch-date-text {
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .h1 {
        font-size: 2.5rem;
    }

    #consent-banner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .countdown-timer {
        gap: 1rem;
    }

    .time-block {
        min-width: 70px;
        padding: 0.8rem;
    }

    .time-block span {
        font-size: 1.8rem;
    }
}

/* Neon Nav Link */
.nav-links a.neon-nav-link {
    color: var(--accent);
    text-shadow: 0 0 5px var(--accent), 0 0 10px var(--accent), 0 0 20px var(--accent);
    font-weight: bold;
    animation: neon-pulse 1.5s infinite alternate;
}

@keyframes neon-pulse {
    from {
        text-shadow: 0 0 5px var(--accent), 0 0 10px var(--accent);
    }

    to {
        text-shadow: 0 0 5px var(--accent), 0 0 10px var(--accent), 0 0 20px var(--accent), 0 0 40px var(--accent);
    }
}

/* Newsletter Section */
.newsletter-section {
    background: rgba(10, 10, 10, 0.8);
    border-top: 1px solid var(--accent);
    box-shadow: 0 0 20px rgba(32, 243, 230, 0.1);
    padding: 4rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    box-shadow: 0 0 15px var(--accent);
}

.newsletter-container {
    max-width: 650px;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(32, 243, 230, 0.2);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    transition: transform 0.3s, box-shadow 0.3s;
}

.newsletter-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(32, 243, 230, 0.15);
    border-color: rgba(32, 243, 230, 0.4);
}

.newsletter-container h2 {
    color: var(--accent);
    font-size: 2rem;
    margin-bottom: 0.8rem;
    text-shadow: 0 0 10px rgba(32, 243, 230, 0.5);
}

.newsletter-container p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.input-group {
    display: flex;
    gap: 10px;
    position: relative;
}

.input-group input {
    flex: 1;
    padding: 15px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s;
}

.input-group input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(32, 243, 230, 0.2);
}

.input-group button {
    padding: 0 30px;
    border: none;
    border-radius: 50px;
    background: var(--accent);
    color: #000;
    font-weight: 700;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 0 15px rgba(32, 243, 230, 0.4);
}

.input-group button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(32, 243, 230, 0.6);
}

.input-group button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.status-msg {
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
    height: 20px;
}

/* Checkbox Style */
.chk-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 15px;
    border-radius: 8px;
    margin-top: 15px;
}

.chk-group input[type="checkbox"] {
    accent-color: var(--accent);
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

.btn-action {
    background: linear-gradient(45deg, var(--accent), #00a4ef);
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 50px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(32, 243, 230, 0.3);
}

.btn-action:hover:not(:disabled) {
    box-shadow: 0 0 40px rgba(32, 243, 230, 0.6);
    transform: translateY(-2px);
}
/* Neon Blue-Violet */
.lang-fr {
    color: #00BFFF;
}

/* Neon Deep Pink */
.lang-it {
    color: #FF1493;
}

/* Neon Orange Red */
.lang-nl {
    color: #FF4500;
}

/* Neon Gold */
.lang-de {
    color: #FFD700;
}

/* Neon Tomato */
.lang-es {
    color: #FF6347;
}

/* Neon Lime Green */
.lang-ar {
    color: #32CD32;
}

