/* ========================================================
   Qytravo — site.css
   Extracted from index.html. Fonts loaded via Google Fonts CDN.
   ======================================================== */

/* ---------- :root ---------- */
:root {
    --bg: #070b12; --panel: rgba(15,22,32,.94); --panel2: #141d29; --ink: #dbe5f0;
    --muted: #8496ab; --line: #1c2735; --accent: #4cc2ff; --accent2: #7ce7c4;
    --good: #34d399; --warn: #fbbf24; --bad: #f87171;
    --grad: linear-gradient(135deg, #4cc2ff, #34d399);
    --mono: "Cascadia Code", Consolas, "JetBrains Mono", monospace;
    --font-display: "Rajdhani", "Helvetica Neue", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    --font-display-fallback: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, sans-serif;
  }

/* ---------- base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0; color: var(--ink);
    font: 15px/1.6 var(--font-display-fallback);
    background:
      radial-gradient(1100px 480px at 12% -8%, rgba(76,194,255,.10), transparent 60%),
      radial-gradient(900px 420px at 108% 0%, rgba(52,211,153,.07), transparent 55%),
      radial-gradient(1000px 620px at 50% 118%, rgba(76,194,255,.05), transparent 60%),
      var(--bg);
  }
::selection { background: rgba(76,194,255,.32); }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 22px; }

/* ---------- nav ---------- */
nav { position: sticky; top: 0; z-index: 20; backdrop-filter: blur(10px); background: rgba(7,11,18,.82); border-bottom: 1px solid var(--line); box-shadow: 0 1px 0 rgba(76,194,255,.12), 0 10px 34px rgba(0,0,0,.4); }
nav .wrap { display: flex; align-items: center; gap: 22px; padding-top: 12px; padding-bottom: 12px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand b { font-family: "Orbitron", sans-serif; font-weight: 800; font-size: 17px; letter-spacing: 2.5px; background: linear-gradient(100deg, #fff 30%, var(--accent2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
nav .links { display: flex; gap: 20px; margin-left: 12px; }
nav .links a { color: var(--muted); text-decoration: none; font-size: 13.5px; font-weight: 600; position: relative; padding-bottom: 2px; }
nav .links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; border-radius: 2px; background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .18s ease; }
nav .links a:hover { color: var(--accent); }
nav .links a:hover::after { transform: scaleX(1); }
nav .links a.active { color: var(--accent); }
nav .links a.active::after { transform: scaleX(1); }
#toTop { position: fixed; right: 22px; bottom: 22px; z-index: 50; width: 44px; height: 44px; border-radius: 12px; border: 1px solid rgba(76,194,255,.4); background: rgba(10,15,23,.88); color: var(--accent); font-size: 20px; line-height: 1; cursor: pointer; opacity: 0; translate: 0 10px; pointer-events: none; transition: opacity .2s ease, translate .2s ease, box-shadow .15s ease; backdrop-filter: blur(8px); }
#toTop.show { opacity: 1; translate: 0 0; pointer-events: auto; }
#toTop:hover { box-shadow: 0 6px 24px rgba(76,194,255,.35); }

/* ---------- focus-visible ---------- */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* ---------- btn ---------- */
.btn { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; cursor: pointer;
    background: linear-gradient(180deg, #1a2432, #141c29); color: var(--ink);
    border: 1px solid var(--accent); border-radius: 10px; padding: 14px 28px;
    font-size: 15px; font-weight: 700; letter-spacing: .3px;
    transition: transform .12s ease, box-shadow .15s ease, border-color .15s ease; }
.btn:hover { transform: translateY(-2px); border-color: var(--accent); box-shadow: 0 6px 30px rgba(76,194,255,.4); }
.btn.primary { border-color: var(--accent); color: #06121c; background: var(--grad); position: relative; overflow: hidden; }
.btn.primary:hover { box-shadow: 0 6px 30px rgba(76,194,255,.45); }
header.hero .btn.primary { animation: ctaPulse 2.6s ease-in-out infinite; }
@keyframes ctaPulse { 0%, 100% { box-shadow: 0 8px 30px rgba(76,194,255,.35); } 50% { box-shadow: 0 8px 46px rgba(76,194,255,.6); } }
.btn.primary::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%); transform: translateX(-100%); animation: sheen 3.2s ease-in-out infinite; pointer-events: none; }
@keyframes sheen { 0% { transform: translateX(-100%); } 55%, 100% { transform: translateX(100%); } }

/* ---------- sections ---------- */
section.block { padding: 64px 0 8px; }
.sec-kicker { display: flex; align-items: center; gap: 10px; font-family: "Rajdhani", sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.sec-kicker::before { content: ""; width: 22px; height: 2px; border-radius: 2px; background: var(--grad); box-shadow: 0 0 10px rgba(76,194,255,.6); }
h2.stitle { font-family: "Orbitron", sans-serif; font-weight: 700; font-size: clamp(22px, 3.4vw, 32px); margin: 0 0 12px; letter-spacing: .5px; text-wrap: balance; text-shadow: 0 2px 16px rgba(0,0,0,.5); }
.lede { color: var(--muted); max-width: 640px; margin: 0 0 30px; }
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.grid2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.card { position: relative; background: linear-gradient(180deg, rgba(255,255,255,.025), transparent 40%), var(--panel);
    border: 1px solid var(--line); border-radius: 13px; padding: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,.25); transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease; }
.card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 1px; border-radius: 13px 13px 0 0;
    background: linear-gradient(90deg, transparent, rgba(76,194,255,.35), transparent); pointer-events: none; }
.card:hover { transform: translateY(-2px); border-color: #2c3c50; box-shadow: 0 14px 34px rgba(0,0,0,.4), 0 0 28px rgba(76,194,255,.08); }
.card .ico { width: 38px; height: 38px; border-radius: 11px; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(76,194,255,.18), rgba(52,211,153,.12));
    border: 1px solid rgba(76,194,255,.3); margin-bottom: 14px; }
.card .ico svg { width: 20px; height: 20px; stroke: var(--accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { margin: 0 0 8px; font-size: 16.5px; }
.card p { margin: 0; color: var(--muted); font-size: 13.5px; }
.card p b { color: var(--ink); }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; counter-reset: step; }
.step { border: 1px solid var(--line); border-radius: 13px; padding: 22px 20px; background: rgba(10,15,23,.5); position: relative; transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease; }
.step:hover { transform: translateY(-2px); border-color: #2c3c50; box-shadow: 0 14px 34px rgba(0,0,0,.4); }
.step .n { font-family: "Orbitron", sans-serif; font-weight: 800; font-size: 30px; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; filter: drop-shadow(0 0 12px rgba(76,194,255,.35)); }
.step h3 { margin: 8px 0 6px; font-size: 16px; }
.step p { margin: 0; color: var(--muted); font-size: 13.5px; }

/* ---------- compare ---------- */
.cmp-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 13px; }
table.cmp { width: 100%; min-width: 640px; border-collapse: collapse; font-size: 13.5px; background: var(--panel); }
table.cmp th, table.cmp td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--line); }
table.cmp thead th { font-family: "Rajdhani", sans-serif; font-size: 13px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--muted); background: rgba(10,15,23,.7); }
table.cmp thead th.me { color: var(--accent); }
table.cmp td.me { background: rgba(76,194,255,.06); font-weight: 700; }
table.cmp tr:last-child td { border-bottom: none; }
table.cmp tbody tr { transition: background .15s ease; }
table.cmp tbody tr:hover td { background: rgba(76,194,255,.05); }
table.cmp tbody tr:hover td.me { background: rgba(76,194,255,.10); }
table.cmp thead th.me { color: var(--accent); text-shadow: 0 0 14px rgba(76,194,255,.5); }
.yes { color: var(--good); font-weight: 700; } .no { color: var(--muted); } .mid { color: var(--warn); font-weight: 600; }
.fine { color: var(--muted); font-size: 12px; margin-top: 10px; }

