/* =========================================================
   HostFly — dark & elegant redesign
   Fonts: Space Grotesk (display) · Inter (body) · JetBrains Mono (mono)
   ========================================================= */

:root {
  --bg: #0A0C10;
  --bg-2: #0D1014;
  --surface: #12161C;
  --surface-2: #161B22;
  --surface-3: #1B212A;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --accent: #22d3ee;        /* cyan accent */
  --accent-2: #8b5cf6;      /* violet primary */
  --hot: #8b5cf6;           /* violet CTA */
  --primary: #8b5cf6;
  --ink: #0A0A0F;           /* text on gradient fills */
  --amber: #F2C14E;
  --text: #EAEDF2;
  --muted: #9AA4B2;
  --muted-2: #6B7585;
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --container: 1180px;
  --nav-h: 70px;
  --radius: 16px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.6);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(46, 230, 197, 0.07), transparent 60%),
    radial-gradient(900px 500px at -10% 10%, rgba(79, 140, 255, 0.06), transparent 55%),
    var(--bg);
  background-attachment: fixed;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; transition: color 0.15s var(--ease); }
a:hover { color: #6ff3df; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 3px; }
::selection { background: rgba(46, 230, 197, 0.25); color: #fff; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.01em; }

.text-gradient {
  background: linear-gradient(120deg, var(--accent-2), var(--accent));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.skip {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--accent); color: #04110e; padding: 10px 16px;
  font-family: var(--font-mono); font-size: 12px; border-radius: 6px;
  transition: top 0.2s var(--ease);
}
.skip:focus { top: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 24px; border: 1px solid transparent; border-radius: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  letter-spacing: 0.01em; cursor: pointer; line-height: 1;
  transition: transform 0.12s var(--ease), filter 0.18s var(--ease),
    background 0.18s, border-color 0.18s, color 0.18s, box-shadow 0.18s;
}
.btn:active { transform: translateY(1px); }

.btn--hot {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: var(--ink); box-shadow: 0 10px 30px -10px rgba(139, 92, 246, 0.55);
}
.btn--hot:hover { filter: brightness(1.08); color: var(--ink); }

.btn--ghost { background: transparent; color: var(--text); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn--solid { background: var(--surface-2); color: var(--text); border-color: var(--line); }
.btn--solid:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px;
  background: rgba(10, 12, 16, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex; align-items: center; gap: 11px;
  font-family: var(--font-display); font-weight: 700; font-size: 20px;
  letter-spacing: 0.02em; color: var(--text);
}
.brand:hover { color: var(--text); }
.brand svg { display: block; }

.nav__menu ul {
  display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0;
}
.nav__menu a {
  position: relative;
  color: var(--muted); font-size: 14.5px; font-weight: 500; transition: color 0.15s;
}
.nav__menu a:hover, .nav__menu a[aria-current="page"] { color: var(--text); }
.nav__menu a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -26px; height: 2px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent)); border-radius: 2px;
}

.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__toggle {
  display: none; width: 44px; height: 44px; background: var(--surface-2);
  border: 1px solid var(--line); color: var(--text); border-radius: 10px; cursor: pointer;
}
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  display: block; width: 18px; height: 1.5px; background: var(--text); position: relative; margin: 0 auto;
}
.nav__toggle span::before, .nav__toggle span::after { content: ""; position: absolute; left: 0; }
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after { top: 6px; }

/* ---------- Layout ---------- */
.container { width: min(var(--container), calc(100% - 48px)); margin: 0 auto; }
.section { padding: 96px 0; }
.eyebrow {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent); margin: 0 0 18px;
  display: flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--accent); }
.sec-title {
  font-size: clamp(30px, 4vw, 46px); line-height: 1.08; margin: 0 0 18px; max-width: 20ch;
}
.sec-lead { color: var(--muted); font-size: 18px; max-width: 56ch; margin: 0 0 48px; }

