/* ═══════════════════════════════════
   OPTICWARE: premium dark product design
   ═══════════════════════════════════ */
:root {
    color-scheme: dark;
    --bg: #0a0a0b;
    --bg-2: #0e0e10;
    --bg-3: #131316;
    --line: rgba(255, 255, 255, 0.07);
    --line-2: rgba(255, 255, 255, 0.12);
    --t1: rgba(255, 255, 255, 0.94);
    --t2: rgba(255, 255, 255, 0.56);
    --t3: rgba(255, 255, 255, 0.34);
    --acc: #d81b38;
    --acc-dim: rgba(216, 27, 56, 0.14);
    --green: #34d399;
    --r: 8px;
    --font: 'Inter', -apple-system, sans-serif;
    --mono: 'Inter', -apple-system, sans-serif;
    --display: 'Space Grotesk', 'Inter', sans-serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html {
    color-scheme: only dark;
    scroll-behavior: smooth;
    background: #0a0a0b;
    scrollbar-gutter: stable;
}
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--t1);
    font-size: 16px; line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; }
.container { max-width: 1300px; margin: 0 auto; padding: 0 32px; }

::selection { background: color-mix(in srgb, var(--acc) 28%, transparent); color: #fff; }
::-webkit-scrollbar { width: 9px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 10px; border: 2px solid var(--bg); }

/* atmosphere */
.grain {
    position: fixed; inset: -50%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
    opacity: 0.028; pointer-events: none; z-index: 2;
}
.top-light {
    position: fixed; top: 0; left: 50%;
    width: 900px; height: 480px;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at top, color-mix(in srgb, var(--acc) 9%, transparent), transparent 65%);
    pointer-events: none; z-index: 0;
}
/* aurora blobs */
body::before, body::after {
    content: ''; position: fixed; z-index: -1; pointer-events: none;
    width: 620px; height: 620px; border-radius: 50%;
    filter: blur(130px);
}
body::before {
    top: -180px; left: -140px;
    background: color-mix(in srgb, var(--acc) 7%, transparent);
    animation: drift1 26s ease-in-out infinite alternate;
}
body::after {
    bottom: -220px; right: -160px;
    background: color-mix(in srgb, var(--acc) 5%, transparent);
    animation: drift2 32s ease-in-out infinite alternate;
}
@keyframes drift1 { to { transform: translate(90px, 60px); } }
@keyframes drift2 { to { transform: translate(-80px, -70px); } }
/* crt scanlines */
.scanlines {
    position: fixed; inset: 0; z-index: 2; pointer-events: none;
    background: repeating-linear-gradient(0deg, rgba(255,255,255,0.014) 0 1px, transparent 1px 3px);
}

/* ─────────── nav ─────────── */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    border-bottom: 1px solid transparent;
    transition: background 0.3s, border-color 0.3s;
}
.nav.scrolled {
    background: rgba(10,10,11,0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom-color: var(--line);
}
.nav-inner {
    max-width: 1300px; margin: 0 auto; padding: 0 32px;
    height: 64px;
    display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 9px; font-weight: 600; font-size: 17px; letter-spacing: -0.02em; }
.brand i { font-style: normal; color: var(--acc); transition: color 0.3s; }
.logo-img {
    width: 34px; height: 34px;
    object-fit: contain; display: block;
    border-radius: 0;
    transition: transform 0.45s var(--ease);
}
.logo-img.sm { width: 18px; height: 18px; }
.brand:hover .logo-img { transform: scale(1.08); }
.fbrand .logo-img { width: 28px; height: 28px; }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
    font-size: 13.5px; color: var(--t2);
    transition: color 0.2s, transform 0.15s var(--ease);
}
.nav-links a:hover { color: var(--t1); }
.nav-links a:active { transform: scale(0.96); }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-login {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--t2);
    transition: color 0.2s;
}
.nav-login:hover { color: var(--t1); }
.nav-login .nav-ico {
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
    opacity: 0.85;
}
.nav-login:hover .nav-ico { opacity: 1; }
.btn .nav-ico {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    opacity: 0.9;
}
.btn-primary .nav-ico { color: #0a0a0b; }
.nav-toggle {
    display: none;
    flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; padding: 10px 8px;
    margin-right: -8px;
}
.nav-toggle span {
    display: block; height: 1.5px; width: 100%;
    background: var(--t1); border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
}
body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─────────── buttons ─────────── */
.btn {
    position: relative; overflow: hidden;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    height: 42px; padding: 0 22px;
    border: 0; border-radius: 6px;
    background: none; color: inherit;
    font: inherit; font-size: 14px; font-weight: 500; letter-spacing: -0.01em;
    cursor: pointer;
    transition: all 0.2s var(--ease);
    white-space: nowrap;
}
.btn::after {
    content: ''; position: absolute; top: 0; left: -85%;
    width: 50%; height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255,255,255,0.28), transparent);
    transform: skewX(-20deg);
    transition: left 0.55s var(--ease);
    pointer-events: none;
}
.btn:hover::after { left: 135%; }
.btn-sm { height: 34px; padding: 0 16px; font-size: 13px; }
.btn-lg { height: 50px; padding: 0 30px; font-size: 15px; }
.btn-block { width: 100%; }
.btn-primary {
    background: linear-gradient(180deg, #ffffff, #e9e9ee); color: #0a0a0b;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.1), 0 8px 24px rgba(0,0,0,0.35);
}
.btn-primary:hover {
    background: linear-gradient(180deg, #ffffff, #f3f3f7);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.14), 0 8px 24px rgba(0,0,0,0.35);
}
.btn-primary::after { background: linear-gradient(100deg, transparent, rgba(0,0,0,0.07), transparent); }
.btn-ghost { background: transparent; color: var(--t1); box-shadow: inset 0 0 0 1px var(--line-2); }
.btn-ghost:hover { background: rgba(255,255,255,0.05); }
.btn-ghost:active { background: rgba(255,255,255,0.08); }
.btn-primary:active { box-shadow: 0 0 0 1px rgba(255,255,255,0.1), 0 4px 12px rgba(0,0,0,0.35); }

/* ─────────── hero ─────────── */
.hero { padding: 150px 0 80px; position: relative; }
.hero::before {
    content: ''; position: absolute; inset: 0;
    background-image:
        linear-gradient(var(--line) 1px, transparent 1px),
        linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 54px 54px;
    -webkit-mask-image: radial-gradient(ellipse 75% 58% at 50% 0%, black 25%, transparent 72%);
            mask-image: radial-gradient(ellipse 75% 58% at 50% 0%, black 25%, transparent 72%);
    opacity: 0.55; pointer-events: none;
}
.hero-grid {
    display: grid; grid-template-columns: 1.12fr 0.88fr;
    gap: 48px; align-items: center;
}
.hero-left { text-align: left; }
.hero-visual {
    position: relative; height: 480px;
    display: flex; align-items: center; justify-content: center;
    perspective: 1400px;
    overflow: visible;
}
.hero-shots {
    position: relative; z-index: 1;
    width: 100%; max-width: 780px;
    height: 520px;
    transform-style: preserve-3d;
    perspective: 1400px;
}
.hero-shot {
    position: absolute;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--line-2);
    box-shadow: 0 30px 70px -18px rgba(0, 0, 0, 0.75), 0 0 34px color-mix(in srgb, var(--acc) 12%, transparent);
    transition: transform 0.5s var(--ease);
}
.hero-shot-img {
    display: block; width: 100%; height: auto;
}
.shot-back {
    width: 100%;
    top: 0; right: -8%;
    left: auto;
    transform: perspective(1400px) rotateY(-15deg) rotateX(3deg) scale(0.88);
    opacity: 0.4;
    z-index: 1;
    filter: blur(1.5px);
}
.shot-front {
    width: 100%;
    top: 18%; left: 0; bottom: auto;
    transform: perspective(1400px) rotateY(-15deg) rotateX(3deg) scale(1);
    z-index: 2;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.85), 0 0 50px color-mix(in srgb, var(--acc) 15%, transparent);
}
.hero-orb {
    position: relative; z-index: 1;
    width: 300px; height: 300px; object-fit: contain;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 44px color-mix(in srgb, var(--acc) 25%, transparent));
    animation: float 6s ease-in-out infinite;
}
.hv-ring {
    position: absolute; top: 50%; left: 50%;
    width: 520px; height: 520px;
    transform: translate(-50%, -50%);
    border: 1px dashed color-mix(in srgb, var(--acc) 16%, transparent);
    border-radius: 50%;
    animation: spinring 56s linear infinite;
}
.hv-ring.r2 {
    width: 640px; height: 640px;
    border-style: solid; border-color: rgba(255, 255, 255, 0.04);
    animation-duration: 80s; animation-direction: reverse;
}
.hv-ring.r3 {
    width: 380px; height: 380px;
    border-color: rgba(255, 255, 255, 0.05);
    animation-duration: 40s;
}
@keyframes spinring { to { transform: translate(-50%, -50%) rotate(360deg); } }
.hero-grid, .preview { position: relative; z-index: 1; }
.grad {
    background: linear-gradient(100deg, #ffffff 15%, var(--acc) 50%, color-mix(in srgb, var(--acc) 55%, #ffffff) 85%);
    background-size: 220% 100%;
    -webkit-background-clip: text; background-clip: text;
    color: #f4f4f5;
    -webkit-text-fill-color: transparent;
    animation: sheen 7s ease-in-out infinite;
}
@media (forced-colors: active) {
    .grad {
        background: none;
        color: CanvasText;
        -webkit-text-fill-color: CanvasText;
    }
}
@keyframes sheen { 0%, 100% { background-position: 0% 0; } 50% { background-position: 100% 0; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.status-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 0;
    border: 0;
    background: none;
    box-shadow: none;
    font-family: var(--display);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.03em;
    color: rgba(255,255,255,0.62);
    line-height: 1;
}
.status-chip-mark {
    width: auto;
    height: auto;
    border: 0;
    border-radius: 0;
    display: grid;
    place-items: center;
    color: var(--green);
    background: none;
    flex: 0 0 auto;
}
.status-chip-mark svg {
    width: 15px;
    height: 15px;
    display: block;
}
.status-chip-label {
    font: inherit;
    letter-spacing: inherit;
    text-transform: none;
    color: inherit;
}
.status-chip-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
    font: inherit;
    font-weight: 500;
    letter-spacing: inherit;
    text-transform: none;
    color: var(--green);
}
.status-chip-live::before {
    content: '·';
    color: rgba(255,255,255,0.28);
    margin-right: 2px;
    font-weight: 400;
}
.status-chip-live i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--green);
    animation: livePulse 2.2s ease-in-out infinite;
}
@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
}