/* ---------- pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; max-width: 760px; margin: 0 auto; }
.price { text-align: center; padding: 30px 26px; }
.price.hot { border-color: rgba(76,194,255,.55); box-shadow: 0 0 0 1px rgba(76,194,255,.3), 0 14px 44px rgba(76,194,255,.12); }
.price.hot::before { background: var(--grad); height: 2px; opacity: .9; }
.price .phot { display: inline-block; font-family: "Rajdhani", sans-serif; font-weight: 700; font-size: 11.5px; letter-spacing: 2px; text-transform: uppercase; color: #06121c; background: var(--grad); border-radius: 999px; padding: 4px 14px; margin-bottom: 12px; box-shadow: 0 4px 18px rgba(76,194,255,.35); }
.price .pname { font-family: "Rajdhani", sans-serif; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; font-size: 14px; color: var(--muted); }
.price .pval { font-family: "Orbitron", sans-serif; font-weight: 800; font-size: 40px; margin: 12px 0 4px; }
.price .pval small { font-size: 14px; color: var(--muted); font-family: system-ui, sans-serif; font-weight: 600; }
.price ul { list-style: none; padding: 0; margin: 18px 0 24px; text-align: left; }
.price li { padding: 7px 0 7px 28px; position: relative; color: var(--muted); font-size: 13.5px; }
.price li::before { content: "\2713"; position: absolute; left: 6px; color: var(--good); font-weight: 800; }
.price li b { color: var(--ink); }

/* ---------- faq ---------- */
details.faq { border: 1px solid var(--line); border-radius: 11px; margin-bottom: 10px; background: rgba(10,15,23,.5); transition: border-color .15s ease, box-shadow .15s ease; }
details.faq:hover { border-color: #2c3c50; }
details.faq[open] { border-color: rgba(76,194,255,.4); box-shadow: 0 8px 26px rgba(0,0,0,.3), 0 0 0 1px rgba(76,194,255,.12); }
details.faq summary { cursor: pointer; padding: 15px 18px; font-weight: 700; font-size: 14.5px; list-style: none; }
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::before { content: "+"; color: var(--accent); font-weight: 800; margin-right: 10px; }
details.faq[open] summary::before { content: "\2013"; }
details.faq .a { padding: 0 18px 16px 38px; color: var(--muted); font-size: 13.5px; }
details.faq .a b { color: var(--ink); }

/* ---------- footer ---------- */
footer { border-top: 1px solid var(--line); margin-top: 70px; padding: 34px 0 44px; color: var(--muted); font-size: 13px; box-shadow: 0 -24px 70px rgba(76,194,255,.05); }
footer .wrap { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--accent); }
.cta-band { position: relative; overflow: hidden; border: 1px solid rgba(76,194,255,.35); border-radius: 18px;
    padding: 56px 30px; text-align: center; margin-top: 70px; animation: bandGlow 5s ease-in-out infinite;
    background: linear-gradient(135deg, rgba(76,194,255,.12), rgba(52,211,153,.08)), #0a0f17; }
.cta-band .cta-visual { position: absolute; top: 20px; right: 24px; pointer-events: none; }
@keyframes bandGlow { 0%, 100% { box-shadow: 0 20px 60px rgba(0,0,0,.45), 0 0 50px rgba(76,194,255,.07); } 50% { box-shadow: 0 20px 60px rgba(0,0,0,.45), 0 0 90px rgba(76,194,255,.14); } }
.cta-band::before { content: ""; position: absolute; inset: -40px -60px auto auto; width: 340px; height: 340px;
    background: url("logo.svg") center/contain no-repeat; opacity: .07; pointer-events: none; }
.cta-band h2 { font-family: "Orbitron", sans-serif; font-weight: 800; font-size: clamp(24px, 4vw, 38px); margin: 0 0 12px; letter-spacing: .5px; }
.cta-band h2 .grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cta-band p { color: var(--muted); margin: 0 0 26px; }
footer .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 20px; width: 100%; margin-bottom: 26px; }
footer .cols h4 { font-family: "Rajdhani", sans-serif; font-size: 13px; letter-spacing: 1.8px; text-transform: uppercase; color: var(--ink); margin: 0 0 12px; }
footer .cols a { display: block; margin-bottom: 8px; }
footer .fine { border-top: 1px solid var(--line); padding-top: 18px; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; font-size: 12.5px; }

