:root {
    color-scheme: dark;
    --aero-bg: #050505;
    --aero-surface: rgba(18, 18, 18, 0.88);
    --aero-border: rgba(255, 255, 255, 0.08);
    --aero-muted: #9ca3af;
    --aero-brand: #34c05e;
    --aero-brand-strong: #239c47;
}

html {
    background: var(--aero-bg);
}

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(52, 192, 94, 0.16), transparent 32%),
        radial-gradient(circle at top right, rgba(52, 192, 94, 0.1), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 18%),
        var(--aero-bg);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(circle at center, black 48%, transparent 92%);
    pointer-events: none;
    opacity: 0.5;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.img-zoom-container {
    overflow: hidden;
}

.img-zoom {
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.img-zoom-container:hover .img-zoom {
    transform: scale(1.08);
}

.glass-panel {
    background: rgba(8, 8, 8, 0.62);
    backdrop-filter: blur(22px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.soft-card {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--aero-border);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.2);
}

.soft-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid transparent;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), transparent 42%) border-box;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.8;
}

.orb {
    position: absolute;
    border-radius: 9999px;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.nav-current {
    color: #ffffff !important;
}

.nav-current::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    margin-top: 6px;
    border-radius: 9999px;
    background: linear-gradient(90deg, rgba(52, 192, 94, 0.2), rgba(52, 192, 94, 1), rgba(52, 192, 94, 0.2));
}

.metric-shell {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.96), rgba(18, 18, 18, 0.88));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.premium-divider {
    position: relative;
}

.premium-divider::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, rgba(52, 192, 94, 0.9), transparent);
}

.hero-mask {
    mask-image: linear-gradient(to bottom, black 84%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 84%, transparent 100%);
}

.aero-page-hero {
    min-height: clamp(680px, 88vh, 920px);
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    padding-top: clamp(7.5rem, 10vw, 9.5rem);
    padding-bottom: clamp(4rem, 6vw, 6rem);
}

.page-shell {
    position: relative;
    isolation: isolate;
}

.page-shell > :not(.orb) {
    position: relative;
    z-index: 1;
}

.page-shell::after {
    content: "";
    position: absolute;
    inset: 20vh 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    z-index: 0;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    padding: 0.45rem 0.85rem;
}

.stat-pill {
    border-radius: 1rem;
    border: 1px solid rgba(52, 192, 94, 0.18);
    background: rgba(52, 192, 94, 0.08);
}

.aero-action-row {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 2rem;
}

.aero-action {
    display: block;
    padding: 0.875rem 1.75rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.9375rem;
    text-align: center;
    white-space: nowrap;
    line-height: 1.4;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.aero-action:hover {
    transform: translateY(-1px);
}

.aero-action-primary {
    background: var(--aero-brand-strong);
    color: #ffffff;
    box-shadow: 0 0 0 1px rgba(52, 192, 94, 0.18), 0 14px 36px rgba(35, 156, 71, 0.24);
}

.aero-action-primary:hover {
    background: var(--aero-brand);
    box-shadow: 0 0 0 1px rgba(92, 218, 130, 0.26), 0 18px 44px rgba(35, 156, 71, 0.32);
}

.aero-action-light {
    background: #ffffff;
    color: #050505;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
}

.aero-action-light:hover {
    background: #f3f4f6;
}

.aero-action-secondary {
    background: rgba(8, 8, 8, 0.62);
    color: #ffffff;
    backdrop-filter: blur(22px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.22);
}

.aero-action-secondary:hover {
    background: rgba(12, 12, 12, 0.8);
    border-color: rgba(52, 192, 94, 0.24);
}

@media (min-width: 640px) {
    .aero-action-row {
        flex-direction: row;
    }

    .aero-action {
        flex: 1 1 auto;
        min-width: 0;
    }
}

@media (max-width: 767px) {
    body::before {
        background-size: 48px 48px;
        opacity: 0.35;
    }

    .aero-page-hero {
        min-height: auto;
        padding-top: 7rem;
        padding-bottom: 3.5rem;
    }

    .nav-current::after {
        display: none;
    }
}