:root {
    color-scheme: dark;
    --bg: #06080c;
    --bg-alt: #0d1118;
    --surface: #121823;
    --surface-alt: #182131;
    --surface-soft: rgba(20, 28, 40, 0.72);
    --border: rgba(108, 140, 181, 0.24);
    --border-strong: rgba(127, 196, 255, 0.42);
    --text: #f3f7fc;
    --text-muted: #b4c2d4;
    --text-soft: #8ea1b8;
    --blue: #58a8f5;
    --blue-strong: #2179bb;
    --gold: #d9ac52;
    --green: #40c97a;
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --page-max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top right, rgba(33, 121, 187, 0.18), transparent 34%),
        radial-gradient(circle at top left, rgba(217, 172, 82, 0.14), transparent 22%),
        linear-gradient(180deg, #04060a 0%, #09101a 52%, #05070b 100%);
    line-height: 1.6;
}

a {
    color: var(--blue);
}

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

.site-wrap {
    width: min(var(--page-max), calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(14px);
    background: rgba(6, 8, 12, 0.82);
    border-bottom: 1px solid rgba(127, 196, 255, 0.12);
}

.site-header__inner {
    width: min(var(--page-max), calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--text);
    text-decoration: none;
    white-space: nowrap;
}

.brand__tagline {
    color: var(--text-soft);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.logo-mark {
    display: inline-flex;
    align-items: center;
    gap: 0;
    font-family: "Lato", "Segoe UI", Arial, sans-serif;
    font-weight: 900;
    letter-spacing: 0.015em;
    text-decoration: none;
    user-select: none;
    transform: translateY(1px) skewX(-8deg);
    transform-origin: left center;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.5));
    --logo-big-size: 30px;
    --logo-small-size: 17px;
    --logo-diag-x: 14px;
    --logo-diag-y: 14px;
}

.logo-mark-stack {
    position: relative;
    display: inline-block;
    width: max-content;
    height: calc(var(--logo-big-size) + var(--logo-diag-y) + 2px);
}

.logo-mark-line {
    position: absolute;
    display: inline-flex;
    align-items: flex-start;
    line-height: 0.9;
}

.logo-mark-line--top {
    left: 0;
    top: 0;
}

.logo-mark-line--bottom {
    left: var(--logo-diag-x);
    top: var(--logo-diag-y);
}

.logo-big-letter {
    font-size: var(--logo-big-size);
    line-height: 1;
    font-weight: 900;
}

.logo-small-tail {
    font-size: var(--logo-small-size);
    line-height: 1;
    font-weight: 800;
    padding-top: 3px;
}

.logo-text-blue {
    background: linear-gradient(180deg, #67b8ff 0%, #2a80ff 55%, #1f55bf 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-stroke: 0.45px rgba(8, 30, 74, 0.55);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.48);
}

.logo-text-gold {
    background: linear-gradient(180deg, #ffe084 0%, #f3c632 58%, #bf8f17 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-stroke: 0.4px rgba(78, 55, 8, 0.45);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.42);
}

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

.site-nav__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(14, 19, 28, 0.85);
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
    border-color: var(--border-strong);
    background: rgba(24, 33, 49, 0.92);
    transform: translateY(-1px);
}

.site-nav__link[aria-current="page"] {
    border-color: rgba(88, 168, 245, 0.68);
    background: linear-gradient(135deg, rgba(10, 77, 140, 0.9), rgba(7, 69, 128, 0.88));
}

.site-nav__link--upgrade {
    color: #fff;
    border-color: rgba(217, 172, 82, 0.4);
    background: linear-gradient(135deg, rgba(200, 148, 45, 0.95), rgba(184, 132, 31, 0.92));
}

.site-nav__link--upgrade:hover,
.site-nav__link--upgrade:focus-visible {
    border-color: rgba(255, 224, 132, 0.6);
    background: linear-gradient(135deg, rgba(218, 166, 58, 0.98), rgba(200, 148, 45, 0.95));
}

.hero {
    padding: 52px 0 28px;
}

.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 28px;
    align-items: stretch;
}

.hero__copy,
.hero__panel,
.section,
.cta-panel {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(18, 24, 35, 0.96), rgba(12, 17, 26, 0.96));
    box-shadow: var(--shadow);
}

.hero__copy {
    padding: 34px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(88, 168, 245, 0.14);
    color: #9dd0ff;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0 0 14px;
    line-height: 1.15;
}

h1 {
    font-size: clamp(2.3rem, 4vw, 4rem);
    max-width: 11ch;
}

h2 {
    font-size: clamp(1.5rem, 2vw, 2.2rem);
}

h3 {
    font-size: 1.08rem;
}

.lead {
    margin: 0 0 18px;
    color: var(--text-muted);
    font-size: 1.06rem;
}

.hero__bullets {
    margin: 0 0 22px;
    padding-left: 20px;
    color: var(--text-muted);
}

.hero__bullets li + li {
    margin-top: 8px;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0 0;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform 0.18s ease, border-color 0.18s ease, filter 0.18s ease;
}