/* ---------- hero ---------- */
header.hero { padding: 96px 0 64px; position: relative; overflow: hidden; background: radial-gradient(120% 100% at 50% 42%, transparent 56%, rgba(2,5,9,.62) 100%), radial-gradient(820px 480px at 68% 40%, rgba(76,194,255,.13), transparent 62%), linear-gradient(180deg, transparent 60%, rgba(7,11,18,.5) 85%, rgba(7,11,18,.82) 100%), linear-gradient(90deg, rgba(7,11,18,.88) 0%, rgba(7,11,18,.62) 32%, rgba(7,11,18,.18) 55%, rgba(7,11,18,.28) 100%), url("art/q-route.jpg") center top/cover no-repeat; }
header.hero::before { content: ""; position: absolute; inset: 0; background: url("logo.svg") center calc(30% + var(--par, 0px)*0.15)/min(720px, 90vw) no-repeat; opacity: .045; pointer-events: none; }
header.hero .wrap { position: relative; z-index: 1; max-width: 1080px; margin-left: clamp(16px, 6vw, 110px); margin-right: auto; }
section.block { padding: 76px 0 8px; scroll-margin-top: 60px; }
section.block.alt { background: linear-gradient(180deg, rgba(76,194,255,.035), transparent 32%), rgba(10,15,23,.38); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding-bottom: 76px; }
.trust { display: flex; gap: 10px; justify-content: flex-start; flex-wrap: wrap; margin-top: 22px; }
.trust span { font-size: 12.5px; color: var(--muted); border: 1px solid var(--line); border-radius: 999px; padding: 5px 14px; background: rgba(20,29,41,.6); transition: border-color .15s ease, box-shadow .15s ease; }
.trust span:hover { border-color: rgba(76,194,255,.45); box-shadow: 0 0 16px rgba(76,194,255,.15); }
.trust span b { color: var(--accent2); }
header.hero .kicker { display: inline-block; font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--accent); border: 1px solid rgba(76,194,255,.4); border-radius: 999px; padding: 6px 16px; background: rgba(7,11,18,.55); margin: 0 0 22px; box-shadow: 0 2px 14px rgba(0,0,0,.4); }
header.hero h1 { font-size: clamp(30px, 5.4vw, 56px); line-height: 1.12; margin: 0 0 18px; text-align: left; max-width: 640px; text-shadow: 0 2px 18px rgba(0,0,0,.65); }
header.hero h1 .grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; text-shadow: none; }
header.hero .sub { color: var(--ink); font-size: clamp(15px, 2vw, 18px); max-width: 600px; margin: 0 0 30px; text-align: left; text-shadow: 0 1px 10px rgba(0,0,0,.7); }
header.hero .sub b { color: var(--ink); text-shadow: none; }
header.hero .cta-row { display: flex; justify-content: flex-start; gap: 12px; flex-wrap: wrap; margin: 0 0 8px; }
header.hero .trust { display: flex; justify-content: flex-start; gap: 10px; flex-wrap: wrap; margin: 0 0 22px; max-width: 700px; }
header.hero .proof-row { display: flex; gap: 26px; justify-content: flex-start; flex-wrap: wrap; margin-top: 44px; }
header.hero .proof { text-align: left; }
header.hero .proof .n { font-family: var(--mono); font-size: 30px; font-weight: 800; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; filter: drop-shadow(0 2px 8px rgba(0,0,0,.55)); }
header.hero .proof .l { color: var(--muted); font-size: 12.5px; margin-top: 2px; text-shadow: 0 1px 8px rgba(0,0,0,.85); }
header.hero .kicker { animation: rise .55s ease both; }
header.hero h1 { animation: rise .55s .08s ease both; }
header.hero .sub { animation: rise .55s .16s ease both; }
header.hero .cta-row { animation: rise .55s .24s ease both; }
header.hero .trust { animation: rise .55s .3s ease both; }
header.hero .proof-row { animation: rise .55s .36s ease both; }
header.hero .hero-mock {
    margin: 24px 0 0;
    transform: perspective(1400px) rotateY(-5deg) rotateX(2deg);
    box-shadow: 0 30px 80px rgba(0,0,0,.55), 0 0 0 1px rgba(76,194,255,.18), 0 0 60px rgba(76,194,255,.10);
    animation: floaty 7s ease-in-out infinite;
    border-radius: 12px;
    overflow: hidden;
  }
