/* ==========================================================================
   Лира AI: сайт-визитка. Общие стили.
   Стиль: чистая промо-страница приложения (плоские цветные полосы
   с волнистыми переходами).
   Используются системные шрифты без внешних загрузок.
   ========================================================================== */

:root {
  --ink: #14181f;
  --ink-2: #2c3542;
  --muted: #5d6675;
  --muted-2: #8a93a3;

  --paper: #f4f6fa;
  --surface: #ffffff;
  --surface-2: #eef2f8;
  --line: #e3e8f0;
  --line-2: #d7deea;

  --blue: #1f65d6;
  --navy: #102a44;
  --blue-600: #1a55b8;
  --blue-700: #16489c;
  --blue-50: #eaf1fd;
  --blue-100: #d8e6fb;

  --green: #2c8c61;
  --green-50: #e7f4ed;

  --warn-50: #fcf3e3;
  --warn-ink: #9a6a18;

  --radius-sm: 8px;
  --radius: 8px;
  --radius-lg: 8px;
  --radius-pill: 999px;

  --shadow-xs: 0 1px 2px rgba(20, 34, 64, .06);
  --shadow-sm: 0 2px 6px rgba(20, 34, 64, .06), 0 8px 18px rgba(20, 34, 64, .05);
  --shadow: 0 14px 36px rgba(20, 40, 84, .10);
  --shadow-lg: 0 34px 80px rgba(18, 38, 84, .16);

  --container: 1180px;
  --gutter: 24px;

  --font: -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { margin: 0; line-height: 1.08; letter-spacing: 0; font-weight: 800; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}
/* keep eyebrow size consistent even inside .section-head (which sets p font-size) */
.section-head p.eyebrow { font-size: 13px; }
.eyebrow::before {
  content: "";
  width: 18px; height: 2px; border-radius: 2px;
  background: var(--blue);
}
.eyebrow.green { color: var(--green); }
.eyebrow.green::before { background: var(--green); }

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .15s ease, background-color .15s ease, border-color .15s ease, box-shadow .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 8px 20px rgba(31, 101, 214, .28);
}
.btn-primary:hover { background: var(--blue-600); box-shadow: 0 10px 26px rgba(31, 101, 214, .34); }
.btn-ghost {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--line-2);
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn-sm { min-height: 44px; padding: 0 18px; font-size: 15px; }
.btn-block { width: 100%; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 246, 250, .82);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.site-header.is-stuck {
  border-color: var(--line);
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 6px 24px rgba(20, 34, 64, .05);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0;
  color: var(--ink);
  white-space: nowrap;
}
.brand-name { white-space: nowrap; }
.brand-mark {
  display: block;
  width: 38px; height: 38px;
  border-radius: 11px;
  background: #102235 url("app-icon.png") center / cover no-repeat;
  color: transparent;
  font-size: 0;
  box-shadow: 0 6px 16px rgba(31, 101, 214, .35);
}

