/* =====================================================================
   AURA SECURITY — CONSOLIDATED STYLESHEET
   Structure: this file merges the two design-system passes that used to
   live inline in index.html (a base pass, then a second pass that won
   the cascade via !important on almost every rule) into one file, in the
   same relative order they had before — so nothing about how the page
   actually renders changes just from moving the CSS out of the HTML.
   The redesign (new palette, new heading font, new premium components)
   is applied at the very end, in its own section, so it's easy to see
   what's "inherited from before" vs "new".
   ===================================================================== */

/* =====================================================================
   1. BASE PASS — reset, tokens, layout, components, docs, legal, status
   ===================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --bg: #030408;
    --surface: #0a0c14;
    --card: rgba(16, 19, 31, 0.4);
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --border: rgba(255, 255, 255, 0.05);
    --accent: #5468ff;
    --adim: rgba(84, 104, 255, 0.15);
    --amid: rgba(84, 104, 255, 0.3);
    --text: #f0f2ff;
    --muted: #8e95b0;
    --faint: #2a2e45;
    --green: #22c55e;
    --red: #ef4444;
    --orange: #f97316;
    --yellow: #eab308;
    --purple: #bf77f6;
    --premium: #bf77f6;
    --premium-dim: rgba(191, 119, 246, 0.1);
    --premium-mid: rgba(191, 119, 246, 0.25);
    --new: #06b6d4;
    --new-dim: rgba(6, 182, 212, 0.1);
    --new-mid: rgba(6, 182, 212, 0.25);
    --f: -apple-system, BlinkMacSystemFont, 'Outfit', 'SF Pro Display', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --mono: 'SF Mono', 'Fira Code', ui-monospace, Menlo, Monaco, Consolas, monospace;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--f);
    background: var(--bg);
    color: var(--text);
    line-height: 1.47059;
    font-weight: 400;
    letter-spacing: -0.022em;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-image: linear-gradient(to bottom, #050b1a 0%, #030408 50%, #000000 100%);
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(84, 104, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(191, 119, 246, 0.1) 0%, transparent 40%);
    background-size: 100% 100%;
    pointer-events: none;
    z-index: -1;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, rgba(5, 11, 26, 0.8), transparent);
    z-index: 800;
    pointer-events: none;
}

nav {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1080px;
    z-index: 1000;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    background: rgba(16, 18, 27, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: 999px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.3px;
    cursor: pointer;
    flex-shrink: 0;
    width: 180px;
}

.nav-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex: 1;
}

.nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-shrink: 0;
    width: 240px;
}

.nav-tab {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--muted);
    cursor: pointer;
    transition: all 0.2s;
    padding: 6px 10px;
    border-radius: 8px;
}

.nav-tab:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
}

.nav-tab.on {
    color: var(--accent);
    background: var(--adim);
    font-weight: 600;
}

.view {
    display: none;
}

.view.show {
    display: block;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 140px 24px 80px;
    position: relative;
    overflow: hidden;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 99px;
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 40px;
}

.hero-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--green);
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-h1 {
    font-size: clamp(36px, 8vw, 68px);
    font-weight: 950;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 24px;
}

.h1-acc {
    color: var(--accent);
    text-shadow: 0 0 35px rgba(84, 104, 255, 0.6);
}

.prem-glow-text {
    color: var(--premium);
    text-shadow: 0 0 35px rgba(168, 85, 247, 0.6);
}

.hero-sub {
    font-size: 14.5px;
    color: var(--muted);
    max-width: 440px;
    margin-bottom: 32px;
    font-weight: 400;
    line-height: 1.6;
}

.prem-f-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: var(--premium);
}

.new-ico {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: var(--new);
}

.new-ico .ico {
    color: var(--new);
}

.stats-row {
    display: flex;
    background: var(--card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    margin-top: 48px;
}

.stat {
    padding: 18px 36px;
    text-align: center;
    border-right: 1px solid var(--border)
}

.stat:last-child {
    border-right: none
}

.stat-v {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 3px
}

.stat-l {
    font-size: 12px;
    color: var(--muted)
}

.sect {
    max-width: 1080px;
    margin: 0 auto;
    padding: 80px 48px
}

.seyebrow {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 12px
}

.sh2 {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.8px;
    margin-bottom: 12px;
    line-height: 1.15
}

.ssub {
    font-size: 15px;
    color: var(--muted);
    max-width: 480px;
    line-height: 1.7
}

.g3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 40px
}

.g2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.fc {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px;
    transition: border-color .2s, transform .18s
}

.fc:hover {
    border-color: rgba(84, 104, 255, 0.28);
    transform: translateY(-2px)
}

.fc-ico {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px
}

.fc-ico .ico {
    width: 19px;
    height: 19px
}

.ib {
    background: rgba(84, 104, 255, 0.11)
}

.ib .ico {
    color: var(--accent)
}

.ig {
    background: rgba(34, 197, 94, 0.1)
}

.ig .ico {
    color: var(--green)
}

.ir {
    background: rgba(239, 68, 68, 0.1)
}

.ir .ico {
    color: var(--red)
}

.io {
    background: rgba(249, 115, 22, 0.1)
}

.io .ico {
    color: var(--orange)
}

.ip {
    background: rgba(168, 85, 247, 0.1)
}

.ip .ico {
    color: var(--purple)
}

.iy {
    background: rgba(234, 179, 8, 0.1)
}

.iy .ico {
    color: var(--yellow)
}

.ic {
    background: rgba(6, 182, 212, 0.11)
}

.ic .ico {
    color: var(--new)
}

.fc-t {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 7px
}

.fc-d {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.65
}

.cta-wrap {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border)
}

.cta-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 64px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap
}

.cta-t {
    font-size: 25px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 8px
}

.cta-s {
    color: var(--muted);
    font-size: 14px;
    max-width: 400px;
    line-height: 1.7
}

.cta-acts {
    display: flex;
    gap: 10px;
    flex-shrink: 0
}

footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    font-size: 15px;
    color: var(--muted);
}

.footer-grid-wrap {
    background: var(--surface);
    border-top: 1px solid var(--border);
}

.footer-grid-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 80px 64px 56px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.brand-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 260px;
    margin-top: 2px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-col-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: var(--text);
    margin-bottom: 8px;
}

.footer-bottom {
    max-width: 1080px;
    margin: 0 auto;
    padding: 28px 64px;
    border-top: 1px solid var(--border);
    font-size: 13.5px;
    color: var(--faint);
}

.fl {
    display: flex;
    align-items: center;
    gap: 18px
}

.fl-logo {
    width: 24px;
    height: 24px;
    border-radius: 5px;
    object-fit: cover
}

.fl-b {
    font-weight: 800;
    font-size: 16px;
    color: var(--text)
}

.fl-l {
    cursor: pointer;
    transition: color .12s;
    text-decoration: none;
    color: var(--muted);
    font-size: 14px;
}

.fl-l:hover {
    color: var(--text)
}

@media (max-width: 768px) {
    .footer-grid-inner {
        grid-template-columns: 1fr 1fr;
        padding: 40px 24px 24px;
        gap: 32px;
    }

    .footer-brand-col {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        padding: 16px 24px;
    }
}

.docs-wrap {
    display: flex;
    min-height: 100vh;
    padding-top: 0
}

.dsb {
    width: 236px;
    min-width: 236px;
    flex-shrink: 0;
    background: var(--surface);
    border-right: 1px solid var(--border);
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    padding: 100px 0 22px;
    z-index: 900;
}

.dsb::-webkit-scrollbar {
    width: 3px
}

.dsb::-webkit-scrollbar-thumb {
    background: var(--faint);
    border-radius: 2px
}

.dg {
    margin-bottom: 18px;
    padding: 0 12px
}

.dgl {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    color: var(--faint);
    padding: 0 8px 7px
}

.di {
    display: block;
    padding: 7px 10px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 400;
    color: var(--muted);
    cursor: pointer;
    transition: color .12s, background .12s
}

.di:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.035)
}

.di.on {
    color: var(--accent);
    background: var(--adim);
    font-weight: 500
}

.dm {
    flex: 1;
    padding: 120px 60px 80px;
    max-width: 800px;
    overflow-x: hidden
}

.dp {
    display: none
}

.dp.show {
    display: block
}

.dh1 {
    font-size: 29px;
    font-weight: 800;
    letter-spacing: -0.8px;
    margin-bottom: 10px;
    line-height: 1.2
}

.dlead {
    font-size: 15px;
    color: var(--muted);
    margin-bottom: 40px;
    line-height: 1.75;
    max-width: 580px
}

.dh2 {
    font-size: 17px;
    font-weight: 700;
    margin: 42px 0 14px;
    letter-spacing: -0.2px
}

.dh3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin: 26px 0 8px
}

.dp-t {
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 14px
}

.dp-t strong {
    color: var(--text);
    font-weight: 600
}

code {
    font-family: var(--mono);
    font-size: 12.5px;
    background: rgba(84, 104, 255, 0.09);
    border: 1px solid rgba(84, 104, 255, 0.14);
    color: #818cf8;
    padding: 2px 7px;
    border-radius: 5px
}

.note {
    border-radius: 18px;
    padding: 14px 18px;
    margin: 20px 0;
    border-left: 3px solid;
    font-size: 13.5px
}

.note p {
    margin: 0;
    font-size: 13.5px;
    color: var(--muted)
}

.note strong {
    color: var(--text)
}

.nl {
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 6px
}

.note.info {
    background: rgba(84, 104, 255, 0.07);
    border-color: var(--accent)
}

.note.info .nl {
    color: var(--accent)
}

.note.warn {
    background: rgba(234, 179, 8, 0.07);
    border-color: var(--yellow)
}

.note.warn .nl {
    color: var(--yellow)
}

.note.tip {
    background: rgba(34, 197, 94, 0.07);
    border-color: var(--green)
}

.note.tip .nl {
    color: var(--green)
}

.cmd {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    margin-bottom: 12px;
    overflow: hidden
}

.cmd-top {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.018)
}

.cn {
    font-family: var(--mono);
    font-size: 13.5px;
    font-weight: 500;
    color: var(--accent)
}

.bg {
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 5px;
    font-weight: 600
}

.bn {
    background: rgba(239, 68, 68, 0.11);
    color: var(--red);
    border: 1px solid rgba(239, 68, 68, 0.18)
}

.br {
    background: rgba(249, 115, 22, 0.11);
    color: var(--orange);
    border: 1px solid rgba(249, 115, 22, 0.18)
}

.bu {
    background: rgba(34, 197, 94, 0.11);
    color: var(--green);
    border: 1px solid rgba(34, 197, 94, 0.18)
}

.bs {
    background: rgba(168, 85, 247, 0.11);
    color: var(--purple);
    border: 1px solid rgba(168, 85, 247, 0.18)
}

.cmd-b {
    padding: 13px 18px
}

.cdesc {
    color: var(--muted);
    font-size: 13.5px;
    line-height: 1.65;
    margin-bottom: 10px
}

.pm {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 7px 0;
    border-top: 1px solid var(--border);
    font-size: 13px
}

.pn {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--yellow);
    min-width: 118px
}

.preq {
    font-size: 10px;
    background: rgba(234, 179, 8, 0.1);
    color: var(--yellow);
    border: 1px solid rgba(234, 179, 8, 0.18);
    padding: 1px 6px;
    border-radius: 4px;
    white-space: nowrap
}

.popt {
    font-size: 10px;
    background: rgba(107, 114, 128, 0.1);
    color: var(--muted);
    border: 1px solid var(--border);
    padding: 1px 6px;
    border-radius: 4px;
    white-space: nowrap
}

.pd {
    color: var(--muted);
    font-size: 13px
}

.tbl {
    border: 1px solid var(--border);
    border-radius: 11px;
    overflow-x: auto;
    overflow-y: hidden;
    margin: 16px 0
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13.5px
}

th {
    background: rgba(255, 255, 255, 0.025);
    color: var(--muted);
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    padding: 10px 16px;
    text-align: left
}

td {
    padding: 10px 16px;
    border-top: 1px solid var(--border);
    color: var(--muted);
    vertical-align: top;
    line-height: 1.55
}

tr:hover td {
    background: rgba(255, 255, 255, 0.012)
}

.ton {
    color: var(--green);
    font-family: var(--mono);
    font-size: 12px
}

.toff {
    color: var(--faint);
    font-family: var(--mono);
    font-size: 12px
}

.tv {
    color: #818cf8;
    font-family: var(--mono);
    font-size: 12px
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 22px 0
}

.step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 18px
}

.sn {
    width: 27px;
    height: 27px;
    flex-shrink: 0;
    background: var(--adim);
    border: 1px solid rgba(84, 104, 255, 0.22);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    margin-top: 1px
}

.st {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px
}

.sd {
    color: var(--muted);
    font-size: 13px;
    margin: 0;
    line-height: 1.65
}

.lw {
    max-width: 700px;
    margin: 0 auto;
    padding: 120px 48px 100px
}

.legal-title {
    font-family: var(--f);
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 8px
}

.lh1 {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 8px
}

.ldate {
    color: var(--faint);
    font-size: 13px;
    margin-bottom: 44px
}

.legal-date {
    color: var(--faint);
    font-size: 13px;
    margin-bottom: 44px;
    font-weight: 400
}

.lb {
    margin-bottom: 34px
}

.lh2 {
    font-size: 16.5px;
    font-weight: 700;
    margin-bottom: 11px;
    letter-spacing: -0.2px
}

.lp {
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.85;
    margin-bottom: 11px
}

.lul {
    list-style: none;
    padding: 0
}

.lul li {
    padding: 5px 0 5px 18px;
    position: relative;
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.7
}

.lul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--faint)
}

.lul li strong {
    color: var(--text);
    font-weight: 600
}

.lbox {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 17px 22px;
    margin-top: 8px
}

.lbox a {
    color: var(--accent)
}

/* i18n now happens via js/i18n.js swapping textContent by data-i18n key,
   not via CSS show/hide — this legacy rule is kept only in case any
   stray data-en/data-it pair still exists somewhere. */
