:root {
    color-scheme: dark;
    --bg: #030813;
    --bg-soft: #07111f;
    --panel: rgba(8, 18, 34, .78);
    --panel-strong: rgba(12, 27, 52, .92);
    --line: rgba(111, 216, 255, .24);
    --text: #eef8ff;
    --muted: #95abc4;
    --cyan: #55f7ff;
    --blue: #327bff;
    --violet: #b35cff;
    --green: #8bffbd;
    --shadow: 0 24px 80px rgba(0, 0, 0, .5);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--text);
    background:
        radial-gradient(circle at 18% 12%, rgba(85, 247, 255, .18), transparent 28rem),
        radial-gradient(circle at 88% 8%, rgba(179, 92, 255, .18), transparent 30rem),
        linear-gradient(180deg, #030813 0%, #07111f 42%, #040812 100%);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    line-height: 1.55;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(85, 247, 255, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(85, 247, 255, .04) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .86), transparent 78%);
}

a {
    color: var(--cyan);
}

.nav {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    gap: 22px;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    padding: 14px clamp(18px, 5vw, 72px);
    border-bottom: 1px solid rgba(111, 216, 255, .18);
    background: rgba(3, 8, 19, .78);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    color: var(--text);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0;
    text-decoration: none;
}

.brand img {
    width: 34px;
    height: 34px;
}

.links {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.links a {
    color: #c7d7ea;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.links a:hover {
    color: var(--cyan);
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .86fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
    min-height: calc(100vh - 72px);
    padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 72px) 72px;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 6vw 24px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(85, 247, 255, .6), transparent);
}

.hero-copy,
.hero-visual {
    position: relative;
    z-index: 1;
}

.eyebrow {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 0 0 22px;
}

.pill {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 6px 12px;
    border: 1px solid rgba(111, 216, 255, .25);
    border-radius: 999px;
    background: rgba(11, 28, 52, .68);
    color: #dff8ff;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 0 24px rgba(85, 247, 255, .08);
}

h1,
h2,
h3 {
    margin: 0;
    letter-spacing: 0;
}

h1 {
    max-width: 980px;
    font-size: clamp(44px, 6.6vw, 88px);
    line-height: .98;
    font-weight: 950;
}

.gradient-text {
    color: transparent;
    background: linear-gradient(110deg, #ffffff 0%, var(--cyan) 42%, #bfa3ff 86%);
    -webkit-background-clip: text;
    background-clip: text;
}

.lead {
    max-width: 760px;
    margin: 24px 0 0;
    color: #bdd0e7;
    font-size: clamp(18px, 2.2vw, 23px);
}

.actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 32px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 18px;
    border: 1px solid rgba(111, 216, 255, .26);
    border-radius: 8px;
    color: var(--text);
    background: rgba(12, 27, 52, .7);
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 0 0 rgba(85, 247, 255, 0);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.button:hover {
    transform: translateY(-2px);
    border-color: rgba(85, 247, 255, .7);
    box-shadow: 0 0 32px rgba(85, 247, 255, .18);
}

.button.primary {
    color: #03101f;
    border-color: transparent;
    background: linear-gradient(110deg, var(--cyan), #75a7ff 52%, #d79aff);
}

.button.ghost {
    background: transparent;
}

.hero-visual {
    display: grid;
    place-items: center;
}

.hero-visual img {
    width: min(100%, 620px);
    filter: drop-shadow(0 30px 80px rgba(51, 123, 255, .28));
}

.section {
    padding: 76px clamp(18px, 5vw, 72px);
}

.section.narrow {
    max-width: 980px;
    margin: 0 auto;
}

.section-head {
    max-width: 850px;
    margin-bottom: 34px;
}

.section-kicker {
    margin: 0 0 10px;
    color: var(--cyan);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

h2 {
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.05;
}

.section-head p,
.muted {
    color: var(--muted);
}

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

.two-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.card,
.panel,
.price-card,
.faq-item {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(10, 24, 45, .86), rgba(7, 13, 27, .86));
    box-shadow: var(--shadow);
}

.card,
.panel,
.faq-item {
    padding: 24px;
}

.card h3,
.price-card h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

.card p,
.faq-item p,
.price-card p {
    color: var(--muted);
}

.flow {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.flow-step {
    padding: 18px;
    border-left: 2px solid var(--cyan);
    background: rgba(8, 18, 34, .52);
}

.panel .flow {
    grid-template-columns: 1fr;
}

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

.price-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 100%;
    padding: 24px;
}

.price-card.featured {
    border-color: rgba(85, 247, 255, .78);
    box-shadow: 0 0 54px rgba(85, 247, 255, .15);
}

.price {
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 950;
}

.price span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.list li {
    position: relative;
    margin: 10px 0;
    padding-left: 22px;
    color: #c6d6e8;
}

.list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .72em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--cyan), var(--violet));
    box-shadow: 0 0 14px rgba(85, 247, 255, .55);
}

.status-list {
    display: grid;
    gap: 12px;
}

.status-row {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    padding: 16px;
    border: 1px solid rgba(111, 216, 255, .18);
    border-radius: 8px;
    background: rgba(4, 12, 24, .56);
}

.status-row strong {
    color: #ffffff;
}

.status-row span {
    color: var(--muted);
    text-align: right;
}

.terminal {
    overflow: hidden;
    padding: 0;
}

.terminal-head {
    display: flex;
    gap: 7px;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(111, 216, 255, .18);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 16px rgba(85, 247, 255, .8);
}

.dot:nth-child(2) {
    background: var(--blue);
}

.dot:nth-child(3) {
    background: var(--violet);
}

.terminal-body {
    padding: 22px;
    font-family: "SFMono-Regular", Consolas, monospace;
    color: #cdeeff;
}

.terminal-body p {
    margin: 0 0 12px;
}

.prompt {
    color: var(--green);
}

.footer {
    padding: 44px clamp(18px, 5vw, 72px);
    border-top: 1px solid rgba(111, 216, 255, .18);
    color: var(--muted);
    background: rgba(2, 6, 14, .86);
}

.footer-grid {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

@media (max-width: 980px) {
    .hero,
    .grid,
    .two-col,
    .flow,
    .price-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }
}

@media (max-width: 680px) {
    .nav {
        align-items: flex-start;
        flex-direction: column;
    }

    h1 {
        font-size: clamp(40px, 13vw, 58px);
    }

    .status-row {
        flex-direction: column;
    }

    .status-row span {
        text-align: left;
    }
}
