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

:root {
    --bg: #050505;
    --card: #0a0a0b;
    --border: #161618;
    --border-h: #222;
    --text: #eee;
    --text2: #888;
    --text3: #444;
    --white: #fff;
    --green: #22c55e;
    --red: #ef4444;
    --yellow: #eab308;
    --blue: #3b82f6;
}

html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.wrap { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(5,5,5,0.6);
    backdrop-filter: blur(24px);
}
header .wrap {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px; padding: 0 40px;
}
.logo {
    font-size: 20px; font-weight: 800; color: var(--white);
    text-decoration: none; letter-spacing: -0.5px;
    min-width: 140px;
}
.nav-links {
    display: flex; gap: 32px; list-style: none;
    position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-links a {
    font-size: 14px; color: var(--text3); text-decoration: none;
    font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--white); }
.burger {
    display: none; background: none; border: none; cursor: pointer;
    width: 32px; height: 32px; position: relative; z-index: 200;
}
.burger span {
    display: block; width: 20px; height: 2px; background: var(--text);
    border-radius: 1px; position: absolute; left: 6px;
    transition: all 0.3s;
}
.burger span:nth-child(1) { top: 9px; }
.burger span:nth-child(2) { top: 15px; }
.burger span:nth-child(3) { top: 21px; }
.burger.open span:nth-child(1) { top: 15px; transform: rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { top: 15px; transform: rotate(-45deg); }
.mobile-menu {
    display: none; position: fixed; inset: 0; z-index: 150;
    background: rgba(5,5,5,0.95); backdrop-filter: blur(24px);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    font-size: 24px; font-weight: 700; color: var(--text2);
    text-decoration: none; padding: 16px 32px; border-radius: 12px;
    transition: all 0.2s; letter-spacing: -0.5px;
}
.mobile-menu a:hover { color: var(--white); background: var(--border); }
body.menu-open { overflow: hidden; }
.user-btn {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid var(--border); background: var(--card);
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: border-color 0.2s; margin-left: 20px; flex-shrink: 0;
}
.user-btn:hover { border-color: var(--border-h); }
.user-btn svg { width: 16px; height: 16px; fill: var(--text2); }
.user-btn.logged-in { border-color: var(--green); }
.user-btn.logged-in svg { fill: var(--green); }
.btn {
    padding: 16px 36px; border-radius: 8px; font-size: 15px;
    font-weight: 700; text-decoration: none; display: inline-flex;
    align-items: center; gap: 8px; cursor: pointer; border: none;
    transition: all 0.2s; font-family: inherit; letter-spacing: -0.3px;
}
.btn-w {
    background: var(--white); color: #000;
    box-shadow: 0 0 40px rgba(255,255,255,0.08);
}
.btn-w:hover { background: #ddd; transform: translateY(-2px); box-shadow: 0 0 60px rgba(255,255,255,0.12); }
.btn-o { background: transparent; color: var(--text2); border: 1px solid var(--border); }
.btn-o:hover { border-color: var(--border-h); color: var(--text); transform: translateY(-2px); }
.ticker {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    padding: 20px 0;
    position: relative;
}
.ticker-track {
    display: flex; gap: 64px;
    animation: ticker-scroll 20s linear infinite;
    width: max-content;
}
.ticker-item {
    font-size: 14px; font-weight: 600; color: var(--text3);
    letter-spacing: 2px; text-transform: uppercase;
    white-space: nowrap;
}
@keyframes ticker-scroll {
    to { transform: translateX(-50%); }
}
section { padding: 120px 0; }
.s-label {
    font-size: 12px; font-weight: 700; letter-spacing: 3px;
    text-transform: uppercase; color: var(--text3); margin-bottom: 20px;
}
.s-title {
    font-size: 48px; font-weight: 800; letter-spacing: -2px;
    line-height: 1.1; color: var(--white); margin-bottom: 16px;
}
.s-desc {
    font-size: 18px; color: var(--text2); max-width: 560px; line-height: 1.8;
}
.s-head { margin-bottom: 64px; }
.page-hero {
    padding: 140px 0 72px;
    border-bottom: 1px solid var(--border);
}
.page-hero .s-label { margin-bottom: 16px; }
.page-hero .s-title { margin-bottom: 12px; }
.info-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
    background: var(--border); border-radius: 16px; overflow: hidden;
    margin-bottom: 64px;
}
.info-cell {
    background: var(--bg); padding: 40px 36px;
    transition: background 0.3s;
}
.info-cell:hover { background: #0a0a0b; }
.info-num {
    font-size: 48px; font-weight: 900; letter-spacing: -2px;
    color: var(--white); margin-bottom: 8px; line-height: 1;
}
.info-cell h3 {
    font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--white);
}
.info-cell p {
    font-size: 15px; color: var(--text2); line-height: 1.8;
}
.content-block { margin-bottom: 56px; }
.content-block h3 {
    font-size: 24px; font-weight: 800; color: var(--white);
    margin-bottom: 16px; letter-spacing: -0.5px;
}
.content-block p, .content-block li {
    font-size: 16px; color: var(--text2); line-height: 1.9;
}
.content-block ul { list-style: none; padding: 0; }
.content-block li {
    padding: 12px 0; padding-left: 24px; position: relative;
    border-bottom: 1px solid var(--border);
}
.content-block li:last-child { border-bottom: none; }
.content-block li::before {
    content: ''; position: absolute; left: 0; top: 20px;
    width: 8px; height: 8px; border-radius: 50%;
    border: 2px solid var(--text3);
}
.content-block li strong { color: var(--white); }
.cmp-list { display: flex; flex-direction: column; gap: 8px; }
.cmp-card {
    border: 1px solid var(--border); border-radius: 12px;
    overflow: hidden; transition: border-color 0.2s; cursor: pointer;
}
.cmp-card:hover { border-color: var(--border-h); }
.cmp-card.active { border-color: #333; }
.cmp-card.card-hy2 { border-color: rgba(34,197,94,0.25); }
.cmp-card.card-hy2:hover, .cmp-card.card-hy2.active { border-color: rgba(34,197,94,0.5); }
.cmp-row {
    display: grid; grid-template-columns: 200px 1fr 1fr 1fr 1fr;
    align-items: center; padding: 20px 24px; gap: 12px;
}
.cmp-name { font-size: 15px; font-weight: 700; color: var(--white); }
.cmp-card.card-dead .cmp-name { color: var(--text2); }
.tag {
    display: inline-block; padding: 4px 12px; border-radius: 6px;
    font-size: 12px; font-weight: 700; text-align: center;
}
.tag-g { background: rgba(34,197,94,0.1); color: var(--green); }
.tag-y { background: rgba(234,179,8,0.1); color: var(--yellow); }
.tag-r { background: rgba(239,68,68,0.1); color: var(--red); }
.cmp-details {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
    border-top: 0px solid var(--border);
}
.cmp-card.active .cmp-details {
    max-height: 300px; padding: 20px 24px;
    border-top: 1px solid var(--border);
}
.cmp-details p {
    font-size: 14px; color: var(--text2); line-height: 1.8;
}
.cmp-details .detail-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 12px;
}
.detail-item span {
    display: block; font-size: 11px; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; color: var(--text3); margin-bottom: 4px;
}
.detail-item strong {
    font-size: 14px; color: var(--text);
}
.cmp-head {
    display: grid; grid-template-columns: 200px 1fr 1fr 1fr 1fr;
    padding: 12px 24px; gap: 12px; margin-bottom: 4px;
}
.cmp-head div {
    font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--text3);
}
.cmp-arrow {
    position: absolute; right: 24px; top: 50%; transform: translateY(-50%);
    color: var(--text3); font-size: 14px;
    transition: transform 0.3s;
}
.cmp-card.active .cmp-arrow { transform: translateY(-50%) rotate(180deg); }
.cmp-row { position: relative; }
.speed-bar {
    height: 4px; border-radius: 2px; background: var(--border);
    overflow: hidden; margin-top: 6px;
}
.speed-fill {
    height: 100%; border-radius: 2px;
    transition: width 0.8s ease;
    width: 0;
}
.cmp-card.visible .speed-fill { width: var(--speed); }
.speed-fill.fill-g { background: var(--green); }
.speed-fill.fill-y { background: var(--yellow); }
.speed-fill.fill-r { background: var(--red); }
.app-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.app-card {
    border: 1px solid var(--border); border-radius: 16px;
    padding: 32px 28px; transition: all 0.3s;
}
.app-card:hover { border-color: var(--border-h); transform: translateY(-4px); }
.app-plat {
    font-size: 12px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: var(--text3); margin-bottom: 12px;
}
.app-card h3 {
    font-size: 22px; font-weight: 800; color: var(--white);
    margin-bottom: 6px; letter-spacing: -0.5px;
}
.app-sub { font-size: 14px; color: var(--text3); margin-bottom: 24px; }
.app-list { list-style: none; padding: 0; }
.app-list li {
    font-size: 15px; color: var(--text2); padding: 12px 0;
    border-top: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center;
}
.app-list a {
    color: var(--text3); text-decoration: none; font-size: 13px;
    font-weight: 600; transition: color 0.2s;
}
.app-list a:hover { color: var(--white); }
.connect-box {
    border: 1px solid var(--border); border-radius: 20px;
    padding: 64px; text-align: center;
    position: relative; overflow: hidden;
}
.connect-box::before {
    content: ''; position: absolute; top: -1px; left: 50%;
    transform: translateX(-50%); width: 200px; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}