[data-it] {
    display: none
}

[data-en] {
    display: initial
}

.lang-it [data-it] {
    display: initial
}

.lang-it [data-en] {
    display: none
}

.new-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    background: var(--new-dim);
    border: 1px solid var(--new-mid);
    border-radius: 99px;
    font-size: 11px;
    font-weight: 700;
    color: var(--new);
    letter-spacing: .3px
}

.new-card {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.07) 0%, rgba(84, 104, 255, 0.04) 100%);
    border: 1px solid var(--new-mid);
    border-radius: 16px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: border-color .2s, transform .18s
}

.new-card:hover {
    border-color: rgba(6, 182, 212, 0.45);
    transform: translateY(-2px)
}

.new-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--new), var(--accent))
}

.new-card .fc-ico,
.new-ico {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px
}

.new-card .ico,
.new-ico .ico {
    color: var(--new)
}

.new-tag {
    font-size: 9px;
    font-weight: 700;
    background: var(--new-dim);
    color: var(--new);
    border: 1px solid var(--new-mid);
    border-radius: 4px;
    padding: 1px 6px;
    margin-left: 5px;
    vertical-align: middle;
    letter-spacing: .3px
}

.di.new-item {
    color: var(--new) !important
}

.di.new-item.on {
    background: var(--new-dim) !important
}

.di.new-item:hover {
    background: rgba(6, 182, 212, 0.08) !important;
    color: var(--new) !important
}

.dgl.new-label {
    color: var(--new) !important
}

.timeout-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 2px 9px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 6px;
    font-family: var(--mono);
    font-size: 11.5px;
    color: var(--new);
    font-weight: 500
}

.changed-tag {
    font-size: 9px;
    font-weight: 700;
    background: rgba(249, 115, 22, 0.1);
    color: var(--orange);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 4px;
    padding: 1px 6px;
    margin-left: 5px;
    vertical-align: middle;
    letter-spacing: .3px
}

.bnew {
    background: rgba(6, 182, 212, 0.11);
    color: var(--new);
    border: 1px solid rgba(6, 182, 212, 0.18)
}

.note.new {
    background: rgba(6, 182, 212, 0.07);
    border-color: var(--new)
}

.note.new .nl {
    color: var(--new)
}

.prem-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    background: var(--premium-dim);
    border: 1px solid var(--premium-mid);
    border-radius: 99px;
    font-size: 11px;
    font-weight: 700;
    color: var(--premium);
    letter-spacing: 0.5px;
    box-shadow: 0 0 15px var(--premium-dim);
}

.prem-card {
    background: rgba(191, 119, 246, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid var(--premium-mid);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.prem-card:hover {
    border-color: var(--premium);
    transform: translateY(-8px) scale(1.015);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.prem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--premium), var(--accent), var(--premium));
    background-size: 200% auto;
    animation: borderSlide 3s linear infinite;
}

