/* AEM Labs → Landing → Base CSS
   ============================= */


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

* {
    font-family: "Inter Tight", "Arial", sans-serif;
}

body {
    background: linear-gradient(165deg, var(--bg-color-1) 0%, var(--bg-color-2) 45%, #181611 100%);

}

header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(var(--bg-color-2-rgb), 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(var(--accent-color-1-rgb), 0.2);
    width: 100%;
}

header .container {
    margin: 0 auto;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 65%;
}

header .container>a img {
    display: block;
    width: auto;
    height: 40px;
    object-fit: contain;
}

header nav {
    display: flex;
    gap: 8px;
    align-items: center;
}

header nav>a {
    color: #eee;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

header nav>a:not(:nth-child(5)):hover {
    background: rgba(var(--accent-color-1-rgb), 0.25);
}

header nav>a:nth-child(4) {
    background: var(--accent-color-1);
    color: var(--bg-color-2);
    margin: 0 4px;
    transition: all 0.3s ease;
}

header nav>a:nth-child(4):hover {
    background: var(--accent-color-2);
    transform: translateY(-1px);
}

header nav>a:nth-child(4):active {
    transform: scale(0.99);
}

header nav>a:nth-child(5) {
    color: #ccc;
    font-weight: 500;
    font-size: 14px;
}

header nav>a:nth-child(5):hover {
    color: var(--accent-color-1);
}

footer {
    flex-shrink: 0;
    width: 100%;
    padding: 24px 20%;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bg-color-2);
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

footer p {
    margin: 0;
    font-size: 13px;
    color: #ddd;
    letter-spacing: 0.3px;
}

footer a {
    color: var(--accent-color-1);
    font-size: 13px;
    text-decoration: none;
    font-weight: 600;
}

footer a:hover {
    color: var(--accent-color-2);
    text-decoration: underline;
}

/* Sections */
section h1 span,
section h2 span,
section p span {
    color: var(--accent-color-1);
}

section:not(.hero) {
    width: 65%;
    margin: 0 auto 60px;
    position: relative;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.section-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.section-header p {
    font-size: 14px;
    font-weight: 500;
    color: #ddd;
    margin-bottom: 24px;
    line-height: 1.5;
}