/* =========================================================
   kvmsync zh — Aluminum Lab visual system
   Business IDs/classes used by app.js are preserved.
   ========================================================= */

:root {
    --ink: #0f172a;
    --ink-soft: #334155;
    --muted: #64748b;
    --paper: #eef2f7;
    --paper-deep: #e2e8f0;
    --surface: #ffffff;
    --line: #d7dee8;
    --accent: #1a6dff;
    --accent-hover: #0f5ae6;
    --ok: #059669;
    --radius: 1.25rem;
    --font-display: 'Outfit', 'Avenir Next', sans-serif;
    --font-body: 'IBM Plex Sans', 'Helvetica Neue', sans-serif;
}

/* ── Base ── */
body {
    color: var(--ink);
    background:
        radial-gradient(1200px 600px at 12% -10%, rgba(26, 109, 255, 0.08), transparent 55%),
        radial-gradient(900px 500px at 100% 8%, rgba(15, 23, 42, 0.05), transparent 50%),
        var(--paper);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, .font-display {
    font-family: var(--font-display);
}

/* ── Glass Nav ── */
.apple-glass,
.site-nav {
    background: rgba(238, 242, 247, 0.78);
    backdrop-filter: saturate(160%) blur(18px);
    -webkit-backdrop-filter: saturate(160%) blur(18px);
}

#navbar.shadow-sm {
    border-color: rgba(15, 23, 42, 0.08) !important;
}

.site-brand-logo {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 0.55rem;
    flex-shrink: 0;
    object-fit: cover;
}

/* ── Reveal ── */
.reveal-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* ── Hero motion ── */
.hero-stage {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #0b1220;
}
.hero-stage__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-stage__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    transform: scale(1.06);
    animation: hero-drift 18s ease-in-out infinite alternate;
}
.hero-stage__veil {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(8, 12, 22, 0.35) 0%, rgba(8, 12, 22, 0.55) 42%, rgba(8, 12, 22, 0.88) 100%),
        linear-gradient(90deg, rgba(8, 12, 22, 0.55) 0%, transparent 55%);
}
.hero-stage__content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 7.5rem 0 4.5rem;
}
@keyframes hero-drift {
    from { transform: scale(1.06) translate3d(0, 0, 0); }
    to   { transform: scale(1.12) translate3d(-1.5%, -1%, 0); }
}

.hero-brand {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 9vw, 6.5rem);
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 0.92;
    color: #fff;
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(1.65rem, 3.4vw, 2.35rem);
    font-weight: 560;
    letter-spacing: -0.03em;
    color: rgba(255, 255, 255, 0.92);
}
.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 3.25rem;
    padding: 0 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.hero-cta:hover { transform: translateY(-1px); }
.hero-cta--primary {
    background: #fff;
    color: var(--ink);
}
.hero-cta--primary:hover { background: #f1f5f9; }
.hero-cta--ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.22);
}
.hero-cta--ghost:hover { background: rgba(255, 255, 255, 0.14); }

/* ── Spec strip ── */
.spec-strip {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border-block: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.55);
}
@media (min-width: 768px) {
    .spec-strip { grid-template-columns: repeat(4, 1fr); }
}
.spec-strip__item {
    padding: 1.5rem 1.25rem;
    border-bottom: 1px solid var(--line);
}
@media (min-width: 768px) {
    .spec-strip__item {
        border-bottom: 0;
        border-right: 1px solid var(--line);
    }
    .spec-strip__item:last-child { border-right: 0; }
}
.spec-strip__label {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.4rem;
}
.spec-strip__value {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 650;
    letter-spacing: -0.02em;
    color: var(--ink);
}

/* ── Image zoom ── */
.img-zoom { overflow: hidden; }
.img-zoom img {
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.img-zoom:hover img { transform: scale(1.04); }

/* ── Feature rails (not heavy cards) ── */
.feature-rail {
    display: grid;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}
@media (min-width: 768px) {
    .feature-rail { grid-template-columns: repeat(3, 1fr); }
}
.feature-rail__cell {
    background: var(--surface);
    padding: 2rem 1.5rem;
    transition: background 0.25s ease;
}
.feature-rail__cell:hover { background: #f8fafc; }
.feature-rail__index {
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    color: var(--accent);
    margin-bottom: 1rem;
}

/* ── Isolation band ── */
.isolation-band {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, #0f172a 0%, #1e293b 55%, #0b1220 100%);
    color: #fff;
}
.isolation-band::after {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    right: -80px;
    top: -120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26, 109, 255, 0.28), transparent 65%);
    pointer-events: none;
}

/* ── Datacenter panel ── */
.dc-panel {
    position: relative;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(26, 109, 255, 0.07), transparent 60%),
        linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.72) 100%);
    padding: 2rem 1.25rem 1.5rem;
    overflow: hidden;
}
@media (min-width: 640px) {
    .dc-panel { padding: 2.5rem 2rem 1.75rem; }
}
.dc-panel__head {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}
@media (min-width: 1024px) {
    .dc-panel__head {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}
.dc-panel__metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    width: 100%;
}
@media (min-width: 1024px) {
    .dc-panel__metrics { max-width: 22rem; flex-shrink: 0; }
}
.dc-metric {
    padding: 0.85rem 0.75rem;
    border-radius: 0.85rem;
    background: rgba(15, 23, 42, 0.03);
    border: 1px solid rgba(15, 23, 42, 0.06);
    text-align: center;
}
.dc-metric__value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--ink);
    line-height: 1.1;
}
.dc-metric__label {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
}
.dc-arc {
    position: relative;
    height: 2.5rem;
    margin: 0 0.5rem 1.25rem;
    display: none;
}
@media (min-width: 768px) {
    .dc-arc { display: block; }
}
.dc-arc::before {
    content: '';
    position: absolute;
    left: 8%;
    right: 8%;
    top: 50%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(26, 109, 255, 0.35), rgba(26, 109, 255, 0.55), rgba(26, 109, 255, 0.35), transparent);
    transform: translateY(-50%);
}
.dc-arc__dot {
    position: absolute;
    top: 50%;
    left: calc(8% + (84% * var(--i) / 4));
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--accent);
    box-shadow: 0 0 0 4px rgba(26, 109, 255, 0.1);
    transform: translate(-50%, -50%);
}
.dc-grid {
    display: grid;
    gap: 0.85rem;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) {
    .dc-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (min-width: 1024px) {
    .dc-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
    .dc-card--featured { grid-column: span 3; }
    .dc-card:not(.dc-card--featured) { grid-column: span 1; }
    .dc-grid .dc-card:nth-child(2) { grid-column: span 3; }
    .dc-grid .dc-card:nth-child(n+3) { grid-column: span 2; }
}
.dc-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    text-align: left;
    font: inherit;
    color: inherit;
    appearance: none;
    -webkit-appearance: none;
    padding: 1.25rem 1.15rem 1.1rem;
    border-radius: 1rem;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.82);
    cursor: pointer;
    transition: border-color 0.22s, box-shadow 0.22s, transform 0.22s, background 0.22s;
}
.dc-card:hover {
    border-color: rgba(26, 109, 255, 0.35);
    background: #fff;
    box-shadow: 0 14px 36px -18px rgba(26, 109, 255, 0.35);
    transform: translateY(-2px);
}
.dc-card--featured {
    background: linear-gradient(145deg, rgba(26, 109, 255, 0.06) 0%, rgba(255, 255, 255, 0.95) 55%);
    border-color: rgba(26, 109, 255, 0.18);
}
.dc-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 0.85rem;
}
.dc-card__code {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--accent);
}
.dc-card__flag { font-size: 1.35rem; line-height: 1; }
.dc-card__name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.25rem;
}
.dc-card__route {
    font-size: 0.84rem;
    color: var(--muted);
    margin-bottom: 1rem;
    line-height: 1.45;
}
.dc-card__foot {
    width: 100%;
    margin-top: auto;
}
.dc-card__latency {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.55rem;
}
.dc-card__latency-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--muted);
}
.dc-card__bar {
    height: 4px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.08);
    overflow: hidden;
}
.dc-card__bar span {
    display: block;
    height: 100%;
    width: calc(var(--latency, 50) * 1%);
    border-radius: inherit;
    background: linear-gradient(90deg, #1a6dff, #38bdf8);
    transition: width 0.5s ease;
}
.dc-card__arrow {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.1rem;
    color: #cbd5e1;
    transition: color 0.2s, transform 0.2s;
}
.dc-card:hover .dc-card__arrow {
    color: var(--accent);
    transform: translate(2px, -2px);
}
.dc-panel__note {
    margin-top: 1.25rem;
    padding-top: 1.15rem;
    border-top: 1px solid var(--line);
    font-size: 0.8rem;
    line-height: 1.6;
    color: var(--muted);
}

/* ── Tutorial steps ── */
.step-grid {
    display: grid;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .step-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
}
.step-item {
    position: relative;
    padding-top: 0.25rem;
}
.step-item__num {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 700;
    letter-spacing: -0.05em;
    color: rgba(15, 23, 42, 0.12);
    line-height: 1;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}
.step-item:hover .step-item__num { color: rgba(26, 109, 255, 0.35); }

/* ── Toast ── */
#toast-container {
    position: fixed;
    top: 5.75rem;
    right: 1rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    pointer-events: none;
}
.toast {
    background: var(--ink);
    color: #fff;
    padding: 0.8rem 1.25rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.18);
    animation: toast-in 0.3s ease;
}
@keyframes toast-in {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Mobile Menu ── */
#mobile-menu { display: none; }
#mobile-menu.is-open { display: flex; }

/* ── Nav Auth (kept for app.js) ── */
#navbar .nav-auth-btn,
#navbar .nav-user-trigger {
    color: #fff !important;
}