.pill {
    position: relative;
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 12px 8px 10px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015));
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
    font-size: 13px; font-weight: 600; letter-spacing: -0.01em;
    color: rgba(255,255,255,0.88);
    margin-bottom: 28px;
}
.pill:hover { border-color: rgba(255,255,255,0.14); }
.pill-ok {
    border-color: rgba(255,255,255,0.1);
    background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015));
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.88);
}
.pill-ok:hover {
    border-color: rgba(255,255,255,0.14);
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.92);
}
.pill-check {
    width: 13px; height: 13px;
    margin-left: 1px;
    color: var(--acc);
    opacity: 0.9;
    flex: 0 0 13px;
}
.pulse {
    position: relative;
    width: 28px; height: 28px;
    border-radius: 7px;
    flex: 0 0 28px;
    display: grid; place-items: center;
    background: var(--acc-dim);
    border: 1px solid color-mix(in srgb, var(--acc) 28%, var(--line));
}
.pulse::before {
    content: '';
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--acc);
    box-shadow: none;
    z-index: 1;
}
.pulse::after { display: none; }
@keyframes status-ring {
    0% { transform: scale(0.72); opacity: 0.85; }
    100% { transform: scale(1.55); opacity: 0; }
}
.hero-title {
    font-family: var(--display);
    font-size: clamp(46px, 6.2vw, 82px);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 0.98;
    margin-bottom: 22px;
}
.hero-sub {
    max-width: 540px; margin: 0 0 30px;
    font-size: 16.5px; color: var(--t2); line-height: 1.65;
}
.hero-sub b { color: inherit; font-weight: 600; }
.hero-cta { display: flex; gap: 10px; justify-content: flex-start; margin-bottom: 18px; flex-wrap: wrap; }
.hero-cta .btn {
    height: 46px; padding: 0 22px;
    border-radius: 100px;
    font-weight: 600;
    box-shadow: none;
}
.btn-go {
    background: var(--acc); color: #fff;
}
.btn-go:hover { background: color-mix(in srgb, var(--acc) 86%, #fff); }
.btn-go:active { background: color-mix(in srgb, var(--acc) 80%, #000); }
.btn-go::after { background: linear-gradient(100deg, transparent, rgba(255,255,255,0.22), transparent); }
.btn-discord {
    background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.82);
}
.btn-discord:hover { background: rgba(255,255,255,0.1); color: #fff; }
.btn-discord:active { background: rgba(255,255,255,0.12); }
.btn-discord svg { width: 18px; height: 18px; display: block; flex-shrink: 0; }
.hero-note { font-size: 13px; color: var(--t3); }

/* ─────────── product preview ─────────── */
.preview { margin-top: 72px; padding: 0 24px; position: relative; perspective: 1400px; }
.preview::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 55% 60% at 50% 30%, color-mix(in srgb, var(--acc) 7%, transparent), transparent 70%);
    pointer-events: none;
}
.preview-frame {
    position: relative;
    max-width: 1080px; margin: 0 auto;
    border: 1px solid var(--line-2);
    border-radius: 10px;
    background: var(--bg-2);
    overflow: hidden;
    box-shadow: 0 1px 0 rgba(255,255,255,0.05) inset, 0 40px 90px -20px rgba(0,0,0,0.7);
    transform-style: preserve-3d;
    transition: transform 0.4s var(--ease);
    will-change: transform;
}
.preview-shot-wrap { position: relative; display: block; overflow: hidden; }
.preview-shot {
    display: block;
    width: 100%;
    height: auto;
}
.preview-logo {
    position: absolute;
    top: 2.15%;
    left: 1.55%;
    width: 3.55%;
    height: auto;
    border-radius: 5px;
    pointer-events: none;
}
.preview-bar {
    display: flex; align-items: center; gap: 16px;
    height: 44px; padding: 0 16px;
    border-bottom: 1px solid var(--line);
    background: var(--bg-3);
}
.pdots { display: flex; gap: 6px; }
.pdots i { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.12); }
.purl {
    flex: 1; max-width: 300px; margin: 0 auto;
    padding: 5px 14px;
    border: 1px solid var(--line); border-radius: 7px;
    background: var(--bg);
    font-family: var(--mono); font-size: 11px; color: var(--t3);
    text-align: center;
}
.pstatus { display: flex; align-items: center; gap: 7px; font-family: var(--mono); font-size: 10.5px; color: var(--t2); }
.dg { width: 6px; height: 6px; border-radius: 50%; background: var(--green); display: inline-block; }

.panel { position: relative; display: grid; grid-template-columns: 180px 1fr 250px; min-height: 430px; text-align: left; }
.side { border-right: 1px solid var(--line); background: var(--bg); padding: 16px 12px; display: flex; flex-direction: column; }
.side-logo { padding: 4px 8px 16px; border-bottom: 1px solid var(--line); margin-bottom: 12px; }
.side-nav { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.side-item {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 10px; border-radius: 7px;
    font-size: 13px; color: var(--t3);
    transition: all 0.15s; cursor: pointer;
}
.side-item svg { width: 15px; height: 15px; }
.side-item:hover { color: var(--t2); background: rgba(255,255,255,0.03); }
.side-item.active { color: var(--t1); background: rgba(255,255,255,0.06); }
.side-user { display: flex; align-items: center; gap: 10px; padding: 10px 8px 2px; border-top: 1px solid var(--line); }
.avatar {
    width: 26px; height: 26px; border-radius: 50%;
    background: linear-gradient(145deg, #c9ccd8, #7c8094);
    color: #0a0a0b;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 600;
}
.smeta { display: flex; flex-direction: column; line-height: 1.25; }
.smeta b { font-size: 12px; font-weight: 500; }
.smeta i { font-style: normal; font-family: var(--mono); font-size: 9.5px; color: var(--t3); }

.main { padding: 20px 22px; border-right: 1px solid var(--line); }
.main-head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 18px; }
.main-head h4 { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; }
.main-head p { font-size: 12px; color: var(--t3); margin-top: 2px; }
.sys-status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 5px 11px 5px 5px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    background: rgba(255,255,255,0.035);
}
.sys-status-ico {
    width: 22px;
    height: 22px;
    border-radius: 5px;
    display: grid;
    place-items: center;
    color: var(--green);
    background: color-mix(in srgb, var(--green) 12%, transparent);
    border: 1px solid color-mix(in srgb, var(--green) 26%, var(--line));
    flex: 0 0 22px;
}
.sys-status-ico svg {
    width: 12px;
    height: 12px;
    display: block;
}
.sys-status-text {
    font-family: var(--display);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: rgba(255,255,255,0.7);
}
.pill-safe {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 9px;
    border: 1px solid color-mix(in srgb, var(--acc) 26%, var(--line));
    border-radius: 6px;
    background: var(--acc-dim);
    color: color-mix(in srgb, var(--acc) 72%, #fff);
    font-family: var(--mono); font-size: 10px; letter-spacing: 0.04em;
}
.wpn-list { display: flex; flex-direction: column; gap: 4px; }
.wpn {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 12px;
    border: 1px solid transparent; border-radius: 9px;
    text-align: left; transition: all 0.15s;
}
.wpn:hover { background: rgba(255,255,255,0.03); }
.wpn.active { background: rgba(255,255,255,0.05); border-color: var(--line-2); }
.glyph {
    width: 34px; height: 34px;
    border: 1px solid var(--line); border-radius: 8px;
    background: var(--bg-3);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--mono); font-size: 10.5px; font-weight: 500; color: var(--t2);
    flex-shrink: 0;
}
.wpn.active .glyph { color: var(--t1); border-color: var(--line-2); }
.wmeta { display: flex; flex-direction: column; line-height: 1.3; flex: 1; }
.wmeta b { font-size: 13px; font-weight: 500; }
.wmeta i { font-style: normal; font-size: 11px; color: var(--t3); }
.chips { display: flex; gap: 5px; }
.chips i {
    font-style: normal; font-family: var(--mono); font-size: 9.5px; color: var(--t3);
    border: 1px solid var(--line); border-radius: 5px; padding: 2.5px 6px;
}

.detail { padding: 20px; background: var(--bg); display: flex; flex-direction: column; gap: 15px; }
.detail-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.detail-head span:first-child { font-size: 14px; font-weight: 600; letter-spacing: -0.01em; }
.bind {
    font-family: var(--mono); font-size: 10px; color: var(--acc);
    border: 1px solid color-mix(in srgb, var(--acc) 30%, transparent); background: var(--acc-dim);
    border-radius: 6px; padding: 3px 8px;
}
.srow { display: flex; flex-direction: column; gap: 7px; }
.stop { display: flex; justify-content: space-between; font-size: 11.5px; color: var(--t3); }
.stop b { color: var(--t2); font-weight: 500; font-family: var(--mono); font-size: 10.5px; }
.track { height: 3px; border-radius: 3px; background: rgba(255,255,255,0.08); overflow: hidden; }
.fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, color-mix(in srgb, var(--acc) 50%, #ffffff), var(--acc)); }
.trow { display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: var(--t2); }
.sw {
    width: 30px; height: 17px; border-radius: 100px;
    background: rgba(255,255,255,0.1);
    position: relative; transition: background 0.2s; flex-shrink: 0; cursor: pointer;
}
.sw i {
    position: absolute; top: 2.5px; left: 2.5px;
    width: 12px; height: 12px; border-radius: 50%;
    background: rgba(255,255,255,0.75);
    transition: all 0.2s var(--ease);
}
.sw.on { background: var(--acc); }
.sw.on i { left: 15px; background: #fff; }
.detail-foot {
    margin-top: auto;
    display: flex; align-items: center; gap: 8px;
    font-family: var(--mono); font-size: 10px; color: var(--t3);
    padding-top: 12px; border-top: 1px solid var(--line);
}

/* ─────────── hero stats ─────────── */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}
.stat {
    display: flex; flex-direction: column; gap: 4px;
    padding: 0 22px;
    border-right: 1px solid var(--line);
}
.stat:first-child { padding-left: 0; }
.stat:last-child { border-right: 0; padding-right: 0; }
.stat b { font-family: var(--display); font-size: 28px; font-weight: 700; letter-spacing: -0.04em; line-height: 1; }
.stat span { font-size: 12.5px; color: var(--t3); line-height: 1.3; }

/* ─────────── shared section bits ─────────── */
.features, .arsenal, .extras, .pricing, .quotes, .faq { padding: 110px 0; }
.features { border-top: 1px solid var(--line); }
.h2 {
    font-family: var(--font);
    font-size: clamp(28px, 3.6vw, 38px);
    font-weight: 600;
    letter-spacing: -0.022em;
    line-height: 1.15;
}
.lede { margin-top: 16px; font-size: 15.5px; color: var(--t2); max-width: 460px; }
.sec-head { margin-bottom: 56px; }
.sec-head.center { text-align: center; }
.sec-head.center .lede { text-align: center; }
.pkey-bits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-top: 22px;
    font-family: var(--display);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--t2);
}
.pkey-bits span {
    position: relative;
    padding: 0 18px;
}
.pkey-bits span:first-child { padding-left: 0; }
.pkey-bits span:last-child { padding-right: 0; }
.pkey-bits span + span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--acc) 70%, transparent);
    transform: translate(-50%, -50%);
}
.tlink {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 24px;
    font-size: 14px; font-weight: 500; color: var(--t1);
    border-bottom: 1px solid var(--line-2); padding-bottom: 2px;
    transition: all 0.2s;
}
.tlink:hover { border-color: var(--t1); }
.tlink span { transition: transform 0.2s var(--ease); }
.tlink:hover span { transform: translateX(3px); }

