:root {
    --bg0: #070a12;
    --bg1: #0b1223;
    --card: rgba(255, 255, 255, 0.06);
    --card2: rgba(255, 255, 255, 0.09);
    --stroke: rgba(255, 255, 255, 0.14);
    --text: rgba(255, 255, 255, 0.92);
    --muted: rgba(255, 255, 255, 0.70);
    --muted2: rgba(255, 255, 255, 0.55);
    --accent: #8cf7d7;
    --accent2: #a9b6ff;
    --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
    --r: 18px;
    --container: 1080px;
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
    color: var(--text);
    background: radial-gradient(1200px 600px at 50% 0%, #0f1a35 0%, var(--bg0) 55%, #05060a 100%);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none
}

strong {
    font-weight: 650
}

code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace
}

.container {
    width: min(var(--container), calc(100% - 48px));
    margin: 0 auto;
}

.srOnly {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Background blobs */
.bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1
}

.bg__blob {
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 999px;
    filter: blur(50px);
    opacity: 0.55;
    transform: translate3d(0, 0, 0);
    animation: float 16s ease-in-out infinite;
}

.bg__blob--a {
    left: -140px;
    top: 120px;
    background: radial-gradient(circle at 30% 30%, #8cf7d7, transparent 60%)
}

.bg__blob--b {
    right: -180px;
    top: 20px;
    background: radial-gradient(circle at 40% 40%, #a9b6ff, transparent 62%);
    animation-duration: 22s
}

.bg__blob--c {
    left: 20%;
    bottom: -240px;
    background: radial-gradient(circle at 40% 40%, #ff9ac9, transparent 60%);
    animation-duration: 19s
}

.bg__grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
    opacity: 0.35;
    mix-blend-mode: overlay;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1)
    }

    50% {
        transform: translate(40px, -30px) scale(1.05)
    }
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: rgba(7, 10, 18, 0.55);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px
}

.brand__dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    box-shadow: 0 0 0 6px rgba(140, 247, 215, 0.12);
}

.brand__text {
    font-weight: 700;
    letter-spacing: 0.2px
}

.nav {
    display: flex;
    align-items: center
}

.nav__toggle {
    display: none;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    padding: 10px 12px;
    cursor: pointer;
}

.nav__toggleIcon {
    width: 18px;
    height: 2px;
    background: rgba(255, 255, 255, 0.9);
    display: block;
    position: relative;
}

.nav__toggleIcon::before,
.nav__toggleIcon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: rgba(255, 255, 255, 0.9);
}

.nav__toggleIcon::before {
    top: -6px
}

.nav__toggleIcon::after {
    top: 6px
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 18px
}

.nav__link {
    color: var(--muted);
    font-size: 14px;
    padding: 10px 10px;
    border-radius: 999px;
}

.nav__link:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.06)
}

.nav__cta {
    font-size: 14px;
    padding: 10px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(140, 247, 215, 0.18), rgba(169, 182, 255, 0.18));
    border: 1px solid rgba(255, 255, 255, 0.16);
}

/* Hero */
.hero {
    padding: 64px 0 24px
}

.hero__grid {
    display: grid;
    gap: 28px;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: var(--muted);
    font-size: 13px;
}

.badge__pulse {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 0 0 rgba(140, 247, 215, 0.55);
    animation: pulse 1.8s ease-out infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(140, 247, 215, 0.55)
    }

    100% {
        box-shadow: 0 0 0 14px rgba(140, 247, 215, 0)
    }
}

.hero h1 {
    margin: 18px 0 0;
    font-size: clamp(34px, 4vw, 52px);
    letter-spacing: -0.02em;
    line-height: 1.05;
}

.hero__sub {
    margin: 14px 0 0;
    font-size: 16px;
    color: var(--muted);
    line-height: 1.6;
    max-width: 58ch;
}