.nav-auth-btn {
    height: 2.6rem;
    padding: 0 1.2rem;
    background: var(--ink);
    color: #fff;
    font-size: 0.92rem;
    font-weight: 560;
    border-radius: 0.7rem;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
}
.nav-auth-btn:hover { background: #000; }

.nav-user-menu { position: relative; }
.nav-user-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    height: 2.6rem;
    padding: 0 1rem;
    border-radius: 0.7rem;
    background: var(--ink);
    color: #fff;
    font-size: 0.92rem;
    font-weight: 560;
    border: none;
    cursor: pointer;
}
.nav-user-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 0.55rem);
    min-width: 13rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 0.9rem;
    padding: 0.45rem;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
    z-index: 60;
}
.nav-user-menu.is-open .nav-user-dropdown { display: block; }
.nav-user-dropdown a,
.nav-user-dropdown button {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.7rem 0.8rem;
    border: none;
    background: none;
    border-radius: 0.5rem;
    font-size: 0.92rem;
    color: var(--ink);
    text-decoration: none;
    cursor: pointer;
}
.nav-user-dropdown a:hover,
.nav-user-dropdown button:hover { background: #f1f5f9; }
.nav-user-email {
    padding: 0.55rem 0.8rem;
    font-size: 0.75rem;
    color: var(--muted);
    border-bottom: 1px solid var(--line);
    margin-bottom: 0.2rem;
    word-break: break-all;
}
.nav-user-logout { color: #ef4444 !important; }

/* ── Lang Switcher ── */
.lang-switcher { position: relative; }
.lang-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.92rem;
    font-weight: 560;
    color: var(--ink);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.35rem 0.5rem;
}
.lang-trigger:hover { color: var(--accent); }
.lang-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 0.55rem);
    min-width: 11rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 0.9rem;
    padding: 0.45rem;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
    z-index: 60;
}
.lang-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.6rem 0.8rem;
    border: none;
    background: none;
    border-radius: 0.5rem;
    font-size: 0.92rem;
    cursor: pointer;
    text-align: left;
}
.lang-item:hover { background: #f1f5f9; }
.lang-item.is-active { font-weight: 650; }

/* ── Pricing (JS-rendered cards, soft overrides) ── */
.pricing-btn {
    width: 100%;
    height: 3rem;
    border-radius: 0.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    transition: all 0.2s;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

#pricing-cards > div {
    border-radius: 1.1rem !important;
    box-shadow: none !important;
    border-color: var(--line) !important;
    background: var(--surface) !important;
    transition: border-color 0.2s ease, transform 0.2s ease;
}
#pricing-cards > div:hover {
    border-color: rgba(26, 109, 255, 0.45) !important;
}
#pricing-cards > div.lg\:scale-105 {
    transform: none !important;
    border-color: var(--accent) !important;
}

.period-tabs {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.3rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 0.85rem;
}
.period-tabs button,
.period-tabs .pricing-cycle-btn {
    padding: 0.45rem 0.95rem;
    border: none;
    border-radius: 0.65rem;
    background: transparent;
    font-size: 0.88rem;
    font-weight: 560;
    color: var(--muted);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    font-family: inherit;
}
.period-tabs button:hover,
.period-tabs .pricing-cycle-btn:hover { color: var(--ink); }
.period-tabs button.is-active,
.period-tabs .pricing-cycle-btn.is-active {
    background: var(--ink);
    color: #fff;
    font-weight: 600;
}

.section-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 0.4rem;
    font-size: 0.72rem;
    font-weight: 650;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ── Footer ── */
.site-footer {
    background: #0f172a;
    color: rgba(226, 232, 240, 0.72);
}
.site-footer a { color: rgba(226, 232, 240, 0.72); }
.site-footer a:hover { color: #fff; }
.site-footer h4 { color: #fff; }
.site-footer .brand-link { color: #fff; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 0; background: transparent; }

/* Auth-gated helpers (app.js / early script) */
html.site-auth-logged-in .hide-when-authed { display: none !important; }
html:not(.site-auth-logged-in) .hide-when-guest { display: none !important; }

/* =========================================================
   Subpages — pricing / help / console
   ========================================================= */

/* ── Page banner (dark full-width header shared across subpages) ── */
.page-banner {
    position: relative;
    overflow: hidden;
    padding: 3rem 0 3.5rem;
    background: linear-gradient(145deg, #080e1a 0%, #0f172a 45%, #111d31 100%);
    color: #fff;
}
/* page-main handles the nav offset; banner needs extra breathing room on taller viewports */
@media (min-width: 768px) {
    .page-banner { padding: 3.5rem 0 4rem; }
}
.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 120% at 80% -10%, rgba(26, 109, 255, 0.22), transparent 55%),
        radial-gradient(ellipse 50% 80% at 5% 80%, rgba(26, 109, 255, 0.10), transparent 50%);
    pointer-events: none;
}
/* subtle grid texture */
.page-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, transparent, rgba(0,0,0,0.4) 40%, transparent);
    pointer-events: none;
}
.page-banner__inner {
    position: relative;
    z-index: 1;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1rem;
}
@media (min-width: 640px) { .page-banner__inner { padding: 0 1.5rem; } }

.page-banner__layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
@media (min-width: 1024px) {
    .page-banner__layout {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        gap: 3rem;
    }
}
.page-banner__kicker {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(99, 163, 255, 0.85);
    margin-bottom: 1rem;
}
.page-banner__kicker i { font-size: 0.9rem; }
.page-banner__title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.04;
    color: #fff;
    margin-bottom: 1rem;
}
.page-banner__lead {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.52);
    max-width: 44ch;
}
.page-banner__aside {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}
@media (min-width: 1024px) {
    .page-banner__aside { align-items: flex-end; }
}

/* Tinted "glass" aside block used in pricing banner */
.page-banner__cycle-wrap {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    backdrop-filter: blur(12px);
}
.page-banner__cycle-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 0.75rem;
}

