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

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #f7f9fc;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
}

/* NAV */

.ac-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 22px;
    background: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.ac-logo {
    font-size: 20px;
    font-weight: 600;
    color: #0077ff;
    text-decoration: none;
}

.ac-menu {
    list-style: none;
    display: flex;
    gap: 18px;
}

.ac-menu a {
    text-decoration: none;
    font-size: 14px;
    color: #1a1a1a;
    opacity: 0.8;
}

.ac-menu a:hover {
    opacity: 1;
}

.ac-menu-btn {
    display: none;
    font-size: 22px;
    cursor: pointer;
}

/* HERO */

.ac-hero {
    padding: 70px 20px 60px 20px;
    background: linear-gradient(135deg, #eaf3ff, #f7f9fc);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.ac-hero-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.ac-hero h1 {
    margin: 0 0 12px 0;
    font-size: 42px;
    color: #0077ff;
}

.ac-hero p {
    margin: 0 0 22px 0;
    font-size: 15px;
    opacity: 0.85;
}

.ac-hero-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.ac-btn-primary,
.ac-btn-secondary {
    display: inline-block;
    padding: 10px 24px;
    font-size: 14px;
    border-radius: 999px;
    text-decoration: none;
    cursor: pointer;
}

.ac-btn-primary {
    background: #0077ff;
    color: #fff;
}

.ac-btn-secondary {
    background: transparent;
    color: #0077ff;
    border: 1px