/* ─────────── features: modes + spec ─────────── */
.features { position: relative; }
.modes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.mode {
    text-align: left;
    border: 1px solid var(--line);
    border-radius: var(--r);
    background: var(--bg-2);
    padding: 26px 24px 24px;
    min-height: 210px;
    transition: border-color 0.2s, background 0.2s, transform 0.18s var(--ease), box-shadow 0.2s;
}
.mode span {
    display: block;
    font-size: 13px; font-weight: 500; color: var(--t3);
    margin-bottom: 10px;
}
.mode b {
    display: block;
    font-family: var(--display);
    font-size: 36px; font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 14px;
}
.mode p { font-size: 13.5px; color: var(--t2); line-height: 1.65; }
.mode:hover { border-color: var(--line-2); transform: translateY(-2px); }
.mode:active { transform: scale(0.985); }
.mode.is-on {
    border-color: color-mix(in srgb, var(--acc) 45%, var(--line));
    background: color-mix(in srgb, var(--acc) 6%, var(--bg-2));
    box-shadow: inset 3px 0 0 var(--acc);
}
.mode.is-on span, .mode.is-on b { color: var(--t1); }
.spec {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 28px;
    border-top: 1px solid var(--line);
}
.spec > div {
    display: grid;
    grid-template-columns: 148px 1fr;
    gap: 20px;
    padding: 22px 28px 22px 0;
    border-bottom: 1px solid var(--line);
    transition: background 0.2s;
}
.spec > div:hover dt { color: var(--acc); }
.spec > div:nth-child(even) { padding-left: 28px; padding-right: 0; }
.spec dt { font-size: 14px; font-weight: 600; letter-spacing: -0.015em; }
.spec dd { font-size: 13.5px; color: var(--t2); line-height: 1.65; margin: 0; }

.arsenal, .extras { position: relative; }
.ow-stage {
    position: relative;
    display: flex; justify-content: center; align-items: center;
    padding: 48px 0 72px;
    perspective: 1600px;
}
.ow-glow {
    position: absolute;
    width: min(1100px, 130%);
    height: 120%;
    background:
        radial-gradient(ellipse 58% 50% at 50% 52%, color-mix(in srgb, var(--acc) 14%, transparent), transparent 72%),
        radial-gradient(ellipse 34% 42% at 24% 40%, color-mix(in srgb, var(--acc) 7%, transparent), transparent 70%),
        radial-gradient(ellipse 36% 38% at 76% 64%, color-mix(in srgb, var(--acc) 6%, transparent), transparent 70%);
    filter: blur(90px);
    opacity: 0.55;
    pointer-events: none; z-index: 0;
}
.ow-scan {
    position: absolute;
    inset: 4% 14%;
    background: repeating-linear-gradient(
        0deg,
        transparent 0 3px,
        rgba(255,255,255,0.018) 3px 4px
    );
    -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 20%, transparent 72%);
            mask-image: radial-gradient(ellipse at 50% 50%, #000 20%, transparent 72%);
    pointer-events: none; z-index: 0;
}
.ow-deck {
    position: relative; z-index: 1;
    width: min(640px, 72%);
    transform: rotateX(11deg) rotateY(-8deg);
    transform-style: preserve-3d;
    transition: transform 0.5s var(--ease);
}
.ow-ghost {
    position: absolute;
    left: 4%;
    top: 14%;
    width: 108%;
    margin: 0;
    transform: translateZ(-80px) scale(1.1);
    filter: blur(44px);
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
}
.ow-ghost img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 14px;
}
.ow-window {
    position: relative; z-index: 1;
    width: 100%;
    margin: 0;
    border-radius: 12px;
    transform: translateZ(28px);
    filter:
        drop-shadow(0 28px 48px rgba(0, 0, 0, 0.72))
        drop-shadow(0 0 90px color-mix(in srgb, var(--acc) 10%, transparent));
    transition: filter 0.4s var(--ease);
}
.ow-window img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}
.ow-window::after {
    content: '';
    position: absolute; inset: 0;
    border-radius: 12px;
    pointer-events: none;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.ow-stage:hover .ow-deck {
    transform: rotateX(7deg) rotateY(-5deg) translateY(-8px);
}
.ow-stage:hover .ow-window {
    filter:
        drop-shadow(0 34px 56px rgba(0, 0, 0, 0.78))
        drop-shadow(0 0 110px color-mix(in srgb, var(--acc) 14%, transparent));
}

.bind-note {
    margin-top: 8px; padding-top: 22px;
    border-top: 1px solid var(--line);
    max-width: 640px;
}
.bind-note p { font-size: 14.5px; color: var(--t2); line-height: 1.7; }

.extra-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.extra-card {
    border: 1px solid var(--line); border-radius: var(--r);
    background: var(--bg-2);
    padding: 22px 24px;
    min-height: 150px;
    transition: border-color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s;
}
.extra-card:hover {
    border-color: var(--line-2);
    transform: translateY(-3px);
    box-shadow: 0 18px 40px -22px rgba(0,0,0,0.55);
}
.extra-card:active { transform: translateY(-1px); }
.extra-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.015em; }
.extra-card p { font-size: 13.5px; color: var(--t2); line-height: 1.65; }