/* ── Page body container ── */
.page-body {
    max-width: 1120px;
    margin: 0 auto;
    padding: 3.5rem 1rem 5rem;
}
@media (min-width: 640px) { .page-body { padding-left: 1.5rem; padding-right: 1.5rem; } }

.page-section { margin-bottom: 4rem; }
.page-section:last-child { margin-bottom: 0; }

.page-section-head {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 2rem;
}
@media (min-width: 768px) {
    .page-section-head {
        flex-direction: row;
        align-items: baseline;
        justify-content: space-between;
    }
}
.page-section-label {
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.4rem;
}
.page-section-title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--ink);
}

/* ── Pricing tier cards ── */
.tier-grid {
    display: grid;
    gap: 1rem;
}
@media (min-width: 1024px) {
    .tier-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: stretch;
    }
}
.tier-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 2rem 1.75rem;
    border-radius: 1.25rem;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.9);
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
    overflow: hidden;
}
.tier-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--line);
    transition: background 0.3s;
}
.tier-card:hover {
    border-color: rgba(26, 109, 255, 0.3);
    box-shadow: 0 20px 50px -20px rgba(26, 109, 255, 0.18);
    transform: translateY(-3px);
}
.tier-card:hover::before {
    background: linear-gradient(90deg, var(--accent), rgba(26,109,255,0.4));
}
.tier-card--featured {
    border-color: rgba(26, 109, 255, 0.4);
    background: linear-gradient(165deg, rgba(26, 109, 255, 0.05) 0%, rgba(255,255,255,0.98) 40%);
    box-shadow: 0 8px 32px -12px rgba(26, 109, 255, 0.18);
}
.tier-card--featured::before {
    background: linear-gradient(90deg, var(--accent), #38bdf8);
}
.tier-card--disabled {
    opacity: 0.6;
    cursor: default;
}
.tier-card--disabled:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--line);
}
.tier-card--disabled::before { background: var(--line); }
.tier-card--disabled:hover::before { background: var(--line); }

.tier-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), #0f5ae6);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.tier-index {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: rgba(100,116,139,0.7);
    margin-bottom: 0.55rem;
    text-transform: uppercase;
}
.tier-name {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 0.3rem;
}
.tier-sub {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 1.75rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(15,23,42,0.08);
}
.tier-price-row {
    margin-bottom: 0.4rem;
    line-height: 1;
}
.tier-price {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--ink);
}
.tier-unit {
    font-size: 0.85rem;
    color: var(--muted);
    font-weight: 500;
    margin-left: 0.15rem;
}
.tier-unit-block {
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 1.75rem;
}
.tier-specs {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 1.75rem;
    flex: 1;
    border: 1px solid rgba(15,23,42,0.07);
    border-radius: 0.85rem;
    overflow: hidden;
}
.tier-spec {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.875rem;
    padding: 0.7rem 0.95rem;
    border-bottom: 1px solid rgba(15,23,42,0.07);
}
.tier-spec:last-child { border-bottom: 0; }
.tier-spec:nth-child(odd) { background: rgba(15,23,42,0.018); }
.tier-spec strong {
    color: var(--muted);
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    flex-shrink: 0;
}
.tier-spec span { text-align: right; font-weight: 500; color: var(--ink); }
.tier-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 3rem;
    border-radius: 0.8rem;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.15s;
    gap: 0.4rem;
}
.tier-cta:hover { transform: translateY(-1px); }
.tier-cta--primary {
    background: var(--accent);
    color: #fff;
}
.tier-cta--primary:hover { background: var(--accent-hover); color: #fff; }
.tier-cta--ghost {
    background: rgba(15, 23, 42, 0.04);
    color: var(--ink);
    border: 1px solid var(--line);
}
.tier-cta--ghost:hover { background: rgba(15, 23, 42, 0.08); color: var(--ink); }
.tier-cta--disabled {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 3rem;
    border-radius: 0.8rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: rgba(100,116,139,0.6);
    background: rgba(15, 23, 42, 0.03);
    border: 1px dashed rgba(15,23,42,0.15);
}

/* ── Pricing feature highlight (dark band) ── */
.pricing-highlight {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: linear-gradient(135deg, #0b1220 0%, #0f172a 50%, #0d1a2e 100%);
    padding: 2.5rem 1.5rem;
    color: #fff;
}
@media (min-width: 768px) { .pricing-highlight { padding: 3rem 2.5rem; } }
.pricing-highlight::before {
    content: '';
    position: absolute;
    top: -80px; right: -60px;
    width: 360px; height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26,109,255,0.22), transparent 65%);
    pointer-events: none;
}
.pricing-highlight__grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) {
    .pricing-highlight__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .pricing-highlight__grid { grid-template-columns: repeat(4, 1fr); }
}
.pricing-highlight__item {
    padding: 1.25rem;
    border-radius: 0.9rem;
    border: 1px solid rgba(255,255,255,0.07);
    background: rgba(255,255,255,0.04);
    transition: background 0.2s, border-color 0.2s;
}
.pricing-highlight__item:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(26,109,255,0.3);
}
.pricing-highlight__icon {
    font-size: 1.5rem;
    color: rgba(99,163,255,0.8);
    margin-bottom: 0.9rem;
    display: block;
}
.pricing-highlight__heading {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.4rem;
}
.pricing-highlight__desc {
    font-size: 0.82rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.48);
}

/* ── Addon table ── */
.addon-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(255,255,255,0.9);
    border: 1px solid var(--line);
}
.addon-table th,
.addon-table td {
    padding: 1.1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--line);
    font-size: 0.9rem;
}
.addon-table th {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    background: rgba(15,23,42,0.025);
}
.addon-table tr:last-child td { border-bottom: 0; }
.addon-table tbody tr { transition: background 0.18s; }
.addon-table tbody tr:hover { background: rgba(26,109,255,0.03); }
.addon-table td:last-child {
    text-align: right;
    font-family: var(--font-display);
    font-weight: 700;
    white-space: nowrap;
    color: var(--ink);
}

/* ── FAQ ── */
.faq-list { display: grid; gap: 0.6rem; }
.faq-item {
    border: 1px solid var(--line);
    border-radius: 1rem;
    background: rgba(255,255,255,0.9);
    overflow: hidden;
    transition: border-color 0.2s;
}
.faq-item[open] { border-color: rgba(26,109,255,0.3); }
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.2rem 1.35rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--ink);
    transition: background 0.15s;
}
.faq-item summary:hover { background: rgba(15,23,42,0.02); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-num {
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--accent);
    flex-shrink: 0;
    opacity: 0.7;
}
.faq-q {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.faq-q i {
    color: #cbd5e1;
    transition: transform 0.25s, color 0.2s;
    flex-shrink: 0;
    font-size: 1rem;
}
.faq-item[open] .faq-q i { transform: rotate(45deg); color: var(--accent); }
.faq-answer {
    padding: 0 1.35rem 1.25rem 3.5rem;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.7;
    border-top: 1px solid rgba(15,23,42,0.06);
    padding-top: 1rem;
}
.faq-answer a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }

/* ── Dark CTA band ── */
.page-cta-band {
    position: relative;
    overflow: hidden;
    padding: 3rem 2rem;
    border-radius: var(--radius);
    background: linear-gradient(135deg, #0b1220 0%, #0f172a 50%, #0d1a2e 100%);
    color: #fff;
}
.page-cta-band::before {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26,109,255,0.18), transparent 60%);
    pointer-events: none;
}
.page-cta-band__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}
@media (min-width: 768px) {
    .page-cta-band__inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}
