:root {
    --bg-dark: #050a14;
    --accent-primary: #00f2ff;
    --accent-secondary: #0088ff;
    --text-main: #e0e6ed;
    --text-dim: #94a3b8;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 20%, rgba(0, 242, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 136, 255, 0.05) 0%, transparent 40%),
        linear-gradient(rgba(5, 10, 20, 0.8), rgba(5, 10, 20, 0.8)),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300f2ff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: -1;
}

/* Enhanced tech vibe */
body::before {
    content: "";
    position: fixed;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(0deg,
            rgba(0, 242, 255, 0.03) 0px,
            rgba(0, 242, 255, 0.03) 1px,
            transparent 1px,
            transparent 2px);
    transform: translate(-50%, -50%) rotate(0deg);
    z-index: -2;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

header {
    padding: 2rem 0;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 4px;
    color: var(--text-main);
}

.logo span {
    color: var(--accent-primary);
    font-weight: 700;
}

/* Animations */
@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    opacity: 0;
    animation: fadeInSlide 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

.hero {
    padding: 4rem 0;
    text-align: center;
}

.hero-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-dim);
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Glassmorphism */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto 4rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.countdown-item span {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-primary);
    text-shadow: 0 0 15px rgba(0, 242, 255, 0.3);
}

.countdown-item p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dim);
}

.cta-section h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--text-dim);
    margin-bottom: 2rem;
}

#subscribe-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    padding: 0.5rem;
    gap: 0.5rem;
}

#subscribe-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    outline: none;
}

#subscribe-form button {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    color: var(--bg-dark);
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#subscribe-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.4);
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    margin: 4rem 0 3rem;
    text-align: center;
    color: var(--text-main);
    letter-spacing: 2px;
    background: linear-gradient(135deg, #fff 0%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.objective-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.objective-card {
    padding: 2.5rem;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.objective-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--accent-primary);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.15);
}

.card-icon {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: -10px;
    right: 10px;
    z-index: 0;
}

.objective-card h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.curriculum-list {
    list-style: none;
    position: relative;
    z-index: 1;
}

.curriculum-list li {
    font-size: 0.95rem;
    color: var(--text-dim);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.curriculum-list li::before {
    content: "→";
    color: var(--accent-primary);
    margin-right: 10px;
    font-weight: bold;
}

.timeline {
    padding: 6rem 0;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    padding: 2rem;
    gap: 1.5rem;
}

.roadmap-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.roadmap-item .date {
    display: block;
    font-family: 'Orbitron', sans-serif;
    color: var(--accent-secondary);
    font-size: 0.8rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.roadmap-item p {
    font-size: 0.9rem;
    font-weight: 500;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 10px rgba(0, 242, 255, 0.2);
        border-color: rgba(0, 242, 255, 0.5);
    }

    50% {
        box-shadow: 0 0 25px rgba(0, 242, 255, 0.4);
        border-color: rgba(0, 242, 255, 1);
    }

    100% {
        box-shadow: 0 0 10px rgba(0, 242, 255, 0.2);
        border-color: rgba(0, 242, 255, 0.5);
    }
}

.roadmap-item.active {
    background: rgba(0, 242, 255, 0.08);
    border: 1px solid var(--accent-primary);
    animation: pulse-glow 3s infinite ease-in-out;
}

.form-message {
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.form-message.success {
    color: #4ade80;
}

.form-message.error {
    color: #f87171;
}

.delay-5 {
    animation-delay: 1s;
}

footer {
    padding: 4rem 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    color: var(--text-dim);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2.2rem;
    }

    .countdown-container {
        gap: 1rem;
        padding: 2rem 1rem;
    }

    .countdown-item span {
        font-size: 1.8rem;
    }

    #subscribe-form {
        flex-direction: column;
    }
}

/* TelcoSec Ecosystem Section */
.ecosystem {
    padding-bottom: 8rem;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.ecosystem-card {
    padding: 2.5rem 2rem;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.ecosystem-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 242, 255, 0.1);
}

.ecosystem-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.ecosystem-card h4 {
    font-family: 'Orbitron', sans-serif;
    color: var(--accent-primary);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.ecosystem-card p {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.5;
}

/* Social Matrix */
.social-matrix {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-matrix a {
    color: var(--text-dim);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-matrix a svg {
    width: 24px;
    height: 24px;
}

.social-matrix a:hover {
    color: var(--accent-primary);
    transform: translateY(-3px);
    filter: drop-shadow(0 0 8px rgba(0, 242, 255, 0.5));
}
/* Refined Social Matrix */
.social-matrix {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.social-matrix a {
    color: var(--text-dim);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    border: 1px solid transparent;
}

.social-matrix a svg {
    width: 22px;
    height: 22px;
}

.social-matrix a:hover {
    color: var(--accent-primary);
    transform: translateY(-5px) scale(1.1);
    border-color: rgba(0, 242, 255, 0.3);
    background: rgba(0, 242, 255, 0.05);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.2);
}