header.hero .hero-mock svg { display: block; }
@keyframes floaty {
    0%, 100% { transform: perspective(1400px) rotateY(-7deg) rotateX(3deg) translateY(0); }
    50% { transform: perspective(1400px) rotateY(-7deg) rotateX(3deg) translateY(-10px); }
  }
@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
header.hero::before { animation: drift 9s ease-in-out infinite alternate; }
@keyframes drift { to { transform: translate(24px, -16px) scale(1.05); } }
header.hero::after { content: ""; position: absolute; inset: -15% -10%; background: linear-gradient(105deg, transparent 43%, rgba(140,220,255,.055) 50%, transparent 57%); transform: translateX(-30%); animation: heroSheen 11s ease-in-out infinite alternate; pointer-events: none; }
@keyframes heroSheen { to { transform: translateX(30%); } }

/* ---------- marquee ---------- */
.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(10,15,23,.6); -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.marquee .track { display: flex; width: max-content; animation: scrollx 32s linear infinite; }
@keyframes scrollx { to { transform: translateX(-50%); } }
.mq { display: flex; align-items: center; gap: 10px; padding: 12px 26px; white-space: nowrap; font-family: "Rajdhani", sans-serif; font-weight: 700; letter-spacing: 1.2px; font-size: 14px; color: var(--muted); }
.mq i { color: var(--accent); font-style: normal; margin-left: 26px; }
.marquee:hover .track { animation-play-state: paused; }