/* Standalone Site top-up: email proof before the existing protected checkout. */
.topup-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 14% 14%, rgba(51, 115, 230, .16), transparent 34%),
    linear-gradient(145deg, #edf3ff 0%, #f7f9fc 48%, #eef4ff 100%);
}
.topup-header { position: relative; }
.topup-header-actions .btn-secondary {
  color: var(--blue-700);
  background: var(--blue-50);
  border: 1px solid #cbdcff;
}
.topup-page { flex: 1; display: grid; align-items: center; padding: 64px 0 72px; }
.topup-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 470px);
  gap: clamp(48px, 8vw, 108px);
  align-items: center;
}
.topup-copy { max-width: 590px; }
.topup-copy h1 { margin-top: 16px; font-size: clamp(42px, 5vw, 64px); line-height: 1.03; letter-spacing: -.045em; }
.topup-lead { margin-top: 22px; color: var(--ink-2); font-size: 19px; line-height: 1.65; }
.topup-trust { display: grid; gap: 13px; margin-top: 30px; }
.topup-trust li { display: flex; gap: 11px; align-items: flex-start; color: var(--ink-2); font-size: 15.5px; }
.topup-trust li span {
  flex: none; width: 23px; height: 23px; display: grid; place-items: center;
  border-radius: 50%; color: var(--green); background: var(--green-50); font-size: 12px; font-weight: 800;
}
.topup-card {
  min-height: 490px;
  padding: 34px;
  border: 1px solid rgba(132, 157, 205, .32);
  border-radius: 18px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 28px 72px rgba(25, 55, 118, .16);
}
.topup-progress { display: grid; grid-template-columns: 28px 1fr 28px 1fr 28px; align-items: center; }
.topup-progress span {
  width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%;
  background: var(--surface-2); color: var(--muted); font-size: 12px; font-weight: 800;
}
.topup-progress span.active { color: #fff; background: var(--blue); box-shadow: 0 0 0 5px var(--blue-50); }
.topup-progress i { height: 1px; background: var(--line); }
.topup-progress-label { margin-top: 12px; color: var(--muted); font-size: 12.5px; text-align: center; }
.topup-card h2 { margin-top: 30px; font-size: 27px; line-height: 1.2; }
.topup-hint { margin-top: 10px; color: var(--muted); font-size: 14.5px; line-height: 1.55; }
.topup-hint strong { color: var(--ink-2); overflow-wrap: anywhere; }
.topup-form { display: grid; gap: 9px; margin-top: 24px; }
.topup-form label { color: var(--ink-2); font-size: 13.5px; font-weight: 700; }
.topup-form input {
  width: 100%; min-height: 52px; padding: 0 15px; border: 1px solid #c9d2df;
  border-radius: var(--radius); background: #fff; color: var(--ink); font: inherit;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.topup-form input::placeholder { color: var(--muted-2); }
.topup-form input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(39, 103, 222, .13); }
.topup-form input:disabled { background: var(--surface); cursor: wait; }
.topup-submit { width: 100%; min-height: 50px; margin-top: 7px; border-radius: var(--radius); }
.topup-submit:disabled { opacity: .68; cursor: wait; }
.topup-secondary-actions { display: flex; flex-wrap: wrap; gap: 12px 18px; margin-top: 18px; }
.topup-link-button {
  padding: 0; border: 0; background: none; color: var(--blue); font: inherit;
  font-size: 13.5px; font-weight: 650; cursor: pointer;
}
.topup-link-button:hover:not(:disabled) { color: var(--blue-700); text-decoration: underline; }
.topup-link-button:disabled { color: var(--muted-2); cursor: default; }
.topup-status,
.topup-alert { margin-top: 18px; padding: 12px 14px; border-radius: var(--radius); font-size: 14px; line-height: 1.45; }
.topup-status { color: var(--blue-700); background: var(--blue-50); }
.topup-alert { color: #8b2d2d; background: #fff0f0; border: 1px solid #f4caca; }
.topup-legal { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12.5px; line-height: 1.5; }
.topup-legal a { color: var(--blue); font-weight: 600; }
.topup-footer { padding: 24px 0; color: var(--muted); font-size: 13px; }
.topup-footer-inner { display: flex; justify-content: space-between; gap: 24px; border-top: 1px solid rgba(132, 157, 205, .28); padding-top: 22px; }
.topup-footer a { color: var(--ink-2); }
.billing-cta { display: inline-flex; margin-top: 22px; }
.billing-cta + .card-link { margin-left: 16px; }

@media (max-width: 900px) {
  .topup-page { padding: 40px 0 56px; }
  .topup-layout { grid-template-columns: 1fr; gap: 34px; }
  .topup-copy { grid-row: 1; max-width: 720px; }
  .topup-card { grid-row: 2; min-height: 0; }
  .topup-copy h1 { font-size: 44px; }
}

@media (max-width: 620px) {
  .topup-header-actions .header-contact { display: none; }
  .topup-page { padding: 28px 0 40px; }
  .topup-copy h1 { font-size: 36px; }
  .topup-lead { font-size: 17px; }
  .topup-trust { margin-top: 24px; }
  .topup-card { padding: 24px 20px; border-radius: 14px; }
  .topup-card h2 { font-size: 24px; }
  .topup-secondary-actions { display: grid; }
  .topup-footer-inner { display: grid; gap: 8px; }
  .billing-cta { width: 100%; justify-content: center; }
  .billing-cta + .card-link { display: block; margin: 16px 0 0; }
}
.brand-name b { font-weight: 800; }
.brand-name span { color: inherit; font-weight: 800; }

.top-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 12px;
}
.top-nav a {
  padding: 8px 13px;
  border-radius: var(--radius-pill);
  color: var(--ink-2);
  font-size: 15px;
  font-weight: 600;
  transition: background-color .15s ease, color .15s ease;
}
.top-nav a:hover { background: var(--surface-2); color: var(--blue); }

.header-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.header-contact {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 4px;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: color .15s ease;
}
.header-contact:hover { color: var(--blue); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
}
.nav-toggle span { position: relative; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; padding: 56px 0 72px; overflow: hidden; background: linear-gradient(180deg, #e7efff 0%, #eef3fb 55%, var(--paper) 100%); }
.hero::before {
  content: "";
  display: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 48px;
  align-items: center;
}
.hero-copy { max-width: 600px; }
.hero h1 {
  margin-top: 18px;
  font-size: 64px;
  font-weight: 800;
}
.hero h1 .accent { color: var(--blue); }
.hero-lead {
  margin-top: 22px;
  font-size: 21px;
  color: var(--ink-2);
  max-width: 540px;
}
.hero-actions { display: flex; flex-wrap: wrap; align-items: flex-start; gap: 12px; margin-top: 30px; }
.apk-col { display: flex; flex-direction: column; gap: 12px; }
.hero-note {
  display: inline-flex; align-items: center; gap: 9px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 14.5px;
}
.hero-note .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px var(--green-50); }

/* store badges */
.store-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.apk-col .store-row { margin-top: 0; }
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 9px 16px 9px 13px;
  border-radius: 14px;
  background: var(--ink);
  color: #fff;
  position: relative;
  text-decoration: none;
  transition: transform .15s ease, background-color .15s ease, border-color .15s ease;
}
a.store-badge:hover { transform: translateY(-1px); color: #fff; }
.store-badge .glyph {
  width: 26px; height: 26px;
  display: grid; place-items: center;
  border-radius: 7px;
  background: rgba(255,255,255,.12);
  font-size: 14px;
}
.store-badge .lines { display: flex; flex-direction: column; line-height: 1.15; }
.store-badge .lines small { font-size: 10.5px; color: #aab4c4; letter-spacing: 0; }
.store-badge .lines b { font-size: 15px; font-weight: 700; }
.store-badge[data-soon]::after {
  content: "скоро";
  position: absolute;
  top: -8px; right: -6px;
  font-size: 10px; font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  letter-spacing: 0;
}

/* hero scene: 1C window + phone */
.hero-scene { position: relative; min-height: 480px; }

.onec {
  position: relative;
  width: min(560px, 100%);
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.onec-bar {
  display: flex; align-items: center; gap: 8px;
  height: 44px; padding: 0 16px;
  border-bottom: 1px solid var(--line);
  background: #f8fafc;
  color: var(--muted);
  font-size: 13.5px;
}
.onec-bar .lights { display: flex; gap: 7px; }
.onec-bar .lights i { width: 10px; height: 10px; border-radius: 50%; background: #cdd6e2; display: block; }
.onec-bar .title { margin-left: 6px; font-weight: 700; color: var(--ink-2); white-space: nowrap; }
.onec-bar .title b { color: var(--blue); }
.onec-bar .tab {
  margin-left: auto;
  padding: 4px 10px; border-radius: 8px;
  background: var(--blue-50); color: var(--blue);
  font-size: 12.5px; font-weight: 700;
}
.onec-body { padding: 22px; display: grid; gap: 14px; background:
  linear-gradient(180deg, #fff, #fbfcfe); }

.bubble { max-width: 84%; padding: 13px 16px; border-radius: 14px; font-size: 15px; }
.bubble.user {
  justify-self: end;
  background: var(--blue);
  color: #fff;
  border-bottom-right-radius: 5px;
}
.bubble.ai {
  justify-self: start;
  background: #fff;
  border: 1px solid var(--line);
  border-bottom-left-radius: 5px;
  box-shadow: var(--shadow-xs);
}
.bubble .who {
  display: inline-flex; align-items: center; gap: 7px;
  margin-bottom: 8px;
  color: var(--green); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0;
}
.bubble .who::before {
  content: ""; display: block;
  width: 18px; height: 18px; border-radius: 6px;
  background: #102235 url("app-icon.png") center / cover no-repeat;
}

/* unified QR + store action cards */
.install-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
}
.install-card {
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 104px;
  padding: 10px;
  border: 1px solid #cfd8df;
  border-left: 4px solid var(--navy);
  border-radius: 14px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 4px 14px rgba(16, 42, 68, .08);
  text-decoration: none;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.install-card--soon { border-left-color: #f4b400; }
.install-card[aria-disabled="true"] { cursor: default; }
.install-card:not([aria-disabled="true"]):hover,
.install-card:not([aria-disabled="true"]):focus-visible {
  color: var(--ink);
  border-color: var(--blue);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(16, 42, 68, .13);
  outline: none;
}
.install-card__qr {
  width: 84px;
  height: 84px;
  flex: 0 0 84px;
  margin-right: 11px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  image-rendering: pixelated;
}
.install-card__copy { min-width: 0; }
.install-card__meta {
  display: flex;
  align-items: center;
  min-width: 0;
  color: var(--muted-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
}
.install-card__soon {
  margin-left: 6px;
  padding: 2px 6px;
  border-radius: 999px;
  color: #735600;
  background: #fff0b8;
  font-size: 10px;
  letter-spacing: 0;
}
.install-card__name {
  display: block;
  margin-top: 2px;
  color: var(--navy);
  font-size: 17px;
  font-weight: 800;
  white-space: nowrap;
}
.install-card__action {
  display: block;
  margin-top: 2px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
}
.hero .apk-col { width: 100%; }
.dl-card .install-cards { margin-top: 20px; }
.getlink-actions .install-cards { margin-top: 2px; }
.mini-table {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 8px; margin-top: 13px;
}
.doc-list { margin-top: 10px; display: grid; gap: 6px; }
.doc-list li {
  position: relative; padding-left: 16px;
  font-size: 13.5px; color: var(--ink-2); line-height: 1.35;
}
.doc-list li::before {
  content: ""; position: absolute; left: 2px; top: 8px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--blue);
}
.mini-table > div {
  padding: 10px 11px; border: 1px solid var(--line); border-radius: 11px;
  background: #fff;
}
.mini-table span { display: block; color: var(--muted); font-size: 11.5px; }
.mini-table b { display: block; margin-top: 3px; font-size: 15px; white-space: nowrap; }

.onec-input {
  display: flex; align-items: center; gap: 10px;
  margin-top: 4px; padding: 11px 14px;
  border: 1px solid var(--line); border-radius: 12px;
  color: var(--muted-2); font-size: 14px; background: #fff;
}
.onec-input .send { margin-left: auto; width: 30px; height: 30px; border-radius: 9px; background: var(--blue); color: #fff; display: grid; place-items: center; font-size: 14px; }

/* phone overlay */
.phone {
  position: absolute;
  right: -8px; bottom: -34px;
  width: 208px;
  border-radius: 30px;
  background: #0f1620;
  padding: 11px;
  box-shadow: 0 28px 60px rgba(12, 20, 32, .4);
  border: 1px solid #1d2735;
}
.phone-screen {
  border-radius: 22px;
  background: linear-gradient(180deg, #15233a 0%, #0f1726 100%);
  padding: 16px 15px 18px;
  color: #fff;
  min-height: 360px;
  position: relative;
}
.phone-notch { width: 64px; height: 5px; border-radius: 99px; background: rgba(255,255,255,.25); margin: 2px auto 16px; }
.phone-top { display: flex; align-items: center; gap: 8px; }
.phone-logo { width: 28px; height: 28px; border-radius: 9px; background: #102235 url("app-icon.png") center / cover no-repeat; display: block; flex: none; font-size: 0; }
.phone-top b { font-size: 14px; font-weight: 700; letter-spacing: 0; }
.phone-card {
  margin-top: 16px; padding: 14px;
  border-radius: 14px; background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.08);
}
.phone-card small { color: #9fb2cc; font-size: 11.5px; }
.phone-card .amount { display: block; margin-top: 5px; font-size: 26px; font-weight: 800; }
.phone-qr {
  margin-top: 13px;
  display: flex; align-items: center; gap: 11px;
  padding: 12px; border-radius: 14px;
  background: rgba(255,255,255,.05);
}
.phone-qr .code {
  width: 46px; height: 46px; border-radius: 9px; flex: none;
  background-image: url("qr.svg");
  background-size: contain; background-position: center; background-repeat: no-repeat;
  background-color: #fff; padding: 3px;
}
.phone-qr p { font-size: 11.5px; color: #c4d2e6; line-height: 1.35; }
.phone-btn {
  margin-top: 14px; min-height: 42px; padding: 8px 12px; border-radius: 12px;
  background: var(--blue); color: #fff;
  display: grid; place-items: center; font-size: 13.5px; font-weight: 700;
  text-align: center; line-height: 1.2;
}
.phone-hint { margin-top: 11px; font-size: 11px; color: #8294af; text-align: center; }

/* ==========================================================================
   Trust strip
   ========================================================================== */
.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 8px;
}
.trust-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 22px;
  box-shadow: var(--shadow-xs);
}
.trust-item .ico {
  width: 40px; height: 40px; border-radius: 11px;
  display: grid; place-items: center; font-size: 19px;
  background: var(--blue-50); color: var(--blue); margin-bottom: 14px;
}
.trust-item b { display: block; font-size: 17px; font-weight: 700; }
.trust-item p { margin-top: 6px; color: var(--muted); font-size: 15px; }

/* ==========================================================================
   Generic section
   ========================================================================== */
.section { padding: 84px 0; }
.section.tight { padding: 56px 0; }
.section-head { max-width: 680px; margin-bottom: 44px; }
.section-head.center { max-width: 760px; margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 { margin-top: 16px; font-size: 42px; text-wrap: balance; }
.section-head p { margin-top: 16px; color: var(--muted); font-size: 18px; }

/* ----- Question chips (used in showcase rows) ----- */
.q-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.q-chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 13px; border-radius: var(--radius-pill);
  background: var(--surface-2); color: var(--ink-2);
  font-size: 13.5px; font-weight: 500;
}
.q-chip { gap: 0; }

/* ----- Roles (deep-blue band) ----- */
.roles-section {
  position: relative;
  background: #1c4fa6;
  border: 0;
  padding-block: 92px;
}
.roles-section .eyebrow.green { color: #c2d8ff; }
.roles-section .eyebrow.green::before { background: #c2d8ff; }
.roles-section .section-head h2 { color: #fff; }
.roles-section .section-head p { color: rgba(255, 255, 255, .85); }
.role-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.role-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 26px 24px;
  background: linear-gradient(180deg, #fff, #fbfcfe);
  position: relative;
}
.role-card .role-ico {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center; font-size: 20px;
  background: var(--blue-50); color: var(--blue);
}
.role-card h3 { margin-top: 16px; font-size: 20px; }
.role-card > p { margin-top: 8px; color: var(--muted); font-size: 15px; }
.role-q { margin-top: 16px; display: grid; gap: 9px; }
.role-q li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 15px; color: var(--ink-2);
}
.role-q li::before {
  content: ""; flex: none; margin-top: 8px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--blue);
}

/* ----- Billing ----- */
.billing-title {
  margin-top: 14px;
  font-size: 38px;
}

.billing-card {
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow); padding: 40px;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center;
}
.billing-points { display: grid; gap: 14px; margin-top: 24px; }
.billing-points li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; color: var(--ink-2); }
.billing-points .tick { flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--green-50); color: var(--green); display: grid; place-items: center; font-size: 13px; font-weight: 800; margin-top: 1px; }
.billing-note { margin-top: 20px; color: var(--muted); font-size: 15.5px; max-width: 620px; }
.billing-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
  color: var(--blue);
  font-weight: 700;
}
.billing-side { border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; background: #fbfcfe; }
.billing-side .row { display: flex; justify-content: space-between; align-items: center; padding: 13px 0; border-bottom: 1px solid var(--line); }
.billing-side .row:last-child { border-bottom: 0; }
.billing-side .row span { color: var(--muted); font-size: 14.5px; }
.billing-side .row b { font-size: 15px; }
.billing-side .status { color: var(--warn-ink); background: var(--warn-50); font-size: 12.5px; font-weight: 700; padding: 3px 10px; border-radius: 999px; }
.package-row {
  display: grid;
  grid-template-columns: minmax(72px, .6fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.package-row span { color: var(--ink); font-size: 15px; font-weight: 800; }
.package-row b { font-size: 15px; font-weight: 700; }
.package-row em {
  justify-self: end;
  min-width: 48px;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--green-50);
  color: var(--green);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  text-align: center;
}
.package-row em.package-bonus-empty { visibility: hidden; }
.package-note { margin-top: 14px; color: var(--muted); font-size: 13.5px; line-height: 1.5; }

/* ----- Requirements ----- */
.requirements-section {
  background: #ecf1fb;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.requirement-item {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 22px;
  box-shadow: var(--shadow-xs);
}

.requirement-item .req-ico {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--blue-50);
  color: var(--blue);
  font-size: 16px;
  font-weight: 800;
}
.requirement-item .req-ico svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.requirement-item h3 {
  margin-top: 16px;
  font-size: 19px;
  overflow-wrap: anywhere;
}

.requirement-item p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 15px;
}

/* ----- FAQ ----- */
.faq-section { }
.faq-list { display: grid; gap: 12px; max-width: 860px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--line); border-radius: 14px; background: var(--surface);
  overflow: hidden; box-shadow: var(--shadow-xs);
}
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; gap: 16px;
  padding: 20px 22px; font-size: 17.5px; font-weight: 700;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev {
  margin-left: auto; flex: none;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--surface-2); color: var(--blue);
  display: grid; place-items: center; font-size: 16px;
  transition: transform .2s ease, background-color .2s ease;
}
.faq-item[open] summary .chev { transform: rotate(45deg); background: var(--blue); color: #fff; }
.faq-item .answer { padding: 0 22px 22px; color: var(--muted); font-size: 16px; max-width: 720px; }
.faq-item .answer a { color: var(--blue); font-weight: 600; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: #0f1620; color: #c4cedd; padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer-brand { color: #fff; font-size: 22px; }
.footer-brand .brand-mark { box-shadow: none; }
.footer-about { margin-top: 16px; max-width: 320px; color: #93a0b4; font-size: 15px; }
.footer-contact { margin-top: 18px; display: inline-flex; align-items: center; gap: 8px; color: #fff; font-weight: 700; }
.footer-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0; color: #7d8aa0; font-weight: 700; }
.footer-col ul { margin-top: 16px; display: grid; gap: 11px; }
.footer-col a { color: #c4cedd; font-size: 15px; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid #20293a;
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between;
  color: #7d8aa0; font-size: 13.5px;
}
.footer-bottom .tm { max-width: 640px; }

/* ==========================================================================
   Legal pages
   ========================================================================== */
.legal-hero { padding: 56px 0 8px; }
.legal-hero .back { display: flex; width: max-content; align-items: center; gap: 7px; color: var(--blue); font-weight: 600; font-size: 15px; margin-bottom: 22px; }
.legal-hero .back:hover { color: var(--blue-600); }
.legal-hero h1 { font-size: 48px; }
.legal-hero .lead { margin-top: 16px; color: var(--muted); font-size: 19px; max-width: 720px; }
.legal-status {
  margin-top: 22px; display: inline-flex; align-items: flex-start; gap: 10px;
  padding: 14px 18px; border-radius: 14px;
  background: var(--warn-50); color: var(--warn-ink); font-size: 14.5px; max-width: 720px;
}
.legal-status.payment-ok { background: var(--green-50); color: var(--green); }
.legal-status.payment-info { background: var(--blue-50); color: var(--blue-700); }
.legal-meta {
  display: flex; flex-wrap: wrap; gap: 10px 22px;
  margin-top: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--line);
  color: var(--muted); font-size: 14px;
}
.legal-meta a { color: var(--blue); font-weight: 600; }
.legal-body { padding: 36px 0 80px; }
.legal-layout { display: grid; grid-template-columns: 260px 1fr; gap: 56px; align-items: start; }
.legal-toc { position: sticky; top: 92px; }
.legal-toc h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 0; color: var(--muted-2); }
.legal-toc ul { margin-top: 14px; display: grid; gap: 4px; }
.legal-toc a { display: block; padding: 7px 12px; border-radius: 9px; color: var(--ink-2); font-size: 14.5px; font-weight: 500; border-left: 2px solid transparent; }
.legal-toc a:hover { background: var(--surface); color: var(--blue); }
.legal-content { max-width: 760px; }
.legal-content section { padding: 26px 0; border-bottom: 1px solid var(--line); }
.legal-content section:first-child { padding-top: 0; }
.legal-content section:last-child { border-bottom: 0; }
.legal-content h2 { font-size: 23px; }
.legal-content p { margin-top: 12px; color: var(--ink-2); font-size: 16.5px; }
.legal-content ul { margin-top: 14px; display: grid; gap: 10px; }
.legal-content ul li { display: flex; gap: 11px; align-items: flex-start; color: var(--ink-2); font-size: 16.5px; }
.legal-content ul li::before { content: ""; flex: none; margin-top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }
.legal-content ol { margin: 14px 0 0; padding-left: 22px; display: grid; gap: 10px; color: var(--ink-2); font-size: 16.5px; }
.legal-content ol li { padding-left: 4px; }
.legal-content a { color: var(--blue); font-weight: 600; }
.legal-content .card-link {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 8px;
  padding: 12px 18px; border-radius: 12px; border: 1px solid var(--line-2);
  background: var(--surface); font-weight: 600;
}
.legal-content .card-link:hover { border-color: var(--blue); }

/* legal faq reuse */
.legal-body .faq-list { max-width: 760px; margin: 0; }

/* ==========================================================================
   Reveal animation
   ========================================================================== */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
  .reveal.in { opacity: 1; transform: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1040px) {
  .header-contact { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-scene { min-height: 440px; }
  .connect-grid { grid-template-columns: 1fr; gap: 36px; }
  .app-grid { grid-template-columns: 1fr; gap: 40px; }
  .app-phones { order: -1; min-height: 0; }
  .billing-card { grid-template-columns: 1fr; gap: 28px; padding: 32px; }
  .requirements-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .legal-layout { grid-template-columns: 1fr; gap: 28px; }
  .legal-toc { position: static; }
  .legal-toc ul { display: flex; flex-wrap: wrap; gap: 8px; overflow: visible; }
}

@media (max-width: 860px) {
  .top-nav, .header-actions .btn { display: none; }
  .nav-toggle { display: flex; }
  .site-header.nav-open .top-nav {
    display: flex; position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    padding: 14px var(--gutter) 20px; background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .site-header.nav-open .top-nav a { padding: 13px 14px; font-size: 16px; }
  .role-grid, .trust { grid-template-columns: 1fr; }
  .requirements-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section { padding: 64px 0; }
  .hero h1 { font-size: 52px; }
  .section-head h2 { font-size: 36px; }
  .wave { height: 72px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  :root { --gutter: 18px; }
  .hero { padding: 32px 0 36px; }
  .hero-grid { gap: 24px; }
  .hero h1 { font-size: 40px; }
  .hero-lead { font-size: 18px; }
  .hero-actions { margin-top: 24px; }
  .hero-actions .dl-btn,
  .apk-col { width: 100%; }
  .apk-col .store-row { gap: 8px; }
  .hero .store-badge { flex: 1 1 0; min-width: 0; padding-inline: 10px; }
  .hero-scene {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 132px;
    gap: 14px;
    align-items: center;
    min-height: 220px;
    max-width: 340px;
  }
  .hero-scene .onec.floating { display: none; }
  .hero-scene .phone.in-blob { width: 132px; margin: 0; }
  .hero-scene .phone.in-blob .phone-screen {
    min-height: 214px;
    padding: 12px 10px 14px;
  }
  .hero-scene .phone.in-blob .phone-notch { margin-bottom: 12px; }
  .hero-scene .phone.in-blob .phone-card { margin-top: 10px; padding: 10px; }
  .hero-scene .phone.in-blob .phone-card .amount { font-size: 20px; }
  .hero-scene .phone.in-blob .phone-qr,
  .hero-scene .phone.in-blob .phone-hint { display: none; }
  .hero-scene .phone.in-blob .phone-btn { min-height: 36px; font-size: 11.5px; margin-top: 12px; }
  .hero-strip { display: none; }
  .onec { width: 100%; }
  .mini-table { grid-template-columns: 1fr; }
  .store-row, .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1 1 100%; }
  .billing-card { padding: 24px; }
  .requirements-grid { grid-template-columns: 1fr; }
  .requirement-item { padding: 20px; }
  .billing-title, .section-head h2, .legal-hero h1, .show-text h3, .getlink h2 { font-size: 30px; }
  .wave { height: 56px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ==========================================================================
   hh-style additions: download CTAs, download cards, alternating showcase
   ========================================================================== */

/* Download buttons with icon + sublabel (like store badges, but actionable) */
.dl-btn {
  display: inline-flex; align-items: center; gap: 13px;
  padding: 12px 22px 12px 16px;
  border-radius: 16px; border: 1px solid transparent;
  font-family: inherit; cursor: pointer;
  transition: transform .15s ease, background-color .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.dl-btn:active { transform: translateY(1px); }
.dl-btn .dl-ico {
  width: 38px; height: 38px; flex: none; border-radius: 11px;
  display: grid; place-items: center; font-size: 19px;
}
.dl-btn .dl-lines { display: flex; flex-direction: column; line-height: 1.18; text-align: left; }
.dl-btn .dl-lines small { font-size: 12px; opacity: .82; font-weight: 500; }
.dl-btn .dl-lines b { font-size: 16.5px; font-weight: 700; }
.dl-btn.blue { background: var(--blue); color: #fff; box-shadow: 0 10px 26px rgba(31,101,214,.30); }
.dl-btn.blue:hover { background: var(--blue-600); }
.dl-btn.blue .dl-ico { background: rgba(255,255,255,.16); }
.dl-btn.dark { background: var(--ink); color: #fff; }
.dl-btn.dark:hover { background: #20262f; }
.dl-btn.dark .dl-ico { background: rgba(255,255,255,.12); }
.dl-btn.outline { background: var(--surface); color: var(--ink); border-color: var(--line-2); }
.dl-btn.outline:hover { border-color: var(--blue); color: var(--blue); }
.dl-btn.outline .dl-ico { background: var(--blue-50); color: var(--blue); }

/* ---- Download section: two big cards ---- */
.download-section { background: transparent; border: 0; }
.dl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.dl-card {
  position: relative; overflow: hidden;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #fff, #fafcff);
  padding: 34px; box-shadow: var(--shadow-xs);
  display: flex; flex-direction: column;
}
.dl-card .dl-kicker {
  display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
  padding: 6px 13px; border-radius: 999px; font-size: 12.5px; font-weight: 700;
  background: var(--blue-50); color: var(--blue); letter-spacing: 0; white-space: nowrap;
}
.dl-card.green .dl-kicker { background: var(--green-50); color: var(--green); }
.dl-card h3 { margin-top: 18px; font-size: 25px; }
.dl-card > p { margin-top: 12px; color: var(--muted); font-size: 16px; }
.dl-steps { margin-top: 18px; display: grid; gap: 10px; }
.dl-steps li { display: flex; gap: 11px; align-items: flex-start; font-size: 15.5px; color: var(--ink-2); }
.dl-steps li .n {
  flex: none; width: 24px; height: 24px; border-radius: 7px; margin-top: 1px;
  display: grid; place-items: center; font-size: 13px; font-weight: 800;
  background: var(--blue-50); color: var(--blue);
}
.dl-card.green .dl-steps li .n { background: var(--green-50); color: var(--green); }
.dl-card .dl-actions { margin-top: auto; padding-top: 24px; display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.dl-meta { margin-top: 14px; font-size: 13px; color: var(--muted-2); }

/* app card extras: stores + qr */
.dl-stores { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 14px; }
.dl-qr-row { display: flex; align-items: center; gap: 16px; margin-top: 20px; padding: 16px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.dl-qr-row .qr {
  width: 84px; height: 84px; flex: none; border-radius: 10px; padding: 5px; background: #fff; border: 1px solid var(--line);
  background-image: url("qr.svg");
  background-size: contain; background-position: center; background-repeat: no-repeat;
}
.dl-qr-row p { font-size: 13.5px; color: var(--muted); }
.dl-qr-row p b { color: var(--ink); display: block; font-size: 15px; margin-bottom: 3px; }

/* ---- Alternating showcase (hh "Находи любую работу" pattern) ---- */
.showcase { display: grid; gap: 28px; }
.show-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 48px; box-shadow: var(--shadow-xs); overflow: hidden;
}
.show-row.reverse .show-text { order: 2; }
.show-row .num-tag {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 12px; font-size: 17px; font-weight: 800;
  background: var(--blue-50); color: var(--blue); margin-bottom: 18px;
}
.show-row.alt .num-tag { background: var(--green-50); color: var(--green); }
.show-text h3 { font-size: 34px; text-wrap: balance; }
.show-text p { margin-top: 14px; color: var(--muted); font-size: 17.5px; max-width: 440px; }
.show-text .q-chips { margin-top: 20px; }
.show-media { position: relative; display: flex; justify-content: center; align-items: center; min-height: 320px; }
.show-media .onec { margin: 0; width: 100%; max-width: 480px; }
.show-media .device-phone { position: relative; right: auto; bottom: auto; width: 240px; }
.show-media.tint {
  border-radius: var(--radius);
  background: #dce9ff;
}

/* standalone phone (not absolutely positioned) */
.device-phone {
  width: 230px; border-radius: 34px; background: #0f1620; padding: 12px;
  box-shadow: var(--shadow-lg); border: 1px solid #1d2735;
}
.device-phone .phone-screen { min-height: 440px; }

/* final CTA: full-bleed blue band that waves straight into the dark footer */
.cta-final { background: #1c4fa6; padding: 8px 0 64px; }

/* get-the-link band (signature hh element) */
.getlink {
  color: #fff; padding: 16px 0 8px; position: relative;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center;
}
.getlink h2 { font-size: 40px; position: relative; }
.getlink p { margin-top: 14px; font-size: 18px; color: rgba(255,255,255,.85); position: relative; max-width: 480px; }
.getlink-actions { position: relative; display: flex; flex-direction: column; gap: 12px; }
.getlink-actions .row2 { display: flex; flex-wrap: wrap; gap: 10px; }
.getlink .dl-btn.light { background: #fff; color: var(--blue-700); }
.getlink .dl-btn.light .dl-ico { background: var(--blue-50); color: var(--blue); }
.getlink .dl-btn.light:hover { background: #eef4ff; }
.getlink .dl-btn.glass { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.28); }
.getlink .dl-btn.glass .dl-ico { background: rgba(255,255,255,.16); }
.getlink .dl-btn.glass:hover { background: rgba(255,255,255,.2); }
.getlink-stores { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 4px; }
.getlink-stores .store-badge { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18); }

@media (max-width: 1040px) {
  .dl-grid { grid-template-columns: 1fr; }
  .show-row { grid-template-columns: 1fr; gap: 32px; padding: 36px; }
  .show-row.reverse .show-text { order: 0; }
  .show-media { order: -1; min-height: 0; }
  .getlink { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 560px) {
  .dl-card { padding: 24px; }
  .show-row { padding: 24px; }
  .getlink { padding: 24px 0 8px; grid-template-columns: 1fr; gap: 28px; }
  .dl-qr-row { flex-direction: column; align-items: flex-start; }
  .install-cards { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Band + wave system (hh-style alternating blue/light bands)
   ========================================================================== */
body { background: #ecf1fb; }

.band-blue {
  position: relative;
  background: #1c4fa6;
  color: #fff;
}
.band-blue .eyebrow,
.band-blue .eyebrow.green { color: #c2d8ff; }
.band-blue .eyebrow::before,
.band-blue .eyebrow.green::before { background: #c2d8ff; }
.band-blue .section-head h2 { color: #fff; }
.band-blue .section-head p { color: rgba(255, 255, 255, .85); }

/* wave divider: full-width smooth asymmetric curve between two bands.
   .wave background = colour of band ABOVE; svg fill = colour of band BELOW. */
.wave { display: block; width: 100%; height: 88px; line-height: 0; position: relative; z-index: 2; margin: -1px 0; }
.wave svg { display: block; width: 100%; height: 100%; }

/* ---- Hero as a deep-blue band ---- */
.hero {
  background: #1c4fa6;
  color: #fff;
  padding: 60px 0 92px;
}
.hero::before { display: none; }
.hero .eyebrow { color: #c2d8ff; }
.hero .eyebrow::before { background: #c2d8ff; }
.hero h1 { color: #fff; }
.hero h1 .accent { color: #bcd4ff; }
.hero .hero-lead { color: rgba(255, 255, 255, .87); }
.hero .hero-note { color: rgba(255, 255, 255, .82); }
.hero .dl-btn.blue { background: #fff; color: var(--blue-700); }
.hero .dl-btn.blue .dl-ico { background: var(--blue-50); color: var(--blue); }
.hero .dl-btn.outline { background: rgba(255, 255, 255, .10); color: #fff; border-color: rgba(255, 255, 255, .40); }
.hero .dl-btn.outline:hover { border-color: #fff; color: #fff; }
.hero .dl-btn.outline .dl-ico { background: rgba(255, 255, 255, .16); color: #fff; }
.hero .store-badge { background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .22); }

/* ---- Hero value-prop strip (bottom of the blue band) ---- */
.hero-strip {
  margin-top: 64px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 40px;
}
.hero-strip-item { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: start; }
.hsi-ico {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center; font-size: 20px;
  background: rgba(255, 255, 255, .14); color: #fff;
}
.hero-strip-item b { display: block; color: #fff; font-size: 16.5px; font-weight: 700; }
.hero-strip-item p { margin-top: 5px; color: rgba(255, 255, 255, .76); font-size: 14.5px; line-height: 1.45; }

@media (max-width: 860px) {
  .hero-strip { grid-template-columns: 1fr; gap: 18px; margin-top: 48px; }
}

/* ---- Hero scene: stacked by default, absolute collage on wide screens ---- */
.hero-scene { position: relative; max-width: 440px; margin-inline: auto; }
.hero-scene .phone.in-blob { position: relative; width: 198px; margin: 16px auto 0; transform: none; left: auto; top: auto; right: auto; bottom: auto; }
.hero-scene .onec.floating { position: relative; width: 100%; margin: 16px 0 0; left: auto; bottom: auto; }
.hero-scene .onec.floating .bubble { font-size: 14px; }
.hero-scene .onec.floating .mini-table b { font-size: 13.5px; }

@media (min-width: 1041px) {
  .hero-scene { min-height: 600px; max-width: none; margin: 0; }
  .hero-scene::before {
    content: none;
  }
  .hero-scene .onec.floating {
    position: absolute; z-index: 4; left: 22px; top: 180px; bottom: auto; width: 338px; margin: 0;
    transform: rotate(-2.5deg); box-shadow: 0 34px 76px rgba(8, 22, 60, .36);
  }
  .hero-scene .phone.in-blob {
    position: absolute; z-index: 6; right: 4px; top: 104px; width: 204px; margin: 0;
    transform: rotate(3.5deg); box-shadow: 0 44px 80px rgba(8, 16, 34, .55);
  }
}

/* feature media → soft blue blob behind the device */
.show-media.tint {
  background: #dce9ff;
  border-radius: var(--radius);
}

@media (max-width: 560px) {
  .hero {
    padding: 32px 0 36px;
  }
  .hero-grid {
    gap: 22px;
  }
  .hero h1 {
    font-size: 38px;
  }
  .hero-lead {
    font-size: 17px;
  }
  .hero-actions {
    margin-top: 22px;
  }
  .hero-actions .dl-btn,
  .apk-col {
    width: 100%;
  }
  .apk-col {
    gap: 0;
  }
  .hero .store-row {
    display: none;
  }
  .hero-scene {
    display: block;
    min-height: 0;
    max-width: none;
  }
  .hero-scene .phone.in-blob,
  .hero-scene .onec.floating {
    display: none;
  }
  .hero-strip {
    display: none;
  }
  .wave {
    height: 56px !important;
  }
}
