:root {
    --bg: #050505;
    --bg-soft: #0a0a0f;
    --surface: rgba(15, 15, 22, 0.92);
    --surface-solid: #101018;
    --surface-2: #15151f;
    --surface-3: #1c1c28;
    --border: rgba(255, 255, 255, 0.1);
    --border-strong: rgba(255, 255, 255, 0.16);
    --text: #f7f8fc;
    --text-soft: #d9def0;
    --muted: #9298aa;
    --muted-2: #6f7688;
    --accent: #4169e1;
    --accent-2: #6f8fff;
    --accent-soft: rgba(65, 105, 225, 0.14);
    --accent-glow: rgba(65, 105, 225, 0.34);
    --gold: #d4af37;
    --success: #38d996;
    --danger: #ff5f57;
    --warning: #ffbd2e;
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 26px;
    --radius-xl: 34px;
    --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.38);
    --shadow-blue: 0 24px 80px rgba(65, 105, 225, 0.18);
    --container: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background:
        radial-gradient(circle at 18% 12%, rgba(65, 105, 225, 0.2), transparent 32rem),
        radial-gradient(circle at 88% 22%, rgba(212, 175, 55, 0.09), transparent 30rem),
        radial-gradient(circle at 50% 94%, rgba(65, 105, 225, 0.12), transparent 34rem),
        var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(circle at 50% 20%, black, transparent 72%);
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: rgba(5, 5, 5, 0.38);
}

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

a {
    color: inherit;
}

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

h1,
h2,
h3,
h4 {
    font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
    line-height: 1.05;
    letter-spacing: -0.045em;
}

p {
    color: var(--muted);
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    transform: translateY(-140%);
    background: var(--accent);
    color: #fff;
    padding: 10px 14px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    background: rgba(5, 5, 5, 0.74);
    backdrop-filter: blur(22px);
}

.navbar {
    width: min(1280px, calc(100% - 40px));
    min-height: 82px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.brand {
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    white-space: nowrap;
}

.brand-icon {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    color: #fff;
    border: 1px solid rgba(65, 105, 225, 0.42);
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(65, 105, 225, 0.95), rgba(65, 105, 225, 0.18)),
        rgba(255, 255, 255, 0.05);
    box-shadow: 0 16px 38px rgba(65, 105, 225, 0.22);
}

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

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    list-style: none;
}

.nav-menu a,
.footer-links a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.94rem;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.nav-menu a {
    display: inline-flex;
    padding: 10px 14px;
    border: 1px solid transparent;
    border-radius: 999px;
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
    color: #fff;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 18px;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    border: 1px solid rgba(65, 105, 225, 0.42);
    border-radius: 999px;
    background: rgba(65, 105, 225, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
    transform: translateY(-2px);
    background: rgba(65, 105, 225, 0.26);
    box-shadow: 0 18px 38px rgba(65, 105, 225, 0.2);
}

.nav-cta-logout {
    border-color: rgba(255, 95, 87, 0.38);
    background: rgba(255, 95, 87, 0.1);
}

.nav-cta-logout:hover,
.nav-cta-logout:focus-visible {
    border-color: rgba(255, 95, 87, 0.6);
    background: rgba(255, 95, 87, 0.18);
    box-shadow: 0 18px 38px rgba(255, 95, 87, 0.16);
}

.nav-mobile-account {
    display: none;
}

.nav-mobile-cta {
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    color: #fff !important;
    border-color: rgba(65, 105, 225, 0.34) !important;
    background: rgba(65, 105, 225, 0.12) !important;
}

.nav-mobile-cta.is-logout {
    border-color: rgba(255, 95, 87, 0.4) !important;
    background: rgba(255, 95, 87, 0.1) !important;
}

.nav-toggle,
.nav-toggle-label {
    display: none;
}

.hero {
    position: relative;
    min-height: calc(100vh - 82px);
    display: flex;
    align-items: center;
    padding: 96px 0 82px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 14%;
    left: 50%;
    width: min(820px, 90vw);
    height: min(820px, 90vw);
    transform: translateX(-30%);
    background: radial-gradient(circle, rgba(65, 105, 225, 0.22), transparent 68%);
    filter: blur(12px);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    gap: clamp(42px, 6vw, 82px);
    align-items: center;
}

.eyebrow,
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-2);
    border: 1px solid rgba(65, 105, 225, 0.28);
    background: rgba(65, 105, 225, 0.11);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow {
    padding: 8px 14px;
    margin-bottom: 22px;
}