.prem-hero {
    position: relative;
    overflow: hidden;
    padding: 100px 24px 60px;
    text-align: center;
}

.prem-price {
    font-size: 64px;
    font-weight: 900;
    letter-spacing: -3px;
    background: linear-gradient(135deg, #fff 40%, var(--premium) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.prem-price-sub {
    font-size: 15px;
    color: var(--muted);
    margin-top: -5px;
    margin-bottom: 32px
}

.prem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 40px
}

.prem-feature {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    text-align: left;
    transition: all 0.3s ease;
}

.prem-feature:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--premium-mid);
    transform: translateY(-5px);
}

.prem-f-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text)
}

.prem-f-desc {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.6
}

.prem-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 34px;
    background: linear-gradient(135deg, var(--premium), var(--accent));
    color: #fff;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 800;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    box-shadow: 0 10px 25px var(--premium-dim);
    text-decoration: none;
}

.prem-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 15px 40px var(--premium-mid);
}


.dgl.prem-label {
    color: var(--premium) !important;
    margin-top: 10px;
}

.prem-tag {
    font-size: 9px;
    font-weight: 800;
    background: rgba(0, 168, 255, 0.1);
    color: #00a8ff;
    border: 1px solid rgba(0, 168, 255, 0.25);
    border-radius: 5px;
    padding: 2px 6px;
    margin-left: 5px;
    vertical-align: middle;
    letter-spacing: 0.5px;
}

.btn-out {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 34px;
    background: rgba(255, 255, 255, 0.02);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    transition: all .15s;
    cursor: pointer;
    backdrop-filter: blur(10px);
    text-decoration: none;
}

.btn-out:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15)
}

.btn-fill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 34px;
    background: var(--accent);
    color: #fff;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    transition: all .15s;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-fill:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(84, 104, 255, 0.25)
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.6;
        filter: blur(40px);
    }

    50% {
        opacity: 1;
        filter: blur(60px);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(10px);
    }

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

@keyframes shimmer {
    0% {
        transform: translateX(-150%) skewX(-15deg);
    }

    100% {
        transform: translateX(150%) skewX(-15deg);
    }
}

@keyframes borderSlide {
    from {
        background-position: 0% center;
    }

    to {
        background-position: 200% center;
    }
}

.hero-glow {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90vw;
    max-width: 900px;
    height: 900px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(84, 104, 255, 0.15) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
    animation: pulseGlow 8s ease-in-out infinite;
}

.fc,
.prem-card,
.new-card,
.prem-feature,
.stat {
    animation: fadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-pill,
.hero-h1,
.hero-sub,
.hero-btns,
.stats-row {
    animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-pill {
    animation-delay: 0.1s;
}

.hero-h1 {
    animation-delay: 0.2s;
}

.hero-sub {
    animation-delay: 0.3s;
}

.hero-btns {
    animation-delay: 0.4s;
}

.stats-row {
    animation-delay: 0.5s;
}

.g3>*:nth-child(1) {
    animation-delay: 0.1s;
}

.g3>*:nth-child(2) {
    animation-delay: 0.2s;
}

.g3>*:nth-child(3) {
    animation-delay: 0.3s;
}

.g3>*:nth-child(4) {
    animation-delay: 0.4s;
}

.g3>*:nth-child(5) {
    animation-delay: 0.5s;
}

.g3>*:nth-child(6) {
    animation-delay: 0.6s;
}

.stats-row>*:nth-child(1) {
    animation-delay: 0.6s;
}

.stats-row>*:nth-child(2) {
    animation-delay: 0.7s;
}

.stats-row>*:nth-child(3) {
    animation-delay: 0.8s;
}

.fc,
.prem-card,
.new-card {
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.new-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--new), var(--accent), var(--new));
    background-size: 200% auto;
    animation: borderSlide 4s linear infinite;
}

.vote-card {
    max-width: calc(100% - 48px);
    width: 1080px;
    margin: 0 auto 40px;
    padding: 32px 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
    animation: fadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
    animation-delay: 0.2s;
}

.vote-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(234, 179, 8, 0.2), transparent);
}

.vote-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 900;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.vote-t {
    font-size: 26px;
    font-weight: 950;
    letter-spacing: -1px;
    margin-bottom: 6px;
    color: #fff;
}

.vote-s {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.6;
    max-width: 480px;
}

.vote-bt {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: #1e1b0d;
    color: var(--yellow);
    border: 1px solid rgba(234, 179, 8, 0.2);
    border-radius: 12px;
    font-size: 13.5px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.vote-bt:hover {
    background: #2a2612;
    transform: translateY(-2px);
    border-color: rgba(234, 179, 8, 0.4);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.vote-bt svg {
    color: var(--yellow);
}

.discord-rules-wrap {
    max-width: 780px;
    margin: 0 auto;
    padding: 110px 48px 80px;
}

.discord-rules-wrap h1 {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.8px;
    margin-bottom: 8px;
}

.rules-date {
    font-size: 13px;
    color: var(--faint);
    margin-bottom: 40px;
}

.rule-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px 24px;
    margin-bottom: 12px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.rule-num {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background: var(--adim);
    border: 1px solid rgba(84, 104, 255, 0.22);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
}

.rule-body .rule-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 5px;
}

.rule-body .rule-desc {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.65;
}

/* ===== BENTO CARDS (base) ===== */
.bfc {
    background: rgba(16, 19, 31, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 26px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.25s, transform 0.22s, box-shadow 0.25s;
    backdrop-filter: blur(8px);
}

.bfc:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.bfc-ico {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.bfc-ico .ico {
    width: 19px;
    height: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bfc-ico .ico svg {
    width: 19px;
    height: 19px;
}

.bfc-t {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.bfc-d {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.65;
}

.bfc-shield {
    position: absolute;
    right: -18px;
    bottom: -22px;
    width: 130px;
    height: 130px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.055;
}

.bfc-shield svg {
    width: 100%;
    height: 100%;
    stroke: white;
}

.bfc>*:not(.bfc-shield) {
    position: relative;
    z-index: 1;
}

.bfc-red {
    background: linear-gradient(145deg, rgba(239, 68, 68, 0.1) 0%, rgba(16, 19, 31, 0.55) 65%);
    border-color: rgba(239, 68, 68, 0.16);
}

.bfc-red:hover {
    border-color: rgba(239, 68, 68, 0.38);
    box-shadow: 0 20px 50px rgba(239, 68, 68, 0.09);
}

.bfc-orange {
    background: linear-gradient(145deg, rgba(249, 115, 22, 0.1) 0%, rgba(16, 19, 31, 0.55) 65%);
    border-color: rgba(249, 115, 22, 0.16);
}

.bfc-orange:hover {
    border-color: rgba(249, 115, 22, 0.38);
    box-shadow: 0 20px 50px rgba(249, 115, 22, 0.08);
}

.bfc-purple {
    background: linear-gradient(145deg, rgba(168, 85, 247, 0.1) 0%, rgba(16, 19, 31, 0.55) 65%);
    border-color: rgba(168, 85, 247, 0.16);
}

.bfc-purple:hover {
    border-color: rgba(168, 85, 247, 0.38);
    box-shadow: 0 20px 50px rgba(168, 85, 247, 0.09);
}

.bfc-blue {
    background: linear-gradient(145deg, rgba(84, 104, 255, 0.1) 0%, rgba(16, 19, 31, 0.55) 65%);
    border-color: rgba(84, 104, 255, 0.16);
}

.bfc-blue:hover {
    border-color: rgba(84, 104, 255, 0.38);
    box-shadow: 0 20px 50px rgba(84, 104, 255, 0.09);
}

.bfc-green {
    background: linear-gradient(145deg, rgba(34, 197, 94, 0.1) 0%, rgba(16, 19, 31, 0.55) 65%);
    border-color: rgba(34, 197, 94, 0.16);
}

.bfc-green:hover {
    border-color: rgba(34, 197, 94, 0.38);
    box-shadow: 0 20px 50px rgba(34, 197, 94, 0.08);
}

.bfc-yellow {
    background: linear-gradient(145deg, rgba(234, 179, 8, 0.1) 0%, rgba(16, 19, 31, 0.55) 65%);
    border-color: rgba(234, 179, 8, 0.16);
}

.bfc-yellow:hover {
    border-color: rgba(234, 179, 8, 0.38);
    box-shadow: 0 20px 50px rgba(234, 179, 8, 0.07);
}

.bfc-ico-red {
    background: rgba(239, 68, 68, 0.13);
    color: #f87171;
}

.bfc-ico-orange {
    background: rgba(249, 115, 22, 0.13);
    color: #fb923c;
}

.bfc-ico-purple {
    background: rgba(168, 85, 247, 0.13);
    color: #c084fc;
}

.bfc-ico-blue {
    background: rgba(84, 104, 255, 0.13);
    color: #818cf8;
}

.bfc-ico-green {
    background: rgba(34, 197, 94, 0.13);
    color: #4ade80;
}

.bfc-ico-yellow {
    background: rgba(234, 179, 8, 0.13);
    color: #facc15;
}

.bfc-ico-red .ico svg {
    stroke: #f87171;
}

.bfc-ico-orange .ico svg {
    stroke: #fb923c;
}

.bfc-ico-purple .ico svg {
    stroke: #c084fc;
}

.bfc-ico-blue .ico svg {
    stroke: #818cf8;
}

.bfc-ico-green .ico svg {
    stroke: #4ade80;
}

.bfc-ico-yellow .ico svg {
    stroke: #facc15;
}

.bfc-prem {
    background: linear-gradient(145deg, rgba(168, 85, 247, 0.1) 0%, rgba(16, 19, 31, 0.55) 65%);
    border-color: rgba(168, 85, 247, 0.18);
}

.bfc-prem:hover {
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 20px 50px rgba(168, 85, 247, 0.1);
}

.bfc-ico-prem {
    background: rgba(168, 85, 247, 0.13);
    color: #c084fc;
}

.bfc-ico-prem .ico svg {
    stroke: #c084fc;
}

.bfc-new {
    background: linear-gradient(145deg, rgba(6, 182, 212, 0.1) 0%, rgba(16, 19, 31, 0.55) 65%);
    border-color: rgba(6, 182, 212, 0.18);
}

.bfc-new:hover {
    border-color: rgba(6, 182, 212, 0.4);
    box-shadow: 0 20px 50px rgba(6, 182, 212, 0.09);
}

.bfc-ico-new {
    background: rgba(6, 182, 212, 0.13);
    color: #22d3ee;
}

.bfc-ico-new .ico svg {
    stroke: #22d3ee;
}

/* ===== PREMIUM SUB-NAVIGATION (unused today, kept for future sub-pages) ===== */
.prem-subnav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px 24px 0;
    flex-wrap: wrap;
}

.prem-tab {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--muted);
    cursor: pointer;
    padding: 8px 20px;
    border-radius: 99px;
    border: 1px solid transparent;
    transition: all 0.2s;
    background: transparent;
    text-decoration: none;
    display: inline-block;
}

.prem-tab:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
}

.prem-tab.on {
    color: var(--premium);
    background: var(--premium-dim);
    border-color: rgba(191, 119, 246, 0.25);
}

/* ===== PREMIUM SUB-PAGES ===== */
.prem-subpage {
    max-width: 860px;
    margin: 0 auto;
    padding: 72px 48px 80px;
}

.prem-subpage h1 {
    font-size: 36px;
    font-weight: 900;
    letter-spacing: -0.8px;
    margin-bottom: 14px;
    line-height: 1.15;
}

.prem-subpage .lead {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 620px;
    margin-bottom: 48px;
}

.prem-subpage h2 {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.4px;
    margin-bottom: 10px;
    margin-top: 40px;
    color: var(--text);
}

.prem-subpage p {
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 12px;
}

.prem-subpage ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.prem-subpage ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.6;
}

.prem-subpage ul li::before {
    content: '';
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 1px;
    background: var(--premium-dim);
    border: 1px solid rgba(191, 119, 246, 0.3);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23bf77f6' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 11px;
    background-repeat: no-repeat;
    background-position: center;
}

/* ===== COMPARE TABLE (used by the Premium "Free vs Premium" section) ===== */
.compare-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 24px;
    font-size: 14px;
}

