@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&family=Russo+One&display=swap');

:root {
    color-scheme: dark;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background:
        radial-gradient(circle at top, rgba(255, 176, 46, 0.14), transparent 30%),
        linear-gradient(180deg, #090807 0%, #0f0d0b 45%, #090807 100%);
}

body.landing-page {
    margin: 0;
    min-height: 100vh;
    color: var(--text-primary);
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 176, 46, 0.12), transparent 24%),
        radial-gradient(circle at 85% 0%, rgba(47, 160, 90, 0.12), transparent 22%),
        linear-gradient(180deg, rgba(12, 10, 9, 0.98) 0%, rgba(8, 8, 7, 1) 100%);
    font-family: 'IBM Plex Sans', 'Segoe UI', sans-serif;
}

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

.lp-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.lp-topbar {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
    backdrop-filter: blur(14px);
    background: linear-gradient(180deg, rgba(9, 8, 7, 0.92), rgba(9, 8, 7, 0.68));
}

.lp-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Russo One', 'Arial Black', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lp-brand::before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), #ffd28b);
    box-shadow: 0 0 18px rgba(255, 176, 46, 0.45);
}

.lp-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.lp-nav a {
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    color: var(--text-secondary);
    font-size: 0.92rem;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.lp-nav a:hover,
.lp-nav a:focus-visible,
.lp-nav a.is-current {
    color: var(--text-primary);
    border-color: rgba(255, 176, 46, 0.34);
    background: rgba(255, 176, 46, 0.08);
}

.lp-hero {
    position: relative;
    overflow: hidden;
    padding: 34px;
    margin: 18px 0 24px;
    border: 1px solid rgba(255, 176, 46, 0.18);
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(19, 17, 15, 0.96), rgba(11, 10, 8, 0.88)),
        var(--hero-image, none) center/cover no-repeat;
    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.lp-hero::after {
    content: '';
    position: absolute;
    inset: auto -40px -70px auto;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 176, 46, 0.22), transparent 70%);
    pointer-events: none;
}

.lp-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.lp-breadcrumbs span {
    color: var(--accent-color);
}

.lp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 176, 46, 0.1);
    color: #ffd8a4;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lp-title {
    max-width: 760px;
    margin: 18px 0 14px;
    font-family: 'Russo One', 'Arial Black', sans-serif;
    font-size: clamp(2rem, 5vw, 4.2rem);
    line-height: 1.04;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.lp-summary {
    max-width: 720px;
    margin: 0;
    color: var(--text-secondary);
    font-size: 1.08rem;
    line-height: 1.7;
}

.lp-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0 0;
}

.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.98rem;
    font-weight: 700;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

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

.lp-btn--primary {
    border-color: rgba(255, 176, 46, 0.44);
    background: linear-gradient(135deg, var(--accent-color), #f28727);
    color: #16120b;
}

.lp-btn--ghost {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.04);
}

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

.lp-stat {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.lp-stat strong {
    display: block;
    margin-bottom: 6px;
    color: var(--accent-color);
    font-family: 'Russo One', 'Arial Black', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.04em;
}

.lp-stat span {
    color: var(--text-secondary);
    font-size: 0.94rem;
    line-height: 1.6;
}

.lp-section {
    margin: 30px 0;
    padding: 28px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(180deg, rgba(19, 18, 16, 0.92), rgba(14, 13, 12, 0.96));
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.lp-kicker {
    margin: 0 0 8px;
    color: var(--accent-color);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lp-section h2 {
    margin: 0 0 12px;
    font-family: 'Russo One', 'Arial Black', sans-serif;
    font-size: clamp(1.45rem, 3vw, 2.2rem);
    line-height: 1.16;
    text-transform: uppercase;
}

.lp-section p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.75;
    font-size: 1rem;
}

.lp-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.lp-card {
    padding: 18px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02)),
        rgba(7, 7, 6, 0.24);
}

.lp-card h3 {
    margin: 0 0 10px;
    font-size: 1.02rem;
    color: var(--text-primary);
}

.lp-card p {
    font-size: 0.96rem;
}

.lp-points {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.lp-point {
    position: relative;
    padding: 0 0 0 18px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.lp-point::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
    box-shadow: 0 0 10px rgba(255, 176, 46, 0.35);
}

.lp-highlight {
    display: grid;
    gap: 12px;
    margin-top: 18px;
    padding: 18px;
    border-left: 4px solid var(--accent-color);
    border-radius: 18px;
    background: rgba(255, 176, 46, 0.06);
}

.lp-highlight strong {
    color: var(--text-primary);
}

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

.lp-related-link {
    display: block;
    padding: 16px;
    min-height: 112px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.lp-related-link:hover,
.lp-related-link:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(255, 176, 46, 0.28);
    background: rgba(255, 176, 46, 0.05);
}

.lp-related-link strong {
    display: block;
    margin-bottom: 8px;
    font-size: 0.98rem;
}

.lp-related-link span {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.55;
}

.lp-quote {
    margin-top: 18px;
    padding: 20px;
    border-radius: 18px;
    background: rgba(47, 160, 90, 0.08);
    border: 1px solid rgba(47, 160, 90, 0.2);
    color: #dcefdc;
    line-height: 1.7;
}

.lp-footer {
    padding: 16px 0 40px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.lp-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 12px;
}

.lp-footer__links a {
    color: var(--text-secondary);
}

.lp-footer__links a:hover,
.lp-footer__links a:focus-visible {
    color: var(--accent-color);
}

.lp-faq-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.lp-faq-list details {
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.lp-faq-list summary {
    cursor: pointer;
    font-weight: 700;
    color: var(--text-primary);
}

.lp-faq-list details p {
    margin-top: 12px;
}

@media (max-width: 920px) {
    .lp-stats,
    .lp-card-grid,
    .lp-related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .lp-shell {
        width: min(100% - 24px, 1180px);
    }

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

    .lp-nav {
        justify-content: flex-start;
    }

    .lp-hero,
    .lp-section {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .lp-title {
        font-size: clamp(1.72rem, 9vw, 2.6rem);
    }

    .lp-summary,
    .lp-section p,
    .lp-point,
    .lp-related-link span {
        font-size: 0.95rem;
    }

    .lp-actions {
        flex-direction: column;
    }

    .lp-btn {
        width: 100%;
    }
}