.button--primary {
    color: #fff;
    background: linear-gradient(135deg, #0d64b0, #074580);
    border-color: rgba(127, 196, 255, 0.3);
}

.button--secondary {
    color: var(--text);
    border-color: var(--border);
    background: rgba(14, 19, 28, 0.85);
}

.button--upgrade {
    color: #fff;
    background: linear-gradient(135deg, rgba(200, 148, 45, 0.95), rgba(184, 132, 31, 0.92));
    border-color: rgba(255, 224, 132, 0.28);
}

.button:hover,
.button:focus-visible {
    filter: brightness(1.08);
    transform: translateY(-1px);
}

.hero__proofs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.hero__proof {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(127, 196, 255, 0.16);
    background: rgba(12, 18, 27, 0.82);
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

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

.stat-card {
    padding: 14px 16px;
    border-radius: var(--radius-md);
    background: rgba(12, 18, 27, 0.92);
    border: 1px solid rgba(88, 168, 245, 0.12);
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.stat-card strong {
    display: block;
    font-size: 1.2rem;
}

.stat-card span {
    color: var(--text-soft);
    font-size: 0.92rem;
}

.stat-card:hover,
.stat-card:focus-within {
    transform: translateY(-2px);
    border-color: rgba(127, 196, 255, 0.24);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.hero__panel {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero__panel > p {
    margin: 0;
    color: var(--text-muted);
}

.hero__mini-grid {
    display: grid;
    gap: 12px;
}

.hero__mini-card {
    padding: 16px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(127, 196, 255, 0.14);
    background: rgba(12, 18, 27, 0.88);
}

.hero__mini-card strong {
    display: block;
    margin-bottom: 6px;
    color: var(--text);
}

.hero__mini-card span {
    color: var(--text-muted);
}

.hero__note {
    margin-top: auto;
    padding: 16px 18px;
    border-radius: var(--radius-md);
    background: rgba(88, 168, 245, 0.1);
    border: 1px solid rgba(88, 168, 245, 0.18);
    color: var(--text-muted);
}

.hero__panel-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 2px;
}

.hero__panel-links a {
    color: #9dd0ff;
    font-weight: 700;
    text-decoration: none;
}

.hero__panel-links a:hover,
.hero__panel-links a:focus-visible {
    color: #c7e5ff;
    text-decoration: underline;
}

main {
    padding-bottom: 48px;
}

.content-stack {
    display: grid;
    gap: 22px;
}

.section {
    padding: 28px;
}

.section--highlight {
    background:
        radial-gradient(circle at top right, rgba(217, 172, 82, 0.12), transparent 30%),
        radial-gradient(circle at bottom left, rgba(88, 168, 245, 0.12), transparent 36%),
        linear-gradient(180deg, rgba(20, 27, 38, 0.97), rgba(12, 17, 26, 0.97));
}

.section__header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.section__header p {
    margin: 0;
    max-width: 64ch;
    color: var(--text-muted);
}

.section p,
.section li {
    color: var(--text-muted);
}

.section ul,
.section ol {
    margin: 14px 0 0;
    padding-left: 20px;
}

.section li + li {
    margin-top: 10px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 20px;
}

.card {
    padding: 18px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(127, 196, 255, 0.12);
    background: rgba(14, 19, 28, 0.88);
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.card p {
    margin: 0;
}

.card__kicker {
    display: inline-block;
    margin-bottom: 8px;
    color: #9dd0ff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.card:hover,
.card:focus-within {
    transform: translateY(-2px);
    border-color: rgba(127, 196, 255, 0.24);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.24);
}

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

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

.faq-item {
    border-radius: var(--radius-md);
    border: 1px solid rgba(127, 196, 255, 0.14);
    background: rgba(13, 18, 28, 0.92);
    overflow: hidden;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 18px;
    font-weight: 700;
    transition: background 0.18s ease;
}

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

.faq-item p {
    margin: 0;
    padding: 0 18px 18px;
}

.faq-item[open] {
    border-color: rgba(127, 196, 255, 0.26);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.faq-item[open] summary {
    background: rgba(18, 26, 39, 0.82);
}

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

.related-links a {
    display: block;
    padding: 16px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(127, 196, 255, 0.14);
    background: rgba(12, 18, 27, 0.9);
    color: var(--text);
    text-decoration: none;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.related-links strong {
    display: block;
    margin-bottom: 6px;
}

.related-links a:hover,
.related-links a:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(127, 196, 255, 0.28);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
}

.cta-panel {
    margin: 20px 0 0;
    padding: 24px 28px;
}

.cta-panel p {
    margin: 0 0 16px;
    color: var(--text-muted);
}

.site-footer {
    padding: 16px 0 42px;
}

.site-footer__panel {
    border-top: 1px solid rgba(127, 196, 255, 0.14);
    padding-top: 18px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    color: var(--text-soft);
    font-size: 0.95rem;
}

.site-footer__panel a {
    color: #9dd0ff;
}

@media (max-width: 980px) {
    .hero__grid,
    .two-column,
    .card-grid,
    .related-links {
        grid-template-columns: 1fr;
    }

    .stat-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .site-header__inner,
    .site-wrap {
        width: min(var(--page-max), calc(100% - 24px));
    }

    .site-header__inner {
        padding: 14px 0;
        align-items: flex-start;
        flex-direction: column;
    }

    .site-nav {
        width: 100%;
        justify-content: flex-start;
    }

    .brand__tagline {
        display: none;
    }

    .hero {
        padding-top: 30px;
    }

    .hero__copy,
    .section,
    .cta-panel {
        padding: 22px;
    }

    .section__header {
        flex-direction: column;
    }
}