.compare-table th {
    padding: 14px 20px;
    text-align: left;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--muted);
    border-bottom: 1px solid var(--border);
}

.compare-table th:not(:first-child) {
    text-align: center;
}

.compare-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}

.compare-table td:not(:first-child) {
    text-align: center;
}

.compare-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.compare-table .check {
    color: var(--green);
    font-size: 17px;
}

.compare-table .cross {
    color: var(--faint);
    font-size: 17px;
}

.compare-table .col-free {
    color: var(--muted);
}

.compare-table .col-prem {
    color: var(--premium);
    font-weight: 700;
}

/* ===== FAQ (used by the Premium FAQ section, toggled via toggleFaq()) ===== */
.faq-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 10px;
    transition: border-color 0.2s;
}

.faq-item:hover {
    border-color: rgba(191, 119, 246, 0.25);
}

.faq-q {
    padding: 18px 22px;
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    user-select: none;
}

.faq-q svg {
    flex-shrink: 0;
    transition: transform 0.25s;
    color: var(--muted);
}

.faq-item.open .faq-q svg {
    transform: rotate(180deg);
}

.faq-a {
    display: none;
    padding: 0 22px 18px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75;
}

.faq-item.open .faq-a {
    display: block;
}

.prem-cta-banner {
    margin-top: 48px;
    padding: 32px 36px;
    background: linear-gradient(135deg, var(--premium-dim), rgba(84, 104, 255, 0.08));
    border: 1px solid rgba(191, 119, 246, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.prem-cta-banner h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 6px;
}

.prem-cta-banner p {
    font-size: 14px;
    color: var(--muted);
    margin: 0;
}

@media (max-width: 768px) {
    .prem-subpage {
        padding: 48px 24px 60px;
    }

    .prem-cta-banner {
        flex-direction: column;
    }
}

/* ===== STATUS PAGE ===== */
.status-wrap {
    max-width: 1080px;
    margin: 0 auto;
    padding: 120px 24px 32px;
}

.status-header {
    text-align: center;
    margin-bottom: 40px;
}

.status-pill-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: 99px;
    font-size: 12px;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 20px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--green);
    animation: pulseDot 2s infinite;
}

.status-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    letter-spacing: -1.2px;
    margin-bottom: 12px;
    background: linear-gradient(180deg, #ffffff 0%, #a0a5ba 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.status-subtitle {
    font-size: 15px;
    color: var(--muted);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.6;
}

.status-banner-card {
    background: rgba(16, 19, 31, 0.6);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 20px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 40px rgba(34, 197, 94, 0.08);
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.status-banner-main {
    display: flex;
    align-items: center;
    gap: 20px;
}

.status-indicator-lg {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.status-banner-head {
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 4px;
    letter-spacing: -0.3px;
}

.status-banner-sub {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.4;
}

.status-banner-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 20px;
    border-radius: 14px;
    border: 1px solid var(--border);
    flex-wrap: wrap;
}

.status-meta-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.status-meta-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-meta-val {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}

.text-green {
    color: var(--green) !important;
}

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

.text-purple {
    color: var(--purple) !important;
}

.text-red {
    color: var(--red) !important;
}

.status-refresh-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(84, 104, 255, 0.12);
    border: 1px solid rgba(84, 104, 255, 0.3);
    color: var(--accent);
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    outline: none;
    font-family: inherit;
}

.status-refresh-btn:hover {
    background: rgba(84, 104, 255, 0.22);
    border-color: rgba(84, 104, 255, 0.5);
    transform: translateY(-1px);
}

.status-refresh-btn.spinning .refresh-icon {
    animation: spin 0.8s ease-in-out;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.status-section-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--accent);
    margin-top: 36px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 980px) {
    .status-grid {
        grid-template-columns: 1fr;
    }
}