.page-cta-band p {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.38);
    margin-bottom: 0.6rem;
}
.page-cta-band h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 700;
    letter-spacing: -0.025em;
}
.page-cta-band__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    flex-shrink: 0;
}
.page-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 3.25rem;
    padding: 0 1.65rem;
    border-radius: 0.8rem;
    background: #fff;
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    flex-shrink: 0;
    white-space: nowrap;
}
.page-cta-btn:hover { background: #f1f5f9; transform: translateY(-1px); color: var(--ink); }
.page-cta-btn--ghost {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,255,255,0.18);
}
.page-cta-btn--ghost:hover { background: rgba(255,255,255,0.14); color: #fff; }

/* ── Help layout ── */
.page-main { min-height: 100vh; }

.help-layout {
    display: grid;
    gap: 2rem;
}
@media (min-width: 1024px) {
    .help-layout {
        grid-template-columns: 220px 1fr;
        gap: 3.5rem;
    }
}
.help-nav {
    position: sticky;
    top: 6.5rem;
    align-self: start;
    padding: 0.5rem;
    background: rgba(255,255,255,0.7);
    border: 1px solid var(--line);
    border-radius: 1rem;
    backdrop-filter: blur(8px);
}
.help-nav a {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.8rem 1rem;
    border-radius: 0.7rem;
    font-size: 0.9rem;
    font-weight: 560;
    color: var(--muted);
    text-decoration: none;
    transition: background 0.18s, color 0.18s;
}
.help-nav a:hover,
.help-nav a.is-active {
    background: rgba(26,109,255,0.08);
    color: var(--accent);
}
.help-nav a i { font-size: 1rem; flex-shrink: 0; }
.help-nav__divider {
    height: 1px;
    background: var(--line);
    margin: 0.4rem 0.5rem;
}
.help-topic {
    margin-bottom: 3.5rem;
    scroll-margin-top: 7rem;
}
.help-topic-heading {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}
.help-topic-heading h2 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.help-topic-heading i {
    font-size: 1.25rem;
    color: var(--accent);
}
.help-panel {
    border: 1px solid var(--line);
    border-radius: 1rem;
    background: rgba(255,255,255,0.9);
    overflow: hidden;
}
.help-panel__row {
    padding: 1.35rem 1.5rem;
    border-bottom: 1px solid rgba(15,23,42,0.07);
    transition: background 0.15s;
}
.help-panel__row:last-child { border-bottom: 0; }
.help-panel__row:hover { background: rgba(15,23,42,0.015); }
.help-panel h3 {
    font-family: var(--font-display);
    font-size: 0.98rem;
    font-weight: 600;
    margin-bottom: 0.45rem;
    color: var(--ink);
}
.help-panel p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--muted);
}
.help-panel code {
    font-size: 0.82rem;
    background: rgba(15,23,42,0.07);
    padding: 0.15rem 0.5rem;
    border-radius: 0.35rem;
    color: var(--ink);
    font-family: 'SF Mono', 'Fira Code', monospace;
}
.help-prose {
    padding: 1.35rem 1.5rem;
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--muted);
    background: rgba(255,255,255,0.9);
    border: 1px solid var(--line);
    border-radius: 1rem;
}
.help-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
    margin-bottom: 1.25rem;
}
.help-stat {
    padding: 1.1rem 1rem;
    border-radius: 0.85rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}
.help-stat__val {
    display: block;
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #fff;
    line-height: 1.1;
}
.help-stat__label {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.42);
}

/* ── Console shell overrides ── */
.site-console .page-body { padding-bottom: 3rem; }
.con-auth-band {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1rem;
}
@media (min-width: 640px) { .con-auth-band { padding: 0 1.5rem; } }
.con-auth-band-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ── Login page — Mission Control layout ── */
.page-login {
    background: #060a12;
}
.page-login .site-nav {
    background: rgba(6, 10, 18, 0.72);
    border-color: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: saturate(160%) blur(18px);
}
.page-login .site-nav a,
.page-login .site-nav button {
    color: rgba(255, 255, 255, 0.85);
}
.page-login .site-nav a:hover {
    color: #60a5fa;
}
.page-login #mobile-menu {
    background: rgba(6, 10, 18, 0.96);
}
.page-login #mobile-menu a,
.page-login #mobile-menu button {
    color: rgba(255, 255, 255, 0.9);
}
.page-login .page-main.auth-page {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
}
.page-login .page-body.auth-page__body {
    position: relative;
    z-index: 2;
    padding: 6.5rem 1rem 3rem;
    max-width: 1180px;
    margin: 0 auto;
}
@media (min-width: 640px) {
    .page-login .page-body.auth-page__body { padding: 7rem 1.5rem 4rem; }
}
.page-login .site-footer {
    position: relative;
    z-index: 2;
    background: rgba(6, 10, 18, 0.92);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Atmospheric background */
.auth-atmosphere {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.auth-atmosphere__photo {
    position: absolute;
    inset: 0;
    opacity: 0.22;
}
.auth-atmosphere__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: saturate(0.7) blur(2px);
    transform: scale(1.05);
}
.auth-atmosphere__mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 55% at 15% 20%, rgba(26, 109, 255, 0.18), transparent 60%),
        radial-gradient(ellipse 55% 45% at 85% 75%, rgba(99, 102, 241, 0.12), transparent 55%),
        linear-gradient(180deg, #060a12 0%, #0a1020 45%, #060a12 100%);
}
.auth-atmosphere__grid {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 75%);
}
.auth-atmosphere__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: auth-glow-drift 14s ease-in-out infinite alternate;
}
.auth-atmosphere__glow--a {
    width: 420px;
    height: 420px;
    top: 8%;
    left: -8%;
    background: rgba(26, 109, 255, 0.15);
}
.auth-atmosphere__glow--b {
    width: 360px;
    height: 360px;
    bottom: 10%;
    right: -6%;
    background: rgba(16, 185, 129, 0.08);
    animation-delay: -7s;
}
@keyframes auth-glow-drift {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to   { transform: translate3d(3%, -4%, 0) scale(1.08); }
}

/* Stage header */
.auth-stage__header {
    margin-bottom: 2rem;
    text-align: center;
}
@media (min-width: 1024px) {
    .auth-stage__header {
        text-align: left;
        margin-bottom: 2.5rem;
    }
}
.auth-stage__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.4rem 0.9rem;
    margin-bottom: 1.1rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.auth-stage__pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.5);
    animation: auth-pulse 2s ease-out infinite;
}
@keyframes auth-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.45); }
    70%  { box-shadow: 0 0 0 8px rgba(52, 211, 153, 0); }
    100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}
.auth-stage__headline {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 4.5vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.08;
    color: #fff;
    margin-bottom: 0.75rem;
}
.auth-stage__headline em {
    font-style: normal;
    background: linear-gradient(135deg, #60a5fa 0%, #1a6dff 50%, #818cf8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.auth-stage__desc {
    max-width: 36rem;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
}
@media (min-width: 1024px) {
    .auth-stage__desc { margin: 0; }
}

/* Two-column stage */
.auth-stage__grid {
    display: grid;
    gap: 1.5rem;
    align-items: start;
}
@media (min-width: 1024px) {
    .auth-stage__grid {
        grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
        gap: 2rem;
        align-items: stretch;
    }
}

/* Form gate card */
.auth-gate__card {
    padding: 1.75rem;
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.5) inset,
        0 24px 64px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(15, 23, 42, 0.04);
    backdrop-filter: blur(20px);
}
@media (min-width: 640px) {
    .auth-gate__card { padding: 2rem 2.1rem; }
}
.auth-gate__top {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}
@media (min-width: 480px) {
    .auth-gate__top {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}
.auth-gate__mark {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--ink);
}
.auth-gate__mark i { font-size: 1.25rem; }

/* Auth tabs — underline style */
.auth-gate__tabs.site-auth-tabs,
.page-login .site-auth-tabs {
    display: flex;
    gap: 0;
    padding: 0;
    margin-bottom: 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
}
.auth-gate__tabs .site-auth-tab,
.page-login .site-auth-tab {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.7rem 0.5rem;
    border: none;
    border-radius: 0;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--muted);
    background: transparent;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
}
.auth-gate__tabs .site-auth-tab i,
.page-login .site-auth-tab i {
    font-size: 1rem;
    opacity: 0.7;
}
.auth-gate__tabs .site-auth-tab.is-active,
.page-login .site-auth-tab.is-active {
    color: var(--accent);
    background: transparent;
    box-shadow: none;
    border-bottom-color: var(--accent);
}
.auth-gate__tabs .site-auth-tab.is-active i,
.page-login .site-auth-tab.is-active i { opacity: 1; }

