@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap");

:root {
    --ink: #131428;
    --pink: #d1155d;
    --cyan: #00aad1;
}
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    background: var(--ink);
    color: #fff;
    font-family: Lato, sans-serif;
    line-height: 1.6;
}
a {
    color: inherit;
    text-decoration: none;
}
.container {
    max-width: 1300px;
    margin: auto;
    padding: 0 1.5rem;
}
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0.6rem;
    z-index: 10;
}
.inner-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo img {
    width: 100px;
}
.hamburger {
    border: 0;
    background: transparent;
    display: grid;
    gap: 7px;
    width: 35px;
    cursor: pointer;
}
.hamburger i {
    height: 3px;
    background: #fff;
    display: block;
}
.nav-links {
    position: fixed;
    inset: 0 0 0 100%;
    z-index: 9;
    background: #131428ed;
    display: grid;
    place-items: center;
    text-align: center;
    transition: inset 0.3s;
}
.nav-links ul {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 1rem;
    font-size: clamp(1.5rem, 4vw, 2rem);
}
.nav-open .nav-links {
    inset: 0;
}
.page.homepage {
    position: relative;
}
.page.homepage > :not(.rocket-animation) {
    position: relative;
    z-index: 2;
}
.hero {
    min-height: 62vh;
    padding: 12rem 1.5rem 8rem;
    background: linear-gradient(110deg, #131428 10%, #293152 100%);
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    position: relative;
}
.hero-inner {
    max-width: 1000px;
    position: relative;
    z-index: 2;
}
.hero-home .hero-inner {
    max-width: 58%;
    padding-top: 2rem;
}
.hero h1 {
    font-size: clamp(2.6rem, 7vw, 5rem);
    line-height: 1.1;
    margin: 0;
}
.hero h1 span {
    color: var(--cyan);
}
.lead {
    font-size: clamp(1rem, 2vw, 1.35rem);
    max-width: 800px;
}
.btn {
    display: inline-block;
    background: var(--pink);
    color: #fff;
    border: 0;
    padding: 0.7rem 1.3rem;
    margin-top: 1rem;
    font: inherit;
    cursor: pointer;
}
.small {
    font-size: 0.9rem;
}
.rocket-animation {
    position: fixed;
    z-index: 1;
    inset: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    opacity: 0.98;
}
.rocket-animation svg {
    width: 100% !important;
    height: 100% !important;
    overflow: visible;
}
.rocket-animation svg > g > g:first-child path {
    opacity: 0;
}
section {
    padding: 5rem 1.5rem;
}
.narrow {
    max-width: 900px;
}
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.cards article {
    border-top: 2px solid var(--cyan);
    padding-top: 1rem;
}
.cards h3 {
    font-size: 1.4rem;
    font-weight: 400;
}
.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}
.benefits article {
    display: flex;
    gap: 1rem;
    align-items: start;
}
.benefits b {
    border: 2px solid var(--cyan);
    color: var(--cyan);
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    text-align: center;
    flex: none;
}
.cta {
    background: #1e203d;
}
footer {
    padding: 3rem 1.5rem;
    color: #b9bdd3;
    text-align: center;
}
footer a {
    color: var(--cyan);
}
@media (max-width: 700px) {
    .hero-home .hero-inner {
        max-width: 100%;
        padding-top: 0;
    }
    .rocket-animation {
        opacity: 0.95;
    }
    section {
        padding: 3rem 1.5rem;
    }
}
@media (prefers-reduced-motion: reduce) {
    .rocket-animation {
        animation: none;
    }
}