/* ─────────── pricing ─────────── */
.pricing { position: relative; }
.plans {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
    align-items: stretch;
    perspective: 1200px;
    padding-top: 8px;
}
.plan {
    position: relative;
    display: flex; flex-direction: column;
    padding: 22px 22px 20px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.028), transparent 28%),
        var(--bg-2);
    overflow: hidden;
    transition: border-color 0.28s, transform 0.28s var(--ease), box-shadow 0.28s;
}
.plan::before {
    content: '';
    position: absolute; top: 0; left: 18px; right: 18px; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
    pointer-events: none;
}
.plan:hover {
    border-color: var(--line-2);
    transform: translateY(-5px);
    box-shadow: 0 28px 56px -24px rgba(0,0,0,0.6);
}
.plan:active { transform: translateY(-2px) scale(0.995); }

.plan.hot {
    border-color: color-mix(in srgb, var(--acc) 32%, var(--line));
    background:
        radial-gradient(90% 50% at 50% -8%, color-mix(in srgb, var(--acc) 16%, transparent), transparent 58%),
        linear-gradient(180deg, rgba(255,255,255,0.04), transparent 32%),
        var(--bg-3);
    box-shadow:
        0 28px 64px -28px color-mix(in srgb, var(--acc) 28%, transparent),
        inset 0 1px 0 color-mix(in srgb, var(--acc) 18%, transparent);
    z-index: 1;
}
.plan.hot::before {
    height: 2px; left: 0; right: 0;
    background: linear-gradient(90deg, transparent 6%, var(--acc) 50%, transparent 94%);
    opacity: 0.85;
}
.plan.hot:hover {
    box-shadow:
        0 34px 72px -26px color-mix(in srgb, var(--acc) 36%, transparent),
        inset 0 1px 0 color-mix(in srgb, var(--acc) 22%, transparent);
}
.plan-life {
    border-color: color-mix(in srgb, #f5b04c 18%, var(--line));
}
.plan-life::before {
    background: linear-gradient(90deg, transparent, rgba(245,176,76,0.45), transparent);
}

.plan-kicker {
    display: flex; align-items: center; justify-content: space-between; gap: 8px;
    min-height: 26px; margin-bottom: 10px;
}
.plan-key, .flag, .psave {
    display: inline-flex; align-items: center;
    font-size: 10.5px; font-weight: 600;
    letter-spacing: 0.06em; text-transform: uppercase;
    white-space: nowrap;
}
.plan-key {
    color: var(--t2);
    padding: 5px 9px;
    border-radius: 6px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.03);
}
.plan-key.gold {
    color: #f5d76e;
    border-color: color-mix(in srgb, #f5b04c 42%, var(--line));
    background: color-mix(in srgb, #f5b04c 14%, transparent);
}
.flag {
    padding: 5px 10px; border-radius: 6px;
    background: var(--acc); color: #fff;
    box-shadow: none;
}
.psave {
    font-family: var(--mono); font-size: 10px; letter-spacing: 0.04em;
    padding: 5px 8px; border-radius: 6px;
    color: color-mix(in srgb, var(--acc) 75%, #fff); background: var(--acc-dim);
    border: 1px solid color-mix(in srgb, var(--acc) 24%, transparent);
}
.psave.gold {
    color: #f5d76e;
    background: color-mix(in srgb, #f5b04c 14%, transparent);
    border-color: color-mix(in srgb, #f5b04c 42%, var(--line));
}

.phead { margin-bottom: 6px; }
.pname {
    font-family: var(--display);
    font-size: 22px; font-weight: 600;
    letter-spacing: -0.03em;
    color: var(--t1);
}

.pprice {
    display: flex; align-items: flex-end;
    gap: 1px; margin-top: 4px;
    line-height: 1;
}
.pcur {
    font-family: var(--display);
    font-size: 22px; font-weight: 600;
    color: var(--t2);
    margin-right: 2px;
    padding-bottom: 8px;
}
.pprice b {
    font-family: var(--display);
    font-size: 52px; font-weight: 700;
    letter-spacing: -0.05em;
    color: var(--t1);
}
.pcents {
    font-family: var(--display);
    font-size: 22px; font-weight: 600;
    letter-spacing: -0.03em;
    color: var(--t2);
    padding-bottom: 8px;
}
.punit {
    font-size: 13px; color: var(--t3);
    margin-left: 8px;
    padding-bottom: 10px;
}

.pper {
    margin-top: 10px;
    font-size: 12.5px; color: var(--t3);
}
.plan-meter {
    position: relative;
    height: 3px; margin: 16px 0 18px;
    border-radius: 99px;
    background: rgba(255,255,255,0.06);
    overflow: hidden;
}
.plan-meter i {
    display: block; height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, color-mix(in srgb, var(--acc) 40%, transparent), var(--acc));
}
.plan-meter.life i {
    width: 100%;
    background: linear-gradient(90deg, rgba(245,176,76,0.35), #f5b04c);
}

.pfeat {
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--t3); margin-bottom: 14px;
}

.plan ul { display: flex; flex-direction: column; gap: 9px; flex: 1; margin-bottom: 22px; }
.plan li {
    display: flex; align-items: flex-start; gap: 11px;
    font-size: 13.5px; color: var(--t2); line-height: 1.4;
}
.pi {
    flex: 0 0 26px;
    width: 26px; height: 26px;
    border-radius: 7px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--line);
    position: relative;
}
.pi::before {
    content: '';
    position: absolute; inset: 6px;
    background: rgba(255, 255, 255, 0.88);
}
.plan.hot .pi {
    background: rgba(255,255,255,0.05);
    border-color: color-mix(in srgb, var(--acc) 22%, transparent);
}
.pi-gun::before {
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M12 3v2M12 19v2M3 12h2M19 12h2M6.2 6.2l1.4 1.4M16.4 16.4l1.4 1.4M17.8 6.2l-1.4 1.4M7.6 16.4l-1.4 1.4'/%3E%3C/svg%3E") center / contain no-repeat;
            mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M12 3v2M12 19v2M3 12h2M19 12h2M6.2 6.2l1.4 1.4M16.4 16.4l1.4 1.4M17.8 6.2l-1.4 1.4M7.6 16.4l-1.4 1.4'/%3E%3C/svg%3E") center / contain no-repeat;
}
.pi-pc::before {
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='11' height='9' rx='1.4'/%3E%3Crect x='12' y='11' width='9' height='7' rx='1.2'/%3E%3Cpath d='M7 13v2M16.5 18v1'/%3E%3C/svg%3E") center / contain no-repeat;
            mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='11' height='9' rx='1.4'/%3E%3Crect x='12' y='11' width='9' height='7' rx='1.2'/%3E%3Cpath d='M7 13v2M16.5 18v1'/%3E%3C/svg%3E") center / contain no-repeat;
}
.pi-aim::before {
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='8'/%3E%3Ccircle cx='12' cy='12' r='2.4'/%3E%3Cpath d='M12 4v3M12 17v3M4 12h3M17 12h3'/%3E%3C/svg%3E") center / contain no-repeat;
            mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='8'/%3E%3Ccircle cx='12' cy='12' r='2.4'/%3E%3Cpath d='M12 4v3M12 17v3M4 12h3M17 12h3'/%3E%3C/svg%3E") center / contain no-repeat;
}
.pi-scan::before {
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 8V5h3M20 8V5h-3M4 16v3h3M20 16v3h-3'/%3E%3Ccircle cx='12' cy='12' r='3.2'/%3E%3C/svg%3E") center / contain no-repeat;
            mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 8V5h3M20 8V5h-3M4 16v3h3M20 16v3h-3'/%3E%3Ccircle cx='12' cy='12' r='3.2'/%3E%3C/svg%3E") center / contain no-repeat;
}
.pi-shield::before {
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3.5 19 7v5.2c0 4.2-2.8 7.1-7 8.3-4.2-1.2-7-4.1-7-8.3V7l7-3.5z'/%3E%3Cpath d='M9.2 12.1 11.1 14l3.8-4'/%3E%3C/svg%3E") center / contain no-repeat;
            mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3.5 19 7v5.2c0 4.2-2.8 7.1-7 8.3-4.2-1.2-7-4.1-7-8.3V7l7-3.5z'/%3E%3Cpath d='M9.2 12.1 11.1 14l3.8-4'/%3E%3C/svg%3E") center / contain no-repeat;
}
.pi-sliders::before {
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 7h16M4 12h16M4 17h16'/%3E%3Ccircle cx='9' cy='7' r='1.7' fill='black'/%3E%3Ccircle cx='15' cy='12' r='1.7' fill='black'/%3E%3Ccircle cx='11' cy='17' r='1.7' fill='black'/%3E%3C/svg%3E") center / contain no-repeat;
            mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 7h16M4 12h16M4 17h16'/%3E%3Ccircle cx='9' cy='7' r='1.7' fill='black'/%3E%3Ccircle cx='15' cy='12' r='1.7' fill='black'/%3E%3Ccircle cx='11' cy='17' r='1.7' fill='black'/%3E%3C/svg%3E") center / contain no-repeat;
}
.pi-chat::before {
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 18.5 4 21l3.2-1.2A8.5 8.5 0 1 0 5 18.5z'/%3E%3Cpath d='M8.5 11h7M8.5 14h4.5'/%3E%3C/svg%3E") center / contain no-repeat;
            mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 18.5 4 21l3.2-1.2A8.5 8.5 0 1 0 5 18.5z'/%3E%3Cpath d='M8.5 11h7M8.5 14h4.5'/%3E%3C/svg%3E") center / contain no-repeat;
}
.pi-sync::before {
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 12a8 8 0 0 1-13.7 5.6L4 16'/%3E%3Cpath d='M4 12a8 8 0 0 1 13.7-5.6L20 8'/%3E%3Cpath d='M4 16v-4h4M20 8v4h-4'/%3E%3C/svg%3E") center / contain no-repeat;
            mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 12a8 8 0 0 1-13.7 5.6L4 16'/%3E%3Cpath d='M4 12a8 8 0 0 1 13.7-5.6L20 8'/%3E%3Cpath d='M4 16v-4h4M20 8v4h-4'/%3E%3C/svg%3E") center / contain no-repeat;
}

.plan .btn { margin-top: auto; height: 44px; border-radius: 8px; }
.plan.hot .btn-primary {
    background: linear-gradient(180deg, #fff, #ececf0);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.12), 0 10px 24px color-mix(in srgb, var(--acc) 18%, transparent);
}

.pnote {
    margin-top: 18px; text-align: center;
    font-size: 12.5px; color: var(--t3);
}

.checkout { margin-top: 48px; text-align: center; }
.checkout-label {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-size: 11.5px; font-weight: 600;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--t2);
    margin-bottom: 16px;
}
.checkout-label svg { width: 13px; height: 13px; color: #d81b38; }
.pay-board {
    display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
    gap: 12px 14px;
    max-width: 860px;
    margin: 0 auto;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.012)),
        var(--bg-2);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.pay-group {
    display: flex; align-items: center; flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}
.pay-chip {
    display: inline-flex; align-items: center; justify-content: center;
    height: 40px; min-width: 62px; padding: 0 12px;
    border: 0;
    border-radius: 8px;
    background: #fff;
}
.pay-chip img { height: 20px; width: auto; display: block; }
.pay-crypto {
    min-width: 40px; height: 40px; padding: 0;
    background: transparent;
}
.pay-crypto img { height: 28px; width: 28px; }
.pay-split {
    width: 1px; height: 28px;
    background: linear-gradient(180deg, transparent, #d81b38 20%, #d81b38 80%, transparent);
    opacity: 0.85;
    flex: 0 0 1px;
}

/* ─────────── quotes ─────────── */
.quotes { position: relative; overflow: hidden; }
.q-rail {
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.q-track {
    display: flex;
    width: max-content;
    animation: qscroll 48s linear infinite;
}
.q-set {
    display: flex;
    gap: 14px;
    padding-right: 14px;
}
@keyframes qscroll {
    to { transform: translateX(-50%); }
}
.q-card {
    flex: 0 0 340px;
    display: flex; flex-direction: column;
    padding: 18px 18px 16px;
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.035), transparent 28%),
        var(--bg-2);
    border: 1px solid var(--line);
    min-height: 214px;
}
.q-head {
    display: flex; align-items: center; justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}
.q-stars { display: flex; gap: 3px; }
.q-stars i {
    width: 13px; height: 13px;
    background: #f5b04c;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 1.4 9.6 5.2h4l-3.2 2.4 1.2 3.9L8 9.2 4.4 11.5 5.6 7.6 2.4 5.2h4z'/%3E%3C/svg%3E") center / contain no-repeat;
            mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 1.4 9.6 5.2h4l-3.2 2.4 1.2 3.9L8 9.2 4.4 11.5 5.6 7.6 2.4 5.2h4z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.q-ok {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0;
    border: 0;
    background: none;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #86efac;
}
.q-ok svg { display: none; }
.q-ok::before {
    content: '';
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    border-radius: 2px;
    background-color: #22c55e;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%230a0a0b' stroke='%230a0a0b' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round' d='M3.6 8.4 6.5 11.2 12.4 4.8'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 11px 11px;
}
.q-text {
    font-size: 14.5px; line-height: 1.6; color: rgba(255,255,255,0.84);
    margin: 0 0 auto; padding-bottom: 16px;
}
.q-who {
    display: flex; align-items: center; gap: 10px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}
.q-ava {
    width: 36px; height: 36px; border-radius: 50%;
    object-fit: cover; flex-shrink: 0;
    background: #1c1c20;
    border: 1px solid rgba(255,255,255,0.08);
}
.q-id { display: flex; flex-direction: column; min-width: 0; line-height: 1.25; }
.q-id b { font-size: 13.5px; font-weight: 600; }
.q-id em { font-style: normal; font-size: 11.5px; color: var(--t3); }
.q-who > span { font-size: 11.5px; color: var(--t3); margin-left: auto; white-space: nowrap; }

/* ─────────── faq ─────────── */
.faq { position: relative; }
.faq-wrap { max-width: 820px; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
    width: 100%;
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
    padding: 22px 0;
    text-align: left;
    font-size: 15.5px; font-weight: 500; letter-spacing: -0.01em;
    transition: color 0.2s, transform 0.15s var(--ease);
}
.faq-q:hover { color: var(--t1); }
.faq-q:active { transform: scale(0.995); }
.faq-item.open .faq-q { color: var(--t1); }
.fic { position: relative; width: 14px; height: 14px; flex-shrink: 0; }
.fic::before, .fic::after { content: ''; position: absolute; background: var(--t3); transition: transform 0.25s var(--ease); }
.fic::before { left: 0; top: 6px; width: 14px; height: 1.5px; }
.fic::after { left: 6.25px; top: 0; width: 1.5px; height: 14px; }
.faq-item.open .fic::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.32s var(--ease); }
.faq-a p { padding: 0 0 24px; font-size: 14.5px; color: var(--t2); line-height: 1.7; max-width: 600px; }

/* ─────────── cta ─────────── */
.cta {
    position: relative; overflow: hidden;
    padding: 120px 0;
    text-align: center;
    background: radial-gradient(ellipse 50% 60% at 50% 100%, color-mix(in srgb, var(--acc) 8%, transparent), transparent 70%);
}
.cta-title { font-family: var(--display); font-size: clamp(40px, 6vw, 64px); font-weight: 700; letter-spacing: -0.04em; margin-bottom: 30px; }
.cta-title .stroke {
    color: transparent;
    -webkit-text-stroke: 1.5px color-mix(in srgb, var(--acc) 75%, transparent);
}
.cta-note { display: block; margin-top: 18px; font-family: var(--mono); font-size: 11px; color: var(--t3); }

/* ─────────── footer ─────────── */
.footer { position: relative; padding-top: 64px; }
.fgrid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; }
.fbrand p { margin: 18px 0 20px; font-size: 13.5px; color: var(--t3); line-height: 1.7; }
.fcol h5 {
    font-size: 13px;
    color: var(--t3); margin-bottom: 16px; font-weight: 600;
}
.fcol a { display: block; font-size: 13.5px; color: var(--t2); padding: 5px 0; transition: color 0.2s, transform 0.15s var(--ease); }
.fcol a:hover { color: var(--t1); transform: translateX(4px); }
.fbase {
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
    padding-top: 24px; padding-bottom: 24px;
    border-top: 1px solid var(--line);
    font-family: var(--mono); font-size: 11px; color: var(--t3);
}
.fseo {
    margin: 0;
    max-width: 560px;
    text-align: right;
    line-height: 1.55;
    color: var(--t3);
}

/* ─────────── section hairlines ─────────── */
.pricing::before, .quotes::before, .faq::before, .cta::before, .footer::before,
.arsenal::before, .extras::before {
    content: ''; position: absolute; top: 0; left: 50%;
    width: min(1300px, 88%); height: 1px; transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, var(--line-2), transparent);
}

/* ─────────── cta radar ─────────── */
.cta-in { position: relative; z-index: 1; }
.radar { position: absolute; top: 50%; left: 50%; pointer-events: none; }
.radar i {
    position: absolute; top: 50%; left: 50%;
    width: 220px; height: 220px;
    border: 1px solid color-mix(in srgb, var(--acc) 22%, transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0.35);
    opacity: 0;
    animation: radar 4.2s var(--ease) infinite;
}
.radar i:nth-child(2) { animation-delay: 1.4s; }
.radar i:nth-child(3) { animation-delay: 2.8s; }
.radar::before {
    content: ''; position: absolute; top: 50%; left: 50%;
    width: 6px; height: 6px; margin: -3px 0 0 -3px; border-radius: 50%;
    background: var(--acc); box-shadow: 0 0 14px var(--acc);
    animation: radarpulse 2.2s ease-in-out infinite;
}
@keyframes radar {
    0% { transform: translate(-50%, -50%) scale(0.35); opacity: 0; }
    12% { opacity: 0.85; }
    100% { transform: translate(-50%, -50%) scale(2.6); opacity: 0; }
}
@keyframes radarpulse { 0%, 100% { opacity: 0.45; } 50% { opacity: 1; } }

/* ─────────── reveal ─────────── */
.reveal { opacity: 1; transform: none; }
.reveal.in { opacity: 1; transform: none; }

/* ─────────── scroll progress ─────────── */
.sprog { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 300; pointer-events: none; }
.sprog i {
    display: block; height: 100%; width: 0;
    background: linear-gradient(90deg, color-mix(in srgb, var(--acc) 55%, transparent), var(--acc));
    box-shadow: 0 0 14px color-mix(in srgb, var(--acc) 55%, transparent);
}

/* ─────────── spotlight cards ─────────── */
.spot { position: relative; }
.spot::before {
    content: ''; position: absolute; inset: 0; border-radius: inherit;
    background: radial-gradient(260px circle at var(--mx, 50%) var(--my, 50%), color-mix(in srgb, var(--acc) 7%, transparent), transparent 70%);
    opacity: 0; transition: opacity 0.35s;
    pointer-events: none;
}
.spot:hover::before { opacity: 1; }

/* ─────────── nav active link ─────────── */
.nav-links a { position: relative; }
.nav-links a.active { color: var(--t1); }
.nav-links a.active::after {
    content: ''; position: absolute; left: 50%; bottom: -8px;
    width: 3px; height: 3px; border-radius: 50%;
    background: var(--acc); transform: translateX(-50%);
    box-shadow: 0 0 8px var(--acc);
}

/* ─────────── keyboard focus ─────────── */
:focus-visible { outline: 2px solid color-mix(in srgb, var(--acc) 70%, transparent); outline-offset: 3px; border-radius: 4px; }

/* ─────────── reduced motion ─────────── */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
    .q-track { animation: none; }
    .ow-deck, .ow-window, .ow-ghost, .ow-stage:hover .ow-deck { transform: none !important; }
    .intro { display: none !important; }
    html.intro-on { overflow: auto; }
}