.status-card {
    background: var(--card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.status-card:hover {
    border-color: rgba(84, 104, 255, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.status-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.status-card-title-group {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.status-service-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-web {
    background: rgba(6, 182, 212, 0.12);
    color: var(--new);
}

.icon-bot {
    background: rgba(84, 104, 255, 0.12);
    color: var(--accent);
}

.icon-support {
    background: rgba(191, 119, 246, 0.12);
    color: var(--purple);
}

.status-service-name {
    font-size: 16px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.2px;
}

.status-service-domain {
    font-size: 12px;
    color: var(--muted);
    display: block;
    font-family: var(--mono);
    margin-top: 2px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 99px;
    font-size: 11.5px;
    font-weight: 700;
    flex-shrink: 0;
}

.badge-green {
    background: rgba(34, 197, 94, 0.12);
    color: var(--green);
    border: 1px solid rgba(34, 197, 94, 0.25);
}

.badge-green .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 8px var(--green);
}

.badge-red {
    background: rgba(239, 68, 68, 0.12);
    color: var(--red);
    border: 1px solid rgba(239, 68, 68, 0.25);
}

.badge-red .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 8px var(--red);
}

.badge-green-sm {
    background: rgba(34, 197, 94, 0.1);
    color: var(--green);
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
}

.status-card-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    background: rgba(0, 0, 0, 0.25);
    padding: 12px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.metric-box {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.metric-lbl {
    font-size: 10.5px;
    color: var(--muted);
    font-weight: 500;
}

.metric-val {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
}

.status-bars-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.status-bars-head {
    display: flex;
    justify-content: space-between;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--muted);
}

.status-bars-container {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 28px;
    width: 100%;
}

.status-tick-bar {
    flex: 1;
    height: 100%;
    border-radius: 2px;
    background: rgba(34, 197, 94, 0.7);
    transition: all 0.15s;
    cursor: pointer;
}

.status-tick-bar:hover {
    transform: scaleY(1.25);
    background: var(--green);
    box-shadow: 0 0 10px var(--green);
}

.status-tick-bar.partial {
    background: var(--yellow);
}

.status-bars-foot {
    display: flex;
    justify-content: space-between;
    font-size: 10.5px;
    color: var(--faint);
    font-weight: 500;
}

.status-subcomponents-card {
    background: var(--card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    overflow: hidden;
}

.subcomp-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
}

.subcomp-row:last-child {
    border-bottom: none;
}

.subcomp-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.subcomp-name {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text);
}

.subcomp-bullet {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 8px var(--green);
}

.subcomp-meta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.subcomp-ping {
    font-size: 12px;
    font-family: var(--mono);
    color: var(--muted);
}

.status-incidents-card {
    background: var(--card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.incident-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 16px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
}

.incident-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

@media (max-width: 640px) {
    .incident-item {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .status-banner-card {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .status-banner-meta {
        width: 100%;
        justify-content: space-between;
    }
}

.incident-date {
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    font-family: var(--mono);
}

.incident-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
    flex-wrap: wrap;
}

.incident-tag {
    font-size: 10.5px;
    padding: 2px 7px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
}

.incident-tag.resolved {
    background: rgba(34, 197, 94, 0.15);
    color: var(--green);
}

.incident-tag.completed {
    background: rgba(84, 104, 255, 0.15);
    color: var(--accent);
}

.incident-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}

/* =====================================================================
   2. SECOND PASS — the theme that actually wins the cascade today
   (kept with !important, exactly as it worked inline, so moving it out
   of the HTML changes nothing about how the page looks)
   ===================================================================== */
:root {
    --bg: #07070f;
    --surface: #0d0d18;
    --surface-2: #111120;
    --card: rgba(255, 255, 255, 0.036);
    --card-hover: rgba(255, 255, 255, 0.058);
    --border: rgba(255, 255, 255, 0.07);
    --border-hi: rgba(255, 255, 255, 0.13);
    --glass: rgba(8, 8, 18, 0.72);
    --accent: #6366f1;
    --accent-2: #818cf8;
    --adim: rgba(99, 102, 241, 0.12);
    --amid: rgba(99, 102, 241, 0.24);
    --text: #f2f2f7;
    --text-2: rgba(242, 242, 247, 0.72);
    --muted: rgba(242, 242, 247, 0.46);
    --faint: rgba(242, 242, 247, 0.2);
    --green: #34d058;
    --red: #ff453a;
    --orange: #ff9f0a;
    --yellow: #ffd60a;
    --purple: #bf5af2;
    --premium: #a78bfa;
    --premium-dim: rgba(167, 139, 250, 0.10);
    --premium-mid: rgba(167, 139, 250, 0.22);
    --new: #2dd4bf;
    --new-dim: rgba(45, 212, 191, 0.10);
    --new-mid: rgba(45, 212, 191, 0.22);
    --f: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    --mono: 'JetBrains Mono', 'SF Mono', ui-monospace, Menlo, monospace;
    --r-sm: 10px;
    --r: 16px;
    --r-lg: 22px;
    --r-xl: 28px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--f) !important;
    background: var(--bg) !important;
    color: var(--text) !important;
    line-height: 1.5 !important;
    font-weight: 400 !important;
    letter-spacing: -0.018em !important;
    -webkit-font-smoothing: antialiased !important;
    overflow-x: hidden !important;
    background-image:
        radial-gradient(ellipse 120% 55% at 50% -10%, rgba(99, 102, 241, 0.18) 0%, transparent 70%),
        radial-gradient(ellipse 80% 40% at 80% 110%, rgba(45, 212, 191, 0.08) 0%, transparent 65%) !important;
}

body::before {
    background-image: none !important;
}

body::after {
    display: none !important;
}

::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.10);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.18);
}

nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: none !important;
    height: 54px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 40px !important;
    background: var(--surface) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
    border-bottom: 1px solid var(--border) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    transform: none !important;
    z-index: 100 !important;
}

.nav-brand {
    font-size: 14.5px !important;
    font-weight: 600 !important;
    letter-spacing: -0.2px !important;
    font-family: var(--f) !important;
    color: #fff !important;
}

.nav-center {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
}

.nav-tab {
    font-size: 13px !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.6) !important;
    padding: 6px 14px !important;
    border-radius: 99px !important;
    transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
    cursor: pointer !important;
    user-select: none !important;
    display: inline-flex !important;
    align-items: center !important;
}

.nav-tab:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.06) !important;
}

.nav-tab.on {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) !important;
    font-weight: 600 !important;
}

.nav-right {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.hero {
    padding: 136px 24px 100px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
}

.hero-glow {
    position: absolute !important;
    top: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 700px !important;
    height: 500px !important;
    background: radial-gradient(ellipse at 50% 30%, rgba(99, 102, 241, 0.22) 0%, transparent 68%) !important;
    pointer-events: none !important;
    z-index: 0 !important;
    animation: none !important;
}

.hero>* {
    position: relative;
    z-index: 1;
}

.hero-pill {
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;
    padding: 5px 14px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 99px !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    color: var(--text-2) !important;
    margin-bottom: 40px !important;
}

.hero-dot {
    width: 7px !important;
    height: 7px !important;
    background: var(--green) !important;
    border-radius: 50% !important;
    box-shadow: 0 0 8px var(--green) !important;
}

.hero-h1 {
    font-size: clamp(48px, 9vw, 82px) !important;
    font-weight: 800 !important;
    letter-spacing: -2.5px !important;
    line-height: 1.0 !important;
    margin-bottom: 22px !important;
    color: var(--text) !important;
}

.h1-acc {
    background: linear-gradient(135deg, #818cf8 0%, #a78bfa 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    text-shadow: none !important;
}

.prem-glow-text {
    background: linear-gradient(135deg, var(--premium) 0%, #818cf8 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    text-shadow: none !important;
}

.hero-sub {
    font-size: 16px !important;
    color: var(--muted) !important;
    max-width: 460px !important;
    line-height: 1.7 !important;
    font-weight: 400 !important;
    margin-bottom: 36px !important;
}

.btn-fill {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 11px 22px !important;
    background: var(--accent) !important;
    color: #fff !important;
    border: none !important;
    border-radius: var(--r-sm) !important;
    font-family: var(--f) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    text-decoration: none !important;
    transition: opacity .15s, transform .15s !important;
    box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.4), 0 4px 14px rgba(99, 102, 241, 0.25) !important;
}

.btn-fill:hover {
    opacity: .88 !important;
    transform: translateY(-1px) !important;
}

.btn-out {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 10px 20px !important;
    background: rgba(255, 255, 255, 0.06) !important;
    color: var(--text-2) !important;
    border: 1px solid var(--border-hi) !important;
    border-radius: var(--r-sm) !important;
    font-family: var(--f) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    text-decoration: none !important;
    transition: background .15s !important;
}

.btn-out:hover {
    background: rgba(255, 255, 255, 0.10) !important;
}

.stats-row {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--r) !important;
    margin-top: 56px !important;
    box-shadow: none !important;
    backdrop-filter: blur(20px) !important;
    overflow: hidden !important;
}

.stat {
    padding: 20px 44px !important;
    border-right: 1px solid var(--border) !important;
    text-align: center !important;
}

.stat:last-child {
    border-right: none !important;
}

.stat-v {
    font-size: 26px !important;
    font-weight: 700 !important;
    letter-spacing: -1px !important;
    margin-bottom: 2px !important;
}

.stat-l {
    font-size: 11.5px !important;
    color: var(--muted) !important;
    font-weight: 500 !important;
}

.seyebrow {
    font-size: 11px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    color: var(--accent-2) !important;
    margin-bottom: 16px !important;
}

.sh2 {
    font-size: clamp(30px, 4vw, 46px) !important;
    font-weight: 700 !important;
    letter-spacing: -1.2px !important;
    line-height: 1.08 !important;
    margin-bottom: 14px !important;
}

.ssub {
    font-size: 15px !important;
    color: var(--muted) !important;
    line-height: 1.7 !important;
}

.bento-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.032) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    border-radius: var(--r-lg) !important;
    padding: 32px !important;
    transition: border-color .2s, background .2s, transform .2s !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
    overflow: hidden;
}

