:root {
    --bg: #0b0f14;
    --bg-soft: #111821;
    --card: #151e29;
    --text: #f4f7fa;
    --muted: #9ca8b6;
    --border: #233140;
    --accent: #6ab4f0;
    --accent-soft: #4a90d9;
    --red: #c8282c;
    --max-width: 1280px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Rajdhani', sans-serif;
}

.container {
    width: min(var(--max-width), 92%);
    margin: auto;
}

section {
    padding: 80px 0;
}

/* Navbar */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    backdrop-filter: blur(12px);
    background: rgba(8, 12, 18, 0.75);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-inner {
    height: 75px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 130px;
    width: auto;
    display: block;
}

.menu {
    display: flex;
    gap: 30px;
}

.menu a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.menu a:hover {
    color: var(--accent);
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: transparent;
    color: var(--text);
    font-size: 1.2rem;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

.menu-toggle:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Hero */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(121, 184, 255, 0.08), transparent 45%),
        repeating-linear-gradient(90deg, transparent 0, transparent 79px, rgba(121, 184, 255, 0.035) 80px),
        repeating-linear-gradient(0deg, transparent 0, transparent 79px, rgba(121, 184, 255, 0.035) 80px),
        repeating-linear-gradient(135deg, transparent 0, transparent 180px, rgba(121, 184, 255, 0.015) 181px, rgba(121, 184, 255, 0.015) 182px),
        linear-gradient(rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.88)),
        linear-gradient(180deg, #0b0f14 0%, #081018 50%, #05080c 100%);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(0deg, transparent 0, transparent 60px, rgba(121, 184, 255, 0.02) 61px),
        linear-gradient(90deg, transparent 15%, rgba(121, 184, 255, 0.04) 15.2%, transparent 15.4%),
        linear-gradient(0deg, transparent 75%, rgba(121, 184, 255, 0.04) 75.2%, transparent 75.4%);
    opacity: 0.7;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 18px;
    border: 1px solid rgba(121, 184, 255, 0.35);
    border-radius: 50px;
    margin-bottom: 20px;
    color: var(--accent);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero h1 {
    font-size: 7rem;
    line-height: 0.95;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--red);
}

.hero p {
    font-size: 1.35rem;
    color: var(--muted);
    max-width: 700px;
    line-height: 1.8;
}

.hero-actions {
    margin-top: 40px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Buttons */

.btn {
    text-decoration: none;
    padding: 15px 28px;
    border-radius: 6px;
    transition: 0.3s;
    font-weight: 600;
}

.btn-primary {
    background: var(--accent);
    color: #000;
}

.btn-secondary {
    border: 1px solid var(--border);
    color: white;
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 200px;
    height: 54px;
    padding: 0 20px;
    font-size: 1rem;
}

/* Sections */

.section-title {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    color: var(--muted);
    max-width: 800px;
    margin: 0 auto 70px;
    line-height: 1.8;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 35px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    margin-bottom: 15px;
    font-size: 1.7rem;
    color: var(--accent);
}

.card p {
    color: var(--muted);
    line-height: 1.8;
}

.values {
    background: var(--bg-soft);
}

.quote-section {
    position: relative;
    padding: 100px 0;
    background: var(--bg-soft);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(90deg, transparent 0, transparent 79px, rgba(121, 184, 255, 0.04) 80px),
        repeating-linear-gradient(0deg, transparent 0, transparent 79px, rgba(121, 184, 255, 0.04) 80px),
        radial-gradient(ellipse at center, rgba(121, 184, 255, 0.06), transparent 70%);
    pointer-events: none;
}

.quote-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-soft) 20%, var(--red) 50%, var(--accent-soft) 80%, transparent);
    opacity: 0.85;
}

.quote {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: auto;
    padding: 50px 40px;
    text-align: center;
    font-size: 2.6rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    line-height: 1.5;
    border-left: 3px solid var(--accent-soft);
    border-right: 3px solid var(--accent-soft);
}

.quote::before,
.quote::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.quote::before {
    top: 0;
}

.quote::after {
    bottom: 0;
}

.quote-line {
    display: block;
}

.quote-line + .quote-line {
    margin-top: 0.35em;
}

.quote em {
    font-style: normal;
    color: var(--accent);
}

.timeline {
    max-width: 900px;
    margin: auto;
}

.timeline-item {
    border-left: 2px solid var(--accent-soft);
    padding-left: 30px;
    margin-bottom: 40px;
}

.timeline-item h3 {
    color: var(--accent);
    margin-bottom: 10px;
}

/* CTA */

.cta {
    text-align: center;
}

.cta h2 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.cta p {
    color: var(--muted);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.cta-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */

footer {
    border-top: 1px solid var(--border);
    padding: 40px 0;
    text-align: center;
    color: var(--muted);
}

.footer-brand {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.footer-logo {
    height: 375px;
    width: auto;
}

.footer-copy {
    margin-top: 10px;
}

/* Responsive */

@media (max-width: 900px) {
    .hero h1 {
        font-size: 4rem;
    }

    .section-title {
        font-size: 2.8rem;
    }

    .quote-section {
        padding: 70px 0;
    }


    .quote {
        font-size: 1.8rem;
        padding: 36px 24px;
    }

    .menu-toggle {
        display: flex;
    }

    .menu {
        display: none;
        position: fixed;
        top: 75px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        padding: 8px 0 16px;
        background: rgba(8, 12, 18, 0.97);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--border);
    }

    .menu.is-open {
        display: flex;
    }

    .menu a {
        padding: 14px 4%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .menu a:last-child {
        border-bottom: none;
    }
}