@media (max-width: 760px) {
    html.intro-on { overflow: auto; }
    .intro { display: none !important; }
}
@media (pointer: coarse) {
    html.intro-on { overflow: auto; }
    .intro { display: none !important; }
}

/* ─────────── responsive ─────────── */
@media (max-width: 1100px) {
    .pprice b { font-size: 44px; }
    .pcur, .pcents { font-size: 18px; padding-bottom: 7px; }
    .plans { gap: 12px; }
}
@media (max-width: 900px) {
    .plans { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
    .pprice b { font-size: 52px; }
}
@media (max-width: 1020px) {
    .panel { grid-template-columns: 160px 1fr; }
    .detail { display: none; }
    .hero-grid { grid-template-columns: 1fr; gap: 16px; }
    .hero-visual { order: -1; height: auto; min-height: 220px; padding: 8px 0 4px; overflow: hidden; }
    .hero-shots { max-width: 420px; height: 280px; margin: 0 auto; }
    .shot-back, .shot-front { width: 88%; }
    .hero-orb { width: 190px; height: 190px; }
    .hv-ring { width: 240px; height: 240px; }
    .hv-ring.r2 { width: 300px; height: 300px; }
    .hv-ring.r3 { width: 180px; height: 180px; }
    .extra-grid { grid-template-columns: 1fr 1fr; }
    .spec { grid-template-columns: 1fr; }
    .spec > div, .spec > div:nth-child(even) { padding-left: 0; padding-right: 0; }
    .nav-links { gap: 18px; }
}
@media (max-width: 760px) {
    .nav-toggle { display: flex; }
    .nav-inner {
        gap: 10px;
        padding-left: 14px;
        padding-right: 10px;
    }
    .brand {
        flex: 1 1 auto;
        min-width: 0;
        gap: 7px;
        font-size: 15px;
        position: relative;
        z-index: 2;
    }
    .brand .logo-img { width: 28px; height: 28px; flex-shrink: 0; }
    .brand span {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .nav-actions {
        flex: 0 0 auto;
        gap: 6px;
        margin-left: auto;
        position: relative;
        z-index: 2;
    }
    .nav-login {
        width: 40px;
        height: 40px;
        justify-content: center;
        gap: 0;
        border-radius: 8px;
    }
    .nav-login-label { display: none; }
    .nav-login .nav-ico { width: 18px; height: 18px; flex-basis: 18px; opacity: 1; }
    .nav-actions .btn-sm {
        height: 36px;
        padding: 0 10px;
        font-size: 12px;
        gap: 0;
    }
    .nav-actions .btn-sm .nav-ico { display: none; }
    .nav-toggle { margin-right: -4px; }
    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 64px; left: 0; right: 0; bottom: 0;
        padding: 20px 24px 40px;
        background: rgba(10,10,11,0.97);
        gap: 0;
        transform: translateX(100%);
        transition: transform 0.28s var(--ease);
        z-index: 99;
        overflow-y: auto;
    }
    body.menu-open .nav-links { transform: none; }
    .nav-links a {
        display: block;
        font-size: 18px;
        padding: 16px 0;
        border-bottom: 1px solid var(--line);
        color: var(--t1);
        min-height: 48px;
    }
    .nav-links a.active::after { display: none; }
    .container, .nav-inner { padding-left: 16px; padding-right: 16px; }
    .hero { padding: 108px 0 48px; }
    .hero-title { font-size: clamp(34px, 10vw, 48px); }
    .hero-sub { font-size: 15px; }
    .hero-cta { flex-direction: column; align-items: stretch; width: 100%; }
    .hero-cta .btn { width: 100%; height: 48px; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 16px 0; }
    .stat { padding: 0 16px 4px 0; border-right: 0; border-bottom: 1px solid var(--line); }
    .stat:nth-child(odd) { padding-left: 0; }
    .stat:nth-child(-n+2) { padding-bottom: 14px; }
    .stat:nth-child(n+3) { border-bottom: 0; padding-top: 14px; padding-bottom: 0; }
    .stat:last-child { padding-right: 0; }
    .hero-visual { min-height: 0; }
    .hero-shots { height: 200px; max-width: 100%; }
    .hv-ring, .hv-ring.r2, .hv-ring.r3 { display: none; }
    .shot-back { display: none; }
    .shot-front {
        width: 100%; top: 0; left: 0;
        transform: none;
        border-radius: 8px;
    }
    .panel { grid-template-columns: 1fr; }
    .side { flex-direction: row; align-items: center; border-right: 0; border-bottom: 1px solid var(--line); }
    .side-logo { padding: 0; border: 0; margin: 0 12px 0 0; }
    .side-nav { flex-direction: row; }
    .side-user { display: none; }
    .chips { display: none; }
    .modes { grid-template-columns: 1fr; }
    .spec > div { grid-template-columns: 1fr; gap: 8px; }
    .ow-deck, .ow-window { width: 100%; transform: none; }
    .ow-ghost { display: none; }
    .ow-stage { padding: 16px 0 24px; perspective: none; }
    .ow-stage:hover .ow-deck { transform: none; }
    .extra-grid { grid-template-columns: 1fr; }
    .plans { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
    .q-card { flex-basis: 280px; }
    .fgrid { grid-template-columns: 1fr; gap: 28px; }
    .fbase { flex-direction: column; gap: 14px; align-items: flex-start; }
    .fseo { text-align: left; max-width: none; }
    .pay-split { width: 100%; height: 1px; background: linear-gradient(90deg, transparent, #d81b38, transparent); }
    .pay-board { padding: 14px 12px; gap: 12px; }
    .pay-chip { height: 36px; }
    .cta { padding: 72px 0; text-align: left; }
    .cta-title { font-size: clamp(32px, 9vw, 44px); }
    .cta .btn { width: 100%; }
    .features, .arsenal, .extras, .pricing, .quotes, .faq { padding: 72px 0; }
    .page-hero { padding: 112px 0 12px; }
    .auth-page { padding: 112px 0 64px; }
    .fp-block { padding: 56px 0; }
    .sec-head { margin-bottom: 32px; }
    body.menu-open { overflow: hidden; }
}
@media (max-width: 420px) {
    .btn-sm { padding: 0 12px; }
    .stat b { font-size: 22px; }
    .nav-actions .btn-primary span,
    .nav-actions .btn-primary { font-size: 11.5px; }
    .nav-actions .btn-sm { padding: 0 9px; min-width: 0; }
}

/* ─────────── features page ─────────── */
.page-hero { padding: 148px 0 28px; }
.page-title {
    font-family: var(--display);
    font-size: clamp(40px, 5.4vw, 64px);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.05;
}
.page-hero .lede { max-width: 520px; }
.fp-block { padding: 72px 0; border-top: 1px solid var(--line); }
.fp-kicker {
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--t3); margin-bottom: 14px;
}
.fp-h3 {
    font-size: 13px; font-weight: 600;
    color: var(--t2); margin: 28px 0 12px;
}
.wchips {
    display: flex; flex-wrap: wrap; gap: 8px;
}
.wchips span {
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--bg-2);
    font-size: 13px; color: var(--t2);
}
.fp-note {
    margin-top: 28px; padding-top: 22px;
    border-top: 1px solid var(--line);
    font-size: 14.5px; color: var(--t2); line-height: 1.7;
}

/* ─────────── legal pages ─────────── */
.legal-tabs {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-top: 28px;
}
.legal-tabs a {
    padding: 8px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--bg-2);
    font-size: 13px; color: var(--t2);
}
.legal-tabs a:hover { color: var(--t1); border-color: var(--line-2); }
.legal-tabs a.is-on {
    color: var(--t1);
    border-color: color-mix(in srgb, var(--acc) 55%, var(--line));
    background: color-mix(in srgb, var(--acc) 10%, var(--bg-2));
}
.page-hero .lede.wide { max-width: 640px; }
.legal {
    max-width: 760px;
    padding-bottom: 24px;
}
.legal-meta {
    font-size: 13px;
    color: var(--t3);
    margin-bottom: 8px;
}
.legal h2 {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin: 36px 0 12px;
}
.legal p {
    font-size: 15px;
    color: var(--t2);
    line-height: 1.7;
}
.legal p + p { margin-top: 12px; }
.legal ul {
    list-style: disc;
    margin: 12px 0 4px 1.2em;
}
.legal li {
    font-size: 15px;
    color: var(--t2);
    line-height: 1.7;
    margin: 6px 0;
}
.legal a {
    color: var(--t1);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.legal a:hover { color: var(--acc); }
.legal .legal-note {
    margin-top: 40px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    font-size: 13.5px;
    color: var(--t3);
}

/* ─────────── account ─────────── */
.auth-page { padding: 148px 0 96px; }
.auth-boot {
    min-height: 36vh;
    display: grid;
    place-items: center;
}
.auth-boot[hidden] { display: none !important; }
.auth-boot-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--t3);
    animation: auth-boot-dot 1.05s ease-in-out infinite;
}
@keyframes auth-boot-dot {
    0%, 100% { opacity: 0.18; }
    50% { opacity: 0.9; }
}
html.has-sess #authBoot { display: none !important; }
html.has-sess #authGate { display: none !important; }
html.has-sess #authDash { display: grid !important; }
.auth-shell {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
    max-width: 1060px;
}
.auth-shell[hidden] { display: none !important; }
.auth-shell-copy .page-title { margin-bottom: 16px; }
.auth-shell-copy .lede { max-width: 520px; margin-bottom: 28px; }
.auth-perks {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 480px;
}
.auth-perks li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    color: var(--t2);
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: var(--r);
    background: color-mix(in srgb, var(--bg-2) 80%, transparent);
}
.auth-perk-icon {
    flex-shrink: 0;
    width: 36px; height: 36px;
    display: grid; place-items: center;
    border-radius: 8px;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--acc);
    background: var(--acc-dim);
    border: 1px solid color-mix(in srgb, var(--acc) 25%, var(--line));
}
.auth-card {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: linear-gradient(165deg, var(--bg-2), var(--bg-3));
    padding: 28px 28px 32px;
    box-shadow: 0 28px 60px -32px rgba(0,0,0,0.65);
}
.auth-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 24px;
}
.auth-tabs button {
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--bg);
    color: var(--t2);
    font-size: 13.5px;
    font-weight: 500;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.auth-tabs button:hover { color: var(--t1); border-color: var(--line-2); }
