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

:root {
    --bg: #0b0b0b;
    --surface: #111111;
    --line: rgba(255, 255, 255, 0.1);
    --line-soft: rgba(255, 255, 255, 0.06);
    --text: #ece8e1;
    --muted: #b0b3b1;
    --soft: #6c6f6e;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    letter-spacing: 0.1px;
}

nav {
    position: fixed;
    width: 100%;
    padding: 20px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(3px);
    z-index: 100;
    transition: 0.3s;
}

nav:hover {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
}

nav img {
    height: 36px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 36px;
}

nav a {
    color: var(--muted);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--text);
}

.about-page {
    padding: 56px 24px 96px;
}

.about-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 48px 56px 56px;
    background: var(--surface);
    border: 1px solid var(--line-soft);
}

.about-header {
    margin-bottom: 32px;
}

.about-header h1 {
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -0.4px;
}

.about-divider {
    width: 100%;
    height: 1px;
    margin-top: 18px;
    background: var(--line);
}

.about-content p {
    font-size: 17px;
    line-height: 1.68;
    color: var(--text);
    margin-bottom: 22px;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.footer {
    margin-top: 120px;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 80px 80px 40px;
}

/* TOP GRID */
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

/* BRAND */
.footer-brand img {
    height: 36px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: #888;
    max-width: 400px;
    line-height: 1.7;
}

/* SOCIAL */
.footer-social {
    margin-top: 20px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #aaa;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #fff;
}

/* NAV */
.footer-nav h4 {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 20px;
}

.footer-nav a {
    display: block;
    margin-bottom: 10px;
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-nav a:hover {
    color: #fff;
    transform: translateX(4px);
}

/* BOTTOM */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
    font-size: 12px;
    color: #555;
    letter-spacing: 1px;
}

/* RESPONSIVE */
@media(max-width: 900px) {

    .footer {
        padding: 60px 20px 30px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 900px) {
    nav {
        padding-left: 24px;
        padding-right: 24px;
    }

    .about-container {
        padding: 36px 28px 40px;
    }
}

@media (max-width: 760px) {

    .about-page {
        padding-top: 140px;
        padding-bottom: 72px;
    }

    .about-header h1 {
        font-size: 26px;
    }

    .about-content p {
        font-size: 16px;
        line-height: 1.65;
    }
}

@media (max-width: 760px) {
    nav {
        padding-top: 18px;
        padding-bottom: 18px;
        flex-direction: column;
        gap: 16px;
    }

    nav ul {
        gap: 18px;
        flex-wrap: wrap;
        justify-content: center;
    }
}
