:root {
  --hb-bg: #08181c;
  --hb-bg-2: #0b1f24;
  --hb-bg-3: #102830;
  --hb-surface: #0f262d;
  --hb-surface-soft: #143038;
  --hb-line: #1c3a44;
  --hb-line-strong: #2a5462;
  --hb-ink: #eaf6f3;
  --hb-ink-soft: #b9d3cf;
  --hb-muted: #7a958f;
  --hb-teal: #0d9488;
  --hb-teal-soft: #2dd4bf;
  --hb-brass: #eab308;
  --hb-brass-soft: #facc15;
  --hb-shadow: 0 22px 50px rgba(0, 0, 0, 0.55);
  --hb-glow: 0 0 24px rgba(13, 148, 136, 0.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body.hb-body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(13, 148, 136, 0.12), transparent 50%),
    radial-gradient(ellipse at 100% 40%, rgba(234, 179, 8, 0.06), transparent 55%),
    var(--hb-bg);
  color: var(--hb-ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img { max-width: 100%; height: auto; }

h1, h2, h3 {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  color: var(--hb-ink);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(28px, 4vw, 44px); line-height: 1.14; margin: 0 0 16px; }
h2 { font-size: clamp(22px, 2.5vw, 30px); line-height: 1.24; margin: 0 0 14px; }
h3 { font-size: 18px; line-height: 1.35; margin: 0 0 8px; }

.hb-container { width: min(1200px, calc(100% - 32px)); margin: 0 auto; position: relative; }

/* Header */
.hb-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(8, 24, 28, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hb-line);
}
.hb-header__inner {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
}
.hb-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--hb-ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 18px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 240px;
}
.hb-logo__mark { display: inline-flex; align-items: center; }
.hb-logo__text-accent { color: var(--hb-teal-soft); }
.hb-logo__text-pill {
  background: var(--hb-brass);
  color: #0a1010;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  margin-left: 6px;
  letter-spacing: 0.04em;
}

.hb-nav { display: flex; gap: 22px; }
.hb-nav a {
  text-decoration: none;
  color: var(--hb-ink-soft);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s;
}
.hb-nav a:hover { color: var(--hb-teal-soft); }

.hb-header__cta-group { display: flex; gap: 12px; align-items: center; }

.hb-lang {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border-radius: 8px;
  background: var(--hb-surface);
  border: 1px solid var(--hb-line);
}
.hb-lang__link {
  text-decoration: none;
  color: var(--hb-muted);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hb-lang__link.is-active {
  background: var(--hb-teal);
  color: #06181b;
}

.hb-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  background: var(--hb-teal);
  color: #06181b;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid var(--hb-teal-soft);
  box-shadow: var(--hb-glow);
  transition: all 0.2s;
}
.hb-header__cta:hover { background: var(--hb-teal-soft); }

.hb-burger {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--hb-line);
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.hb-burger span { display: block; width: 18px; height: 2px; background: var(--hb-ink); border-radius: 2px; }

.hb-mobile {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--hb-bg);
  padding: 80px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hb-mobile a { color: var(--hb-ink); text-decoration: none; font-size: 19px; font-weight: 600; }
.hb-mobile__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--hb-line);
  color: var(--hb-ink);
  border-radius: 8px;
  font-size: 28px;
  cursor: pointer;
}
.hb-mobile__cta {
  margin-top: 12px;
  padding: 14px 20px;
  border-radius: 10px;
  background: var(--hb-teal);
  color: #06181b !important;
  font-weight: 700;
  text-align: center;
}

/* Hero */
.hb-hero {
  position: relative;
  padding: 70px 0 60px;
  overflow: hidden;
}
.hb-hero__shape {
  position: absolute;
  top: -120px;
  right: -180px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.18), transparent 65%);
  filter: blur(60px);
  pointer-events: none;
}
.hb-hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 44px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hb-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 6px;
  background: rgba(13, 148, 136, 0.12);
  border: 1px solid rgba(13, 148, 136, 0.35);
  color: var(--hb-teal-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hb-hero__lead {
  color: var(--hb-ink-soft);
  font-size: 18px;
  margin: 18px 0 26px;
  max-width: 560px;
}

.hb-trust {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.hb-trust__item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--hb-ink-soft);
  font-size: 13px;
  padding: 8px 14px;
  background: var(--hb-surface);
  border: 1px solid var(--hb-line);
  border-radius: 999px;
}
.hb-trust__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--hb-teal-soft);
  box-shadow: 0 0 10px var(--hb-teal-soft);
}