.auth-tabs button.is-on {
    color: var(--t1);
    border-color: color-mix(in srgb, var(--acc) 55%, var(--line));
    background: color-mix(in srgb, var(--acc) 10%, var(--bg));
}
.auth-panel { display: none; }
.auth-panel.is-on { display: block; }
.field { margin-bottom: 14px; }
.field-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 7px;
}
.field-head label { margin-bottom: 0; }
.auth-tabs.is-off { display: none; }
.auth-lead {
    margin: 0 0 18px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--t2);
}
.field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--t2);
    margin-bottom: 7px;
}
.field input {
    width: 100%;
    height: 44px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--bg);
    color: var(--t1);
    font: inherit;
    transition: border-color 0.2s;
}
.field input::placeholder { color: var(--t3); }
.field input:focus {
    outline: none;
    border-color: color-mix(in srgb, var(--acc) 55%, var(--line));
}
.auth-foot {
    margin-top: 16px;
    font-size: 13px;
    color: var(--t3);
    text-align: center;
}
.auth-link {
    color: var(--t1);
    font: inherit;
    font-size: 13px;
    text-decoration: underline;
    text-underline-offset: 3px;
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
}
.auth-link:hover { color: var(--acc); }
.nav-login.active { color: var(--t1); }
.auth-err {
    margin: 0 0 12px;
    padding: 10px 12px;
    font-size: 13px;
    color: #ffb4ae;
    background: color-mix(in srgb, var(--acc) 14%, var(--bg));
    border: 1px solid color-mix(in srgb, var(--acc) 35%, var(--line));
    border-radius: 8px;
}
.auth-ok {
    margin: 0 0 12px;
    padding: 10px 12px;
    font-size: 13px;
    color: color-mix(in srgb, var(--green) 40%, #fff);
    background: color-mix(in srgb, var(--green) 12%, var(--bg));
    border: 1px solid color-mix(in srgb, var(--green) 30%, var(--line));
    border-radius: 8px;
}
.auth-err[hidden], .auth-ok[hidden] { display: none; }
.btn:disabled { opacity: 0.65; cursor: not-allowed; }

/* customer panel */
.panel-wrap {
    display: none;
    grid-template-columns: 260px 1fr;
    gap: 28px;
    align-items: start;
    max-width: 1100px;
}
.panel-wrap[hidden] { display: none !important; }
.panel-wrap.is-on { display: grid; }
.panel-side {
    position: sticky;
    top: 88px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--bg-2);
    padding: 20px 16px;
}
.panel-user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 10px 18px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 12px;
}
.panel-avatar {
    width: 42px; height: 42px;
    border-radius: 10px;
    display: grid; place-items: center;
    font-family: var(--display);
    font-weight: 700;
    font-size: 17px;
    color: var(--acc);
    background: var(--acc-dim);
    border: 1px solid color-mix(in srgb, var(--acc) 30%, var(--line));
}
.panel-user-name {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.01em;
}
.panel-user-email {
    font-size: 12px;
    color: var(--t3);
    word-break: break-all;
}
.panel-nav { display: flex; flex-direction: column; gap: 4px; }
.panel-nav-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 11px 12px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--t2);
    text-align: left;
    transition: background 0.2s, color 0.2s;
}
.panel-nav-btn svg { width: 18px; height: 18px; flex-shrink: 0; opacity: 0.75; }
.panel-nav-btn:hover { background: rgba(255,255,255,0.04); color: var(--t1); }
.panel-nav-btn.is-on {
    color: var(--t1);
    background: color-mix(in srgb, var(--acc) 12%, var(--bg));
    box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--acc) 35%, var(--line));
}
.panel-nav-btn.is-on svg { opacity: 1; color: var(--acc); }
.panel-nav-btn[hidden],
.panel-card[hidden] { display: none !important; }
.panel-logout {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin-top: 12px;
    padding: 11px 12px;
    border-radius: 8px;
    font-size: 13px;
    color: var(--t3);
    border-top: 1px solid var(--line);
    padding-top: 16px;
    transition: color 0.2s;
}
.panel-logout svg { width: 16px; height: 16px; }
.panel-logout:hover { color: var(--acc); }
.panel-main { min-width: 0; }
.panel-view { display: none; }
.panel-view.is-on { display: block; }
.panel-head { margin-bottom: 28px; }
.panel-head .lede { max-width: 560px; }
.panel-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}
.panel-stat {
    border: 1px solid var(--line);
    border-radius: var(--r);
    background: var(--bg-2);
    padding: 16px 18px;
}
.panel-stat-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--t3);
    margin-bottom: 8px;
}
.panel-stat strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.01em;
    word-break: break-word;
}
.panel-stat-ok strong {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--green);
}
.license-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: var(--r);
    background: var(--bg-2);
}
.license-bar[hidden] { display: none !important; }
.license-bar-copy { min-width: 0; flex: 1; }
.license-remain {
    flex-shrink: 0;
    text-align: right;
    min-width: 170px;
}
.license-remain[hidden] { display: none !important; }
.license-countdown {
    display: block;
    margin-top: 8px;
    font-family: var(--mono);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--t1);
    font-variant-numeric: tabular-nums;
}
.license-countdown.is-expired { color: #ffb4ae; }
.license-countdown.is-lifetime { color: var(--green); letter-spacing: 0.04em; }
.license-key {
    display: block;
    margin-top: 8px;
    font-family: var(--mono);
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--t1);
    word-break: break-all;
    user-select: none;
    transition: filter 0.25s var(--ease);
}
.license-key.is-blurred {
    filter: blur(5.5px);
    cursor: pointer;
}
.license-key:not(.is-blurred) {
    user-select: text;
    filter: none;
}
.panel-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.panel-card {
    border: 1px solid var(--line);
    border-radius: var(--r);
    background: var(--bg-2);
    padding: 22px 22px 24px;
    transition: border-color 0.25s, transform 0.25s var(--ease);
}
.panel-card:hover {
    border-color: var(--line-2);
    transform: translateY(-2px);
}
.panel-card-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: grid; place-items: center;
    margin-bottom: 14px;
    background: var(--acc-dim);
    border: 1px solid color-mix(in srgb, var(--acc) 25%, var(--line));
    color: var(--acc);
}
.panel-card-icon svg { width: 20px; height: 20px; }
.panel-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.panel-card p { font-size: 13.5px; color: var(--t2); line-height: 1.65; margin-bottom: 16px; }
.settings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.settings-card {
    border: 1px solid var(--line);
    border-radius: var(--r);
    background: var(--bg-2);
    padding: 24px;
}
.settings-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.settings-card > p { font-size: 13.5px; color: var(--t2); margin-bottom: 20px; line-height: 1.6; }
.settings-form .btn { margin-top: 4px; }
.guide-steps { display: flex; flex-direction: column; gap: 12px; }
.guide-step {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 18px;
    align-items: start;
    padding: 20px 22px;
    border: 1px solid var(--line);
    border-radius: var(--r);
    background: var(--bg-2);
}
.guide-num {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 700;
    color: var(--acc);
    opacity: 0.85;
    line-height: 1;
    padding-top: 2px;
}
.guide-step h3 { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.guide-step p { font-size: 13.5px; color: var(--t2); line-height: 1.7; }
.guide-step kbd {
    display: inline-block;
    padding: 2px 7px;
    border-radius: 5px;
    font-size: 12px;
    font-family: var(--mono);
    background: var(--bg);
    border: 1px solid var(--line-2);
    color: var(--t1);
}

@media (max-width: 1024px) {
    .auth-shell { grid-template-columns: 1fr; gap: 32px; max-width: 480px; }
    .auth-perks { max-width: none; }
    .panel-wrap { grid-template-columns: 1fr; }
    .panel-side { position: static; }
    .panel-stats { grid-template-columns: 1fr 1fr; }
    .panel-cards { grid-template-columns: 1fr; }
    .settings-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
    .auth-page { padding: 112px 0 64px; }
    .panel-stats { grid-template-columns: 1fr; }
    .guide-step { grid-template-columns: 1fr; gap: 8px; }
    .license-bar { flex-wrap: wrap; }
    .license-remain { text-align: left; width: 100%; min-width: 0; }
}

/* ─────────── key modal ─────────── */
body.modal-open { overflow: hidden; }
.key-modal {
    position: fixed; inset: 0; z-index: 3000;
    display: grid; place-items: center;
    padding: 24px;
}
.key-modal[hidden] { display: none !important; }
.key-modal-backdrop {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.72);
    backdrop-filter: blur(6px);
}
.key-modal-card {
    position: relative; z-index: 1;
    width: min(440px, 100%);
    border: 1px solid var(--line);
    border-radius: 12px;
    background: linear-gradient(165deg, var(--bg-2), var(--bg-3));
    padding: 28px 28px 30px;
    box-shadow: 0 32px 80px -28px rgba(0,0,0,0.8);
}
.key-modal-card .fp-kicker { margin-bottom: 8px; }
.key-modal-card .h2 { font-size: 28px; margin-bottom: 10px; }
.key-modal-card .lede { margin-bottom: 22px; font-size: 14px; }
.key-modal-x {
    position: absolute; top: 14px; right: 16px;
    width: 36px; height: 36px;
    font-size: 24px; line-height: 1;
    color: var(--t3);
    border-radius: 8px;
}
.key-modal-x:hover { color: var(--t1); background: rgba(255,255,255,0.05); }

