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

:root {
    --background: #090a0c;
    --surface: #0e1013;
    --surface-hover: #12151a;

    --border: #20242b;
    --border-hover: #303640;

    --text: #f3f4f6;
    --text-secondary: #9da3ad;
    --text-muted: #686f7a;

    --accent: #4f8cff;
    --accent-hover: #3f7ee8;

    --container: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--background);
    color: var(--text);
    font-family: "Inter", sans-serif;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin: 0 auto;
}


/* =========================
   NAVBAR
========================= */

.navbar {
    height: 70px;
    border-bottom: 1px solid var(--border);
    background: rgba(9, 10, 12, 0.94);
    backdrop-filter: blur(14px);

    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar-inner {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--text-secondary);
    font-size: 13px;
    transition: color 0.2s ease;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.login-link {
    color: var(--text-secondary);
    font-size: 13px;
}

.login-link:hover {
    color: var(--text);
}


/* =========================
   BUTTONS
========================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 40px;
    padding: 0 17px;

    border-radius: 6px;
    border: 1px solid transparent;

    font-size: 13px;
    font-weight: 600;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

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

.btn-primary:hover {
    background: var(--accent-hover);
}

.btn-secondary {
    border-color: var(--border);
    background: transparent;
    color: var(--text);
}

.btn-secondary:hover {
    background: var(--surface);
    border-color: var(--border-hover);
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 610px;

    display: flex;
    align-items: center;

    border-bottom: 1px solid var(--border);

    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    top: -300px;
    right: -250px;

    border: 1px solid rgba(79, 140, 255, 0.06);

    border-radius: 50%;

    pointer-events: none;
}

.hero-content {
    max-width: 760px;
}

.hero h1 {
    font-size: clamp(52px, 7vw, 82px);
    line-height: 1.02;
    letter-spacing: -4px;
    font-weight: 600;
}

.hero p {
    max-width: 570px;

    margin-top: 28px;

    color: var(--text-secondary);

    font-size: 17px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 10px;

    margin-top: 34px;
}


/* =========================
   FEATURED
========================= */

.featured {
    padding: 100px 0;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    margin-bottom: 30px;
}

.section-label {
    display: block;

    margin-bottom: 12px;

    color: var(--text-muted);

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 1.5px;
}

.section-heading h2 {
    font-size: 29px;
    font-weight: 600;
    letter-spacing: -1px;
}

.view-all {
    color: var(--text-secondary);

    font-size: 13px;

    transition: color 0.2s ease;
}

.view-all:hover {
    color: var(--text);
}


/* =========================
   PRODUCTS
========================= */

.product-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 14px;
}

.product-card {
    min-height: 270px;

    padding: 24px;

    display: flex;
    flex-direction: column;

    background: var(--surface);

    border: 1px solid var(--border);
    border-radius: 8px;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.product-card:hover {
    background: var(--surface-hover);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 50px;
}

.product-category {
    color: var(--accent);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1px;
}

.product-status {
    color: var(--text-muted);

    font-size: 11px;
}

.product-card h3 {
    font-size: 19px;
    font-weight: 600;

    letter-spacing: -0.3px;
}

.product-card p {
    margin-top: 10px;

    color: var(--text-secondary);

    font-size: 13px;
    line-height: 1.65;
}

.product-link {
    margin-top: auto;

    color: var(--text);

    font-size: 12px;
    font-weight: 500;
}


/* =========================
   STATEMENT
========================= */

.statement {
    padding: 110px 0;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.statement-inner {
    max-width: 700px;
}

.statement h2 {
    font-size: clamp(38px, 5vw, 58px);

    line-height: 1.08;

    letter-spacing: -2.5px;

    font-weight: 600;
}

.statement p {
    max-width: 520px;

    margin-top: 22px;

    color: var(--text-secondary);

    font-size: 15px;
    line-height: 1.7;
}


/* =========================
   FOOTER
========================= */

.footer {
    padding: 50px 0 25px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-logo {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.footer-inner p {
    margin-top: 8px;

    color: var(--text-muted);

    font-size: 12px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;

    gap: 22px;
}

.footer-links a {
    color: var(--text-muted);

    font-size: 12px;
}

.footer-links a:hover {
    color: var(--text-secondary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;

    margin-top: 50px;
    padding-top: 20px;

    border-top: 1px solid var(--border);

    color: var(--text-muted);

    font-size: 11px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 850px) {

    .nav-links {
        display: none;
    }

    .hero {
        min-height: 560px;
    }

    .hero h1 {
        letter-spacing: -3px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .footer-inner {
        flex-direction: column;
    }
}


@media (max-width: 550px) {

    .container {
        width: min(calc(100% - 30px), var(--container));
    }

    .nav-actions .btn {
        display: none;
    }

    .hero {
        min-height: 520px;
    }

    .hero h1 {
        font-size: 48px;
        letter-spacing: -2.5px;
    }

    .hero p {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

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