.bento-card:hover {
    background: rgba(255, 255, 255, 0.052) !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.07) !important;
}

.bento-title {
    font-size: 17px !important;
    font-weight: 700 !important;
    letter-spacing: -0.3px !important;
    margin-bottom: 10px !important;
    position: relative;
    z-index: 1;
}

.bento-desc {
    font-size: 14px !important;
    color: var(--muted) !important;
    line-height: 1.65 !important;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.bento-icon {
    width: 44px !important;
    height: 44px !important;
    border-radius: 13px !important;
    margin-bottom: 20px !important;
}

.bento-big-text {
    font-size: 60px !important;
    font-weight: 800 !important;
    letter-spacing: -2.5px !important;
}

.fc {
    background: rgba(255, 255, 255, 0.032) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--r) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
    transition: border-color .18s, transform .18s, background .18s !important;
}

.fc:hover {
    border-color: rgba(255, 255, 255, 0.12) !important;
    background: rgba(255, 255, 255, 0.048) !important;
    transform: translateY(-2px) !important;
}

.apple-pricing-wrap {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
    margin: 48px auto !important;
    max-width: 1160px !important;
    width: 100% !important;
    justify-content: center !important;
}

#prem-card-third,
#docs-card-third {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    width: 100% !important;
}

#prem-card-third>.apple-card,
#docs-card-third>.apple-card {
    flex: 1 !important;
    height: 100% !important;
}

.apple-card {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--r-xl) !important;
    padding: 36px 28px 28px !important;
    display: flex;
    flex-direction: column !important;
    position: relative !important;
    overflow: hidden !important;
    transition: transform .3s cubic-bezier(.16, 1, .3, 1), border-color .3s, background .3s !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

.apple-card:hover {
    transform: translateY(-5px) !important;
    border-color: var(--border-hi) !important;
    background: rgba(255, 255, 255, 0.06) !important;
}

.apple-card.featured {
    background: linear-gradient(160deg, rgba(167, 139, 250, 0.10) 0%, rgba(99, 102, 241, 0.06) 60%, rgba(255, 255, 255, 0.032) 100%) !important;
    border-color: rgba(167, 139, 250, 0.28) !important;
    box-shadow: 0 0 0 1px rgba(167, 139, 250, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

.apple-card.featured:hover {
    border-color: rgba(167, 139, 250, 0.45) !important;
    box-shadow: 0 20px 50px rgba(167, 139, 250, 0.15), 0 0 0 1px rgba(167, 139, 250, 0.25) !important;
}

.apple-card.featured::before {
    content: 'MOST POPULAR' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 34px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(90deg, var(--accent), var(--premium)) !important;
    color: #fff !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px !important;
}

.apple-card.featured .apple-tier {
    margin-top: 22px !important;
}

.apple-tier {
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.4px !important;
    color: var(--muted) !important;
    margin-bottom: 20px !important;
}

.apple-card.featured .apple-tier {
    color: var(--premium) !important;
}

.apple-price {
    font-size: 52px !important;
    font-weight: 800 !important;
    letter-spacing: -2.5px !important;
    color: var(--text) !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
    display: flex !important;
    align-items: baseline !important;
    gap: 4px !important;
}

.apple-price span {
    font-size: 15px !important;
    font-weight: 500 !important;
    color: var(--muted) !important;
    letter-spacing: 0 !important;
}

.strike {
    font-size: 22px !important;
    font-weight: 500 !important;
    color: var(--faint) !important;
    text-decoration: line-through !important;
    margin-right: 4px !important;
}

.apple-desc {
    font-size: 13.5px !important;
    color: var(--muted) !important;
    line-height: 1.55 !important;
    margin-bottom: 28px !important;
    margin-top: 10px !important;
}

.apple-features {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 28px !important;
    flex-grow: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

.apple-feature-item {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-size: 13.5px !important;
    color: var(--text-2) !important;
    line-height: 1.4 !important;
}

.apple-feature-icon {
    flex-shrink: 0 !important;
    width: 18px !important;
    height: 18px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.09) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.apple-card.featured .apple-feature-icon {
    background: var(--premium) !important;
}

.apple-btn {
    display: block !important;
    text-align: center !important;
    padding: 13px !important;
    border-radius: var(--r-sm) !important;
    font-family: var(--f) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    background: rgba(255, 255, 255, 0.07) !important;
    color: var(--text) !important;
    border: 1px solid var(--border-hi) !important;
    transition: background .15s !important;
    cursor: pointer !important;
}

.apple-btn:hover {
    background: rgba(255, 255, 255, 0.12) !important;
}

.apple-card.featured .apple-btn {
    background: linear-gradient(135deg, var(--accent), var(--premium)) !important;
    border: none !important;
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3) !important;
}

.apple-card.featured .apple-btn:hover {
    opacity: .9 !important;
}

.dsb {
    position: fixed !important;
    top: 54px !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 260px !important;
    min-width: 260px !important;
    background: #111116 !important;
    border-right: 1px solid rgba(255, 255, 255, 0.06) !important;
    padding: 24px 0 32px !important;
    overflow-y: auto !important;
    z-index: 99 !important;
}

.dg {
    margin-bottom: 20px !important;
}

.dg {
    margin-bottom: 4px !important;
}

.dgl {
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: rgba(255, 255, 255, 0.55) !important;
    padding: 10px 24px !important;
    margin: 0 8px !important;
    border-radius: 6px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
    cursor: pointer !important;
    transition: color 0.15s, background 0.15s !important;
    user-select: none !important;
}

.dgl:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.04) !important;
}

.dgl-chevron {
    width: 13px !important;
    height: 13px !important;
    flex-shrink: 0 !important;
    opacity: 0.5 !important;
    transition: transform 0.2s !important;
}

.dg.collapsed .dgl-chevron {
    transform: rotate(-90deg) !important;
}

.dg-items {
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
}

.dg.collapsed .dg-items {
    display: none !important;
}

.di {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 7px 16px !important;
    border-radius: 7px !important;
    font-size: 13.5px !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.55) !important;
    cursor: pointer !important;
    transition: color 0.15s, background 0.15s !important;
    line-height: 1.4 !important;
    text-decoration: none !important;
    margin: 1px 12px !important;
}

.di:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.04) !important;
}

.di.on {
    color: #fff !important;
    background: var(--accent) !important;
    font-weight: 600 !important;
}

.sub-dgl {
    font-size: 10px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: rgba(255, 255, 255, 0.35) !important;
    padding: 14px 16px 6px 28px !important;
    margin: 0 12px !important;
}

.di.prem-item {
    padding-left: 28px !important;
    position: relative !important;
}

.di.prem-item::before {
    content: "" !important;
    position: absolute !important;
    left: 15px !important;
    top: 0 !important;
    bottom: 0 !important;
    width: 1px !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

.di.prem-item.on::before {
    background: var(--accent) !important;
}

.dm {
    margin-left: 260px !important;
    padding: 88px 64px 80px !important;
    max-width: 780px !important;
}

.docs-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: var(--faint);
    margin-bottom: 24px;
}

.docs-breadcrumb .crumb-sep {
    opacity: 0.5;
}

.docs-breadcrumb .crumb-current {
    color: var(--muted);
}

.dh1 {
    font-size: 28px !important;
    font-weight: 700 !important;
    letter-spacing: -0.6px !important;
    line-height: 1.2 !important;
    margin-bottom: 12px !important;
}

.dlead {
    font-size: 15px !important;
    color: var(--muted) !important;
    line-height: 1.8 !important;
    margin-bottom: 40px !important;
}

.dh2 {
    font-size: 17px !important;
    font-weight: 700 !important;
    letter-spacing: -0.2px !important;
    margin: 44px 0 14px !important;
}