/* ---------- cine ---------- */
.cine { position: relative; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-top: 70px; }
.cine .bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; animation: cinefade 18s ease-in-out infinite; }
.cine .bg.b1 { background: radial-gradient(ellipse at 30% 40%, rgba(0,220,255,.25), rgba(59,130,246,.15) 40%, #0a0f18 80%); animation-delay: 0s; }
.cine .bg.b2 { background: radial-gradient(ellipse at 70% 60%, rgba(52,211,153,.25), rgba(20,184,166,.15) 40%, #0a0f18 80%); animation-delay: 6s; }
.cine .bg.b3 { background: radial-gradient(ellipse at 50% 50%, rgba(168,85,247,.25), rgba(236,72,153,.15) 40%, #0a0f18 80%); animation-delay: 12s; }
@keyframes cinefade { 0% { opacity: 0; transform: scale(1.04); } 6% { opacity: 1; } 33% { opacity: 1; } 39% { opacity: 0; } 100% { opacity: 0; transform: scale(1.09); } }
.cine .scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,11,18,.86), rgba(7,11,18,.55) 50%, rgba(7,11,18,.9)); }
.cine .inner { position: relative; text-align: center; padding: 96px 22px; max-width: 760px; margin: 0 auto; }
.cine h2 { font-family: "Orbitron", sans-serif; font-weight: 800; font-size: clamp(24px, 4vw, 38px); margin: 0 0 12px; letter-spacing: .5px; text-shadow: 0 3px 18px rgba(0,0,0,.7); }
.cine h2 .grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cine p { color: #c4d2e2; margin: 0 0 26px; text-shadow: 0 2px 10px rgba(0,0,0,.7); }

/* ---------- collage ---------- */
.collage { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }  .cpanel { position: relative; aspect-ratio: 21 / 10; border-radius: 12px; overflow: hidden; border: 1px solid var(--line); background: #0b1018; }
.cpanel img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.cpanel:hover img { transform: scale(1.08); }
.cpanel:hover { border-color: rgba(76,194,255,.45); }
.cpanel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(7,11,18,.92)); }
.cpanel span { position: absolute; left: 8px; bottom: 7px; z-index: 1; font-family: "Rajdhani", sans-serif; font-weight: 700; font-size: 11px; letter-spacing: 1.2px; color: var(--ink); background: rgba(7,11,18,.72); border: 1px solid var(--line); border-radius: 999px; padding: 2px 9px; }

/* ---------- card art ---------- */
.card.art .art-top { height: 122px; margin: -20px -20px 14px; background-color: #0b1018; background-size: cover; background-position: center; border-radius: 13px 13px 0 0; position: relative; display: flex; align-items: flex-end; padding: 12px 14px; }
.card.art .art-top .art-ico { position: absolute; top: 8px; right: 8px; width: 120px; height: 60px; opacity: .85; z-index: 1; }
.card.art .art-top span { position: relative; z-index: 1; font-family: "Rajdhani", sans-serif; font-weight: 700; font-size: 17px; letter-spacing: .6px; color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,.6); }
.card.art .art-top::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,11,18,.05) 40%, rgba(18,26,38,.9)); border-radius: inherit; }

/* ---------- fix list ---------- */
.fixlist { display: grid; gap: 10px; }
.fix { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); border-radius: 11px; overflow: hidden; }
.fix .bad { padding: 14px 16px 14px 19px; background: rgba(248,113,113,.05); color: var(--muted); font-size: 13.5px; box-shadow: inset 3px 0 0 rgba(248,113,113,.55); }
.fix .bad b { color: var(--bad); display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 4px; font-family: "Rajdhani", sans-serif; }
.fix .got { padding: 14px 16px 14px 19px; background: rgba(52,211,153,.05); font-size: 13.5px; box-shadow: inset 3px 0 0 rgba(52,211,153,.55); }
.fix .got b { color: var(--good); display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 4px; font-family: "Rajdhani", sans-serif; }