.hb-byline {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--hb-surface);
  border: 1px solid var(--hb-line);
  margin: 22px 0;
}
.hb-byline__avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--hb-line-strong);
}
.hb-byline__avatar--initial {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--hb-teal), var(--hb-brass));
  color: #06181b;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 22px;
}
.hb-byline__body { display: flex; flex-direction: column; gap: 4px; }
.hb-byline__by { color: var(--hb-ink); font-size: 14px; }
.hb-byline__by a { color: var(--hb-teal-soft); text-decoration: none; font-weight: 700; }
.hb-byline__role {
  display: inline-block; margin-left: 8px;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(234, 179, 8, 0.18);
  color: var(--hb-brass-soft);
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hb-byline__bio { color: var(--hb-ink-soft); font-size: 13px; }
.hb-byline__date { color: var(--hb-muted); font-size: 12px; }

.hb-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }

.hb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.2s;
  cursor: pointer;
  border: 1px solid transparent;
}
.hb-btn--primary {
  background: var(--hb-teal);
  color: #06181b;
  border-color: var(--hb-teal-soft);
  box-shadow: var(--hb-glow);
}
.hb-btn--primary:hover { background: var(--hb-teal-soft); }
.hb-btn--ghost {
  background: transparent;
  color: var(--hb-ink);
  border-color: var(--hb-line-strong);
}
.hb-btn--ghost:hover { border-color: var(--hb-teal-soft); color: var(--hb-teal-soft); }
.hb-btn--wide { width: 100%; }
.hb-btn--brass {
  background: var(--hb-brass);
  color: #1a1505;
  border-color: var(--hb-brass-soft);
}
.hb-btn--brass:hover { background: var(--hb-brass-soft); }

.hb-hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
}
.hb-hero__stats > div {
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--hb-surface);
  border: 1px solid var(--hb-line);
  border-left: 3px solid var(--hb-teal);
}
.hb-hero__stats dt { color: var(--hb-muted); font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.hb-hero__stats dd { margin: 0; color: var(--hb-ink); font-weight: 700; font-size: 14px; }

/* Login card */
.hb-login-card {
  background: linear-gradient(165deg, var(--hb-surface), var(--hb-bg-3));
  border: 1px solid var(--hb-line-strong);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--hb-shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hb-login-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.hb-login-card__tag {
  background: rgba(13, 148, 136, 0.18);
  color: var(--hb-teal-soft);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.hb-login-card__secure {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--hb-brass-soft);
  font-size: 12px;
  font-weight: 700;
}
.hb-login-card__row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--hb-line);
  font-size: 14px;
}
.hb-login-card__row:last-of-type { border-bottom: 0; }
.hb-login-card__row span { color: var(--hb-muted); }
.hb-login-card__row strong { color: var(--hb-ink); }
.hb-login-card__legal { color: var(--hb-muted); font-size: 11px; margin: 4px 0 0; }

/* Strip */
.hb-strip {
  padding: 22px 0;
  background: var(--hb-bg-2);
  border-top: 1px solid var(--hb-line);
  border-bottom: 1px solid var(--hb-line);
}
.hb-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: center;
}
.hb-strip__grid > div { display: flex; flex-direction: column; gap: 4px; }
.hb-strip__grid strong { color: var(--hb-ink); font-family: "Plus Jakarta Sans", sans-serif; font-size: 16px; }
.hb-strip__grid span { color: var(--hb-muted); font-size: 12px; }

/* Sections */
.hb-section { padding: 64px 0; }
.hb-section--soft { background: var(--hb-bg-2); }
.hb-section--dark { background: linear-gradient(180deg, var(--hb-bg-3), var(--hb-bg-2)); }
.hb-section__eyebrow {
  color: var(--hb-teal-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.hb-two-col {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  align-items: start;
}
.hb-verdict {
  background: linear-gradient(165deg, rgba(13, 148, 136, 0.14), rgba(234, 179, 8, 0.08));
  border: 1px solid rgba(13, 148, 136, 0.30);
  border-radius: 16px;
  padding: 26px;
  text-align: center;
}
.hb-verdict__score {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--hb-teal-soft);
  display: block;
}
.hb-verdict__label {
  display: block;
  color: var(--hb-muted);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Cards */
.hb-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 24px;
}
.hb-card {
  background: var(--hb-surface);
  border: 1px solid var(--hb-line);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  transition: all 0.2s;
}
.hb-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--hb-teal), var(--hb-brass));
  border-radius: 14px 14px 0 0;
  opacity: 0;
  transition: opacity 0.2s;
}
.hb-card:hover { transform: translateY(-2px); border-color: var(--hb-teal-soft); }
.hb-card:hover::before { opacity: 1; }
.hb-card__num {
  display: inline-flex;
  width: 32px; height: 32px;
  background: var(--hb-bg-3);
  color: var(--hb-teal-soft);
  border: 1px solid var(--hb-line-strong);
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: "Plus Jakarta Sans", sans-serif;
  margin-bottom: 6px;
  font-size: 14px;
}
.hb-card p { color: var(--hb-ink-soft); margin: 0; font-size: 14.5px; }