.section-badge {
    padding: 7px 16px;
    margin-bottom: 16px;
}

.hero h1 {
    max-width: 760px;
    margin-bottom: 24px;
    font-size: clamp(3rem, 6.6vw, 6.55rem);
    background: linear-gradient(90deg, #fff 0%, #cdd8ff 52%, #7fa0ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-lead {
    max-width: 650px;
    margin-bottom: 34px;
    color: var(--text-soft);
    font-size: clamp(1.08rem, 2vw, 1.28rem);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 15px 24px;
    border-radius: 16px;
    border: 1px solid var(--border);
    color: #fff;
    text-decoration: none;
    font-weight: 850;
    letter-spacing: -0.015em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-3px);
}

.btn-primary {
    border-color: rgba(65, 105, 225, 0.7);
    background: linear-gradient(135deg, var(--accent), #274bbd);
    box-shadow: 0 22px 44px rgba(65, 105, 225, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    box-shadow: 0 30px 60px rgba(65, 105, 225, 0.34);
}

.btn-secondary,
.btn-plan {
    background: rgba(255, 255, 255, 0.055);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover,
.btn-secondary:focus-visible,
.btn-plan:hover,
.btn-plan:focus-visible {
    background: rgba(255, 255, 255, 0.09);
    border-color: var(--border-strong);
}

.btn-large {
    min-height: 62px;
    padding-inline: 34px;
    font-size: 1.05rem;
}

.hero-proof {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-proof span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 9px 12px;
    background: rgba(255, 255, 255, 0.035);
    font-size: 0.9rem;
    font-weight: 700;
}

.hero-proof i {
    color: var(--gold);
}

.hero-panel {
    position: relative;
}

.hero-panel::before {
    content: '';
    position: absolute;
    inset: -18px;
    z-index: -1;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.38), rgba(212, 175, 55, 0.12), transparent 72%);
    filter: blur(18px);
    opacity: 0.82;
}

.dashboard-mockup {
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: rgba(12, 12, 18, 0.92);
    box-shadow: var(--shadow-soft), 0 0 0 1px rgba(65, 105, 225, 0.11) inset;
}

.mockup-topbar {
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.035);
}

.traffic-lights {
    display: flex;
    gap: 8px;
}

.light {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.light-red {
    background: var(--danger);
}

.light-yellow {
    background: var(--warning);
}

.light-green {
    background: var(--success);
}

.mockup-url {
    flex: 1;
    min-width: 0;
    color: var(--muted);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
    padding: 7px 14px;
    text-align: center;
    font-size: 0.82rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mockup-url span,
.mockup-status {
    color: var(--accent-2);
}

.mockup-status {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(65, 105, 225, 0.25);
    border-radius: 12px;
    background: rgba(65, 105, 225, 0.1);
}

.mockup-body {
    padding: clamp(18px, 3vw, 28px);
}

.mockup-header-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.mockup-kicker {
    margin-bottom: 6px;
    color: var(--accent-2);
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mockup-header-row h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.live-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--success);
    border: 1px solid rgba(56, 217, 150, 0.24);
    border-radius: 999px;
    background: rgba(56, 217, 150, 0.09);
    padding: 7px 11px;
    font-size: 0.8rem;
    font-weight: 900;
}

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

.stat-card {
    min-height: 118px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
    padding: 16px;
}

.stat-card span {
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.stat-card strong {
    color: #fff;
    font-size: clamp(1.55rem, 3vw, 2.15rem);
    line-height: 1;
}

.stat-card small {
    color: var(--accent-2);
    font-weight: 800;
}

.chart-card {
    position: relative;
    height: 180px;
    overflow: hidden;
    margin-bottom: 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        rgba(255, 255, 255, 0.035);
    background-size: 100% 25%, 16.66% 100%, auto;
}

.chart-line {
    position: absolute;
    left: 7%;
    right: 7%;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, var(--accent-2), transparent);
    transform-origin: center;
    opacity: 0.86;
}

.chart-line-one {
    top: 42%;
    transform: rotate(-7deg);
}

.chart-line-two {
    top: 56%;
    transform: rotate(8deg);
    opacity: 0.36;
}

.chart-bar {
    position: absolute;
    bottom: 0;
    width: 8%;
    border-radius: 10px 10px 0 0;
    background: linear-gradient(180deg, rgba(65, 105, 225, 0.92), rgba(65, 105, 225, 0.18));
}

.bar-one {
    left: 10%;
    height: 30%;
}

.bar-two {
    left: 26%;
    height: 48%;
}

.bar-three {
    left: 42%;
    height: 38%;
}

.bar-four {
    left: 58%;
    height: 64%;
}

.bar-five {
    left: 74%;
    height: 76%;
}

.activity-feed {
    display: grid;
    gap: 10px;
}

.activity-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.035);
    padding: 13px 14px;
}