/* ---------- fps section ---------- */
.fps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.fps-card { background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 28px 24px; position: relative; overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.fps-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.4); }
.fps-card .fps-icon { width: 100%; height: auto; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; overflow: hidden; }
.fps-card .fps-icon svg { width: 100%; height: auto; }
.fps-card .fps-icon.boost { background: linear-gradient(135deg, rgba(76,194,255,.15), rgba(52,211,153,.15)); color: var(--accent); }
.fps-card .fps-icon.counter { background: linear-gradient(135deg, rgba(124,231,196,.15), rgba(76,194,255,.15)); color: var(--accent2); }
.fps-card .fps-icon.overlay { background: linear-gradient(135deg, rgba(251,191,36,.15), rgba(248,113,113,.15)); color: var(--warn); }
.fps-card h3 { font-size: 18px; margin: 0 0 8px; color: var(--ink); }
.fps-card p { font-size: 14px; color: var(--muted); margin: 0 0 12px; line-height: 1.6; }
.fps-card .fps-detail { font-family: var(--mono); font-size: 11px; color: var(--muted); background: rgba(7,11,18,.5); border-radius: 8px; padding: 10px 12px; border: 1px solid var(--line); }
.fps-card .fps-detail b { color: var(--accent); }
.fps-highlight { display: flex; gap: 16px; margin-top: 24px; flex-wrap: wrap; }
.fps-chip { background: var(--panel); border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px; font-size: 13px; color: var(--ink); display: flex; align-items: center; gap: 6px; }
.fps-chip .dot { width: 8px; height: 8px; border-radius: 50%; }
.fps-chip .dot.on { background: var(--good); box-shadow: 0 0 8px rgba(52,211,153,.5); }
.fps-chip .dot.off { background: var(--muted); }