.connect-box h3 {
    font-size: 36px; font-weight: 900; color: var(--white);
    margin-bottom: 12px; letter-spacing: -1px;
}
.connect-box > p {
    font-size: 16px; color: var(--text3); margin-bottom: 36px;
}
.sub-link-box {
    display: flex; align-items: center; max-width: 600px;
    margin: 0 auto; background: #0a0a0b;
    border: 1px solid var(--border); border-radius: 10px;
    padding: 6px 6px 6px 20px;
}
.sub-link-box input {
    flex: 1; background: none; border: none; color: var(--text2);
    font-family: 'JetBrains Mono', monospace; font-size: 13px;
    outline: none; min-width: 0;
}
.sub-link-box .btn-copy {
    padding: 12px 24px; border-radius: 8px; background: var(--white);
    color: #000; border: none; font-weight: 700; font-size: 14px;
    cursor: pointer; transition: all 0.2s; white-space: nowrap;
    font-family: 'Inter', sans-serif;
}
.sub-link-box .btn-copy:hover { background: #ddd; }
.format-row {
    margin-top: 20px; font-size: 13px; color: var(--text3);
}
.format-row span {
    cursor: pointer; color: var(--text2);
    border-bottom: 1px dashed var(--text3); transition: color 0.2s;
}
.format-row span:hover { color: var(--white); }
.counter { display: inline-block; }
footer {
    border-top: 1px solid var(--border);
    padding: 32px 0; font-size: 13px; color: var(--text3); text-align: center;
}
.modal-overlay {
    display: flex; position: fixed; inset: 0; z-index: 200;
    background: rgba(0,0,0,0); backdrop-filter: blur(0px);
    align-items: center; justify-content: center; padding: 20px;
    pointer-events: none; opacity: 0;
    transition: background 0.35s, backdrop-filter 0.35s, opacity 0.35s;
}
.modal-overlay.open {
    background: rgba(0,0,0,0.8); backdrop-filter: blur(12px);
    pointer-events: all; opacity: 1;
}
.modal {
    background: var(--bg); border: none; border-radius: 0;
    width: 100%; max-width: 560px; position: relative;
    max-height: 100vh; overflow-y: auto;
    transform: translateY(16px); opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.modal-overlay.open .modal {
    transform: translateY(0); opacity: 1;
}
.modal-close {
    position: absolute; top: 28px; right: 28px; background: none; border: none;
    color: var(--text3); font-size: 24px; cursor: pointer; line-height: 1;
    transition: color 0.15s; font-family: inherit; padding: 4px;
}
.modal-close:hover { color: var(--white); }
.modal-body { padding: 56px 52px 48px; }
.modal-body h2 {
    font-size: 28px; font-weight: 700; color: var(--white);
    margin-bottom: 6px; letter-spacing: -0.8px;
}
.modal-body .modal-sub { font-size: 14px; color: var(--text3); margin-bottom: 40px; }
.modal-tabs {
    display: flex; gap: 0; margin-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.modal-tab {
    padding: 0 0 12px 0; margin-right: 28px; text-align: left; font-size: 14px; font-weight: 600;
    background: none; color: var(--text3); cursor: pointer; border: none;
    font-family: inherit; transition: color 0.2s;
    border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.modal-tab.active { color: var(--white); border-bottom-color: var(--white); }
.modal-tab:hover { color: var(--text2); }
.m-field {
    width: 100%; padding: 18px 0 14px; border-radius: 0;
    border: none; border-bottom: 1px solid rgba(255,255,255,0.08);
    background: none; color: var(--text); font-size: 15px; font-family: inherit;
    outline: none; margin-bottom: 4px; transition: border-color 0.2s;
}
.m-field:focus { border-bottom-color: rgba(255,255,255,0.3); }
.m-field::placeholder { color: rgba(255,255,255,0.2); }
.m-btn {
    width: 100%; padding: 18px; border-radius: 0; font-size: 14px;
    font-weight: 600; border: none; cursor: pointer; font-family: inherit;
    background: var(--white); color: #000; transition: all 0.15s;
    margin-top: 32px; letter-spacing: 0.3px;
}
.m-btn:hover { background: #e5e5e5; }
.m-btn:disabled { background: rgba(255,255,255,0.06); color: var(--text3); cursor: default; }
.m-err { color: var(--red); font-size: 13px; margin-bottom: 8px; margin-top: 8px; display: none; }
.m-footer { margin-top: 20px; font-size: 13px; color: var(--text3); text-align: center; }
.m-footer a { color: var(--text2); }
.dash-card {
    border: none; border-radius: 0;
    padding: 24px 0; margin-bottom: 0;
    background: none; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dash-card:last-child { margin-bottom: 0; }
.dash-label {
    font-size: 11px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: var(--text3); margin-bottom: 18px;
}
.dash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.dash-item .di-label { font-size: 12px; color: var(--text3); margin-bottom: 4px; }
.dash-item .di-value { font-size: 18px; font-weight: 700; color: var(--white); }
.dash-link-row { display: flex; gap: 8px; margin-bottom: 12px; }
.dash-link-row:last-child { margin-bottom: 0; }
.dash-link-input {
    flex: 1; padding: 13px 14px; border-radius: 8px; border: 1px solid var(--border);
    background: var(--bg); color: var(--text2); font-family: 'JetBrains Mono', monospace;
    font-size: 12px; outline: none; min-width: 0;
}
.dash-copy {
    padding: 13px 18px; border-radius: 8px; background: var(--card);
    color: var(--text2); border: 1px solid var(--border); font-size: 13px;
    font-weight: 600; cursor: pointer; font-family: inherit; transition: all 0.15s;
}
.dash-copy:hover { color: var(--white); border-color: var(--border-h); }
.sub-block {
    background: var(--bg); border: 1px solid var(--border); border-radius: 10px;
    padding: 16px 18px; cursor: pointer; transition: border-color 0.2s;
}
.sub-block:hover { border-color: var(--border-h); }
.sub-block-head {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 8px;
}
.sub-block-title { font-size: 12px; color: var(--text3); font-weight: 600; }
.sub-block-copy {
    font-size: 12px; color: var(--text3); font-weight: 600;
    transition: color 0.15s;
}
.sub-block:hover .sub-block-copy { color: var(--white); }
.sub-block-url {
    font-family: 'JetBrains Mono', monospace; font-size: 13px;
    color: var(--text2); word-break: break-all; line-height: 1.5;
}
.dash-clients { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.dash-client {
    border: 1px solid var(--border); border-radius: 10px; padding: 18px 14px;
    text-decoration: none; display: block; transition: all 0.2s; text-align: center;
}
.dash-client:hover { border-color: var(--border-h); transform: translateY(-2px); }
.dash-client .dc-plat {
    font-size: 10px; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; color: var(--text3); margin-bottom: 6px;
}
.dash-client .dc-name { font-size: 15px; font-weight: 700; color: var(--white); }
.dash-logout {
    width: 100%; padding: 14px; border-radius: 10px; font-size: 14px;
    font-weight: 600; border: 1px solid var(--border); background: none;
    color: var(--text3); cursor: pointer; font-family: inherit; margin-top: 16px;
    transition: all 0.15s;
}
.dash-logout:hover { color: var(--text); border-color: var(--border-h); }
.field-ok {
    position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
    width: 18px; height: 18px; border-radius: 50%; display: none;
    align-items: center; justify-content: center; font-size: 11px; font-weight: 700;
}
.field-ok.valid { display: flex; background: rgba(34,197,94,0.15); color: var(--green); }
.field-ok.invalid { display: flex; background: rgba(239,68,68,0.15); color: var(--red); }
.m-field.valid { border-color: rgba(34,197,94,0.3); }
.m-field.invalid { border-color: rgba(239,68,68,0.3); }
.m-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.m-btn.loading { pointer-events: none; opacity: 0.6; }
.m-btn.loading::after { content: '...'; }
.st-phases { display: flex; justify-content: center; gap: 40px; margin-bottom: 28px; }
.st-phase { text-align: center; opacity: 0.2; transition: opacity 0.3s; }
.st-phase.active { opacity: 1; }
.st-phase.done { opacity: 0.7; }
.st-dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--text3);
    margin: 0 auto 6px; transition: all 0.3s;
}
.st-phase.active .st-dot { background: var(--white); box-shadow: 0 0 8px rgba(255,255,255,0.3); }
.st-phase.done-dl .st-dot { background: var(--green); }
.st-phase.done-ul .st-dot { background: var(--blue); }
.st-ph-label {
    font-size: 11px; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; color: var(--text3);
}
.st-phase.active .st-ph-label { color: var(--white); }
.st-ph-val { font-size: 18px; font-weight: 800; color: var(--white); margin-top: 4px; min-height: 24px; }
.st-gauge { position: relative; width: 240px; height: 240px; margin: 0 auto 24px; }
.st-gauge svg { width: 100%; height: 100%; }
.st-center {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%,-50%); text-align: center;
}
.st-speed {
    font-size: 48px; font-weight: 900; color: var(--white);
    letter-spacing: -2px; line-height: 1;
}
.st-unit { font-size: 13px; color: var(--text3); margin-top: 2px; }
.st-phase-name {
    font-size: 10px; color: var(--text3); margin-top: 6px;
    font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
}
.st-prog {
    height: 3px; background: var(--border); border-radius: 2px;
    max-width: 180px; margin: 0 auto 8px; overflow: hidden;
}
.st-prog-fill {
    height: 100%; width: 0%; border-radius: 2px;
    transition: width 0.3s, background 0.3s; background: var(--white);
}
.st-status { font-size: 12px; color: var(--text3); height: 18px; margin-bottom: 24px; }
.st-results { display: none; margin-bottom: 24px; }
.st-results.show { display: block; animation: st-fadeIn 0.5s ease; }
@keyframes st-fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.st-res-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.st-res-card { border: 1px solid var(--border); border-radius: 12px; padding: 20px; text-align: center; }
.st-res-label {
    font-size: 11px; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; margin-bottom: 8px;
}
.st-res-val { font-size: 32px; font-weight: 900; color: var(--white); letter-spacing: -1px; }
.st-res-unit { font-size: 12px; color: var(--text3); }
.st-res-details { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.st-res-mini { border: 1px solid var(--border); border-radius: 8px; padding: 12px; text-align: center; }
.st-res-mini span {
    font-size: 10px; color: var(--text3); font-weight: 600;
    text-transform: uppercase; display: block; margin-bottom: 4px;
}
.st-res-mini strong { font-size: 15px; color: var(--text); }
@media (max-width: 1024px) {
    .wrap { padding: 0 24px; max-width: 100%; }
    .hero h1 { font-size: 52px; }
    .s-title { font-size: 36px; }
    .info-grid { grid-template-columns: 1fr 1fr; }
    .app-grid { grid-template-columns: 1fr 1fr; }
    .cmp-head { display: none; }
    .cmp-row {
        display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
    }
    .cmp-name { width: 100%; font-size: 17px; padding-bottom: 4px; }
    .cmp-arrow { position: static; margin-left: auto; }
}
@media (max-width: 600px) {
    .wrap { padding: 0 20px; }

    
    .burger { display: block !important; }
    .nav-links { display: none !important; }
    header .wrap { height: 56px; padding: 0 20px; }
    .logo { font-size: 20px; }

    
    .hero {
        min-height: auto;
        padding: 90px 20px 48px;
        justify-content: flex-start;
    }
    .hero-glow { display: none; }
    .hero { text-align: left; align-items: flex-start; }
    .hero-tag { font-size: 12px; letter-spacing: 2px; margin-bottom: 20px; }
    .hero h1 { font-size: 38px; letter-spacing: -1.5px; line-height: 1.1; }
    .hero-sub { font-size: 16px; margin-bottom: 36px; line-height: 1.7; }
    .hero-actions { flex-direction: column; width: 100%; gap: 12px; }
    .hero-actions .btn {
        width: 100%; justify-content: center;
        padding: 18px 24px; font-size: 16px; border-radius: 10px;
    }

    
    section { padding: 64px 0; }
    .s-label { font-size: 12px; letter-spacing: 2px; margin-bottom: 16px; }
    .s-title { font-size: 32px; letter-spacing: -1px; line-height: 1.15; }
    .s-desc { font-size: 17px; line-height: 1.7; }
    .s-head { margin-bottom: 40px; }

    
    .page-hero { padding: 100px 0 48px; }

    
    .info-grid { grid-template-columns: 1fr; gap: 1px; border-radius: 12px; }
    .info-num { font-size: 44px; }
    .info-cell { padding: 32px 24px; }
    .info-cell h3 { font-size: 18px; margin-bottom: 8px; }
    .info-cell p { font-size: 15px; line-height: 1.7; }

    
    .content-block { margin-bottom: 48px; }
    .content-block h3 { font-size: 22px; margin-bottom: 16px; }
    .content-block p { font-size: 16px; }
    .content-block li { font-size: 16px; line-height: 1.8; padding: 14px 0 14px 24px; }
    .content-block li::before { top: 22px; width: 6px; height: 6px; }
    .content-block li strong { font-size: 16px; }

    
    .cmp-head { display: none; }
    .cmp-card { border-radius: 12px; }
    .cmp-row { display: flex; flex-wrap: wrap; gap: 10px; padding: 20px; }
    .cmp-name { width: 100%; font-size: 20px; font-weight: 800; padding-right: 32px; }
    .cmp-arrow { position: absolute; right: 20px; top: 22px; font-size: 16px; }
    .tag { font-size: 13px; padding: 5px 14px; border-radius: 8px; }
    .speed-bar { display: none; }
    .cmp-details { padding: 0 20px; }
    .cmp-card.active .cmp-details { padding: 20px; }
    .cmp-details p { font-size: 15px; line-height: 1.8; }
    .cmp-details .detail-grid { grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }
    .detail-item span { font-size: 11px; }
    .detail-item strong { font-size: 15px; }

    
    .app-grid { grid-template-columns: 1fr; gap: 14px; }
    .app-card { padding: 28px 24px; border-radius: 14px; }
    .app-plat { font-size: 13px; margin-bottom: 10px; }
    .app-card h3 { font-size: 24px; margin-bottom: 4px; }
    .app-sub { font-size: 15px; margin-bottom: 20px; }
    .app-list li { font-size: 16px; padding: 14px 0; }
    .app-list a { font-size: 14px; }

    
    .connect-box { padding: 36px 20px; border-radius: 14px; }
    .connect-box h3 { font-size: 28px; margin-bottom: 10px; }
    .connect-box > p { font-size: 16px; margin-bottom: 28px; }
    .sub-link-box {
        flex-direction: column; padding: 14px; gap: 12px; border-radius: 10px;
    }
    .sub-link-box input { width: 100%; font-size: 12px; text-align: center; padding: 10px 0; }
    .sub-link-box .btn-copy { width: 100%; padding: 16px; font-size: 16px; text-align: center; border-radius: 8px; }
    .format-row { font-size: 14px; margin-top: 18px; line-height: 1.8; }
    .format-row span { font-size: 14px; }

    
    .ticker { padding: 16px 0; }
    .ticker-item { font-size: 14px; letter-spacing: 2px; }

    
    footer { padding: 28px 0; font-size: 13px; }

    
    .st-gauge { width: 200px; height: 200px; }
    .st-speed { font-size: 38px; }
    .st-phases { gap: 28px; }
    .st-ph-val { font-size: 16px; }
    .st-res-val { font-size: 26px; }

    
    .modal { max-width: 100%; border-radius: 0; max-height: 100vh; border: none; }
    .modal-body { padding: 28px 20px; }
    .modal-body h2 { font-size: 22px; }
    .modal-body .modal-sub { font-size: 14px; margin-bottom: 24px; }
    .modal-tabs { margin-bottom: 20px; }
    .modal-tab { padding: 12px; font-size: 14px; }
    .m-field { padding: 14px 16px; font-size: 14px; margin-bottom: 10px; }
    .m-btn { padding: 14px; font-size: 14px; }
    .dash-card { padding: 20px 16px; margin-bottom: 12px; border-radius: 10px; }
    .dash-grid { gap: 14px; }
    .dash-item .di-value { font-size: 16px; }
    .dash-label { font-size: 10px; margin-bottom: 14px; }
    .sub-block { padding: 14px; }
    .sub-block-url { font-size: 11px; }
    .dash-clients { grid-template-columns: 1fr; gap: 8px; }
    .dash-client { padding: 14px 12px; }
    .dash-client .dc-name { font-size: 14px; }
    .dash-logout { padding: 12px; font-size: 13px; margin-top: 12px; }
}