.activity-item span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-soft);
    font-weight: 700;
}

.activity-item i {
    color: var(--accent-2);
}

.activity-item strong {
    color: var(--accent-2);
    white-space: nowrap;
    font-size: 0.9rem;
}

.logo-strip {
    border-block: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.025);
}

.strip-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    padding-block: 22px;
}

.strip-grid span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 9px 13px;
    background: rgba(255, 255, 255, 0.03);
    font-weight: 800;
    font-size: 0.88rem;
}

.strip-grid i {
    color: var(--gold);
}

.section {
    padding: clamp(74px, 9vw, 118px) 0;
}

.section-header {
    max-width: 760px;
    margin: 0 auto 54px;
    text-align: center;
}

.section-header h2,
.workflow-copy h2,
.faq-copy h2,
.final-cta h2 {
    color: #fff;
    font-size: clamp(2.15rem, 4.6vw, 4.1rem);
    margin-bottom: 16px;
}

.section-header p:not(.section-badge),
.workflow-copy p,
.faq-copy p,
.final-cta p {
    font-size: 1.08rem;
    color: var(--text-soft);
}

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

.feature-card,
.pricing-card,
.step-card,
.faq-list details {
    border: 1px solid var(--border);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
        var(--surface);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.feature-card {
    min-height: 304px;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: auto -60px -80px auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(65, 105, 225, 0.12);
    filter: blur(4px);
    opacity: 0;
    transition: opacity 0.24s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(65, 105, 225, 0.42);
    box-shadow: var(--shadow-blue);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    color: #fff;
    border: 1px solid rgba(65, 105, 225, 0.32);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.95), rgba(65, 105, 225, 0.15));
    box-shadow: 0 18px 36px rgba(65, 105, 225, 0.18);
    font-size: 1.5rem;
}

.feature-card h3,
.step-card h3 {
    margin-bottom: 10px;
    color: #fff;
    font-size: 1.35rem;
}

.workflow-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(65, 105, 225, 0.06));
    border-block: 1px solid var(--border);
}

.workflow-grid,
.faq-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    gap: clamp(34px, 6vw, 76px);
    align-items: center;
}

.workflow-copy p {
    max-width: 620px;
    margin-bottom: 26px;
}

.workflow-steps {
    display: grid;
    gap: 16px;
}

.step-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    border-radius: var(--radius-lg);
    padding: 24px;
}

.step-card span {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 16px;
    background: rgba(212, 175, 55, 0.08);
    font-weight: 900;
}

.pricing-section {
    background:
        radial-gradient(circle at 50% 0%, rgba(65, 105, 225, 0.16), transparent 38rem),
        rgba(255, 255, 255, 0.018);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 420px));
    justify-content: center;
    gap: 22px;
}

.pricing-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    padding: 30px;
}

.pricing-card-featured {
    border-color: rgba(65, 105, 225, 0.54);
    box-shadow: var(--shadow-blue), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.popular-ribbon {
    position: absolute;
    top: 18px;
    right: 18px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), #274bbd);
    padding: 7px 12px;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pricing-header {
    margin-bottom: 24px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--border);
}

.plan-label {
    margin-bottom: 12px;
    color: var(--accent-2);
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pricing-header h3 {
    margin-bottom: 12px;
    color: #fff;
    font-size: clamp(2.7rem, 4vw, 4rem);
}

.pricing-header h3 span {
    color: var(--muted);
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 1rem;
    letter-spacing: 0;
}

.pricing-list {
    display: grid;
    gap: 14px;
    margin-bottom: 26px;
    list-style: none;
}

.pricing-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-soft);
    font-weight: 700;
}

.pricing-list i {
    color: var(--accent-2);
    margin-top: 2px;
}

.btn-plan {
    width: 100%;
}

.pricing-card .btn-primary {
    width: 100%;
}

