/* GLOBAL */
body {
    margin: 0;
    font-family: "Inter", sans-serif;

    background: linear-gradient(180deg, #f3f7ff 0%, #e2edff 50%, #cddffe 100%);
    background-attachment: fixed;

    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: #1b2535;
}

/* ambient glow */
body::before, body::after {
    content: "";
    position: fixed;
    border-radius: 50%;
    filter: blur(75px);
    z-index: -1;
}

body::before {
    width: 650px;
    height: 650px;
    top: -200px;
    right: -200px;
    background: rgba(0,130,255,0.30);
}

body::after {
    width: 600px;
    height: 600px;
    bottom: -180px;
    left: -180px;
    background: rgba(0,200,255,0.20);
}

/* BRAND */
.top-brand {
    text-align: center;
    font-size: 54px;
    font-weight: 800;
    margin-top: 55px;
    margin-bottom: 22px;
    background: linear-gradient(90deg, #2b72ff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 16px rgba(0,130,255,0.25);
    letter-spacing: 3px;
}

/* NAVBAR — same as home */
.nav-bar {
    display: flex;
    gap: 16px;
    justify-content: center;
    padding: 20px 0;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e6eefa;
}

.nav-bar a,
.nav-bar .soon {
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    padding: 6px 10px;
    color: #1c1c1c;
    transition: 0.25s;
}


.nav-bar a:hover {
    color: #1b6dff;
    transform: translateY(-2px);
}

.nav-bar a:hover::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #1b6dff;
    border-radius: 2px;
}

.divider {
    opacity: .45;
    display: flex;
    align-items: center;
    justify-content: center;
}

.soon {
    opacity: .35;
}

/* HERO */
.hero {
    max-width: 950px;
    margin: 90px auto;
    padding: 50px 60px;

    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(0,60,160,0.18);
    border-radius: 20px;

    backdrop-filter: blur(8px);
    box-shadow: 0 6px 30px rgba(0,70,150,0.12);

    text-align: center;
}

.hero h1 {
    font-size: 52px;
    font-weight: 900;
    color: #0d1a33;
}

.hero p {
    font-size: 21px;
    margin-top: 18px;
    line-height: 1.75;
}

/* SECTIONS */
section {
    max-width: 950px;
    margin: 60px auto;
    padding: 36px 45px;

    background: rgba(255,255,255,0.87);
    border: 1px solid rgba(0,60,160,0.12);
    border-radius: 18px;

    box-shadow: 0 4px 24px rgba(0,70,150,0.08);
}

section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #0b2340;
    font-weight: 800;

    border-left: 6px solid #1b6dff;
    padding-left: 16px;
}

section p {
    font-size: 20px;
    line-height: 1.8;
    color: #273245;
}

/* CODE LINE */
.code-line {
    font-family: "JetBrains Mono", monospace;
    font-size: 19px;
    background: #eaf2ff;
    border-left: 5px solid #1b6dff;
    padding: 12px 18px;
    margin: 26px 0;
}

/* CTA */
.cta {
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(0,70,160,0.2);
    border-left: 6px solid #00b4ff;
    border-radius: 18px;
    padding: 32px 40px;
    max-width: 950px;
    margin: 90px auto;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
}

/* FOOTER */
.footer {
    margin-top: auto;
    text-align: center;
    padding: 28px;
    background: rgba(255,255,255,0.92);
    border-top: 1px solid rgba(0,70,160,0.18);
    color: #445065;
    font-weight: 600;
}
.footer-mail {
    color: #2b72ff;
    text-decoration: none;
    font-weight: 600;
}

.footer-mail:hover {
    text-decoration: underline;
}