/* Form fields */
.auth-gate__form.site-auth-form,
.page-login .site-auth-form {
    display: grid;
    gap: 1rem;
}
.auth-field label,
.page-login .site-auth-field label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ink-soft);
    margin-bottom: 0.35rem;
    letter-spacing: 0.02em;
}
.auth-field__wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.auth-field__wrap--grow { flex: 1; min-width: 0; }
.auth-field__icon {
    position: absolute;
    left: 0.85rem;
    font-size: 1.05rem;
    color: var(--muted);
    pointer-events: none;
    transition: color 0.18s;
}
.auth-field__wrap:focus-within .auth-field__icon { color: var(--accent); }
.auth-field__wrap input,
.page-login .site-auth-field input {
    width: 100%;
    height: 2.85rem;
    padding: 0 0.9rem 0 2.5rem;
    border: 1.5px solid var(--line);
    border-radius: 0.8rem;
    font-size: 0.92rem;
    color: var(--ink);
    background: #f8fafc;
    transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
}
.auth-field__wrap input:focus,
.page-login .site-auth-field input:focus {
    outline: none;
    background: #fff;
    border-color: rgba(26, 109, 255, 0.5);
    box-shadow: 0 0 0 3px rgba(26, 109, 255, 0.12);
}
.auth-field__code.site-auth-code-row,
.page-login .site-auth-code-row {
    display: flex;
    gap: 0.55rem;
    align-items: stretch;
}
.auth-field__code-btn,
.page-login .site-auth-code-btn {
    flex-shrink: 0;
    height: 2.85rem;
    padding: 0 0.9rem;
    border: 1.5px solid var(--line);
    border-radius: 0.8rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    background: rgba(26, 109, 255, 0.06);
    cursor: pointer;
    transition: background 0.18s, border-color 0.18s;
    white-space: nowrap;
}
.auth-field__code-btn:hover:not(:disabled),
.page-login .site-auth-code-btn:hover:not(:disabled) {
    background: rgba(26, 109, 255, 0.12);
    border-color: rgba(26, 109, 255, 0.35);
}
.auth-field__code-btn:disabled,
.page-login .site-auth-code-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}
.auth-gate__error.site-auth-error,
.page-login .site-auth-error {
    font-size: 0.84rem;
    color: #dc2626;
    min-height: 0;
    line-height: 1.45;
    padding: 0.55rem 0.75rem;
    border-radius: 0.6rem;
    background: rgba(220, 38, 38, 0.06);
    border: 1px solid rgba(220, 38, 38, 0.12);
}
.auth-gate__error.site-auth-error:empty,
.page-login .site-auth-error:empty {
    display: none;
}
.auth-gate__submit.site-auth-submit,
.page-login .site-auth-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    height: 3rem;
    margin-top: 0.15rem;
    border: none;
    border-radius: 0.85rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #1a6dff 0%, #0f5ae6 55%, #4338ca 100%);
    box-shadow: 0 8px 24px rgba(26, 109, 255, 0.35);
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.2s, opacity 0.2s;
}
.auth-gate__submit.site-auth-submit i,
.page-login .site-auth-submit i {
    font-size: 1.05rem;
    transition: transform 0.18s;
}
.auth-gate__submit.site-auth-submit:hover:not(:disabled),
.page-login .site-auth-submit:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 12px 32px rgba(26, 109, 255, 0.42);
}
.auth-gate__submit.site-auth-submit:hover:not(:disabled) i,
.page-login .site-auth-submit:hover:not(:disabled) i {
    transform: translateX(2px);
}
.auth-gate__submit.site-auth-submit:disabled,
.page-login .site-auth-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}
.auth-gate__legal {
    margin-top: 1.35rem;
    padding-top: 1.15rem;
    border-top: 1px solid var(--line);
    font-size: 0.78rem;
    line-height: 1.55;
    color: var(--muted);
    text-align: center;
}
.auth-gate__legal a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 560;
}
.auth-gate__legal a:hover { text-decoration: underline; }

/* Fleet status panel */
.auth-fleet {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.auth-fleet__panel {
    flex: 1;
    padding: 1.5rem;
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}
@media (min-width: 640px) {
    .auth-fleet__panel { padding: 1.75rem; }
}
.auth-fleet__panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}
.auth-fleet__label {
    font-family: 'IBM Plex Mono', Menlo, monospace;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}
.auth-fleet__live {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: #34d399;
}
.auth-fleet__live i { font-size: 0.45rem; }

.auth-fleet__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
    margin-bottom: 1.25rem;
}
.auth-fleet__stat {
    padding: 0.75rem 0.65rem;
    border-radius: 0.85rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
}
.auth-fleet__stat-val {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
    line-height: 1.1;
}
.auth-fleet__stat-key {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.3;
}

.auth-fleet__nodes {
    display: grid;
    gap: 0.5rem;
    margin-bottom: 1.15rem;
    list-style: none;
    padding: 0;
}
.auth-fleet__node {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.65rem 0.8rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.2s, border-color 0.2s;
}
.auth-fleet__node:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
}
.auth-fleet__node-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}
.auth-fleet__node--ok .auth-fleet__node-dot { background: #34d399; box-shadow: 0 0 8px rgba(52, 211, 153, 0.5); }
.auth-fleet__node--busy .auth-fleet__node-dot { background: #fbbf24; box-shadow: 0 0 8px rgba(251, 191, 36, 0.45); }
.auth-fleet__node-body {
    flex: 1;
    min-width: 0;
}
.auth-fleet__node-body strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.3;
}
.auth-fleet__node-body span {
    display: block;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.42);
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.auth-fleet__node-icon {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.auth-fleet__terminal {
    border-radius: 0.85rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.35);
}
.auth-fleet__terminal-bar {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.auth-fleet__terminal-bar span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}
.auth-fleet__terminal-bar span:nth-child(1) { background: #f87171; }
.auth-fleet__terminal-bar span:nth-child(2) { background: #fbbf24; }
.auth-fleet__terminal-bar span:nth-child(3) { background: #34d399; }
.auth-fleet__terminal-bar code {
    margin-left: auto;
    font-family: 'IBM Plex Mono', Menlo, monospace;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.35);
}
.auth-fleet__terminal-body {
    margin: 0;
    padding: 0.85rem 1rem;
    font-family: 'IBM Plex Mono', Menlo, monospace;
    font-size: 0.72rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.55);
    white-space: pre-wrap;
}
.auth-fleet__terminal-body .t-dim { color: rgba(255, 255, 255, 0.3); }
.auth-fleet__terminal-body .t-ok { color: #34d399; }
.auth-fleet__terminal-body .t-cursor {
    display: inline-block;
    animation: auth-cursor-blink 1s step-end infinite;
    color: rgba(255, 255, 255, 0.7);
}
@keyframes auth-cursor-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.auth-fleet__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
.auth-fleet__chips li {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.auth-fleet__chips li i {
    font-size: 0.9rem;
    color: var(--accent);
    opacity: 0.85;
}

/* ── Legal pages (terms / privacy) ── */
.legal-layout {
    display: grid;
    gap: 2rem;
}
@media (min-width: 1024px) {
    .legal-layout {
        grid-template-columns: 220px 1fr;
        gap: 3.5rem;
    }
}
.legal-nav {
    position: sticky;
    top: 6.5rem;
    align-self: start;
    padding: 0.5rem;
    background: rgba(255,255,255,0.7);
    border: 1px solid var(--line);
    border-radius: 1rem;
    backdrop-filter: blur(8px);
}
.legal-nav a {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.75rem 0.9rem;
    border-radius: 0.7rem;
    font-size: 0.88rem;
    font-weight: 560;
    color: var(--muted);
    text-decoration: none;
    transition: background 0.18s, color 0.18s;
}
.legal-nav a:hover {
    background: rgba(26,109,255,0.08);
    color: var(--accent);
}
.legal-nav a i { font-size: 1rem; flex-shrink: 0; }
.legal-meta {
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--line);
}
.legal-section {
    margin-bottom: 3rem;
    scroll-margin-top: 7rem;
}
.legal-section h2 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: var(--ink);
}
.legal-prose {
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--muted);
}
.legal-prose p { margin-bottom: 1rem; }
.legal-prose p:last-child { margin-bottom: 0; }
.legal-prose strong { color: var(--ink); font-weight: 600; }
.legal-list {
    list-style: none;
    margin: 0.75rem 0 1rem;
    padding: 0;
}
.legal-list li {
    position: relative;
    padding: 0.65rem 0 0.65rem 1.35rem;
    border-bottom: 1px solid rgba(15,23,42,0.06);
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--muted);
}
.legal-list li:last-child { border-bottom: 0; }
.legal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.05rem;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
}
.legal-list strong { color: var(--ink); font-weight: 600; }