.faq-copy {
    align-self: start;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-list details {
    border-radius: 20px;
    padding: 18px 20px;
}

.faq-list summary {
    cursor: pointer;
    color: #fff;
    font-weight: 900;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: '+';
    float: right;
    color: var(--accent-2);
    font-size: 1.2rem;
}

.faq-list details[open] summary::after {
    content: '–';
}

.faq-list p {
    margin-top: 12px;
    color: var(--muted);
}

.final-cta {
    position: relative;
    overflow: hidden;
    padding: clamp(82px, 10vw, 132px) 0;
    text-align: center;
    border-top: 1px solid var(--border);
    background:
        radial-gradient(circle at 50% 0%, rgba(65, 105, 225, 0.24), transparent 35rem),
        linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.04));
}

.final-cta h2 {
    max-width: 860px;
    margin-inline: auto;
}

.final-cta p:not(.section-badge) {
    max-width: 650px;
    margin: 0 auto 30px;
}

.site-footer {
    border-top: 1px solid var(--border);
    background: rgba(5, 5, 5, 0.92);
    padding: 54px 0 28px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 36px;
    padding-bottom: 34px;
}

.footer-brand {
    margin-bottom: 16px;
    font-size: 1.2rem;
}

.footer-grid p {
    max-width: 520px;
}

.footer-links {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 16px 24px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    color: var(--muted-2);
    font-size: 0.9rem;
}

.reveal {
    animation: reveal-up 0.76s ease both;
}

.reveal-delay {
    animation-delay: 0.16s;
}

@keyframes reveal-up {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}

@media (max-width: 1080px) {
    .hero-grid,
    .workflow-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding-top: 74px;
    }

    .hero-copy {
        text-align: center;
    }

    .hero-lead,
    .workflow-copy p {
        margin-inline: auto;
    }

    .hero-actions,
    .hero-proof {
        justify-content: center;
    }

    .dashboard-mockup {
        max-width: 760px;
        margin-inline: auto;
    }

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

@media (max-width: 860px) {
    .navbar {
        min-height: 74px;
    }

    .nav-toggle-label {
        width: 46px;
        height: 46px;
        display: inline-grid;
        place-items: center;
        gap: 5px;
        padding: 10px;
        cursor: pointer;
        border: 1px solid var(--border);
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.045);
    }

    .nav-toggle-label span {
        width: 22px;
        height: 2px;
        display: block;
        border-radius: 999px;
        background: #fff;
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .nav-menu {
        position: absolute;
        top: 74px;
        left: 20px;
        right: 20px;
        display: grid;
        gap: 8px;
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        padding: 14px;
        border: 1px solid var(--border);
        border-radius: 22px;
        background: rgba(10, 10, 15, 0.97);
        backdrop-filter: blur(22px);
        box-shadow: var(--shadow-soft);
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .nav-menu a {
        justify-content: center;
        width: 100%;
        padding: 13px;
    }

    .nav-mobile-account {
        display: block;
    }

    .nav-toggle:checked ~ .nav-menu {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-toggle:checked + .nav-toggle-label span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle:checked + .nav-toggle-label span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle:checked + .nav-toggle-label span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav-cta {
        display: none;
    }

    .pricing-grid {
        grid-template-columns: minmax(0, 1fr);
        max-width: 520px;
        margin-inline: auto;
    }

    .footer-grid,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .container,
    .navbar {
        width: min(100% - 28px, var(--container));
    }

    .brand {
        font-size: 1rem;
    }

    .brand-icon {
        width: 38px;
        height: 38px;
        border-radius: 13px;
    }

    .hero {
        padding: 54px 0 62px;
    }

    .hero h1 {
        font-size: clamp(2.62rem, 14vw, 4.3rem);
    }

    .hero-actions .btn,
    .final-cta .btn {
        width: 100%;
    }

    .hero-proof span {
        width: 100%;
        justify-content: center;
    }

    .mockup-topbar {
        gap: 10px;
        padding: 12px;
    }

    .mockup-status {
        display: none;
    }

    .mockup-header-row {
        flex-direction: column;
    }

    .stats-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        min-height: 96px;
    }

    .activity-item {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .section {
        padding: 66px 0;
    }

    .feature-card,
    .pricing-card,
    .step-card {
        padding: 22px;
    }

    .step-card {
        grid-template-columns: 1fr;
    }

    .popular-ribbon {
        position: static;
        width: max-content;
        margin-bottom: 16px;
    }
}