/* ---------- Hero ---------- */
.hero {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center;
  max-width: var(--container); margin: 0 auto; padding: 84px 24px 96px;
}
.hero__title {
  font-size: clamp(44px, 6vw, 76px); line-height: 1.0; letter-spacing: -0.03em;
  margin: 0 0 22px;
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(120deg, var(--accent-2), var(--accent));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__sub { color: var(--muted); font-size: 19px; max-width: 46ch; margin: 0 0 34px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__stats { display: flex; gap: 36px; margin-top: 48px; }
.hero__stats div { display: flex; flex-direction: column; gap: 2px; }
.hero__stats b { font-family: var(--font-display); font-size: 28px; font-weight: 600; }
.hero__stats span { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; color: var(--muted-2); text-transform: uppercase; }

/* Hero visual: product mock */
.hero__visual { position: relative; }
.hero__visual img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--radius); opacity: 0.25; filter: saturate(0.7) brightness(0.6);
}
.mock {
  position: relative; background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
}
.mock__bar { display: flex; align-items: center; gap: 7px; padding: 13px 16px; border-bottom: 1px solid var(--line); }
.mock__bar i { width: 10px; height: 10px; border-radius: 50%; background: var(--surface-3); display: inline-block; }
.mock__bar i:nth-child(1) { background: #ff5f57; }
.mock__bar i:nth-child(2) { background: #febc2e; }
.mock__bar i:nth-child(3) { background: #28c840; }
.mock__bar span { margin-left: 8px; font-family: var(--font-mono); font-size: 11px; color: var(--muted-2); }
.mock__body { padding: 20px; display: grid; gap: 12px; }
.srow { display: flex; align-items: center; justify-content: space-between; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 13px 14px; }
.srow__l { display: flex; align-items: center; gap: 11px; }
.srow__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); }
.srow__name { font-family: var(--font-display); font-size: 14.5px; }
.srow__meta { font-family: var(--font-mono); font-size: 11px; color: var(--muted-2); }
.pill { font-family: var(--font-mono); font-size: 11px; color: var(--accent); border: 1px solid rgba(46,230,197,0.3); padding: 3px 9px; border-radius: 999px; }
.pill--amber { color: var(--amber); border-color: rgba(242,193,78,0.3); }

/* ---------- Trust strip ---------- */
.trust {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: var(--surface);
}
.trust div { padding: 26px 30px; border-right: 1px solid var(--line); }
.trust div:last-child { border-right: 0; }
.trust b { display: block; font-family: var(--font-display); font-size: 26px; font-weight: 600; margin-bottom: 4px; }
.trust span { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; color: var(--muted); text-transform: uppercase; }

/* ---------- Game grid ---------- */
.fleet { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.bay {
  display: block; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; color: var(--text); transition: transform 0.2s var(--ease), border-color 0.2s, box-shadow 0.2s;
}
.bay:hover { transform: translateY(-6px); border-color: rgba(46,230,197,0.5); box-shadow: var(--shadow); color: var(--text); }
.bay img { height: 160px; width: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.bay:hover img { transform: scale(1.05); }
.bay__body { padding: 16px 18px 18px; }
.bay__name { font-family: var(--font-display); font-size: 18px; font-weight: 600; margin: 0 0 8px; }
.bay__meta { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 11.5px; color: var(--muted); }

/* ---------- Features ---------- */
.tower { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }
.instruments { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.panel {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 22px; position: relative; transition: border-color 0.2s, transform 0.2s var(--ease);
}
.panel:hover { border-color: rgba(46,230,197,0.4); transform: translateY(-3px); }
.panel__id { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; color: var(--muted-2); margin-bottom: 12px; }
.panel h3 { font-size: 18px; margin: 0 0 8px; }
.panel p { margin: 0; color: var(--muted); font-size: 14.5px; }
.live { position: absolute; top: 22px; right: 22px; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); animation: pulse 1.8s ease-in-out infinite; }

.terminal {
  background: #07090C; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; font-family: var(--font-mono); box-shadow: var(--shadow);
}
.terminal__bar { display: flex; gap: 7px; padding: 12px 16px; border-bottom: 1px solid var(--line); }
.terminal__bar i { width: 10px; height: 10px; border-radius: 50%; background: var(--surface-3); }
.terminal__bar i:nth-child(1){background:#ff5f57}.terminal__bar i:nth-child(2){background:#febc2e}.terminal__bar i:nth-child(3){background:#28c840}
.terminal__code { padding: 22px; font-size: 14px; line-height: 1.9; color: #c8d3df; }
.terminal__code .pr { color: var(--accent); }
.terminal__code .ok { color: #6ff3df; }
.terminal__code .dim { color: var(--muted-2); }

/* ---------- Pricing ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.plan {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; display: flex; flex-direction: column; position: relative;
  transition: transform 0.2s var(--ease), border-color 0.2s, box-shadow 0.2s;
}
.plan:hover { transform: translateY(-5px); border-color: rgba(46,230,197,0.4); box-shadow: var(--shadow); }
.plan--featured { border-color: rgba(139,92,246,0.5); background: linear-gradient(180deg, rgba(139,92,246,0.10), var(--surface) 42%); }
.plan__tag { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.16em; color: var(--accent); margin-bottom: 12px; text-transform: uppercase; }
.plan__name { font-size: 26px; margin: 0 0 4px; }
.plan__kind { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.1em; color: var(--muted); margin: 0 0 20px; text-transform: uppercase; }
.plan__price { font-family: var(--font-display); font-size: 44px; margin: 0 0 22px; }
.plan__price span { font-size: 15px; color: var(--muted); font-family: var(--font-mono); }
.plan ul { list-style: none; padding: 0; margin: 0 0 26px; color: var(--muted); font-size: 14.5px; }
.plan li { padding: 9px 0; border-bottom: 1px solid var(--line); }
.plan .btn { margin-top: auto; }

/* ---------- Quotes ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.quote { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; gap: 20px; }
.quote p { margin: 0; font-size: 16.5px; line-height: 1.55; }
.quote__who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.quote__who img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 1px solid var(--line); }
.quote__who b { display: block; font-family: var(--font-mono); font-weight: 400; color: var(--accent); font-size: 13px; }
.quote__who span { color: var(--muted); font-size: 12.5px; }

/* ---------- Launch / CTA ---------- */
.launch { position: relative; border-radius: var(--radius); overflow: hidden; margin-top: 24px; }
.launch img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.32; filter: saturate(0.7) brightness(0.55); }
.launch__inner { position: relative; z-index: 2; text-align: center; padding: 80px 24px; background: linear-gradient(180deg, rgba(10,12,16,0.2), rgba(10,12,16,0.7)); }
.launch h2 { font-size: clamp(32px, 5vw, 56px); margin: 0 0 22px; }

/* ---------- Footer ---------- */
.foot { border-top: 1px solid var(--line); padding: 56px 0 32px; margin-top: 40px; background: var(--bg-2); }
.foot__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
.foot h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; color: var(--muted-2); text-transform: uppercase; margin: 0 0 14px; }
.foot ul { list-style: none; margin: 0; padding: 0; }
.foot li { margin: 0 0 9px; }
.foot a { color: var(--muted); font-size: 14.5px; }
.foot a:hover { color: var(--accent); }
.foot__legal { margin-top: 40px; padding-top: 18px; border-top: 1px solid var(--line); font-family: var(--font-mono); font-size: 11.5px; color: var(--muted-2); display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

/* ---------- Panel ---------- */
.ops { display: grid; grid-template-columns: 240px 1fr; min-height: calc(100vh - var(--nav-h)); background: var(--bg); }
.rail { background: var(--surface); border-right: 1px solid var(--line); padding: 22px 0; }
.rail a {
  display: flex; align-items: center; gap: 10px; padding: 12px 22px; color: var(--muted);
  font-size: 14px; font-weight: 500; border-left: 2px solid transparent; transition: color 0.15s, background 0.15s, border-color 0.15s;
}
.rail a:hover, .rail a.active { color: var(--text); background: rgba(46,230,197,0.06); border-left-color: var(--accent); }
.ops__main { padding: 30px 32px 48px; }
.ops__top { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 26px; flex-wrap: wrap; }
.chip { font-family: var(--font-mono); font-size: 13.5px; color: var(--muted); }
.chip b { color: var(--accent); font-weight: 400; }
.chip .bal { color: var(--amber); }

.fleet-table { width: 100%; border-collapse: collapse; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.fleet-table th { text-align: left; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.12em; color: var(--muted-2); text-transform: uppercase; padding: 15px 18px; border-bottom: 1px solid var(--line); font-weight: 400; }
.fleet-table td { padding: 15px 18px; border-bottom: 1px solid var(--line); font-family: var(--font-mono); font-size: 13.5px; }
.fleet-table tbody tr { cursor: pointer; transition: background 0.14s; }
.fleet-table tbody tr:hover, .fleet-table tbody tr.is-on { background: rgba(46,230,197,0.06); }
.fleet-table tbody tr:last-child td { border-bottom: 0; }

.led { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: 0.1em; }
.led i { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.led.online i { background: var(--accent); box-shadow: 0 0 8px var(--accent); animation: pulse 1.8s ease-in-out infinite; }
.led.starting i { background: var(--amber); box-shadow: 0 0 8px var(--amber); animation: pulse 1s ease-in-out infinite; }
.led.offline i { background: var(--muted-2); }
.spark { display: block; width: 90px; height: 26px; }

.detail { margin-top: 22px; display: grid; grid-template-columns: 1.4fr 0.9fr; gap: 18px; }
.console {
  background: #07090C; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 20px; font-family: var(--font-mono); font-size: 13px; color: #8fd9cf;
  min-height: 250px; line-height: 1.75; overflow: auto;
}
.console .err { color: var(--hot); }
.gauges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 16px; }
.gauge { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px 14px; text-align: center; }
.dial { width: 92px; height: 92px; margin: 0 auto 10px; border-radius: 50%; border: 1px solid var(--line); background: conic-gradient(var(--accent) var(--p, 40%), #1b212a 0); position: relative; }
.dial::after { content: ""; position: absolute; inset: 11px; background: var(--surface); border-radius: 50%; }
.dial span { position: absolute; inset: 0; display: grid; place-items: center; z-index: 1; font-family: var(--font-mono); font-size: 14px; color: var(--accent); }
.gauge__k { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; color: var(--muted-2); text-transform: uppercase; }
.metagrid { margin-top: 16px; display: grid; gap: 9px; font-family: var(--font-mono); font-size: 12.5px; color: var(--muted); }
.metagrid b { color: var(--text); font-weight: 400; }
.row-actions { display: flex; gap: 6px; flex-wrap: wrap; }
.icon-btn { background: var(--surface-2); border: 1px solid var(--line); color: var(--text); font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.06em; padding: 7px 10px; border-radius: 8px; cursor: pointer; transition: border-color 0.14s, color 0.14s; }
.icon-btn:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Auth ---------- */
.auth { min-height: calc(100vh - var(--nav-h)); display: grid; grid-template-columns: 1.05fr 0.95fr; }
.auth__visual { position: relative; overflow: hidden; }
.auth__visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.5; filter: saturate(0.7) brightness(0.5); }
.auth__visual .auth__overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(10,12,16,0.6), rgba(10,12,16,0.2)); }
.auth__form { display: flex; flex-direction: column; justify-content: center; padding: 56px 60px; background: var(--surface); border-left: 1px solid var(--line); }
.auth__form h1 { font-size: 34px; margin: 8px 0 10px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.field label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; color: var(--muted-2); text-transform: uppercase; }
.field input { background: var(--bg-2); border: 1px solid var(--line-strong); color: var(--text); padding: 13px 14px; font-size: 15px; border-radius: 10px; transition: border-color 0.15s; }
.field input:focus { border-color: var(--accent); outline: none; }
.check { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: 13.5px; margin-bottom: 20px; }
.alert { background: rgba(255,107,74,0.1); border: 1px solid rgba(255,107,74,0.4); color: #ffb39c; font-family: var(--font-mono); font-size: 12.5px; padding: 12px 14px; border-radius: 10px; margin-bottom: 22px; }
.auth__alt { margin-top: 20px; color: var(--muted); font-size: 13.5px; }

/* ---------- Cennik compare + faq ---------- */
.compare { width: 100%; border-collapse: collapse; margin-top: 40px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.compare th, .compare td { padding: 15px 18px; text-align: left; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.compare th { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; color: var(--muted-2); text-transform: uppercase; font-weight: 400; }
.compare td:not(:first-child), .compare th:not(:first-child) { text-align: center; font-family: var(--font-mono); }
.compare tr.hl td { background: rgba(46,230,197,0.05); }
.compare tr:last-child td { border-bottom: 0; }
.faq { margin-top: 54px; }
.faq details { border: 1px solid var(--line); background: var(--surface); border-radius: var(--radius-sm); margin-bottom: 10px; overflow: hidden; }
.faq summary { cursor: pointer; padding: 18px 20px; font-family: var(--font-display); font-weight: 500; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-mono); color: var(--accent); font-size: 18px; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 0; padding: 0 20px 18px; color: var(--muted); }

/* ---------- Promo bar ---------- */
.promo {
  background: linear-gradient(90deg, rgba(139,92,246,0.14), rgba(34,211,238,0.14));
  border-bottom: 1px solid var(--line); text-align: center;
  padding: 10px 16px; font-size: 13.5px; color: var(--muted);
}
.promo b { color: var(--accent); font-family: var(--font-mono); }

/* ---------- Game offer card ---------- */
.game {
  display: flex; flex-direction: column; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  color: var(--text); transition: transform 0.2s var(--ease), border-color 0.2s, box-shadow 0.2s;
}
.game:hover { transform: translateY(-6px); border-color: rgba(46,230,197,0.5); box-shadow: var(--shadow); color: var(--text); }
.game__media { position: relative; }
.game__media img { height: 168px; width: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.game:hover .game__media img { transform: scale(1.05); }
.game__badge {
  position: absolute; top: 12px; left: 12px; font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase; color: #04110e;
  background: linear-gradient(135deg, var(--accent-2), var(--accent)); padding: 5px 10px; border-radius: 999px;
}
.game__body { padding: 18px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.game__name { font-family: var(--font-display); font-size: 19px; font-weight: 600; margin: 0 0 6px; }
.game__price { font-family: var(--font-mono); font-size: 13px; color: var(--muted); margin: 0 0 16px; }
.game__price b { color: var(--text); font-family: var(--font-display); font-size: 20px; font-weight: 600; }
.game__features { list-style: none; padding: 0; margin: 0 0 20px; color: var(--muted); font-size: 13.5px; flex: 1; }
.game__features li { padding: 6px 0; border-bottom: 1px solid var(--line); display: flex; gap: 8px; align-items: center; }
.game__features li::before { content: "›"; color: var(--accent); font-weight: 700; }
.game__cta { margin-top: auto; }

/* ---------- Band ---------- */
.band { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 44px 32px; text-align: center; }
.band h2 { font-size: clamp(26px, 3vw, 36px); margin: 0 0 12px; }
.band p { color: var(--muted); margin: 0 0 24px; font-size: 16px; }

/* ---------- Values (O nas) ---------- */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.value { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; }
.value__icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(139,92,246,0.12); border: 1px solid rgba(139,92,246,0.35); display: grid; place-items: center; margin-bottom: 16px; color: var(--accent-2); font-family: var(--font-display); font-weight: 700; }
.value h3 { font-size: 19px; margin: 0 0 8px; }
.value p { color: var(--muted); font-size: 14.5px; margin: 0; }

/* ---------- Showcase (Centrum dowodzenia) ---------- */
.shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 8px; }
.shot { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.shot__bar { display: flex; align-items: center; gap: 6px; padding: 10px 12px; border-bottom: 1px solid var(--line); }
.shot__bar i { width: 8px; height: 8px; border-radius: 50%; background: var(--surface-3); }
.shot__bar i:nth-child(1){background:#ff5f57}.shot__bar i:nth-child(2){background:#febc2e}.shot__bar i:nth-child(3){background:#28c840}
.shot__bar span { margin-left: 6px; font-family: var(--font-mono); font-size: 10.5px; color: var(--muted-2); }
.shot__body { padding: 16px; display: grid; gap: 9px; }
.shot__skel { height: 9px; border-radius: 4px; background: var(--surface-3); }
.shot__skel.w { width: 70%; }
.shot__skel.m { width: 90%; }
.shot__skel.s { width: 45%; }
.shot__skel.accent { background: rgba(46,230,197,0.3); }

/* ---------- Animations ---------- */
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
@keyframes reveal { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.hero__copy > * { animation: reveal 0.6s var(--ease) both; }
.hero__copy > *:nth-child(2) { animation-delay: 80ms; }
.hero__copy > *:nth-child(3) { animation-delay: 150ms; }
.hero__copy > *:nth-child(4) { animation-delay: 220ms; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 56px 22px 72px; }
  .hero__visual { order: -1; }
  .fleet, .quotes, .plans { grid-template-columns: repeat(2, 1fr); }
  .tower, .detail, .auth, .ops { grid-template-columns: 1fr; }
  .trust { grid-template-columns: 1fr; }
  .trust div { border-right: 0; border-bottom: 1px solid var(--line); }
  .foot__grid { grid-template-columns: 1fr 1fr; }
  .nav__menu, .nav__cta .btn--hot { display: none; }
  .nav.is-open .nav__menu { display: flex; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: #0d1014; border-bottom: 1px solid var(--line); padding: 18px 24px 22px; gap: 16px; }
  .nav.is-open .nav__cta { display: flex; }
  .nav__toggle { display: inline-flex; align-items: center; justify-content: center; }
  .rail { display: flex; overflow-x: auto; border-right: 0; border-bottom: 1px solid var(--line); padding: 0; }
  .rail a { white-space: nowrap; border-left: 0; border-bottom: 2px solid transparent; }
  .rail a.active { border-bottom-color: var(--accent); }
}
@media (max-width: 560px) {
  .container { width: calc(100% - 32px); }
  .nav { padding: 0 16px; }
  .fleet, .quotes, .instruments, .foot__grid, .plans, .values, .shots { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .hero__stats { gap: 22px; flex-wrap: wrap; }
  .auth__form { padding: 36px 22px 52px; }
}

.cat-icon{display:inline-flex;align-items:center;justify-content:center;width:2.5rem;height:2.5rem;border-radius:.9rem;background:rgba(58,169,240,.12);border:1px solid rgba(58,169,240,.3);color:#7dd3fc;flex-shrink:0}
.cat-icon svg{width:1.4rem;height:1.4rem}
.cat-icon-sm{width:1.9rem;height:1.9rem}
.cat-icon-sm svg{width:1.1rem;height:1.1rem}
.svg-icon{display:inline-block;width:1.2em;height:1.2em;vertical-align:middle;stroke:currentColor;flex-shrink:0}
