:root {
    --bg: #08090d;
    --bg-soft: #0f1118;
    --panel: rgba(15, 19, 29, 0.72);
    --panel-strong: rgba(20, 23, 35, 0.9);
    --line: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(255, 255, 255, 0.14);
    --text: #f5f7fb;
    --muted: #a0a8b8;
    --muted-strong: #d5d9e3;
    --accent: #ff5d1f;
    --accent-strong: #ff7a40;
    --accent-soft: rgba(255, 93, 31, 0.16);
    --success: #5fe38c;
    --shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
    --radius-xl: 30px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --container: min(1180px, calc(100vw - 32px));
    --narrow: min(760px, calc(100vw - 32px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background:
        radial-gradient(circle at top left, rgba(255, 93, 31, 0.18), transparent 34%),
        radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.06), transparent 22%),
        linear-gradient(180deg, #07080d 0%, #090b11 48%, #0a0d15 100%);
    color: var(--text);
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(circle at center, black 38%, transparent 78%);
    opacity: 0.35;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

main {
    display: block;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.narrow {
    width: var(--narrow);
}

.section {
    position: relative;
    padding: 96px 0;
}

.section--flush {
    padding-top: 48px;
}

.section--tight {
    padding: 40px 0 64px;
}

.section--soft {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 100%);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-strong);
    font-weight: 700;
}

.eyebrow::before {
    content: '';
    width: 34px;
    height: 1px;
    background: linear-gradient(90deg, var(--accent), transparent);
}

.section-heading {
    max-width: 780px;
    margin-bottom: 40px;
}

.section-heading h2,
.page-hero h1,
.hero h1,
.cta-panel h2 {
    margin: 14px 0 14px;
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.hero h1,
.page-hero h1 {
    font-size: clamp(3rem, 5vw, 5.8rem);
}

.section-heading h2,
.cta-panel h2 {
    font-size: clamp(2.15rem, 4vw, 3.75rem);
}

p {
    margin: 0;
    color: var(--muted);
    line-height: 1.72;
}

.hero-lead,
.page-lead,
.section-heading p {
    font-size: 1.05rem;
    max-width: 64ch;
}

.glass-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.card-grid,
.steps-grid,
.proof-grid,
.pricing-grid {
    display: grid;
    gap: 24px;
}

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

.reveal-up {
    opacity: 0;
    transform: translateY(18px);
    animation: revealUp 0.8s ease forwards;
}

.reveal-delay-1 { animation-delay: 0.08s; }
.reveal-delay-2 { animation-delay: 0.16s; }
.reveal-delay-3 { animation-delay: 0.24s; }

@keyframes revealUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1100px) {
    .card-grid--three,
    .pricing-grid,
    .proof-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 76px 0;
    }

    .section--flush {
        padding-top: 32px;
    }

    .section-heading,
    .hero-copy {
        margin-bottom: 28px;
    }
}