/* =========================================================
   Purchase page — configurator
   ========================================================= */

.page-body--purchase {
    padding-top: 2.5rem;
}

/* ── Cycle selector (banner aside) ── */
.purchase-cycle-wrap {
    min-width: min(100%, 22rem);
}
.purchase-cycle-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
}
@media (min-width: 480px) {
    .purchase-cycle-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.purchase-cycle-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    padding: 0.7rem 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.72);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
    font-family: inherit;
    text-align: center;
}
.purchase-cycle-btn:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.22);
    color: #fff;
}
.purchase-cycle-btn.is-active {
    background: #fff;
    border-color: #fff;
    color: var(--ink);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.purchase-cycle-btn .cycle-btn-label {
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.2;
}
.purchase-cycle-btn .cycle-btn-price {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    opacity: 0.75;
}
.purchase-cycle-btn.is-active .cycle-btn-price { opacity: 0.55; }
.purchase-cycle-discount {
    font-size: 0.62rem;
    font-weight: 800;
    color: #63a3ff;
    margin-left: 0.1rem;
}
.purchase-cycle-btn.is-active .purchase-cycle-discount { color: var(--accent); }

/* ── Step indicator ── */
.purchase-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    padding: 0.35rem;
    border: 1px solid var(--line);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(8px);
}
@media (max-width: 639px) {
    .purchase-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.purchase-step {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.75rem 0.85rem;
    border-radius: 0.75rem;
    color: var(--muted);
    transition: background 0.2s, color 0.2s;
}
.purchase-step.is-active {
    background: rgba(26, 109, 255, 0.08);
    color: var(--accent);
}
.purchase-step__num {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    opacity: 0.7;
}
.purchase-step__label {
    font-size: 0.82rem;
    font-weight: 600;
}

/* ── Layout ── */
.purchase-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
}
@media (min-width: 1024px) {
    .purchase-layout {
        grid-template-columns: 1fr 360px;
        gap: 3rem;
    }
}
.purchase-main { min-width: 0; }
.purchase-section {
    margin-bottom: 3.5rem;
    scroll-margin-top: 7rem;
}
.purchase-section:last-child { margin-bottom: 0; }
.purchase-section-hint {
    font-size: 0.85rem;
    color: var(--muted);
    max-width: 22ch;
    text-align: right;
    line-height: 1.5;
}
@media (max-width: 767px) {
    .purchase-section-hint { display: none; }
}

/* ── Plan cards ── */
.purchase-plan-grid {
    display: grid;
    gap: 1rem;
}
@media (min-width: 768px) {
    .purchase-plan-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.purchase-plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1.75rem 1.5rem;
    border-radius: 1.25rem;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.92);
    cursor: pointer;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
    overflow: hidden;
}
.purchase-plan-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--line);
    transition: background 0.25s;
}
.purchase-plan-card:hover {
    border-color: rgba(26, 109, 255, 0.35);
    box-shadow: 0 16px 40px -18px rgba(26, 109, 255, 0.2);
    transform: translateY(-2px);
}
.purchase-plan-card:hover::before {
    background: linear-gradient(90deg, var(--accent), rgba(26, 109, 255, 0.35));
}
.purchase-plan-card.is-active {
    border-color: var(--accent);
    background: linear-gradient(165deg, rgba(26, 109, 255, 0.06) 0%, rgba(255, 255, 255, 0.98) 45%);
    box-shadow: 0 12px 36px -14px rgba(26, 109, 255, 0.28);
}
.purchase-plan-card.is-active::before {
    background: linear-gradient(90deg, var(--accent), #38bdf8);
}
.purchase-plan-card--featured.is-active {
    border-color: rgba(26, 109, 255, 0.5);
}
.purchase-plan-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    width: fit-content;
    padding: 0.28rem 0.7rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: #fff;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.purchase-plan-tier {
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(100, 116, 139, 0.75);
    margin-bottom: 0.45rem;
}
.purchase-plan-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 0.25rem;
}
.purchase-plan-specs {
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 1.25rem;
}
.purchase-plan-spec-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 1.35rem;
    border: 1px solid rgba(15, 23, 42, 0.07);
    border-radius: 0.8rem;
    overflow: hidden;
    flex: 1;
}
.purchase-plan-spec-grid > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.62rem 0.85rem;
    font-size: 0.84rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.purchase-plan-spec-grid > div:last-child { border-bottom: 0; }
.purchase-plan-spec-grid > div:nth-child(odd) { background: rgba(15, 23, 42, 0.018); }
.purchase-plan-spec-grid strong {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--muted);
}
.purchase-plan-spec-grid span { font-weight: 500; color: var(--ink); }
.purchase-plan-price {
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
    line-height: 1;
}
.purchase-plan-amount {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--ink);
}
.purchase-plan-unit {
    font-size: 0.82rem;
    color: var(--muted);
    font-weight: 500;
}
.purchase-plan-check {
    position: absolute;
    top: 1.1rem;
    right: 1.1rem;
    font-size: 1.35rem;
    color: var(--accent);
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.2s, transform 0.2s;
}
.purchase-plan-card.is-active .purchase-plan-check {
    opacity: 1;
    transform: scale(1);
}

