* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: #050816;
    color: white;
    line-height: 1.6;
}

.hero {
    position: relative;
    min-height: 100vh;

    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,0.96) 0%,
            rgba(255,255,255,0.90) 42%,
            rgba(255,255,255,0.55) 100%
        ),
        url('assets/hero-bg.png') center center/cover no-repeat;

    display: flex;
    align-items: center;
    padding: 60px 8%;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.logo {
    width: 260px;
    margin-bottom: 34px;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: #3156d4;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 13px;
}

h1 {
    font-size: clamp(44px, 7vw, 82px);
    line-height: 1.05;
    margin-bottom: 24px;

    color: #0b163f;
}

.hero p {
    font-size: 20px;
    color: #42506f;
    max-width: 650px;
    margin-bottom: 36px;
}

.overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            rgba(5, 8, 22, 0.75),
            rgba(5, 8, 22, 0.95)
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.logo {
    width: 260px;
    margin-bottom: 40px;
}

h1 {
    font-size: clamp(48px, 8vw, 90px);
    line-height: 1.05;
    margin-bottom: 24px;

    background: linear-gradient(90deg, #25d0ff, #7f5cff);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}



.buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: bold;
    transition: 0.25s;

    text-decoration: none;
}
.btn-primary {
    background: linear-gradient(90deg, #1e90ff, #7f5cff);
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

.section {
    padding: 100px 8%;
}

.dark {
    background: #0b1023;
}

.container {
    max-width: 1200px;
    margin: auto;
}

h2 {
    font-size: 42px;
    margin-bottom: 24px;
}

.section-text {
    max-width: 800px;
    color: #c7d2f2;
    font-size: 18px;
}

.cards {
    margin-top: 50px;

    display: grid;
    grid-template-columns:
        repeat(auto-fit, minmax(240px, 1fr));

    gap: 24px;
}

.card {
    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 20px;

    padding: 28px;

    backdrop-filter: blur(10px);

    transition: 0.25s;
}

.card:hover {
    transform: translateY(-4px);

    border-color: rgba(80,140,255,0.5);
}

.card h3 {
    margin-bottom: 14px;
    font-size: 24px;
}

.card p {
    color: #c7d2f2;
}

.email-link {
    display: inline-block;

    margin-top: 20px;

    color: #7f5cff;

    font-size: 22px;

    font-weight: bold;
}

@media (max-width: 768px) {

    .hero {
        padding-top: 120px;
    }

    h2 {
        font-size: 34px;
    }

    .hero p {
        font-size: 18px;
    }

}

a {
    text-decoration: none;
}

.footer a {
    color: #a8b8ff;
    text-decoration: none;
}

.footer a:hover {
    color: #7f5cff;
}