/* upx-slot17.online — Up-X / АП Икс. Концепт «Роял-блю + амбер» (полночь + электрик-синий + янтарь) */

:root {
  --helm-bg: #0a1024;
  --helm-bg-2: #121a36;
  --helm-bg-3: #1a2447;
  --helm-line: #233059;
  --helm-line-2: #344477;
  --helm-txt: #e8ecfb;
  --helm-txt-d: #9aa3c6;
  --helm-txt-dd: #6b7499;
  --helm-acc: #3b6fff;
  --helm-acc-2: #ffb020;
  --helm-acc-2-d: #d4901a;
  --helm-hot: #ff5d7a;
  --helm-good: #5fe0b0;
  --helm-r: 12px;
  --helm-r-s: 8px;
}

* { box-sizing: border-box }
html { scroll-behavior: smooth }
body {
  margin: 0;
  font: 16px/1.62 "Manrope", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, Arial, sans-serif;
  color: var(--helm-txt);
  background:
    radial-gradient(1020px 600px at 90% -12%, rgba(59, 111, 255, .18) 0%, transparent 62%),
    radial-gradient(820px 600px at -12% 62%, rgba(255, 176, 32, .08) 0%, transparent 60%),
    var(--helm-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; height: auto }
a { color: var(--helm-acc); text-decoration: none }
a:hover { text-decoration: underline }
.helm-strong { color: var(--helm-acc-2); font-weight: 600 }

.helm-skip {
  position: absolute; top: -42px; left: 8px;
  padding: 8px 12px; background: var(--helm-acc); color: #061026;
  border-radius: 6px; z-index: 100; font-weight: 700;
}
.helm-skip:focus { top: 8px }

/* ===== TOP BAR ===== */
.helm-bar {
  display: flex; align-items: center; gap: 16px;
  padding: 12px 22px;
  border-bottom: 1px solid var(--helm-line);
  background: rgba(10, 16, 36, .84);
  backdrop-filter: blur(10px);
  position: sticky; top: 0; z-index: 50;
}
.helm-logo { display: flex; align-items: center; gap: 11px; color: var(--helm-txt) }
.helm-logo:hover { text-decoration: none }
.helm-logo__svg {
  width: 30px; height: 30px; flex: none;
  filter: drop-shadow(0 0 10px rgba(59, 111, 255, .6));
}
.helm-logo__t {
  font-family: "Khand", "Manrope", system-ui, sans-serif;
  font-weight: 700; line-height: 1; letter-spacing: -.3px; font-size: 20px;
}
.helm-logo__sub {
  display: block; font-size: 10px; color: var(--helm-txt-d);
  letter-spacing: 2.4px; font-weight: 600; margin-top: 4px;
  text-transform: uppercase;
}
.helm-nav { display: flex; gap: 22px; margin-left: auto; flex-wrap: wrap }
.helm-nav a {
  color: var(--helm-txt-d); font-size: 14px; padding: 4px 0;
  border-bottom: 1px solid transparent; transition: color .15s, border-color .15s;
}
.helm-nav a:hover { color: var(--helm-acc); border-bottom-color: var(--helm-acc); text-decoration: none }

/* ===== CTA ===== */
.helm-cta {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 20px; border-radius: 8px;
  font-family: "Khand", "Manrope", system-ui, sans-serif;
  font-weight: 600; font-size: 15px;
  border: 1px solid transparent; white-space: nowrap;
  transition: transform .15s, box-shadow .2s, background .2s;
  cursor: pointer; letter-spacing: .1px;
}
.helm-cta:hover { text-decoration: none; transform: translateY(-1px) }
.helm-cta--small { background: var(--helm-bg-3); color: var(--helm-txt); border-color: var(--helm-line) }
.helm-cta--small:hover { background: var(--helm-bg-2); border-color: var(--helm-acc) }
.helm-cta--big { padding: 15px 28px; font-size: 16px; border-radius: 10px }
.helm-cta--hot {
  background: linear-gradient(120deg, var(--helm-acc) 0%, #6a92ff 100%);
  color: #fff; border: 0;
  box-shadow: 0 12px 30px -10px rgba(59, 111, 255, .75);
  font-weight: 700;
}
.helm-cta--hot:hover { box-shadow: 0 16px 38px -8px rgba(59, 111, 255, .95) }
.helm-cta--ghost { background: transparent; color: var(--helm-txt); border-color: var(--helm-line) }
.helm-cta--ghost:hover { border-color: var(--helm-acc); color: var(--helm-acc) }

/* ===== AGGREGATE COUNTER STRIP ===== */
.helm-metr {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; padding: 10px 22px;
  border-bottom: 1px solid var(--helm-line);
  background: linear-gradient(90deg, rgba(59, 111, 255, .05), rgba(255, 176, 32, .03));
  font-size: 13px;
}
.helm-metr__cell {
  display: flex; flex-direction: column; gap: 2px;
  padding: 6px 14px;
  border-right: 1px solid var(--helm-line);
  align-items: flex-start;
}
.helm-metr__cell:last-child { border-right: 0 }
.helm-metr__num {
  font-family: "Khand", "Manrope", system-ui, sans-serif;
  font-weight: 700; font-size: 16px; color: var(--helm-acc);
  letter-spacing: -.2px;
}
.helm-metr__lbl { font-size: 11px; color: var(--helm-txt-d); letter-spacing: .6px; text-transform: uppercase }

/* ===== HERO ===== */
.helm-hero {
  display: grid; grid-template-columns: 1.18fr 1fr; gap: 36px;
  padding: 48px 22px 32px;
  max-width: 1240px; margin: 0 auto;
  align-items: center;
}
.helm-hero__chip {
  display: inline-block;
  font-size: 11px; letter-spacing: 1.4px; color: var(--helm-acc);
  background: rgba(59, 111, 255, .08);
  border: 1px solid rgba(59, 111, 255, .25);
  padding: 6px 12px; border-radius: 4px;
  margin: 0 0 18px;
  text-transform: uppercase; font-weight: 700;
}
h1 {
  font-family: "Khand", "Manrope", system-ui, sans-serif;
  font-size: clamp(31px, 4.5vw, 51px); line-height: 1.05;
  margin: 0 0 18px; letter-spacing: -.4px; font-weight: 700;
}
.helm-acc { color: var(--helm-acc) }
.helm-hero__sub {
  color: var(--helm-txt-d); font-size: 16px; margin: 0 0 14px; line-height: 1.65;
}
.helm-hero__btns { display: flex; gap: 12px; flex-wrap: wrap; margin: 24px 0 28px }

/* HERO product-hub: quick-action */
.helm-hub {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
  margin: 0 0 22px;
}
.helm-qa {
  background: var(--helm-bg-2);
  border: 1px solid var(--helm-line);
  border-radius: var(--helm-r-s);
  padding: 14px 16px;
  display: flex; flex-direction: column; gap: 3px;
  transition: border-color .2s, transform .15s;
  color: var(--helm-txt);
}
.helm-qa:hover { border-color: var(--helm-acc); transform: translateY(-2px); text-decoration: none }
.helm-qa__k { font-size: 11px; color: var(--helm-acc-2); text-transform: uppercase; letter-spacing: 1.4px; font-weight: 700 }
.helm-qa__v { font-size: 14px; font-weight: 600; color: var(--helm-txt) }
.helm-qa__s { font-size: 12px; color: var(--helm-txt-d) }

.helm-kpi {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  padding: 18px 0 0; border-top: 1px solid var(--helm-line);
}
.helm-kpi__item { display: flex; flex-direction: column; gap: 2px }
.helm-kpi__num {
  font-family: "Khand", system-ui, sans-serif;
  font-size: 28px; font-weight: 700;
  color: var(--helm-acc); letter-spacing: -.4px;
}
.helm-kpi__lbl { font-size: 11px; color: var(--helm-txt-d); text-transform: uppercase; letter-spacing: 1.2px }

.helm-hero__pic { margin: 0 }
.helm-hero__pic-svg {
  display: block; width: 100%; height: auto;
  border-radius: var(--helm-r); border: 1px solid var(--helm-line);
  background:
    radial-gradient(420px 320px at 50% 50%, rgba(59, 111, 255, .26), transparent 60%),
    radial-gradient(360px 280px at 78% 80%, rgba(255, 176, 32, .14), transparent 65%),
    linear-gradient(135deg, #0d1530 0%, #161f44 100%);
  aspect-ratio: 16 / 11;
  box-shadow: 0 24px 64px -22px rgba(59, 111, 255, .45);
}
.helm-hero__pic figcaption {
  margin-top: 12px; font-size: 12px; color: var(--helm-txt-dd);
  font-style: italic; text-align: right;
}

/* ===== SECTIONS GENERAL ===== */
section {
  max-width: 1240px; margin: 0 auto;
  padding: 56px 22px;
}
section.helm-hero, section.helm-slots { padding-top: 36px }
.helm-ovrline {
  display: inline-block;
  font-size: 11px; letter-spacing: 2.6px; text-transform: uppercase;
  color: var(--helm-acc-2); font-weight: 700;
  margin: 0 0 10px;
}
h2 {
  font-family: "Khand", "Manrope", system-ui, sans-serif;
  font-size: clamp(25px, 3.2vw, 37px); line-height: 1.16;
  margin: 0 0 16px; letter-spacing: -.2px; font-weight: 700;
}
h3 {
  font-family: "Khand", "Manrope", system-ui, sans-serif;
  font-size: clamp(18px, 2vw, 22px); line-height: 1.3;
  margin: 26px 0 10px; color: var(--helm-acc); font-weight: 600; letter-spacing: 0;
}
p { margin: 0 0 14px; color: var(--helm-txt) }
.helm-lead { color: var(--helm-txt-d); font-size: 16px; margin-bottom: 24px; max-width: 800px }

/* ===== SLOT GRID (lead block) ===== */
.helm-slots { }
.helm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px; margin: 24px 0;
}
.helm-card {
  background: var(--helm-bg-2);
  border: 1px solid var(--helm-line);
  border-radius: var(--helm-r);
  overflow: hidden;
  transition: transform .15s, border-color .2s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.helm-card:hover {
  transform: translateY(-3px);
  border-color: var(--helm-acc);
  box-shadow: 0 18px 36px -14px rgba(59, 111, 255, .45);
}
.helm-card__cover {
  width: 100%; aspect-ratio: 4 / 3;
  display: flex; align-items: center; justify-content: center;
  font-family: "Khand", system-ui, sans-serif;
  font-weight: 700; font-size: 22px; color: rgba(232, 236, 251, .95);
  text-align: center; padding: 14px;
  letter-spacing: -.2px; line-height: 1.12;
  position: relative; overflow: hidden;
}
.helm-card__cover::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(160deg, transparent 40%, rgba(0,0,0,.42) 100%);
  pointer-events: none;
}
.helm-cv-1 { background: linear-gradient(135deg, #15225a 0%, #3b6fff 100%) }
.helm-cv-2 { background: linear-gradient(135deg, #2e2208 0%, #ffb020 100%); color: #0a1024 }
.helm-cv-3 { background: linear-gradient(135deg, #102448 0%, #5fe0b0 100%); color: #08160f }
.helm-cv-4 { background: linear-gradient(135deg, #1a1f4a 0%, #6a92ff 100%) }
.helm-cv-5 { background: linear-gradient(135deg, #2a2030 0%, #ff8db0 100%); color: #0a1024 }
.helm-cv-6 { background: linear-gradient(135deg, #122a4a 0%, #45c8ff 100%) }
.helm-cv-7 { background: linear-gradient(135deg, #2e2408 0%, #ffce5e 100%); color: #0a1024 }
.helm-cv-8 { background: linear-gradient(135deg, #15225a 0%, #4f7dff 100%) }
.helm-cv-9 { background: linear-gradient(135deg, #102a3a 0%, #5fd0e0 100%); color: #08160f }
.helm-cv-10 { background: linear-gradient(135deg, #2a1f48 0%, #a07dff 100%) }
.helm-cv-11 { background: linear-gradient(135deg, #322408 0%, #ffb020 100%); color: #0a1024 }
.helm-cv-12 { background: linear-gradient(135deg, #15225a 0%, #3b6fff 100%) }

.helm-card h3 { font-size: 15px; margin: 12px 14px 4px; color: var(--helm-txt); font-weight: 600 }
.helm-card p { font-size: 12px; color: var(--helm-txt-d); margin: 0 14px 12px; line-height: 1.4 }
.helm-card__btn {
  display: block; padding: 10px;
  margin: auto 12px 12px;
  background: var(--helm-bg-3); color: var(--helm-txt);
  text-align: center; border-radius: 6px; font-size: 13px; font-weight: 600;
  border: 1px solid var(--helm-line); transition: all .15s;
}
.helm-card__btn:hover { background: var(--helm-acc); border-color: var(--helm-acc); color: #fff; text-decoration: none }

.helm-prov { margin: 22px 0 0 }
.helm-prov__title { font-size: 12px; color: var(--helm-acc-2); margin-bottom: 10px; letter-spacing: 1.4px; text-transform: uppercase; font-weight: 700 }
.helm-prov__list { display: flex; flex-wrap: wrap; gap: 8px }
.helm-prov__list span {
  padding: 6px 12px;
  background: var(--helm-bg-2);
  border: 1px solid var(--helm-line);
  border-radius: 4px;
  font-size: 12px; color: var(--helm-txt-d);
}
.helm-online {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px;
  padding-top: 20px; border-top: 1px solid var(--helm-line);
}
.helm-online span {
  padding: 7px 13px; background: var(--helm-bg-3);
  border: 1px solid var(--helm-line); border-radius: 4px;
  font-size: 12px; color: var(--helm-txt-d);
}

/* ===== WELCOME ===== */
.helm-welcome {
  background:
    radial-gradient(720px 360px at 82% 28%, rgba(255, 176, 32, .06) 0%, transparent 70%),
    rgba(18, 26, 54, .55);
  border: 1px solid var(--helm-line);
  border-radius: var(--helm-r);
  margin: 32px 22px;
  max-width: none;
}
.helm-welcome__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin: 22px 0 24px;
}
.helm-wbox {
  background: var(--helm-bg-2);
  border: 1px solid var(--helm-line);
  border-radius: var(--helm-r);
  padding: 22px 20px;
  position: relative; overflow: hidden;
  transition: border-color .2s, transform .15s;
}
.helm-wbox:hover { border-color: var(--helm-acc); transform: translateY(-2px) }
.helm-wbox::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(59, 111, 255, .08), transparent 60%);
  pointer-events: none;
}
.helm-wbox__step {
  font-family: "Khand", system-ui, sans-serif;
  font-size: 11px; color: var(--helm-acc-2); font-weight: 700;
  letter-spacing: 2px; margin-bottom: 8px; text-transform: uppercase;
}
.helm-wbox__pct {
  font-family: "Khand", system-ui, sans-serif;
  font-size: 32px; font-weight: 700; line-height: 1;
  color: var(--helm-acc); letter-spacing: -.4px;
  margin-bottom: 8px;
}
.helm-wbox__title { font-weight: 700; font-size: 15px; margin-bottom: 6px }
.helm-wbox__sub { font-size: 13px; color: var(--helm-txt-d); line-height: 1.5 }

/* ===== THREE STEPS ===== */
.helm-steps3__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 22px;
}
.helm-sbox {
  background: var(--helm-bg-2);
  border: 1px solid var(--helm-line);
  border-radius: var(--helm-r);
  padding: 24px;
  position: relative;
}
.helm-sbox__num {
  font-family: "Khand", system-ui, sans-serif;
  position: absolute; top: 14px; right: 22px;
  font-size: 58px; font-weight: 700; line-height: 1;
  color: var(--helm-bg-3);
}
.helm-sbox__head {
  font-size: 19px; font-weight: 700; margin-bottom: 12px;
  color: var(--helm-acc);
}
.helm-sbox p { color: var(--helm-txt-d); font-size: 14px; margin: 0 }

/* ===== LOYALTY ===== */
.helm-loy__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
  margin-top: 22px;
}
.helm-lbox {
  background: var(--helm-bg-2);
  border: 1px solid var(--helm-line);
  border-radius: var(--helm-r);
  padding: 22px 24px;
  transition: border-color .2s;
}
.helm-lbox:hover { border-color: var(--helm-acc-2) }
.helm-lbox__h { font-weight: 700; font-size: 18px; margin-bottom: 10px; color: var(--helm-acc-2) }
.helm-lbox p { color: var(--helm-txt-d); font-size: 14px; margin: 0; line-height: 1.6 }

/* VIP-лестница */
.helm-ladder {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 6px; margin-top: 14px;
}
.helm-ladder__step {
  background: var(--helm-bg-3);
  border: 1px solid var(--helm-line);
  border-radius: 6px;
  padding: 10px 8px;
  text-align: center;
  position: relative;
}
.helm-ladder__step:nth-child(1) { transform: translateY(0) }
.helm-ladder__step:nth-child(2) { transform: translateY(-6px) }
.helm-ladder__step:nth-child(3) { transform: translateY(-12px) }
.helm-ladder__step:nth-child(4) { transform: translateY(-18px); border-color: var(--helm-acc); background: var(--helm-bg-2) }
.helm-ladder__step:nth-child(5) { transform: translateY(-24px); border-color: var(--helm-acc); background: var(--helm-bg-2) }
.helm-ladder__step:nth-child(6) { transform: translateY(-30px); border-color: var(--helm-acc-2); background: linear-gradient(135deg, var(--helm-bg-2), rgba(255, 176, 32, .1)) }
.helm-ladder__name {
  font-family: "Khand", system-ui, sans-serif;
  font-size: 13px; font-weight: 700; color: var(--helm-txt);
  display: block; line-height: 1; margin-bottom: 5px;
}
.helm-ladder__cb { font-size: 11px; color: var(--helm-txt-d) }
.helm-ladder__step:nth-child(6) .helm-ladder__name { color: var(--helm-acc-2) }

/* ===== TOUR ===== */
.helm-tour {
  background:
    radial-gradient(640px 360px at 50% 50%, rgba(59, 111, 255, .12) 0%, transparent 70%),
    var(--helm-bg-2);
  border: 1px solid var(--helm-line);
  border-radius: var(--helm-r);
  margin: 32px 22px; max-width: none;
  text-align: center;
}
.helm-tour__btns { margin: 22px 0 28px }
.helm-tour__kpi {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  margin-top: 22px;
}
.helm-tour__kpi > div {
  background: var(--helm-bg-3);
  border: 1px solid var(--helm-line);
  border-radius: var(--helm-r);
  padding: 18px 16px;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  text-align: center;
}
.helm-tour__kpi span {
  font-family: "Khand", system-ui, sans-serif;
  font-size: 24px; font-weight: 700; color: var(--helm-acc);
  margin-bottom: 4px; letter-spacing: -.3px;
}
.helm-tour__kpi .helm-tk-h { font-size: 14px; font-weight: 700; color: var(--helm-txt) }
.helm-tour__kpi i { font-size: 12px; color: var(--helm-txt-d); font-style: normal; line-height: 1.4 }

/* ===== LIVE GALLERY ===== */
.helm-live__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px; margin-top: 22px;
}
.helm-lvbox {
  background: var(--helm-bg-2);
  border: 1px solid var(--helm-line);
  border-radius: var(--helm-r);
  overflow: hidden;
  position: relative;
  transition: transform .15s, border-color .2s, box-shadow .25s;
}
.helm-lvbox:hover {
  transform: translateY(-3px);
  border-color: var(--helm-hot);
  box-shadow: 0 18px 36px -14px rgba(255, 93, 122, .4);
}
.helm-lvbox__cover {
  width: 100%; aspect-ratio: 16 / 9;
  display: flex; align-items: center; justify-content: center;
  font-family: "Khand", system-ui, sans-serif;
  font-weight: 700; font-size: 19px; color: rgba(232, 236, 251, .95);
  padding: 12px; text-align: center; letter-spacing: -.2px;
  position: relative; overflow: hidden;
}
.helm-lv-1 { background: linear-gradient(135deg, #15225a 0%, #3b6fff 100%) }
.helm-lv-2 { background: linear-gradient(135deg, #2e2208 0%, #ffb020 100%); color: #0a1024 }
.helm-lv-3 { background: linear-gradient(135deg, #102448 0%, #5fe0b0 100%); color: #08160f }
.helm-lv-4 { background: linear-gradient(135deg, #2a2030 0%, #ff8db0 100%); color: #0a1024 }
.helm-lv-5 { background: linear-gradient(135deg, #1a1f4a 0%, #6a92ff 100%) }
.helm-lv-6 { background: linear-gradient(135deg, #122a4a 0%, #45c8ff 100%) }

.helm-lvbox__b { padding: 14px 16px 16px; position: relative }
.helm-lvbox__t { font-weight: 700; font-size: 16px; margin-bottom: 4px }
.helm-lvbox__s { font-size: 12px; color: var(--helm-txt-d); margin-bottom: 10px }
.helm-lvbox__m { font-size: 13px; color: var(--helm-acc-2); font-weight: 600; margin-bottom: 4px }
.helm-lvbox__p { font-size: 12px; color: var(--helm-txt-dd) }
.helm-lvbox__live {
  position: absolute; top: 12px; right: 16px;
  background: var(--helm-hot); color: #fff;
  padding: 3px 10px; border-radius: 4px;
  font-size: 10px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
}

/* ===== BRAND OVERVIEW ===== */
.helm-brand h3 {
  border-left: 3px solid var(--helm-acc);
  padding-left: 14px; margin-top: 30px;
}
.helm-brand p { color: var(--helm-txt); line-height: 1.7 }
.helm-badges {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--helm-line);
}
.helm-bdg {
  padding: 7px 13px;
  background: var(--helm-bg-2);
  border: 1px solid var(--helm-acc);
  border-radius: 4px;
  font-size: 12px; color: var(--helm-txt);
  letter-spacing: .4px;
}

/* ===== AUTHOR NOTE ===== */
.helm-author p { color: var(--helm-txt); line-height: 1.72 }
.helm-author .helm-age { color: var(--helm-txt-d); font-size: 14px }

/* ===== REVIEWS ===== */
.helm-rev__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 22px;
}
.helm-rbox {
  background: var(--helm-bg-2);
  border: 1px solid var(--helm-line);
  border-radius: var(--helm-r);
  padding: 22px 24px;
  display: flex; flex-direction: column; gap: 14px;
}
.helm-rbox__stars { color: var(--helm-acc-2); font-size: 16px; letter-spacing: 4px }
.helm-rbox__stars--four .helm-star-off { color: var(--helm-line-2); }
.helm-rbox__q { font-size: 14px; line-height: 1.6; color: var(--helm-txt); margin: 0 }
.helm-rbox__meta {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: var(--helm-txt-d);
  border-top: 1px solid var(--helm-line); padding-top: 14px;
}
.helm-rbox__a {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--helm-acc), var(--helm-acc-2));
  border-radius: 50%; color: #061026; font-weight: 700; font-size: 14px;
  flex: none;
}

/* ===== 18+ STRIP ===== */
.helm-resp {
  margin: 32px 22px; max-width: none;
  background: var(--helm-bg-2);
  border: 1px solid var(--helm-line);
  border-radius: var(--helm-r);
  padding: 26px 28px;
}
.helm-resp h2 { font-size: clamp(19px, 2vw, 23px); margin-bottom: 10px }
.helm-resp p { color: var(--helm-txt-d); font-size: 14px; margin: 0; line-height: 1.7 }
.helm-resp__badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; flex: none; margin-bottom: 14px;
  border: 2px solid var(--helm-acc); border-radius: 50%;
  color: var(--helm-acc); font-family: "Khand", system-ui, sans-serif;
  font-weight: 700; font-size: 15px;
}

/* ===== PAYMENTS ===== */
.helm-pay__grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px;
  margin: 22px 0 22px;
}
.helm-pbox {
  background: var(--helm-bg-2);
  border: 1px solid var(--helm-line);
  border-radius: var(--helm-r-s);
  padding: 18px 14px;
  text-align: center;
  display: flex; flex-direction: column; gap: 4px;
}
.helm-pbox .helm-pb-h { font-size: 15px; color: var(--helm-txt); font-weight: 700 }
.helm-pbox i { font-size: 11px; color: var(--helm-txt-d); font-style: normal; text-transform: uppercase; letter-spacing: 1px }

.helm-pay__times {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin-top: 8px;
}
.helm-pay__times > div {
  background: var(--helm-bg-3);
  border: 1px solid var(--helm-line);
  border-radius: var(--helm-r-s);
  padding: 14px 18px;
  display: flex; flex-direction: column; gap: 4px;
}
.helm-pay__times .helm-pt-h {
  font-family: "Khand", system-ui, sans-serif;
  font-size: 17px; color: var(--helm-acc); font-weight: 700;
}
.helm-pay__times span { font-size: 12px; color: var(--helm-txt-d) }

/* ===== FINAL CTA ===== */
.helm-final {
  text-align: center; padding: 56px 22px;
  background:
    radial-gradient(620px 320px at 50% 50%, rgba(59, 111, 255, .16) 0%, transparent 70%),
    var(--helm-bg-2);
  border-radius: var(--helm-r);
  margin: 32px 22px;
  border: 1px solid var(--helm-line);
  max-width: none;
}
.helm-final h2 { margin-bottom: 10px }
.helm-final p { color: var(--helm-txt-d); margin-bottom: 24px }

/* ===== FAQ ===== */
.helm-faq h2 { margin-bottom: 22px }
details {
  background: var(--helm-bg-2);
  border: 1px solid var(--helm-line);
  border-radius: var(--helm-r-s);
  padding: 16px 20px;
  margin: 0 0 10px;
  transition: border-color .2s;
}
details[open] { border-color: var(--helm-acc) }
summary {
  cursor: pointer; font-weight: 600; list-style: none;
  position: relative; padding-right: 32px;
  display: flex; align-items: center; min-height: 24px;
}
summary::-webkit-details-marker { display: none }
summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 22px; height: 22px;
  border: 1px solid var(--helm-line); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--helm-acc); font-size: 15px;
  transition: transform .25s;
}
details[open] summary::after { transform: translateY(-50%) rotate(45deg); border-color: var(--helm-acc) }
details p { margin: 12px 0 0; color: var(--helm-txt-d); font-size: 15px; line-height: 1.65 }

/* ===== FOOTER ===== */
.helm-foot {
  margin-top: 24px;
  border-top: 1px solid var(--helm-line);
  background: rgba(10, 16, 36, .6);
}
.helm-foot__top {
  max-width: 1240px; margin: 0 auto;
  padding: 42px 22px 26px;
  display: grid; grid-template-columns: 1.4fr 2fr; gap: 36px;
}
.helm-foot__brand { font-size: 14px; color: var(--helm-txt-d); line-height: 1.65 }
.helm-foot__logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.helm-foot__logo span { display: flex; flex-direction: column; line-height: 1.1 }
.helm-foot__logo .helm-strong { color: var(--helm-txt); font-size: 16px; font-weight: 700; margin-bottom: 2px }
.helm-foot__legal { font-size: 12px; color: var(--helm-txt-dd); margin: 0; line-height: 1.65 }
.helm-foot__legal .helm-strong { color: var(--helm-acc) }
.helm-foot__cols {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.helm-foot__col h4 {
  font-family: "Khand", system-ui, sans-serif;
  font-size: 13px; color: var(--helm-acc-2); font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.6px;
  margin: 0 0 12px;
}
.helm-foot__col ul { list-style: none; padding: 0; margin: 0 }
.helm-foot__col li {
  font-size: 13px; color: var(--helm-txt-d);
  padding: 4px 0; cursor: default;
  transition: color .15s;
}
.helm-foot__col li:hover { color: var(--helm-txt) }
.helm-foot__bottom {
  border-top: 1px solid var(--helm-line);
  padding: 16px 22px;
  max-width: 1240px; margin: 0 auto;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  font-size: 12px; color: var(--helm-txt-dd);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .helm-welcome__grid { grid-template-columns: 1fr }
  .helm-pay__grid { grid-template-columns: repeat(3, 1fr) }
  .helm-tour__kpi { grid-template-columns: repeat(2, 1fr) }
  .helm-rev__grid { grid-template-columns: 1fr }
  .helm-foot__top { grid-template-columns: 1fr }
  .helm-metr { grid-template-columns: repeat(3, 1fr) }
  .helm-metr__cell:nth-child(4), .helm-metr__cell:nth-child(5) { border-top: 1px solid var(--helm-line); padding-top: 8px }
  .helm-ladder { grid-template-columns: repeat(3, 1fr) }
  .helm-ladder__step { transform: none !important }
}

@media (max-width: 880px) {
  .helm-hero { grid-template-columns: 1fr; gap: 24px; padding-top: 32px }
  .helm-hero__pic { order: -1 }
  .helm-nav { display: none }
  .helm-bar { padding: 11px 14px }
  section { padding: 36px 16px }
  .helm-welcome, .helm-tour, .helm-final, .helm-resp { padding: 36px 18px; margin: 22px 14px }
  .helm-steps3__grid { grid-template-columns: 1fr }
  .helm-loy__grid { grid-template-columns: 1fr }
  .helm-foot__top { padding: 30px 16px 22px; gap: 22px }
  .helm-foot__cols { grid-template-columns: repeat(2, 1fr); gap: 18px }
  .helm-metr { padding: 8px 14px; grid-template-columns: repeat(2, 1fr); font-size: 12px }
  .helm-metr__cell { padding: 4px 10px }
  .helm-pay__times { grid-template-columns: 1fr }
  .helm-kpi { grid-template-columns: repeat(2, 1fr) }
  .helm-hub { grid-template-columns: 1fr }
}

@media (max-width: 480px) {
  .helm-grid { grid-template-columns: repeat(2, 1fr); gap: 10px }
  .helm-live__grid { grid-template-columns: 1fr }
  .helm-card h3 { font-size: 13px }
  .helm-card p { font-size: 11px }
  .helm-card__cover { font-size: 16px }
  .helm-hero__btns { flex-direction: column; align-items: stretch }
  .helm-cta--big { width: 100% }
  .helm-pay__grid { grid-template-columns: repeat(2, 1fr) }
  .helm-tour__kpi { grid-template-columns: 1fr }
  .helm-foot__cols { grid-template-columns: 1fr }
  .helm-ladder { grid-template-columns: repeat(2, 1fr) }
}
