* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --bg: #07080f;
    --bg2: #0d0f1a;
    --surface: #111422;
    --surface2: #161928;
    --border: #1e2235;
    --border2: #262b42;
    --accent: #e8ff47;
    --accent2: #d4f032;
    --accent-dim: rgba(232, 255, 71, 0.12);
    --accent-glow: rgba(232, 255, 71, 0.06);
    --blue: #4f9eff;
    --blue2: #7ab8ff;
    --blue-dim: rgba(79, 158, 255, 0.1);
    --green: #2dff9a;
    --green-dim: rgba(45, 255, 154, 0.1);
    --red: #ff4f6a;
    --red-dim: rgba(255, 79, 106, 0.12);
    --text: #f0f2ff;
    --text2: #b8bdd8;
    --text3: #6e7494;
    --muted: #3e4460;
    --dm: 'DM Sans', sans-serif;
    --serif: 'Instrument Serif', serif;
    --mono: 'DM Mono', monospace;
    --max: 1100px;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--dm);
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
::selection {
    background: rgba(232, 255, 71, 0.2);
}
::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
    background: var(--bg2);
}
::-webkit-scrollbar-thumb {
    background: var(--border2);
    border-radius: 5px;
}
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: radial-gradient(ellipse 900px 600px at 10% 0%, rgba(79, 158, 255, 0.05) 0%, transparent 60%), radial-gradient(ellipse 600px 500px at 90% 100%, rgba(232, 255, 71, 0.03) 0%, transparent 55%);
}
.grid-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.022;
    background-image: linear-gradient(var(--border2) 1px, transparent 1px), linear-gradient(90deg, var(--border2) 1px, transparent 1px);
    background-size: 40px 40px;
}
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 60px;
    display: flex;
    align-items: center;
    background: rgba(7, 8, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0 clamp(16px, 4vw, 60px);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.logo-badge {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--mono);
    font-size: 0.72rem;
    font-weight: 500;
    color: #07080f;
}
.logo-name {
    font-family: var(--mono);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    letter-spacing: -0.3px;
}
.logo-name span {
    color: var(--text3);
}
.nav-links {
    display: flex;
    gap: 2px;
    align-items: center;
}
.nav-link {
    font-family: var(--mono);
    font-size: 0.75rem;
    color: var(--text3);
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 6px;
    transition: .15s;
}
.nav-link:hover {
    color: var(--text);
    background: var(--surface);
}
.nav-cta {
    font-family: var(--mono);
    font-size: 0.75rem;
    font-weight: 500;
    color: #07080f;
    background: var(--accent);
    padding: 7px 16px;
    border-radius: 6px;
    text-decoration: none;
    margin-left: 8px;
    transition: .15s;
}
.nav-cta:hover {
    background: var(--accent2);
}
@media(max-width:768px) {
    .nav-links .nav-link { display: none; }
}
.page {
    position: relative;
    z-index: 1;
    padding-top: 60px;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--mono);
    font-size: 0.68rem;
    color: var(--text3);
    padding: 28px clamp(16px, 4vw, 60px) 0;
    max-width: calc(var(--max) + 120px);
    margin: 0 auto;
}
.breadcrumb a {
    color: var(--text3);
    text-decoration: none;
}
.breadcrumb a:hover {
    color: var(--accent);
}
.breadcrumb .sep {
    color: var(--muted);
}
.hero {
    padding: 36px clamp(16px, 4vw, 60px) 52px;
    max-width: calc(var(--max) + 120px);
    margin: 0 auto;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-dim);
    border: 1px solid rgba(232, 255, 71, 0.2);
    padding: 5px 14px;
    border-radius: 100px;
    font-family: var(--mono);
    font-size: 0.7rem;
    color: var(--accent);
    margin-bottom: 22px;
}
.live-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
h1 {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.05;
    color: var(--text);
    margin-bottom: 14px;
}
h1 em {
    font-style: normal;
    color: var(--accent);
}
.hero-sub {
    font-size: 1rem;
    color: var(--text2);
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: 28px;
    font-weight: 300;
}
.badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.badge {
    font-family: var(--mono);
    font-size: 0.62rem;
    padding: 4px 10px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.b-y {
    background: var(--accent-dim);
    color: var(--accent);
    border: 1px solid rgba(232, 255, 71, 0.2);
}
.b-b {
    background: var(--blue-dim);
    color: var(--blue2);
    border: 1px solid rgba(79, 158, 255, 0.2);
}
.b-g {
    background: var(--green-dim);
    color: var(--green);
    border: 1px solid rgba(45, 255, 154, 0.2);
}
.dl-card {
    background: var(--surface);
    border: 1px solid var(--border2);
    border-radius: 20px;
    padding: 28px;
    max-width: 700px;
    position: relative;
    overflow: hidden;
}
.dl-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-glow), transparent 50%);
    pointer-events: none;
}
.dl-lbl {
    font-family: var(--mono);
    font-size: 0.68rem;
    color: var(--text3);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 7px;
}
.g-dot {
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
.dl-form {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
}
.dl-input {
    flex: 1;
    padding: 12px 15px;
    background: var(--bg2);
    border: 1px solid var(--border2);
    border-radius: 10px;
    font-family: var(--mono);
    font-size: 0.8rem;
    color: var(--text);
    outline: none;
    transition: .2s;
}
.dl-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-dim);
}
.dl-input::placeholder {
    color: var(--text3);
}
.dl-input.err {
    border-color: var(--red);
}
.dl-btn {
    padding: 12px 22px;
    background: var(--accent);
    border: none;
    border-radius: 10px;
    color: #07080f;
    font-family: var(--mono);
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: .2s;
    white-space: nowrap;
    flex-shrink: 0;
}
.dl-btn:hover:not(:disabled) {
    background: var(--accent2);
    transform: translateY(-1px);
}
.dl-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
@media(max-width:540px) {
    .dl-form { flex-direction: column; }
}
.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.chip {
    font-family: var(--mono);
    font-size: 0.63rem;
    padding: 4px 10px;
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 5px;
    color: var(--text3);
}
.spinner-wrap {
    display: none;
    padding: 20px 0;
    text-align: center;
}
.spinner {
    width: 26px;
    height: 26px;
    border: 2px solid var(--border2);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 8px;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
.spinner-lbl {
    font-family: var(--mono);
    font-size: 0.72rem;
    color: var(--text3);
}
.msg {
    display: none;
    padding: 11px 14px;
    border-radius: 8px;
    margin-top: 12px;
    font-family: var(--mono);
    font-size: 0.74rem;
    line-height: 1.5;
}
.msg-err {
    background: var(--red-dim);
    border: 1px solid rgba(255, 79, 106, 0.3);
    color: #fca5a5;
}
.msg-ok {
    background: var(--green-dim);
    border: 1px solid rgba(45, 255, 154, 0.25);
    color: var(--green);
}
.msg-info {
    background: var(--blue-dim);
    border: 1px solid rgba(79, 158, 255, 0.25);
    color: var(--blue2);
}
.results-box {
    display: none;
    background: var(--bg2);
    border: 1px solid var(--border2);
    border-radius: 14px;
    padding: 20px;
    margin-top: 16px;
}
.results-hdr {
    font-family: var(--mono);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--green);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.media-title {
    font-size: 0.85rem;
    color: var(--text2);
    margin-bottom: 12px;
    line-height: 1.5;
}
.media-platform {
    font-family: var(--mono);
    font-size: 0.62rem;
    color: var(--text3);
    margin-bottom: 12px;
}
.media-video {
    width: 100%;
    max-height: 300px;
    border-radius: 10px;
    margin-bottom: 14px;
    display: block;
    background: #000;
}
.media-audio {
    width: 100%;
    margin-bottom: 14px;
    border-radius: 8px;
    filter: invert(0.9) hue-rotate(180deg);
}
.media-thumb {
    width: 100%;
    max-height: 220px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 14px;
    display: block;
}
.dl-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.dl-btn-link {
    background: var(--green-dim);
    border: 1px solid rgba(45, 255, 154, 0.25);
    color: var(--green);
    padding: 9px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-family: var(--mono);
    font-size: 0.72rem;
    font-weight: 500;
    transition: .2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.dl-btn-link:hover {
    background: rgba(45, 255, 154, 0.2);
    transform: translateY(-1px);
}
.dl-btn-secondary {
    background: var(--blue-dim);
    border: 1px solid rgba(79, 158, 255, 0.2);
    color: var(--blue2);
}
.dl-btn-secondary:hover {
    background: rgba(79, 158, 255, 0.18);
}
hr {
    border: none;
    border-top: 1px solid var(--border);
}
.sec {
    padding: 68px clamp(16px, 4vw, 60px);
    max-width: calc(var(--max) + 120px);
    margin: 0 auto;
}
.sec-label {
    font-family: var(--mono);
    font-size: 0.68rem;
    color: var(--accent);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.sec-title {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 14px;
}
.sec-sub {
    font-size: 0.92rem;
    color: var(--text2);
    max-width: 500px;
    line-height: 1.65;
    margin-bottom: 40px;
    font-weight: 300;
}
.plat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}
.plat-card {
    background: var(--surface);
    padding: 24px;
    position: relative;
    overflow: hidden;
    transition: .2s;
}
.plat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-glow), transparent 60%);
    opacity: 0;
    transition: .3s;
}
.plat-card:hover {
    background: var(--surface2);
}
.plat-card:hover::after {
    opacity: 1;
}
.pc-icon {
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.pc-name {
    font-family: var(--mono);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 6px;
}
.pc-desc {
    font-size: 0.8rem;
    color: var(--text3);
    line-height: 1.6;
}
.pc-tag {
    font-family: var(--mono);
    font-size: 0.58rem;
    padding: 2px 8px;
    border-radius: 4px;
    background: var(--accent-dim);
    color: var(--accent);
    border: 1px solid rgba(232, 255, 71, 0.2);
    display: inline-block;
    margin-top: 10px;
}
.feat-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 24px;
    padding: 40px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
}
@media(max-width:580px) {
    .feat-strip { padding: 22px; grid-template-columns: 1fr 1fr; }
}
.fi-icon {
    font-size: 1.2rem;
    margin-bottom: 9px;
}
.fi-title {
    font-family: var(--mono);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 5px;
}
.fi-desc {
    font-size: 0.76rem;
    color: var(--text3);
    line-height: 1.55;
}
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 14px;
}
.step {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 22px;
    text-align: center;
}
.step-n {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    background: var(--accent-dim);
    border: 1px solid rgba(232, 255, 71, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--mono);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--accent);
    margin: 0 auto 10px;
}
.step-t {
    font-family: var(--mono);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 5px;
}
.step-d {
    font-size: 0.76rem;
    color: var(--text3);
    line-height: 1.5;
}
.code-wrap {
    background: var(--surface);
    border: 1px solid var(--border2);
    border-radius: 12px;
    overflow: hidden;
    margin: 14px 0;
}
.code-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 16px;
    background: var(--surface2);
    border-bottom: 1px solid var(--border);
}
.code-dots {
    display: flex;
    gap: 5px;
}
.code-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.code-dot:nth-child(1) { background: #ff5f57; }
.code-dot:nth-child(2) { background: #febc2e; }
.code-dot:nth-child(3) { background: #28c840; }
.code-lbl {
    font-family: var(--mono);
    font-size: 0.63rem;
    color: var(--text3);
}
.code-copy {
    font-family: var(--mono);
    font-size: 0.63rem;
    color: var(--text3);
    background: none;
    border: none;
    cursor: pointer;
    padding: 3px 8px;
    border-radius: 4px;
    transition: .15s;
}
.code-copy:hover {
    background: var(--border);
    color: var(--text);
}
.code-body {
    padding: 18px 22px;
    font-family: var(--mono);
    font-size: 0.76rem;
    line-height: 1.75;
    overflow-x: auto;
    white-space: pre;
}
.ck { color: var(--blue2); }
.cv { color: var(--accent); }
.cs { color: var(--green); }
.cm { color: #c792ea; }
.cc { color: var(--text3); }
.cu { color: var(--blue); }
.pt {
    width: 100%;
    border-collapse: collapse;
    margin: 14px 0;
}
.pt th {
    text-align: left;
    font-family: var(--mono);
    font-size: 0.62rem;
    color: var(--text3);
    padding: 7px 11px;
    border-bottom: 1px solid var(--border2);
    text-transform: uppercase;
    letter-spacing: .05em;
}
.pt td {
    padding: 9px 11px;
    border-bottom: 1px solid var(--border);
    font-size: 0.78rem;
    vertical-align: top;
}
.pt tr:last-child td {
    border-bottom: none;
}
.pn {
    font-family: var(--mono);
    color: var(--accent);
}
.ptype {
    font-family: var(--mono);
    color: var(--blue2);
}
.pdesc {
    color: var(--text2);
}
.preq {
    font-family: var(--mono);
    font-size: 0.58rem;
    padding: 2px 7px;
    border-radius: 4px;
    background: var(--green-dim);
    color: var(--green);
}
.faq {
    display: flex;
    flex-direction: column;
    max-width: 720px;
}
details {
    border-bottom: 1px solid var(--border);
}
details:last-child {
    border-bottom: none;
}
summary {
    font-family: var(--mono);
    font-size: 0.83rem;
    font-weight: 500;
    color: var(--text);
    padding: 17px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    list-style: none;
    transition: .15s;
}
summary:hover {
    color: var(--accent);
}
summary::after {
    content: '+';
    color: var(--text3);
    font-size: 1rem;
    flex-shrink: 0;
    transition: .2s;
}
details[open] summary::after {
    content: '×';
    color: var(--accent);
}
.faq-a {
    font-size: 0.83rem;
    color: var(--text3);
    line-height: 1.75;
    padding-bottom: 17px;
}
.faq-a code {
    font-family: var(--mono);
    background: var(--surface2);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.76rem;
}
.ch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 14px;
}
.ch-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px;
    transition: .2s;
}
.ch-card:hover {
    border-color: var(--border2);
    background: var(--surface2);
    transform: translateY(-2px);
}
.ch-icon {
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.ch-name {
    font-family: var(--mono);
    font-size: 0.86rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 7px;
}
.ch-desc {
    font-size: 0.78rem;
    color: var(--text3);
    line-height: 1.6;
    margin-bottom: 14px;
}
.ch-btn {
    font-family: var(--mono);
    font-size: 0.7rem;
    font-weight: 500;
    padding: 7px 14px;
    border-radius: 7px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--accent-dim);
    color: var(--accent);
    border: 1px solid rgba(232, 255, 71, 0.2);
    transition: .15s;
}
.ch-btn:hover {
    background: rgba(232, 255, 71, 0.18);
}
.legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
}
.legal-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px;
}
.legal-title {
    font-family: var(--mono);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 11px;
    padding-bottom: 9px;
    border-bottom: 1px solid var(--border);
}
.legal-text {
    font-size: 0.8rem;
    color: var(--text3);
    line-height: 1.75;
}
.legal-text a {
    color: var(--accent);
    text-decoration: none;
}
.rel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 11px;
}
.rel-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    text-decoration: none;
    transition: .2s;
    display: flex;
    align-items: center;
    gap: 11px;
}
.rel-card:hover {
    border-color: var(--border2);
    background: var(--surface2);
    transform: translateY(-2px);
}
.rel-icon {
    font-size: 1.2rem;
    width: 34px;
    height: 34px;
    background: var(--surface2);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.rel-name {
    font-family: var(--mono);
    font-size: 0.76rem;
    font-weight: 500;
    color: var(--text);
}
.rel-cat {
    font-size: 0.68rem;
    color: var(--text3);
    margin-top: 2px;
}
footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
    padding: 52px clamp(16px, 4vw, 60px) 28px;
}
.foot-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 44px;
    max-width: var(--max);
    margin-left: auto;
    margin-right: auto;
}
@media(max-width:768px) {
    .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:480px) {
    .foot-grid { grid-template-columns: 1fr; }
}
.foot-tagline {
    font-size: 0.8rem;
    color: var(--text3);
    line-height: 1.6;
    max-width: 230px;
    margin: 10px 0 14px;
}
.foot-contact {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.foot-contact a {
    font-family: var(--mono);
    font-size: 0.7rem;
    color: var(--text3);
    text-decoration: none;
    transition: .15s;
}
.foot-contact a:hover {
    color: var(--accent);
}
.foot-col-title {
    font-family: var(--mono);
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.foot-links {
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.foot-links a {
    font-size: 0.8rem;
    color: var(--text3);
    text-decoration: none;
    transition: .15s;
}
.foot-links a:hover {
    color: var(--text);
}
.foot-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    max-width: var(--max);
    margin: 0 auto;
}
.foot-copy {
    font-family: var(--mono);
    font-size: 0.68rem;
    color: var(--text3);
}
.foot-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--mono);
    font-size: 0.68rem;
    color: var(--green);
}
.st-dot {
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
.foot-legal {
    display: flex;
    gap: 14px;
}
.foot-legal a {
    font-family: var(--mono);
    font-size: 0.65rem;
    color: var(--text3);
    text-decoration: none;
}
.foot-legal a:hover {
    color: var(--text);
}
.fade {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .5s, transform .5s;
}
.fade.vis {
    opacity: 1;
    transform: none;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}