/* Bonus layout */
.hb-bonus-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
}
.hb-bonus-box {
  background: var(--hb-surface);
  border: 1px solid var(--hb-line);
  border-radius: 18px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.hb-bonus-box::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(234, 179, 8, 0.16), transparent 70%);
  pointer-events: none;
}
.hb-table {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.hb-table > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: var(--hb-surface-soft);
  border-radius: 10px;
  border-left: 3px solid var(--hb-teal);
  font-size: 14.5px;
}
.hb-table > div span { color: var(--hb-muted); }
.hb-table > div strong { color: var(--hb-ink); font-weight: 700; }

.hb-steps {
  background: var(--hb-surface);
  border: 1px solid var(--hb-line);
  border-radius: 16px;
  padding: 24px;
}
.hb-steps h3 { margin-top: 0; color: var(--hb-brass-soft); }
.hb-steps ol { margin: 0; padding-left: 20px; color: var(--hb-ink-soft); }
.hb-steps ol li { padding: 6px 0; }

.hb-check-list {
  list-style: none; padding: 0; margin: 16px 0 0;
  display: flex; flex-direction: column; gap: 10px;
}
.hb-check-list li {
  padding-left: 28px;
  position: relative;
  color: var(--hb-ink-soft);
}
.hb-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  width: 20px; height: 20px;
  border-radius: 4px;
  background: var(--hb-teal);
  color: #06181b;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
}

.hb-feature {
  background: linear-gradient(165deg, var(--hb-bg-3), var(--hb-surface));
  border: 1px solid var(--hb-line-strong);
  border-radius: 16px;
  padding: 26px;
}
.hb-feature h3 { margin-top: 0; color: var(--hb-brass-soft); }

.hb-payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.hb-payment-grid > div {
  text-align: center;
  padding: 14px;
  background: var(--hb-surface);
  border: 1px solid var(--hb-line);
  border-radius: 10px;
  color: var(--hb-ink);
  font-weight: 600;
  font-size: 14px;
}

.hb-note { color: var(--hb-muted); font-size: 13px; margin-top: 14px; }

/* FAQ */
.hb-faq { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.hb-faq details {
  background: var(--hb-surface);
  border: 1px solid var(--hb-line);
  border-radius: 12px;
  padding: 16px 20px;
  transition: border-color 0.2s;
}
.hb-faq details[open] { border-color: var(--hb-teal-soft); }
.hb-faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--hb-ink);
  font-size: 16px;
  list-style: none;
}
.hb-faq summary::-webkit-details-marker { display: none; }
.hb-faq summary::after {
  content: "+";
  float: right;
  color: var(--hb-teal-soft);
  font-weight: 800;
}
.hb-faq details[open] summary::after { content: "−"; }
.hb-faq p { color: var(--hb-ink-soft); margin: 12px 0 0; }

/* CTA */
.hb-cta {
  padding: 60px 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(13, 148, 136, 0.18), transparent 55%),
    radial-gradient(ellipse at 80% 60%, rgba(234, 179, 8, 0.10), transparent 55%),
    var(--hb-bg-3);
  text-align: center;
}
.hb-cta h2 { margin-bottom: 12px; }
.hb-cta p { color: var(--hb-ink-soft); margin: 0 0 22px; }

