@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
    /* Brand Colors */
    --background: #171941;
    --foreground: #ffffff;
    --primary: #0099CC;
    --secondary: #425B76;
    --card: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);

    /* Fonts */
    --font-heading: 'Barlow Condensed', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--background);
    background-image: linear-gradient(rgba(23, 25, 65, 0.85), rgba(23, 25, 65, 0.95)), url('assets/background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--foreground);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

/* Background Elements */
.bg-glow {
    position: fixed;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 153, 204, 0.12) 0%, rgba(23, 25, 65, 0) 70%);
    border-radius: 50%;
    top: -20%;
    right: -20%;
    z-index: -1;
    animation: pulse 15s infinite alternate;
}

.bg-glow-2 {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(66, 91, 118, 0.08) 0%, rgba(23, 25, 65, 0) 70%);
    border-radius: 50%;
    bottom: -10%;
    left: -10%;
    z-index: -1;
    animation: pulse 15s infinite alternate-reverse;
}

/* Container */
.container {
    max-width: 900px;
    width: 90%;
    text-align: center;
    z-index: 10;
    padding: 3rem 0;
}

/* Logo */
.logo {
    margin-bottom: 4rem;
    animation: fadeDown 1s ease-out;
}

.logo img {
    height: 50px;
    width: auto;
}

/* Typography */
h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff 0%, #b4b4b4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
}

.tagline {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.highlight {
    color: var(--primary);
}

.emphasis-text {
    font-size: 1.25rem;
    color: #fff;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.small-tagline {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sub-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 1rem;
    font-style: italic;
}

/* Layout Sections */
.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    animation: fadeUp 1s ease-out 0.2s backwards;
}

.hero-section {
    margin-bottom: 1rem;
}

.section-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.section-transparent {
    padding: 2rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
    text-align: left;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 1rem 0;
}

.grid-item {
    padding: 1rem;
    border-left: 1px solid var(--card-border);
}

.text-left {
    text-align: left;
}

.styled-list {
    list-style: none;
    padding: 0;
}

.styled-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.styled-list li::before {
    content: "•";
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* CTA */
.cta-section {
    border-color: var(--primary);
    background: rgba(0, 153, 204, 0.05);
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: white;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.25rem;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 153, 204, 0.3);
    margin-top: 1rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 153, 204, 0.5);
    background: #00ace6;
}

/* Footer */
footer {
    margin-top: 4rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
    animation: fadeIn 1s ease-out 1s backwards;
    border-top: 1px solid var(--card-border);
    padding-top: 2rem;
    width: 100%;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .grid-item {
        border-left: none;
        border-top: 1px solid var(--card-border);
        padding-top: 1.5rem;
    }

    .grid-item:first-child {
        border-top: none;
    }

    .text-left {
        text-align: center;
    }

    .styled-list li {
        padding-left: 0;
        list-style-position: inside;
    }

    .styled-list li::before {
        position: static;
        margin-right: 0.5rem;
    }

    .section-card {
        padding: 2rem 1.5rem;
    }
}