.dh3 {
    font-size: 14px !important;
    font-weight: 600 !important;
    margin: 28px 0 8px !important;
}

.dp-t {
    font-size: 14.5px !important;
    color: var(--muted) !important;
    line-height: 1.82 !important;
    margin-bottom: 14px !important;
}

.cmd {
    background: rgba(255, 255, 255, 0.026) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--r) !important;
    margin-bottom: 12px !important;
    overflow: hidden !important;
}

.cmd-top {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 10px 16px !important;
    background: rgba(255, 255, 255, 0.025) !important;
    border-bottom: 1px solid var(--border) !important;
}

.cmd-top::before {
    content: "" !important;
    display: inline-block !important;
    width: 38px !important;
    height: 10px !important;
    background-image: radial-gradient(circle, #ef4444 3.5px, transparent 4px),
        radial-gradient(circle, #f59e0b 3.5px, transparent 4px),
        radial-gradient(circle, #10b981 3.5px, transparent 4px) !important;
    background-position: 0px center, 14px center, 28px center !important;
    background-repeat: no-repeat !important;
    background-size: 8px 8px !important;
    margin-right: 12px !important;
    flex-shrink: 0 !important;
    opacity: 0.8 !important;
}

.cn {
    font-family: var(--mono) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: var(--accent-2) !important;
}

code {
    font-family: var(--mono) !important;
    font-size: 12px !important;
    background: rgba(99, 102, 241, 0.10) !important;
    border: 1px solid rgba(99, 102, 241, 0.16) !important;
    color: var(--accent-2) !important;
    padding: 2px 6px !important;
    border-radius: 6px !important;
}

.tbl {
    border: 1px solid var(--border) !important;
    border-radius: var(--r-sm) !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    margin: 16px 0 !important;
    max-width: 100% !important;
}

th {
    background: rgba(255, 255, 255, 0.03) !important;
    color: var(--muted) !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    padding: 10px 16px !important;
}

td {
    padding: 10px 16px !important;
    border-top: 1px solid var(--border) !important;
    color: var(--muted) !important;
    font-size: 13.5px !important;
    line-height: 1.55 !important;
    vertical-align: top !important;
}

tr:hover td {
    background: rgba(255, 255, 255, 0.015) !important;
}

.note {
    border-radius: 12px !important;
    padding: 14px 18px !important;
    margin: 20px 0 !important;
    border-left: 2px solid !important;
}

.note.info {
    background: rgba(99, 102, 241, 0.07) !important;
    border-color: var(--accent) !important;
}

.note.info .nl {
    color: var(--accent-2) !important;
}

.note.warn {
    background: rgba(255, 159, 10, 0.07) !important;
    border-color: var(--orange) !important;
}

.note.warn .nl {
    color: var(--orange) !important;
}

.note.tip {
    background: rgba(52, 208, 88, 0.07) !important;
    border-color: var(--green) !important;
}

.note.tip .nl {
    color: var(--green) !important;
}

.note.new {
    background: rgba(45, 212, 191, 0.07) !important;
    border-color: var(--new) !important;
}

.note.new .nl {
    color: var(--new) !important;
}

.prem-hero {
    padding: 108px 24px 60px !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
}

.prem-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 4px 14px !important;
    background: var(--premium-dim) !important;
    border: 1px solid var(--premium-mid) !important;
    border-radius: 99px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    color: var(--premium) !important;
    margin-bottom: 28px !important;
}

.prem-billing-btn {
    font-family: var(--f) !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    border-radius: 10px !important;
}

footer,
.footer-grid-wrap {
    background: var(--surface) !important;
    border-top: 1px solid var(--border) !important;
}

.footer-grid-inner {
    padding: 64px 32px 48px !important;
    gap: 48px !important;
}

.footer-col-label {
    font-size: 10.5px !important;
    font-weight: 600 !important;
    letter-spacing: 1.4px !important;
    color: rgba(242, 242, 247, 0.5) !important;
    text-transform: uppercase !important;
}

.fl-b {
    font-size: 15px !important;
    font-weight: 600 !important;
}

.fl-l {
    font-size: 13.5px !important;
    color: var(--muted) !important;
    transition: color .1s !important;
}

.fl-l:hover {
    color: var(--text) !important;
}

.footer-brand-desc {
    font-size: 13.5px !important;
    color: var(--muted) !important;
    line-height: 1.65 !important;
}

.footer-bottom {
    font-size: 12px !important;
    color: var(--faint) !important;
    border-top: 1px solid var(--border) !important;
    padding: 20px 32px !important;
    text-align: center !important;
}

.lw {
    padding: 100px 48px 80px !important;
}

.legal-title,
.lh1 {
    font-size: 32px !important;
    font-weight: 700 !important;
    letter-spacing: -0.8px !important;
}

.lh2 {
    font-size: 16px !important;
    font-weight: 700 !important;
}

.lp {
    font-size: 14px !important;
    color: var(--muted) !important;
    line-height: 1.85 !important;
}

.lbox {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--r-sm) !important;
}

.lbox a {
    color: var(--accent-2) !important;
}

.discord-rules-wrap {
    padding: 96px 48px 80px !important;
}

.rule-item {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--r) !important;
    transition: border-color .18s !important;
}

.rule-item:hover {
    border-color: var(--border-hi) !important;
}

.rule-num {
    background: var(--adim) !important;
    border: 1px solid rgba(99, 102, 241, 0.2) !important;
    border-radius: 8px !important;
    color: var(--accent-2) !important;
    font-size: 12px !important;
    font-weight: 700 !important;
}

.step {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--r-sm) !important;
}

.sn {
    background: var(--adim) !important;
    border-color: rgba(99, 102, 241, 0.2) !important;
    color: var(--accent-2) !important;
    border-radius: 8px !important;
}

.prem-feature {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--r) !important;
    transition: border-color .18s, transform .18s, background .18s !important;
}

.prem-feature:hover {
    border-color: var(--premium-mid) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    transform: translateY(-3px) !important;
}

.prem-card {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid var(--premium-mid) !important;
    border-radius: var(--r-lg) !important;
}

.prem-card:hover {
    border-color: var(--premium) !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 20px 40px rgba(167, 139, 250, 0.12) !important;
}

.faq-item {
    border: 1px solid var(--border) !important;
    border-radius: var(--r-sm) !important;
    transition: border-color .18s !important;
}

.faq-item:hover {
    border-color: var(--border-hi) !important;
}

.faq-q {
    font-size: 14.5px !important;
    font-weight: 600 !important;
    padding: 16px 20px !important;
}

.faq-a {
    font-size: 13.5px !important;
    padding: 0 20px 16px !important;
}

.cta-wrap {
    background: var(--surface-2) !important;
}

.cta-t {
    font-size: 24px !important;
    font-weight: 700 !important;
    letter-spacing: -0.5px !important;
}

.vote-card {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--r-lg) !important;
}

.new-badge,
.new-tag {
    background: var(--new-dim) !important;
    border-color: var(--new-mid) !important;
    color: var(--new) !important;
    border-radius: 99px !important;
}

/* Premium sidebar items use the same neutral/active states as every other
   section now (consistency was the point of the redesign) — only the small
   vertical guide line (.di.prem-item::before) still marks them as nested. */

.dgl.prem-label {
    color: var(--premium) !important;
}

.di.new-item {
    color: var(--new) !important;
}

.di.new-item.on {
    background: var(--new-dim) !important;
}

.di.new-item:hover {
    background: rgba(45, 212, 191, 0.08) !important;
}

.dgl.new-label {
    color: var(--new) !important;
}

.mobile-bottom-bar {
    display: none;
}

.docs-mobile-nav {
    display: none;
}

