.tabs-nav{display:flex;gap:8px;justify-content:center;margin-bottom:48px;border-bottom:1px solid var(--border);flex-wrap:wrap}
.tab-btn{background:none;border:none;font-family:inherit;font-size:16px;font-weight:600;color:var(--muted);padding:14px 20px;cursor:pointer;border-bottom:3px solid transparent;margin-bottom:-1px;transition:all .2s;white-space:nowrap}
.tab-btn.active{color:var(--ink);border-bottom-color:var(--primary)}
.tab-content{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center}
@media(max-width:880px){.tab-content{grid-template-columns:1fr;gap:32px}}
.tab-screenshot{aspect-ratio:16/10;border-radius:var(--radius);overflow:hidden;border:1px solid var(--border);box-shadow:var(--shadow-md);background:#151515;position:relative}
.tab-screenshot img,.tab-screenshot video{width:100%;height:100%;object-fit:cover;display:block}
.tab-pane{display:none}
.tab-pane.active{display:grid}
.tab-body h3{margin-bottom:16px}
.tab-body p{color:var(--text);margin-bottom:16px;font-size:16px}
.tab-body ul{list-style:none;margin-top:16px}
.tab-body li{padding-left:28px;position:relative;margin-bottom:10px;font-size:15px}
.tab-body li::before{content:"";position:absolute;left:0;top:8px;width:16px;height:16px;background:var(--accent-soft);border-radius:4px}
.tab-body li::after{content:"";position:absolute;left:4px;top:11px;width:8px;height:4px;border-left:2px solid #1f8a4d;border-bottom:2px solid #1f8a4d;transform:rotate(-45deg)}
@media(max-width:880px){
  .tabs-nav{flex-wrap:nowrap;overflow-x:auto;justify-content:flex-start;margin:0 -24px 32px;padding:0 24px;scrollbar-width:thin;-webkit-overflow-scrolling:touch;scroll-snap-type:x mandatory}
  .tab-btn{scroll-snap-align:start;font-size:15px;padding:12px 16px}
}
