:root {
    --bg-base: #090b12;
    --bg-surface: rgba(18, 24, 40, 0.82);
    --bg-card: rgba(255, 255, 255, 0.04);
    --border-soft: rgba(255, 255, 255, 0.14);
    --text-main: #f4f7ff;
    --text-muted: #a9b3c7;
    --accent: #ffb800;
    --accent-strong: #ffd55c;
    --mint: #53e0c8;
    --danger: #ff6b6b;
    --font-head: "Outfit", sans-serif;
    --font-body: "Inter", sans-serif;
    --radius-lg: 20px;
    --radius-md: 14px;
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

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

html,
body {
    min-height: 100%;
}

body {
    color: var(--text-main);
    background: radial-gradient(circle at 85% -10%, rgba(83, 224, 200, 0.2), transparent 46%),
        radial-gradient(circle at -20% 100%, rgba(255, 184, 0, 0.16), transparent 38%),
        linear-gradient(160deg, #070910 0%, #0d1120 52%, #121a2f 100%);
    font-family: var(--font-body);
    line-height: 1.5;
    overflow-x: hidden;
}

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

.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.08;
    z-index: -1;
    background-image: radial-gradient(rgba(255, 255, 255, 0.3) 0.4px, transparent 0.4px);
    background-size: 3px 3px;
}

.glow {
    position: fixed;
    border-radius: 999px;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.3;
}

.glow-one {
    top: -220px;
    left: -140px;
    width: 540px;
    height: 540px;
    background: rgba(255, 184, 0, 0.55);
    animation: drift 16s ease-in-out infinite alternate;
}

.glow-two {
    right: -240px;
    bottom: -220px;
    width: 620px;
    height: 620px;
    background: rgba(83, 224, 200, 0.5);
    animation: drift 18s ease-in-out infinite alternate-reverse;
}

.container {
    width: min(1120px, 92vw);
    margin: 0 auto;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(14px);
    background: rgba(9, 11, 18, 0.68);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-inner {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text-main);
    text-decoration: none;
    font-family: var(--font-head);
    font-weight: 700;
    letter-spacing: 0.2px;
}

.brand-logo {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 12px 26px rgba(255, 184, 0, 0.22);
}

.nav-links {
    display: inline-flex;
    gap: 10px;
    align-items: center;
}

.link-pill {
    color: var(--text-muted);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 0.92rem;
    transition: 0.25s ease;
}

.link-pill:hover {
    color: var(--text-main);
    border-color: rgba(255, 255, 255, 0.24);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
    padding: 11px 16px;
    color: #111;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
    box-shadow: 0 12px 30px rgba(255, 184, 0, 0.32);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(255, 184, 0, 0.42);
}

.btn-soft {
    padding: 11px 16px;
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-soft:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.09);
}

.hero {
    padding: 72px 0 36px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 184, 0, 0.42);
    background: rgba(255, 184, 0, 0.12);
    color: #ffe6a1;
    border-radius: 999px;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 7px 12px;
}

.hero h1 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 5vw, 3.6rem);
    line-height: 1.06;
    letter-spacing: -0.02em;
    margin-top: 16px;
}

.accent-text {
    color: var(--accent);
}

.hero p {
    color: var(--text-muted);
    margin-top: 14px;
    max-width: 760px;
    font-size: 1.06rem;
}

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

.grid {
    display: grid;
    gap: 16px;
}

.feature-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    margin: 18px 0 24px;
}

.card {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.feature-card {
    padding: 22px;
    grid-column: span 4;
}

.feature-card h3 {
    font-family: var(--font-head);
    font-size: 1.18rem;
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.96rem;
}

.kpi-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 28px;
}

.kpi {
    padding: 15px;
    text-align: center;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-soft);
    background: var(--bg-card);
}

.kpi strong {
    display: block;
    font-family: var(--font-head);
    font-size: 1.44rem;
    margin-bottom: 4px;
}

.kpi span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.section-title {
    font-family: var(--font-head);
    font-size: 1.58rem;
    margin-bottom: 14px;
}

.section-subtitle {
    color: var(--text-muted);
    max-width: 760px;
    margin-bottom: 16px;
}

.support-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    margin: 14px 0 24px;
}

.support-card {
    grid-column: span 6;
    padding: 20px;
}

.support-card h3 {
    font-family: var(--font-head);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.support-card p {
    color: var(--text-muted);
    margin-bottom: 14px;
}

.meta-list {
    list-style: none;
    display: grid;
    gap: 10px;
}

.meta-list li {
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 12px;
    padding: 11px 12px;
}

.meta-list strong {
    color: var(--text-main);
}

.faq {
    margin: 20px 0 28px;
    padding: 16px;
}

.faq details {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    margin: 10px 0;
    background: rgba(255, 255, 255, 0.02);
}

.faq summary {
    cursor: pointer;
    padding: 13px 14px;
    font-weight: 700;
}

.faq p {
    color: var(--text-muted);
    padding: 0 14px 14px;
}

.cta {
    padding: 24px;
    margin-bottom: 34px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
}

.cta p {
    color: var(--text-muted);
}

.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 22px 0 34px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer a {
    color: #dce5f5;
}

.fade-up {
    animation: fadeUp 0.7s ease both;
}

.delay-1 {
    animation-delay: 0.08s;
}

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

.delay-3 {
    animation-delay: 0.24s;
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pill {
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: var(--text-muted);
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.84rem;
    background: rgba(255, 255, 255, 0.02);
}

@keyframes drift {
    from {
        transform: translateY(0) translateX(0) scale(1);
    }

    to {
        transform: translateY(16px) translateX(10px) scale(1.03);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

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

@media (max-width: 960px) {
    .feature-card {
        grid-column: span 6;
    }

    .support-card {
        grid-column: span 12;
    }

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

    .cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 680px) {
    .topbar-inner {
        min-height: 68px;
    }

    .nav-links .link-pill {
        display: none;
    }

    .feature-card {
        grid-column: span 12;
    }

    .hero {
        padding-top: 56px;
    }
}