.u-accent {
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero__actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.btn--primary {
    background: linear-gradient(135deg, rgba(140, 247, 215, 0.22), rgba(169, 182, 255, 0.22));
}

.btn--ghost:hover,
.btn--primary:hover {
    transform: translateY(-1px)
}

.btn:active {
    transform: translateY(0px)
}

.hero__meta {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.metaCard {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 12px 12px;
}

.metaCard__label {
    font-size: 12px;
    color: var(--muted2)
}

.metaCard__value {
    margin-top: 6px;
    font-weight: 650
}

.sep {
    opacity: 0.55;
    padding: 0 6px
}

.hero__visual {
    position: relative;
    min-height: 480px;
    border-radius: var(--r);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(0px);
    opacity: 0.8;
}

.orb--1 {
    width: 180px;
    height: 180px;
    left: -40px;
    top: 40px;
    background: radial-gradient(circle at 30% 30%, rgba(140, 247, 215, 0.85), transparent 65%)
}

.orb--2 {
    width: 220px;
    height: 220px;
    right: -60px;
    top: 120px;
    background: radial-gradient(circle at 35% 35%, rgba(169, 182, 255, 0.90), transparent 65%)
}

.orb--3 {
    width: 260px;
    height: 260px;
    left: 120px;
    bottom: -80px;
    background: radial-gradient(circle at 35% 35%, rgba(255, 154, 201, 0.85), transparent 65%)
}

.stack {
    position: absolute;
    inset: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stack__card {
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 14px 14px;
}

.stack__card--tight {
    padding: 12px 14px
}

.stack__top {
    display: flex;
    gap: 8px;
    margin-bottom: 10px
}

.stack__pill {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.82);
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
}

.stack__pill--soft {
    opacity: 0.75
}

.stack__title {
    font-weight: 750;
    margin-bottom: 6px
}

.stack__text {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5
}

.chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.chip {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
}

.bullets {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55
}

.hero__scrollHint {
    padding: 18px 0 0
}

.scrollHint {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    color: var(--muted2);
    font-size: 13px;
}

.scrollHint__dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
    animation: bounce 1.6s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(4px)
    }
}

/* Sections */
.section {
    padding: 64px 0
}

.section__head {
    display: flex;
    gap: 16px;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 18px;
}

.section__head h2 {
    margin: 0;
    font-size: 28px
}

.section__head p {
    margin: 0;
    color: var(--muted);
    max-width: 70ch;
    line-height: 1.6
}

.grid3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px
}

.grid2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px
}

.card {
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--r);
    padding: 16px 16px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
}

.card h3 {
    margin: 0 0 8px;
    font-size: 16px
}

.card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6
}

.card--hover {
    transition: transform .15s ease, background .15s ease
}

.card--hover:hover {
    transform: translateY(-2px);
    background: var(--card2)
}

.card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px
}

.pill {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 10px;
    border-radius: 999px;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.tItem {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 12px;
    align-items: stretch;
}

.tItem__dot {
    margin-top: 16px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    box-shadow: 0 0 0 6px rgba(140, 247, 215, 0.10);
}

.tItem__body {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--r);
    padding: 14px 16px;
}

.tItem__top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap
}

.tItem__top h3 {
    margin: 0;
    font-size: 16px
}

.tItem__meta {
    color: var(--muted2);
    font-size: 13px
}

.tItem__body ul {
    margin: 10px 0 0;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.55
}

.callout {
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 16px;
    border-radius: var(--r);
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(135deg, rgba(140, 247, 215, 0.10), rgba(169, 182, 255, 0.10));
}

.callout h3 {
    margin: 0 0 6px
}

.callout p {
    margin: 0;
    color: var(--muted)
}

.contact {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 14px
}

.contact__links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 12px
}

.divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    margin: 14px 0
}

.muted {
    color: var(--muted)
}

.small {
    font-size: 13px;
    line-height: 1.6
}

.footer {
    padding: 18px 0 44px
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--muted2)
}

/* Responsive */
@media (max-width: 980px) {
    .hero__grid {
        grid-template-columns: 1fr;
    }

    .hero__visual {
        min-height: 420px;
    }

    .hero__meta {
        grid-template-columns: 1fr;
    }

    .section__head {
        flex-direction: column;
        align-items: flex-start
    }

    .grid3 {
        grid-template-columns: 1fr
    }

    .grid2 {
        grid-template-columns: 1fr
    }

    .contact {
        grid-template-columns: 1fr
    }

    .nav__toggle {
        display: inline-flex
    }

    .nav__menu {
        position: absolute;
        right: 24px;
        top: 62px;
        display: none;
        flex-direction: column;
        gap: 8px;
        padding: 12px;
        width: min(320px, calc(100vw - 48px));
        border-radius: 16px;
        background: rgba(7, 10, 18, 0.86);
        border: 1px solid rgba(255, 255, 255, 0.14);
        backdrop-filter: blur(14px);
    }

    .nav__menu.isOpen {
        display: flex
    }

    .nav__cta {
        width: 100%;
        text-align: center
    }
}