/* ── Region cards ── */
.purchase-region-grid {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 768px) {
    .purchase-region-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .purchase-region-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
    .purchase-region-card--featured { grid-column: span 2; }
    .purchase-region-card:not(.purchase-region-card--featured) { grid-column: span 2; }
}
.purchase-region-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 9.5rem;
    padding: 1.15rem 1.1rem;
    border: 1px solid var(--line);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.88);
    text-align: left;
    cursor: pointer;
    transition: border-color 0.22s, box-shadow 0.22s, transform 0.18s, background 0.22s;
    font-family: inherit;
}
.purchase-region-card:hover {
    border-color: rgba(26, 109, 255, 0.35);
    box-shadow: 0 12px 32px -16px rgba(26, 109, 255, 0.22);
    transform: translateY(-2px);
}
.purchase-region-card.is-active {
    border-color: var(--accent);
    background: linear-gradient(165deg, rgba(26, 109, 255, 0.07) 0%, rgba(255, 255, 255, 0.98) 50%);
    box-shadow: 0 10px 28px -12px rgba(26, 109, 255, 0.25);
}
.purchase-region-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 0.55rem;
}
.purchase-region-card__code {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--muted);
}
.purchase-region-card__flag { font-size: 1.2rem; line-height: 1; }
.purchase-region-card__name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.2rem;
}
.purchase-region-card__route {
    font-size: 0.76rem;
    color: var(--muted);
    line-height: 1.45;
    margin-bottom: 0.85rem;
    flex: 1;
}
.purchase-region-card__foot {
    width: 100%;
    margin-top: auto;
}
.purchase-region-card__latency {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.45rem;
}
.purchase-region-card__latency-label {
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--muted);
}
.purchase-region-card__latency-value {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ink);
}
.purchase-region-card__bar {
    height: 3px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.08);
    overflow: hidden;
}
.purchase-region-card__bar span {
    display: block;
    height: 100%;
    width: calc(var(--latency, 50) * 1%);
    border-radius: inherit;
    background: linear-gradient(90deg, var(--accent), #38bdf8);
}
.purchase-region-card__check {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    font-size: 1.1rem;
    color: var(--accent);
    opacity: 0;
    transition: opacity 0.2s;
}
.purchase-region-card.is-active .purchase-region-card__check { opacity: 1; }
.purchase-region-note {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    margin-top: 1rem;
    font-size: 0.8rem;
    line-height: 1.6;
    color: var(--muted);
}
.purchase-region-note i {
    font-size: 1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
    color: var(--accent);
    opacity: 0.7;
}

/* ── Add-ons ── */
.purchase-addon-card,
.purchase-tb5-card {
    border: 1px solid var(--line);
    border-radius: 1.15rem;
    background: rgba(255, 255, 255, 0.9);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.purchase-addon-card {
    padding: 1.5rem;
    margin-bottom: 0.85rem;
}
.purchase-addon-card:hover {
    border-color: rgba(26, 109, 255, 0.25);
    box-shadow: 0 8px 24px -14px rgba(15, 23, 42, 0.12);
}
.purchase-addon-head {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.15rem;
}
.purchase-addon-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: rgba(26, 109, 255, 0.08);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}
.purchase-addon-head h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.2rem;
}
.purchase-addon-head p {
    font-size: 0.84rem;
    color: var(--muted);
    line-height: 1.5;
}
.purchase-ssd-grid {
    display: grid;
    gap: 0.5rem;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) {
    .purchase-ssd-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.purchase-ssd-btn {
    padding: 0.95rem 0.75rem;
    border: 1px solid var(--line);
    border-radius: 0.8rem;
    background: transparent;
    font-size: 0.84rem;
    font-weight: 560;
    color: var(--ink-soft);
    cursor: pointer;
    text-align: center;
    transition: border-color 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
    font-family: inherit;
}
.purchase-ssd-btn:hover {
    border-color: rgba(26, 109, 255, 0.35);
    background: rgba(26, 109, 255, 0.04);
    color: var(--ink);
}
.purchase-ssd-btn.is-active {
    border-color: var(--accent);
    background: rgba(26, 109, 255, 0.08);
    color: var(--accent);
    font-weight: 600;
    box-shadow: 0 0 0 1px rgba(26, 109, 255, 0.15);
}
.purchase-ssd-btn .ssd-addon-price {
    display: block;
    font-size: 0.72rem;
    font-weight: 500;
    margin-top: 0.25rem;
    color: var(--muted);
}
.purchase-ssd-btn.is-active .ssd-addon-price { color: rgba(26, 109, 255, 0.75); }

.purchase-tb5-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    cursor: pointer;
}
.purchase-tb5-card:hover {
    border-color: rgba(26, 109, 255, 0.25);
    box-shadow: 0 8px 24px -14px rgba(15, 23, 42, 0.12);
}
.purchase-tb5-check {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.purchase-tb5-box {
    flex-shrink: 0;
    width: 1.35rem;
    height: 1.35rem;
    margin-top: 0.1rem;
    border: 1.5px solid var(--line);
    border-radius: 0.45rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--paper);
    transition: all 0.2s;
}
.purchase-tb5-box i {
    font-size: 0.72rem;
    color: #fff;
    opacity: 0;
    transition: opacity 0.2s;
}
.purchase-tb5-check:checked + .purchase-tb5-box {
    background: var(--accent);
    border-color: var(--accent);
}
.purchase-tb5-check:checked + .purchase-tb5-box i { opacity: 1; }
.purchase-tb5-copy {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    flex: 1;
    min-width: 0;
}
.purchase-tb5-title {
    font-family: var(--font-display);
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--ink);
}
.purchase-tb5-price {
    font-weight: 500;
    color: var(--muted);
    font-size: 0.88rem;
}
.purchase-tb5-desc {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.6;
}
.purchase-tb5-icon {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.65rem;
    background: rgba(26, 109, 255, 0.08);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

/* ── Order panel ── */
.purchase-order {
    position: relative;
}
@media (min-width: 1024px) {
    .purchase-order {
        position: sticky;
        top: 6rem;
    }
}
.purchase-order-panel {
    position: relative;
    overflow: hidden;
    border-radius: 1.35rem;
    background: linear-gradient(145deg, #0b1220 0%, #0f172a 48%, #0d1a2e 100%);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.purchase-order-glow {
    position: absolute;
    top: -80px;
    right: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26, 109, 255, 0.28), transparent 65%);
    pointer-events: none;
}
.purchase-order-inner {
    position: relative;
    z-index: 1;
    padding: 1.75rem;
}
.purchase-order-head {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.purchase-order-head i {
    font-size: 1.35rem;
    color: rgba(99, 163, 255, 0.9);
}
.purchase-order-head h2 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.purchase-order-items {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.5rem;
}
.purchase-order-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 0.84rem;
    color: rgba(226, 232, 240, 0.72);
}
.purchase-order-row strong {
    color: #fff;
    font-weight: 560;
    text-align: right;
    max-width: 58%;
    line-height: 1.45;
}
.purchase-order-row.is-addon strong { color: #93c5fd; }
.purchase-order-total {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 1.15rem 0 1.35rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 0.25rem;
}
.purchase-order-total-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}
.purchase-order-total-price {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
    color: #fff;
}
.purchase-order-total-unit {
    font-size: 0.82rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    margin-left: 0.1rem;
}
.purchase-checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    height: 3.25rem;
    border: none;
    border-radius: 0.8rem;
    background: #fff;
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    font-family: inherit;
}
.purchase-checkout-btn:hover {
    background: #f1f5f9;
    transform: translateY(-1px);
}
.purchase-checkout-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
}
.purchase-order-trust {
    list-style: none;
    margin: 1.1rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}
.purchase-order-trust li {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.72rem;
    font-weight: 560;
    color: rgba(255, 255, 255, 0.42);
}
.purchase-order-trust i { color: rgba(99, 163, 255, 0.75); font-size: 0.85rem; }

/* ── Payment modal ── */
.purchase-modal.flex,
#paymentResultModal.flex { display: flex !important; }
.purchase-modal.hidden,
#paymentResultModal.hidden { display: none !important; }
.purchase-modal-card {
    background: #fff;
    padding: 2rem;
    max-width: 22rem;
    width: 100%;
    text-align: center;
    border-radius: 1.25rem;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
    border: 1px solid var(--line);
}
.purchase-modal-icon { margin-bottom: 1rem; font-size: 2.5rem; }
.purchase-modal-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.5rem;
}
.purchase-modal-message {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.purchase-modal-actions {
    display: flex;
    gap: 0.65rem;
    justify-content: center;
    flex-wrap: wrap;
}
.purchase-modal-btn {
    padding: 0.7rem 1.35rem;
    border-radius: 0.75rem;
    font-size: 0.88rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s;
}
.purchase-modal-btn--ghost {
    background: var(--paper);
    color: var(--ink);
}
.purchase-modal-btn--ghost:hover { background: var(--paper-deep); }
.purchase-modal-btn--primary {
    background: var(--ink);
    color: #fff;
}
.purchase-modal-btn--primary:hover { background: #000; }
.purchase-modal-btn.hidden { display: none; }

/* =========================================================
   Blog list page
   ========================================================= */

.blog-section-head {
    align-items: flex-end;
    gap: 1.25rem;
}
.blog-section-head .period-tabs {
    flex-shrink: 0;
}

.blog-cats {
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: 100%;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.15rem;
    }
}
@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.25rem;
    }
}