/* Footer */
.hb-footer {
  background: var(--hb-bg-2);
  border-top: 1px solid var(--hb-line);
  padding: 50px 0 30px;
}
.hb-footer__inner { width: min(1200px, calc(100% - 32px)); margin: 0 auto; }
.hb-footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 28px;
  margin-bottom: 36px;
}
.hb-footer__brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; font-family: "Plus Jakarta Sans", sans-serif; font-weight: 700; color: var(--hb-ink); }
.hb-footer__brand-block p { color: var(--hb-ink-soft); font-size: 14px; max-width: 540px; margin: 0; }
.hb-footer__cta-card {
  background: linear-gradient(165deg, var(--hb-surface), var(--hb-bg-3));
  border: 1px solid var(--hb-line-strong);
  border-radius: 14px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hb-footer__cta-meta { color: var(--hb-teal-soft); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; }
.hb-footer__cta-card strong { color: var(--hb-ink); font-size: 18px; }
.hb-footer__cta-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--hb-teal);
  color: #06181b;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
}
.hb-footer__columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 28px 0;
  border-top: 1px solid var(--hb-line);
  border-bottom: 1px solid var(--hb-line);
}
.hb-footer__group { display: flex; flex-direction: column; gap: 8px; }
.hb-footer__group h2 {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hb-brass-soft);
  margin: 0 0 6px;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.hb-footer__group a {
  color: var(--hb-ink-soft);
  text-decoration: none;
  font-size: 14px;
}
.hb-footer__group a:hover { color: var(--hb-teal-soft); }
.hb-footer__bottom { padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.hb-footer__note { color: var(--hb-brass-soft); font-size: 13px; font-weight: 600; margin: 0; }
.hb-footer__copy { color: var(--hb-muted); font-size: 13px; margin: 0; }

/* Simple inner pages */
.hb-simple-hero {
  position: relative;
  padding: 60px 0;
  background: linear-gradient(160deg, var(--hb-bg-3), var(--hb-bg-2));
  border-bottom: 1px solid var(--hb-line);
}
.hb-simple-hero p { color: var(--hb-ink-soft); max-width: 720px; margin: 12px 0 22px; }

.hb-page-toc { padding: 32px 0; }
.hb-page-toc ul {
  list-style: none; padding: 0; margin: 12px 0 0;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.hb-page-toc a {
  display: inline-block;
  background: var(--hb-surface);
  border: 1px solid var(--hb-line);
  color: var(--hb-ink-soft);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 13.5px;
}
.hb-page-toc a:hover { border-color: var(--hb-teal-soft); color: var(--hb-ink); }

.hb-toc {
  position: sticky; top: 86px;
  background: var(--hb-surface);
  border: 1px solid var(--hb-line);
  border-radius: 14px;
  padding: 18px;
  align-self: start;
}
.hb-toc__title { font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--hb-brass-soft); margin: 0 0 10px; }
.hb-toc__nav { display: flex; flex-direction: column; gap: 6px; }
.hb-toc__nav a { color: var(--hb-ink-soft); text-decoration: none; padding: 4px 0; font-size: 14px; }
.hb-toc__nav a:hover { color: var(--hb-teal-soft); }
.hb-content-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: start;
}
.hb-landing-body .rich-text { color: var(--hb-ink-soft); }
.hb-landing-body .rich-text h2, .hb-landing-body .rich-text h3 { color: var(--hb-ink); }
.hb-landing-body .rich-text a { color: var(--hb-teal-soft); }

/* Download buttons */
.hb-download__buttons { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin: 22px 0 14px; }
.hb-store-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--hb-surface);
  border: 1px solid var(--hb-line-strong);
  border-radius: 12px;
  color: var(--hb-ink);
  text-decoration: none;
  transition: all 0.2s;
}
.hb-store-btn:hover { border-color: var(--hb-teal-soft); transform: translateY(-2px); box-shadow: var(--hb-glow); }
.hb-store-btn__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(13, 148, 136, 0.18);
  color: var(--hb-teal-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hb-store-btn__body { display: flex; flex-direction: column; gap: 2px; }
.hb-store-btn__caption { color: var(--hb-muted); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; }
.hb-store-btn__label { color: var(--hb-ink); font-weight: 700; font-size: 17px; font-family: "Plus Jakarta Sans", sans-serif; }
.hb-download__note { color: var(--hb-muted); font-size: 13px; margin-top: 8px; }

/* 404 */
.hb-error { padding: 100px 0; text-align: center; }
.hb-error h1 { margin: 18px 0; }
.hb-error p { color: var(--hb-ink-soft); max-width: 560px; margin: 0 auto 26px; }
.hb-error__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Writer-page contrast override */
.writer-card, .writers-listing__card, .writer-detail {
  background: var(--hb-surface) !important;
  border-color: var(--hb-line) !important;
  color: var(--hb-ink) !important;
}
.writer-card a, .writers-listing__card a, .writer-detail a { color: var(--hb-teal-soft) !important; }
.writer-card p, .writers-listing__card p, .writer-detail p { color: var(--hb-ink-soft) !important; }

.hb-page-faq { background: var(--hb-bg-2); padding: 56px 0; }

@media (max-width: 920px) {
  .hb-nav { display: none; }
  .hb-burger { display: inline-flex; }
  .hb-hero__grid, .hb-two-col, .hb-bonus-layout, .hb-footer__top { grid-template-columns: 1fr; gap: 28px; }
  .hb-hero__stats { grid-template-columns: repeat(2, 1fr); }
  .hb-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .hb-footer__columns { grid-template-columns: 1fr; gap: 20px; }
  .hb-content-grid { grid-template-columns: 1fr; }
  .hb-toc { position: relative; top: auto; }
  .hb-header__inner { grid-template-columns: auto 1fr auto; }
  .hb-header__cta { padding: 8px 14px; font-size: 13px; }
  .hb-logo { font-size: 16px; max-width: 170px; }
}

@media (max-width: 480px) {
  .hb-hero { padding: 48px 0 50px; }
  .hb-hero__stats { grid-template-columns: 1fr 1fr; }
  .hb-strip__grid { grid-template-columns: 1fr; }
  .hb-lang { display: none; }
  .hb-header__cta { padding: 8px 12px; font-size: 12px; }
}
