:root {
    --bg-0: #07121e;
    --bg-1: #0d1b2c;
    --surface: rgba(11, 24, 39, 0.84);
    --surface-soft: rgba(255, 255, 255, 0.04);
    --stroke: rgba(159, 214, 255, 0.14);
    --text: #eef7ff;
    --text-soft: #a8bbcd;
    --text-muted: #708398;
    --accent: #67dfff;
    --accent-strong: #1db4ff;
    --accent-warm: #ffba52;
    --success: #8df0b1;
    --radius-xl: 28px;
    --radius-lg: 20px;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(103, 223, 255, 0.1), transparent 30%),
        radial-gradient(circle at 90% 0%, rgba(255, 186, 82, 0.08), transparent 22%),
        linear-gradient(160deg, var(--bg-0), var(--bg-1));
    min-height: 100vh;
}

a {
    color: inherit;
}

.wrap {
    width: min(1180px, calc(100% - 44px));
    margin: 0 auto;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(18px);
    background: rgba(7, 18, 30, 0.72);
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.brand img {
    width: 34px;
    height: 34px;
    border-radius: 10px;
}

.brand span {
    color: var(--accent);
}

.nav {
    display: flex;
    gap: 22px;
    color: var(--text-soft);
    font-size: 0.95rem;
}

.nav a {
    text-decoration: none;
}

.nav a:hover {
    color: var(--text);
}

.hero {
    padding: 84px 0 56px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
    gap: 30px;
    align-items: center;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(103, 223, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
    color: var(--accent);
    font-size: 0.88rem;
    margin-bottom: 20px;
}

.kicker::before {
    content: '';
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--accent);
}

h1, h2, h3 {
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.04em;
}

h1 {
    font-size: clamp(2.6rem, 5vw, 4.8rem);
    line-height: 1.02;
    margin-bottom: 18px;
}

h2 {
    font-size: clamp(1.9rem, 3vw, 3rem);
    line-height: 1.08;
    margin-bottom: 12px;
}

p {
    color: var(--text-soft);
    line-height: 1.75;
}

.hero-copy p {
    max-width: 620px;
    font-size: 1.08rem;
}

.actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, background 0.2s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: #03131f;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
}

.hero-visual,
.panel,
.contact-box {
    border-radius: var(--radius-xl);
    border: 1px solid var(--stroke);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.hero-visual {
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.metrics {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.metric {
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.metric strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1.15rem;
}

section.content {
    padding: 0 0 72px;
}

.section-head {
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: end;
}

.section-head p {
    max-width: 520px;
}

.grid-3,
.grid-2 {
    display: grid;
    gap: 22px;
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--stroke);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(103, 223, 255, 0.1);
    color: var(--accent);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.list {
    margin-top: 14px;
    padding-left: 18px;
    display: grid;
    gap: 8px;
    color: var(--text-soft);
    line-height: 1.65;
}

.steps {
    display: grid;
    gap: 14px;
}

.step {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 14px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
}

.step-no {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(103, 223, 255, 0.1);
    color: var(--accent);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

.contact-box {
    padding: 28px;
}

.contact-box p {
    margin-top: 10px;
}

.footer {
    padding: 28px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
}

@media (max-width: 980px) {
    .hero-grid,
    .grid-3,
    .grid-2,
    .section-head {
        grid-template-columns: 1fr;
    }

    .section-head {
        align-items: start;
    }
}

@media (max-width: 720px) {
    .nav {
        display: none;
    }

    .wrap {
        width: min(1180px, calc(100% - 28px));
    }

    .metrics {
        grid-template-columns: 1fr;
    }
}