html.intro-on { overflow: hidden; }
html.intro-skip { overflow: auto; }
html.intro-skip .intro { display: none !important; }
.intro {
    position: fixed;
    inset: 0;
    z-index: 200000;
    display: grid;
    place-items: center;
    background: #0a0a0b;
}
.intro.is-done {
    animation: introFade 0.4s ease forwards;
    pointer-events: none;
}
@keyframes introFade {
    to { opacity: 0; visibility: hidden; }
}
.intro-in {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.intro-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
    animation: introLogo 1.1s var(--ease) both;
}
.intro-line {
    display: block;
    width: 48px;
    height: 1px;
    background: rgba(255,255,255,0.55);
    transform: scaleX(0);
    transform-origin: center;
    animation: introLine 0.7s 0.28s var(--ease) forwards;
}
@keyframes introLogo {
    0% {
        opacity: 0;
        transform: translateY(12px) scale(0.88);
        filter: blur(8px);
    }
    55% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}
@keyframes introLine {
    to { transform: scaleX(1); }
}

html.co-open,
html.co-open body {
    overflow: hidden !important;
    scroll-behavior: auto !important;
    overscroll-behavior: none;
}
.co-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: grid;
    place-items: center;
    padding: 20px;
}
.co-modal[hidden] { display: none !important; }
.co-modal-bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
}
.co-modal-box {
    position: relative;
    z-index: 1;
    width: min(32rem, 98vw);
    border-radius: 12px;
    overflow: hidden;
    background: #141414;
    box-shadow: 0 32px 80px -20px rgba(0, 0, 0, 0.85);
    border: 1px solid rgba(255,255,255,0.08);
}
.co-modal-x {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: grid;
    place-items: center;
}
.co-modal-x:hover { background: rgba(0, 0, 0, 0.75); }
.co-modal-frame {
    display: block;
    width: 100%;
    height: min(32rem, 90vh);
    border: 0;
    background: #141414;
}
.co-modal-fb {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px 16px 16px;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    background: linear-gradient(transparent, #141414 40%);
}
.co-modal-fb p { margin-bottom: 10px; }
@media (max-width: 520px) {
    .co-modal { padding: 0; }
    .co-modal-box {
        width: 100%;
        border-radius: 0;
        height: 100vh;
    }
    .co-modal-frame { height: 100vh; }
}

/* ─────────── 404 ─────────── */
.err404-body { min-height: 100vh; }
.err404 {
    position: relative; z-index: 1;
    min-height: 100vh;
    display: grid;
    place-content: center;
    justify-items: center;
    text-align: center;
    gap: 18px;
    padding: 48px 24px 64px;
}
.err404-brand {
    margin-bottom: 8px;
    opacity: 0;
    animation: errIn 0.7s var(--ease) 0.05s forwards;
}
.err404-brand span {
    font-family: var(--display);
    font-weight: 600;
    font-size: 18px;
    letter-spacing: -0.02em;
}
.err404-brand i { font-style: normal; color: var(--t3); }
.err404-visual {
    position: relative;
    width: min(520px, 92vw);
    height: clamp(140px, 28vw, 220px);
    display: grid;
    place-items: center;
    margin: 8px 0 4px;
    opacity: 0;
    animation: errIn 0.8s var(--ease) 0.15s forwards;
}
.err404-code {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(96px, 22vw, 168px);
    line-height: 0.9;
    letter-spacing: -0.06em;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255,255,255,0.78);
    text-shadow: 0 0 60px color-mix(in srgb, var(--acc) 22%, transparent);
}
.err404-ring {
    position: absolute;
    inset: 12% 18%;
    border: 1px solid color-mix(in srgb, var(--acc) 45%, transparent);
    border-radius: 50%;
    transform: rotate(-18deg);
    animation: errSpin 18s linear infinite;
    pointer-events: none;
}
.err404-cross {
    position: absolute;
    width: 72%;
    height: 1px;
    background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--acc) 70%, #fff), transparent);
    transform: rotate(-28deg);
    opacity: 0.85;
    animation: errPulse 2.8s var(--ease) infinite;
}
.err404-title {
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(26px, 4.2vw, 40px);
    letter-spacing: -0.03em;
    line-height: 1.15;
    max-width: 16ch;
    opacity: 0;
    animation: errIn 0.7s var(--ease) 0.28s forwards;
}
.err404-sub {
    color: var(--t2);
    font-size: 15px;
    line-height: 1.65;
    max-width: 42ch;
    opacity: 0;
    animation: errIn 0.7s var(--ease) 0.38s forwards;
}
.err404-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
    opacity: 0;
    animation: errIn 0.7s var(--ease) 0.48s forwards;
}
@keyframes errIn {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: none; }
}
@keyframes errSpin {
    to { transform: rotate(342deg); }
}
@keyframes errPulse {
    0%, 100% { opacity: 0.45; }
    50% { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
    .err404-brand, .err404-visual, .err404-title, .err404-sub, .err404-cta {
        opacity: 1; animation: none;
    }
    .err404-ring, .err404-cross { animation: none; }
}