@media (max-width: 860px) {
    .nav-center {
        display: none !important;
    }

    body {
        padding-bottom: 90px !important;
    }

    .mobile-bottom-bar {
        display: flex !important;
        position: fixed;
        bottom: 16px;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 32px);
        max-width: 400px;
        height: 60px;
        background: var(--surface-2) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: 1px solid var(--border) !important;
        border-radius: 20px !important;
        z-index: 1000 !important;
        align-items: center;
        justify-content: space-around;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3) !important;
        padding: 0 10px !important;
    }

    .mobile-tab-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: var(--muted) !important;
        font-size: 11px !important;
        font-weight: 500 !important;
        cursor: pointer;
        transition: color 0.2s !important;
        gap: 4px !important;
    }

    .mobile-tab-item svg {
        stroke-width: 2 !important;
    }

    .mobile-tab-item.on {
        color: var(--text) !important;
    }

    .mobile-tab-item.premium-tab {
        color: var(--premium) !important;
        opacity: 0.85 !important;
    }

    .mobile-tab-item.premium-tab.on {
        opacity: 1 !important;
        font-weight: 700 !important;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 110px 20px 80px !important;
    }

    .hero-h1 {
        font-size: clamp(38px, 10vw, 58px) !important;
        letter-spacing: -1.5px !important;
    }

    .stat {
        padding: 14px 8px !important;
    }

    .stat-v {
        font-size: 19px !important;
    }

    .stat-l {
        font-size: 10.5px !important;
    }

    .apple-pricing-wrap {
        grid-template-columns: 1fr !important;
    }

    .dsb {
        display: none !important;
    }

    .dm {
        margin-left: 0 !important;
        padding: 80px 24px 60px !important;
        max-width: 100% !important;
    }

    .lw {
        padding: 80px 24px 60px !important;
    }

    .discord-rules-wrap {
        padding: 80px 24px 60px !important;
    }

    .footer-grid-inner {
        grid-template-columns: 1fr 1fr !important;
        padding: 40px 24px 24px !important;
    }

    .footer-brand-col {
        grid-column: 1 / -1 !important;
    }

    .prem-hero {
        padding: 88px 24px 48px !important;
    }

    .docs-mobile-nav {
        display: block !important;
        margin-bottom: 24px !important;
    }

    .docs-mobile-nav select {
        appearance: none !important;
        -webkit-appearance: none !important;
        width: 100% !important;
        padding: 12px 40px 12px 14px !important;
        background-color: var(--surface) !important;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f2f2f7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") !important;
        background-repeat: no-repeat !important;
        background-position: right 14px center !important;
        background-size: 16px !important;
        border: 1px solid var(--border) !important;
        border-radius: 10px !important;
        color: var(--text) !important;
        font-family: inherit !important;
        font-size: 14px !important;
        font-weight: 600 !important;
        outline: none !important;
        cursor: pointer !important;
    }
}

/* =====================================================================
   3. HOME BENTO GRID — 3rd definition, still alive today because the
   second pass above never touches background/color on .bento-icon or
   introduces the grid/span rules, so this keeps working unmodified.
   ===================================================================== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    margin-top: 48px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

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

.bento-card.span-8 {
    grid-column: span 8;
}

.bento-card.span-6 {
    grid-column: span 6;
}

.bento-card.span-4 {
    grid-column: span 4;
}

.bento-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.bento-icon svg {
    width: 24px;
    height: 24px;
}

.bento-bg-icon {
    position: absolute;
    right: -20px;
    bottom: -20px;
    opacity: 0.03;
    width: 200px;
    height: 200px;
    z-index: 1;
    transform: rotate(-15deg);
}

@media (max-width: 900px) {

    .bento-card.span-8,
    .bento-card.span-6,
    .bento-card.span-4 {
        grid-column: span 12;
    }
}

.b-red {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), transparent);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.b-blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), transparent);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.b-green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), transparent);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.b-purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), transparent);
    color: #8b5cf6;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.b-orange {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), transparent);
    color: #f97316;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.b-yellow {
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.15), transparent);
    color: #eab308;
    border: 1px solid rgba(234, 179, 8, 0.2);
}

/* =====================================================================
   4. TRUST ROW — small component for the Premium page's trust strip
   ===================================================================== */
.prem-trust-row {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin: 48px auto 0;
    max-width: 760px;
}

.prem-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}

.prem-trust-ico {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--premium-dim);
    color: var(--premium);
}

.prem-trust-val {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
}

.prem-trust-label {
    font-size: 12px;
    color: var(--muted);
}

/* =====================================================================
   5. REDESIGN — new palette, new heading typeface, premium-gold system
   Everything below only changes VALUES the rules above already read
   through var(...) — nothing above needs to be touched for this to
   take effect, because custom properties resolve at used-value time.
   ===================================================================== */
:root {
    --bg: #05060a;
    --surface: #0b0d16;
    --surface-2: #12141f;
    --accent: #4c6fff;
    --accent-2: #7c93ff;
    --adim: rgba(76, 111, 255, 0.12);
    --amid: rgba(76, 111, 255, 0.26);
    --green: #22c55e;
    --premium: #f2b705;
    --premium-2: #d4af37;
    --premium-dim: rgba(242, 183, 5, 0.10);
    --premium-mid: rgba(242, 183, 5, 0.26);
    --f-display: 'Space Grotesk', var(--f);
}

body {
    background-image:
        radial-gradient(ellipse 120% 55% at 50% -10%, rgba(76, 111, 255, 0.20) 0%, transparent 70%),
        radial-gradient(ellipse 70% 35% at 85% 105%, rgba(242, 183, 5, 0.07) 0%, transparent 65%) !important;
}

/* Headings switch to the display face; body copy stays on Inter */
.hero-h1,
.sh2,
.dh1,
.lh1,
.legal-title,
.status-title,
.bento-title,
.bento-big-text,
.apple-price,
.stat-v,
.cta-t,
.vote-t,
.prem-subpage h1,
.prem-subpage h2,
.prem-cta-banner h3,
.discord-rules-wrap h1,
.faq-q,
.status-banner-head {
    font-family: var(--f-display);
}

/* Premium icon-tint modifier — extends the home page's .b-* family with
   the new gold brand color, so premium surfaces read as "upgraded". */
.b-gold {
    background: linear-gradient(135deg, rgba(242, 183, 5, 0.18), transparent);
    color: var(--premium);
    border: 1px solid rgba(242, 183, 5, 0.28);
}

.bento-card-gold {
    border-color: rgba(242, 183, 5, 0.22) !important;
}

.bfc-ico-gold {
    background: rgba(242, 183, 5, 0.15);
    color: var(--premium);
}

.bfc-ico-gold .ico svg {
    stroke: var(--premium);
}

/* Billing toggle buttons — replaces the old inline style.background /
   style.color mutation in JS with a plain class toggle. */
.billing-toggle {
    display: inline-flex;
    padding: 4px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 999px;
    gap: 2px;
}

.billing-btn {
    font-family: var(--f);
    font-size: 13.5px;
    font-weight: 600;
    padding: 9px 20px;
    border-radius: 999px;
    border: none;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    transition: background .2s, color .2s;
}

.billing-btn.active {
    background: var(--premium-dim);
    color: var(--premium);
}

.billing-save-pill {
    display: inline-flex;
    align-items: center;
    padding: 2px 9px;
    margin-left: 8px;
    background: rgba(34, 197, 94, 0.15);
    color: var(--green);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .4px;
    border-radius: 99px;
    vertical-align: middle;
}

/* Savings badge on annual pricing cards — replaces a ~230-char inline
   style block that used to be copy-pasted on every card. */
.apple-save-badge {
    position: absolute;
    top: 44px;
    right: 20px;
    background: rgba(34, 197, 94, 0.15);
    color: var(--green);
    font-size: 10.5px;
    font-weight: 800;
    padding: 3px 9px;
    border-radius: 99px;
    letter-spacing: .3px;
}

/* Refund/legal note used inside the Premium FAQ instead of a standalone
   alarmed warning box. */
.refund-note {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

/* Payment methods row */
.payment-methods {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 28px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 14px;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    color: var(--muted);
    font-size: 12.5px;
}

/* Apple-style flat grouped list — replaces the old bordered/boxed metric
   cards on the Status page with plain rows + hairline dividers, closer to
   how apple.com/support/systemstatus and macOS Settings present status. */
.status-list {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}

.status-list-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border);
}

.status-list-row:last-child {
    border-bottom: none;
}

.status-list-row-main {
    padding: 18px 20px;
    align-items: flex-start;
}

.status-list-row-main .status-dot-inline {
    margin-top: 6px;
}

.status-list-row-col {
    flex-direction: column;
    align-items: stretch;
}

.status-dot-inline {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--green);
    box-shadow: 0 0 8px var(--green);
}

.status-dot-inline.red {
    background: var(--red);
    box-shadow: 0 0 8px var(--red);
}

.status-list-row-text {
    flex: 1;
    min-width: 0;
}

.status-list-row-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.1px;
}

.status-list-row-sub {
    font-size: 12.5px;
    color: var(--muted);
    margin-top: 2px;
    line-height: 1.5;
}

.status-list-row-value {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text);
    flex-shrink: 0;
}

.status-list-row-label {
    font-size: 13.5px;
    color: var(--muted);
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}