.blog-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 15.5rem;
    padding: 1.65rem 1.5rem 1.35rem;
    border-radius: 1.25rem;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--line);
    transition: background 0.3s;
}
.blog-card:hover {
    border-color: rgba(26, 109, 255, 0.28);
    box-shadow: 0 20px 50px -22px rgba(26, 109, 255, 0.2);
    transform: translateY(-3px);
    color: inherit;
}
.blog-card:hover::before {
    background: linear-gradient(90deg, var(--accent), rgba(26, 109, 255, 0.35));
}

.blog-card__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    opacity: 0.85;
}

.blog-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.blog-card__tag {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
}
.blog-card__read {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--muted);
    white-space: nowrap;
}
.blog-card__title {
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.28;
    margin-bottom: 0.65rem;
    color: var(--ink);
    transition: color 0.2s;
}
.blog-card:hover .blog-card__title { color: var(--accent); }
.blog-card__excerpt {
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--muted);
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-card__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 1.15rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(15, 23, 42, 0.07);
}
.blog-card__date {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--muted);
    font-variant-numeric: tabular-nums;
}
.blog-card__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.05);
    color: var(--ink);
    font-size: 0.95rem;
    transition: transform 0.22s, background 0.22s, color 0.22s;
}
.blog-card:hover .blog-card__arrow {
    transform: translateX(2px);
    background: rgba(26, 109, 255, 0.1);
    color: var(--accent);
}

/* Featured hero card — spans full grid */
.blog-card--featured {
    grid-column: 1 / -1;
    min-height: auto;
    padding: 0;
    border: none;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 52%, #0b1220 100%);
    color: #fff;
    box-shadow: 0 24px 60px -20px rgba(15, 23, 42, 0.45);
}
.blog-card--featured::before { display: none; }
.blog-card--featured:hover {
    border-color: transparent;
    box-shadow: 0 28px 70px -18px rgba(26, 109, 255, 0.28);
    transform: translateY(-4px);
    color: #fff;
}
.blog-card--featured .blog-card__glow {
    position: absolute;
    width: 420px;
    height: 420px;
    right: -100px;
    top: -140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26, 109, 255, 0.32), transparent 65%);
    pointer-events: none;
}
.blog-card--featured .blog-card__inner {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 2rem;
    padding: 2rem 1.5rem;
}
@media (min-width: 1024px) {
    .blog-card--featured .blog-card__inner {
        grid-template-columns: 1.35fr 0.65fr;
        align-items: end;
        padding: 2.75rem 2.5rem;
        gap: 2.5rem;
    }
}
.blog-card--featured .blog-card__tag {
    color: rgba(147, 197, 253, 0.95);
}
.blog-card--featured .blog-card__read {
    color: rgba(255, 255, 255, 0.45);
}
.blog-card--featured .blog-card__title {
    font-size: clamp(1.45rem, 3vw, 2.1rem);
    letter-spacing: -0.035em;
    line-height: 1.12;
    color: #fff;
    margin-bottom: 0.85rem;
}
.blog-card--featured:hover .blog-card__title { color: #fff; }
.blog-card--featured .blog-card__excerpt {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.95rem;
    -webkit-line-clamp: 4;
    max-width: 44rem;
}
.blog-card--featured .blog-card__foot {
    border-top-color: rgba(255, 255, 255, 0.1);
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    align-self: end;
}
@media (min-width: 1024px) {
    .blog-card--featured .blog-card__foot {
        flex-direction: column;
        align-items: flex-end;
        justify-content: flex-end;
        gap: 1rem;
    }
}
.blog-card--featured .blog-card__date {
    color: rgba(255, 255, 255, 0.42);
}
.blog-card--featured .blog-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    height: 2.75rem;
    padding: 0 1.25rem;
    border-radius: 0.75rem;
    background: #fff;
    color: var(--ink);
    font-size: 0.88rem;
    font-weight: 600;
    transition: background 0.2s, transform 0.2s;
}
.blog-card--featured:hover .blog-card__cta {
    background: #f1f5f9;
    transform: translateX(2px);
}

.blog-pagination {
    margin-top: 2.5rem;
}
.blog-pagination__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.blog-pagination__controls {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
    justify-content: center;
}
.blog-pagination__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.25rem;
    height: 2.25rem;
    padding: 0 0.5rem;
    border-radius: 0.65rem;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.85);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--muted);
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    font-family: inherit;
}
.blog-pagination__btn:hover:not(:disabled) {
    border-color: rgba(26, 109, 255, 0.35);
    color: var(--accent);
    background: #fff;
}
.blog-pagination__btn.is-active {
    background: var(--ink);
    border-color: var(--ink);
    color: #fff;
}
.blog-pagination__btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
.blog-pagination__dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.75rem;
    height: 2.25rem;
    font-size: 0.82rem;
    color: var(--muted);
}
.blog-pagination__info {
    font-size: 0.78rem;
    color: var(--muted);
}
.blog-pagination__info strong {
    color: var(--ink);
    font-weight: 600;
}

.blog-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    border-radius: 1.25rem;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.75);
}
.blog-empty__icon {
    font-size: 2rem;
    opacity: 0.35;
    margin-bottom: 0.75rem;
}
.blog-empty__title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.35rem;
}
.blog-empty__desc {
    font-size: 0.88rem;
    color: var(--muted);
}

.blog-topic-rail {
    display: grid;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}
@media (min-width: 768px) {
    .blog-topic-rail { grid-template-columns: repeat(3, 1fr); }
}
.blog-topic-rail__cell {
    background: var(--surface);
    padding: 1.75rem 1.5rem;
    transition: background 0.25s;
}
.blog-topic-rail__cell:hover { background: #f8fafc; }
.blog-topic-rail__index {
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    color: var(--accent);
    margin-bottom: 0.85rem;
}

/* =========================================================
   About page
   ========================================================= */

.about-banner-note {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.38);
    text-align: center;
    width: 100%;
}
@media (min-width: 1024px) {
    .about-banner-note { text-align: right; }
}

.about-split {
    display: grid;
    gap: 2rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .about-split {
        grid-template-columns: 1fr 1fr;
        gap: 3.5rem;
    }
}
.about-split__media {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--paper-deep);
    aspect-ratio: 4 / 3;
}
.about-split__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
}
.about-split__title {
    font-family: var(--font-display);
    font-size: clamp(1.65rem, 3vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.12;
    color: var(--ink);
    margin-bottom: 1rem;
}
.about-split__lead {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--muted);
    margin-bottom: 1.5rem;
}
.about-checklist {
    display: grid;
    gap: 0.75rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
.about-checklist li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.95rem;
    font-weight: 560;
    color: var(--ink-soft);
}
.about-checklist i {
    font-size: 1.2rem;
    color: var(--accent);
    flex-shrink: 0;
}

.about-region-grid {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) {
    .about-region-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .about-region-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}
.about-region {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1.15rem 1.1rem;
    border-radius: 0.9rem;
    border: 1px solid rgba(15, 23, 42, 0.06);
    background: rgba(255, 255, 255, 0.72);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.about-region:hover {
    border-color: rgba(26, 109, 255, 0.22);
    box-shadow: 0 8px 24px -12px rgba(26, 109, 255, 0.14);
}
.about-region__code {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.65rem;
    background: rgba(26, 109, 255, 0.08);
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--accent);
}
.about-region__name {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 650;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin-bottom: 0.15rem;
}
.about-region__route {
    font-size: 0.78rem;
    line-height: 1.4;
    color: var(--muted);
}

.about-facts {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: 1fr 1fr;
}
.about-fact {
    padding: 1.15rem 1.1rem;
    border-radius: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}
.about-fact__label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
    margin-bottom: 0.35rem;
}
.about-fact__value {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #fff;
    line-height: 1.35;
}