/* ---------- proof / tour / world-map ---------- */
.pgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 16px; }
.pcard { border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; background: rgba(20,29,41,.6); transition: transform .15s ease, border-color .15s ease; }
.pcard:hover { transform: translateY(-2px); border-color: rgba(76,194,255,.4); }
.pcard .k { font-size: 10.5px; color: var(--muted); text-transform: uppercase; letter-spacing: 1.2px; }
.pcard .v { font-family: var(--mono); font-size: 22px; margin-top: 4px; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.rv { opacity: 0; translate: 0 14px; transition: opacity .5s ease, translate .5s ease; }
.rv.in { opacity: 1; translate: 0 0; }
.tour .t-tag { font-family: "Rajdhani", sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 2px; color: var(--accent); margin-bottom: 10px; }
.tour .t-big { font-family: var(--mono); font-size: 44px; font-weight: 800; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.tour .t-big span { font-size: 16px; }
.tour .t-sub { color: var(--muted); font-size: 12px; margin-top: 6px; font-family: var(--mono); }
.tour .t-verdict { margin-top: 12px; font-size: 13px; border-left: 3px solid var(--good); padding-left: 10px; }
.tour .t-verdict b { color: var(--good); }
.tour .t-hud { font-family: var(--mono); font-size: 15px; background: #0a0f17; border: 1px solid var(--line); border-radius: 9px; padding: 12px 14px; }
.tour .t-hud span { display: block; color: var(--muted); font-size: 11.5px; margin-top: 4px; }
.tour .t-grade { font-family: "Orbitron", sans-serif; font-weight: 800; font-size: 32px; color: var(--good); text-shadow: 0 0 24px rgba(52,211,153,.4); }
.tour .t-sub2 { color: var(--muted); font-size: 12.5px; margin-top: 8px; }

/* ---------- before/after ---------- */
.ba { margin-top: 14px; border: 1px solid var(--line); border-radius: 10px; padding: 14px; background: rgba(10,15,23,.6); position: relative; overflow: hidden; }
.ba::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(76,194,255,.06), transparent 70%); pointer-events: none; }
.ba svg { width: 100%; height: auto; display: block; }
.ba-cap { font-size: 11px; color: var(--muted); margin-top: 8px; }

/* ---------- world map ---------- */
.wmap { position: relative; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: #080d16; }
.wmap::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 40%, rgba(76,194,255,.08), transparent 65%); pointer-events: none; z-index: 1; }
.wmap svg { display: block; width: 100%; height: auto; }
.wmap .node { animation: pulse 2.4s ease-in-out infinite; }
.wmap .node:nth-child(2) { animation-delay: .4s; }
.wmap .node:nth-child(3) { animation-delay: .8s; }
.wmap .node:nth-child(4) { animation-delay: 1.2s; }
.wmap .node:nth-child(5) { animation-delay: 1.6s; }
.wmap .node:nth-child(6) { animation-delay: 2s; }
.wmap .arc { stroke-dasharray: 6 4; animation: dash 18s linear infinite; }
.wmap .arc:nth-child(2) { animation-delay: -3s; }
.wmap .arc:nth-child(3) { animation-delay: -7s; }
.wmap .arc:nth-child(4) { animation-delay: -11s; }
.wmap .arc:nth-child(5) { animation-delay: -15s; }
@keyframes dash { to { stroke-dashoffset: -200; } }
@keyframes nodeGlow { 0%, 100% { filter: drop-shadow(0 0 4px rgba(76,194,255,.5)); } 50% { filter: drop-shadow(0 0 10px rgba(76,194,255,.9)); } }
.wmap .node { animation: nodeGlow 2.4s ease-in-out infinite, pulse 2.4s ease-in-out infinite; }
.wmap .node:nth-child(2) { animation-delay: .4s; }
.wmap .node:nth-child(3) { animation-delay: .8s; }
.wmap .node:nth-child(4) { animation-delay: 1.2s; }
.wmap .node:nth-child(5) { animation-delay: 1.6s; }
.wmap .node:nth-child(6) { animation-delay: 2s; }
.wmap .legend { position: absolute; bottom: 10px; left: 12px; display: flex; gap: 14px; z-index: 2; font-size: 10.5px; color: var(--muted); }
.wmap .legend b { color: var(--accent2); }
.wmap .bar { position: absolute; top: 0; left: 0; right: 0; display: flex; gap: 7px; align-items: center; padding: 10px 14px; background: rgba(8,13,22,.85); border-bottom: 1px solid var(--line); z-index: 2; }
.wmap .bar i { width: 10px; height: 10px; border-radius: 50%; background: #22303f; }
.wmap .bar i:first-child { background: #f87171; }
.wmap .bar i:nth-child(2) { background: #fbbf24; }
.wmap .bar i:nth-child(3) { background: #34d399; }
.wmap .bar span { margin-left: 6px; font-family: var(--mono); font-size: 11px; color: var(--muted); }

/* ---------- scrollbar ---------- */
#scrollbar { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 40; background: transparent; }
html { scrollbar-width: thin; scrollbar-color: #2c3c50 #070b12; }
#scrollbar i { display: block; height: 100%; width: 0; background: var(--grad); box-shadow: 0 0 8px rgba(76,194,255,.6); }

/* ---------- noise overlay ---------- */
body::after { content: ""; position: fixed; inset: 0; z-index: 60; pointer-events: none; opacity: .05; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E"); }

/* ========================================================
   NEW styles
   ======================================================== */

/* ---------- screen reader only ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- nav focus-visible ---------- */
nav .links a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
  color: var(--accent);
}

/* ---------- comparison scroll indicator ---------- */
.cmp-wrap {
  position: relative;
}
.cmp-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 48px;
  background: linear-gradient(90deg, transparent, rgba(10,15,23,.92));
  pointer-events: none;
  border-radius: 0 13px 13px 0;
  opacity: 0;
  transition: opacity .2s ease;
}
.cmp-wrap.scrollable::after {
  opacity: 1;
}

/* ---------- color-scheme: dark ---------- */
:root {
  color-scheme: dark;
}

/* ---------- mobile hamburger (3 bars -> X) ---------- */
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ========================================================
   MEDIA QUERIES
   ======================================================== */

@media (max-width: 900px) {
  header.hero .hero-mock { transform: none; animation: none; }
}
@media (max-width: 900px) {
  header.hero .wrap { max-width: 100%; }
}
@media (max-width: 760px) {
  .collage { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .fix { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .fps-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .pgrid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  nav .links { display: none; }
  nav .links.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--line); padding: 16px 24px; gap: 14px; z-index: 100; }
  .hamburger { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
  .hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s ease; }
  .grid3, .grid2, .steps, .price-grid { grid-template-columns: 1fr; }
  header.hero { padding: 56px 0 40px; }
  .proof-row { gap: 18px; }
  footer .cols { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 761px) {
  .hamburger { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}
