:root {
  --bg: #09090B;
  --surface: #18181B;
  --text: #FAFAFA;
  --muted: #71717A;
  --primary: #22C55E;
  --secondary: #27272A;
  --accent: #4ADE80;
  --border: rgba(34,197,94,0.3);
  --offer-bg: #1a1a1a;
  --offer-border: #2a2a2a;
  --offer-bonus: #ffd700;
  --offer-cta-bg: #22c55e;
  --offer-cta-text: #ffffff;
  --max-w: 1200px;
  --font-mono: "SF Mono", "Cascadia Code", Consolas, "Liberation Mono", Menlo, Monaco, monospace;
  --kw-terminal: terminal;
  --kw-cli: cli;
  --kw-developer: developer;
  --kw-monospace: monospace;
  --kw-hacker: hacker;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-mono);
  color: var(--text);
  background-color: var(--bg);
  background-image:
    linear-gradient(165deg, var(--bg) 0%, rgba(34, 197, 94, 0.08) 38%, var(--bg) 72%),
    radial-gradient(ellipse 70% 50% at 90% 0%, rgba(74, 222, 128, 0.12) 0%, transparent 55%);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: var(--kw-terminal) " " var(--kw-cli) " " var(--kw-developer);
  position: fixed;
  inset: 0;
  font-size: 0;
  line-height: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(34, 197, 94, 0.03) 2px,
      rgba(34, 197, 94, 0.03) 3px
    ),
    radial-gradient(ellipse 45% 35% at 12% 70%, rgba(34, 197, 94, 0.08), transparent 60%);
  opacity: 0.9;
}

body::after {
  content: var(--kw-monospace) " " var(--kw-hacker);
  position: fixed;
  inset: 0;
  font-size: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(90deg, rgba(34, 197, 94, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(34, 197, 94, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent 75%);
}

body > * {
  position: relative;
  z-index: 1;
}

body.nav-open {
  overflow: hidden;
}

main {
  flex: 1 0 auto;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease;
}

a:hover {
  color: var(--primary);
}

h1,
h2,
h3 {
  font-family: var(--font-mono);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  letter-spacing: -0.02em;
}

.disclosure-wrap {
  padding: 10px 16px 0;
}

.disclosure-banner {
  max-width: 800px;
  margin: 10px auto;
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--muted);
  border-radius: 0;
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
  color: var(--text);
}

.trust-signal {
  max-width: 800px;
  margin: 10px auto;
  padding: 8px 16px;
  background: rgba(24, 24, 27, 0.9);
  border: 1px solid rgba(113, 113, 122, 0.5);
  border-radius: 0;
  font-size: 11px;
  line-height: 1.4;
  text-align: center;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.nav-marquee {
  height: 20px;
  overflow: hidden;
  background: var(--secondary);
  border-bottom: 1px solid var(--border);
}

.nav-marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
  white-space: nowrap;
}

.nav-marquee-track span {
  font-size: 10px;
  color: var(--muted);
  padding: 0 24px;
  line-height: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.nav-main {
  height: 56px;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}

.brand-lockup:hover {
  color: var(--accent);
}

.brand-lockup img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.brand-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.02em;
}

.brand-name::after {
  content: "_";
  animation: caret-blink 1s step-end infinite;
  color: var(--accent);
  margin-left: 1px;
}

@keyframes caret-blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  display: inline-block;
  padding: 6px 10px;
  font-size: 0.75rem;
  color: var(--text);
  border-radius: 4px;
  text-decoration: none;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent);
}

.nav-burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
}

.nav-burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--primary);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-burger.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 90;
}

.nav-backdrop.is-open {
  display: block;
}

.nav-drawer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100vh;
  background: var(--surface);
  border-left: 1px solid var(--border);
  z-index: 95;
  padding: 72px 24px 24px;
  transform: translateX(100%);
  transition: transform 0.25s ease;
}

.nav-drawer.is-open {
  transform: translateX(0);
}

.nav-drawer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-drawer a {
  display: block;
  padding: 12px 14px;
  color: var(--text);
  border: 1px solid transparent;
  font-size: 0.9rem;
}

.nav-drawer a:hover {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
}

.hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 48px 24px;
}

.hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
  max-width: 560px;
  margin: 0 auto;
}

.typewriter.is-typing {
  overflow: hidden;
  border-right: 2px solid var(--accent);
  white-space: nowrap;
  animation: typewriter-width 3.2s steps(42, end) 0.4s both, caret-blink 0.85s step-end infinite;
  max-width: 100%;
  display: inline-block;
}

@keyframes typewriter-width {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.offers-section {
  position: relative;
  padding: 56px 20px;
  background-image:
    linear-gradient(180deg, rgba(9, 9, 11, 0.88) 0%, rgba(9, 9, 11, 0.92) 100%),
    url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(34, 197, 94, 0.1), transparent 70%);
}

.offers-inner {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-label {
  font-size: 0.75rem;
  color: var(--primary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-label::before {
  content: "> ";
  color: var(--accent);
}

.offers-section h2 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  margin-bottom: 28px;
  text-align: center;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.offer-card {
  background: var(--offer-bg);
  border: 1px solid var(--offer-border);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4);
}

.offer-logo {
  width: 200px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 10px;
  box-sizing: border-box;
}

.offer-card .offer-logo img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center;
  display: block;
}

.offer-name {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  text-align: center;
}

.offer-bonus-group {
  text-align: center;
}

.offer-bonus {
  color: var(--offer-bonus);
  font-weight: 700;
  font-size: clamp(0.78rem, 2.2vw, 1.05rem);
  margin: 0;
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.offer-terms {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  margin-top: 4px;
  display: block;
}

.offer-description {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
  text-align: center;
  line-height: 1.4;
}

.offer-cta {
  display: block;
  margin-top: auto;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--offer-cta-bg);
  color: var(--offer-cta-text);
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: filter 0.2s ease, transform 0.2s ease;
  font-family: var(--font-mono);
  text-decoration: none;
}

.offer-cta:hover {
  color: var(--offer-cta-text);
  filter: brightness(1.08);
  transform: scale(1.02);
}

.info-section {
  position: relative;
  padding: 48px 20px;
  overflow: hidden;
}

.info-section:nth-child(even) {
  background: rgba(24, 24, 27, 0.45);
}

.info-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.info-section h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  margin-bottom: 16px;
  color: var(--accent);
}

.info-section h2::before {
  content: "$ ";
  color: var(--primary);
}

.info-section p {
  color: rgba(250, 250, 250, 0.88);
  margin-bottom: 12px;
  max-width: 72ch;
}

.info-section ul {
  margin: 12px 0 16px 1.2em;
  color: rgba(250, 250, 250, 0.88);
}

.info-section li {
  margin-bottom: 6px;
}

.decor-img {
  max-width: 500px;
  max-height: 320px;
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid var(--border);
}

.decor-wrap {
  max-width: 100%;
  overflow: hidden;
}

.info-cta {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 18px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--accent);
  font-size: 0.85rem;
  font-family: var(--font-mono);
}

.info-cta:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--primary);
}

.info-1-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
}

.info-1-layout .decor-wrap {
  justify-self: end;
}

.info-2-layout {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.info-2-num {
  font-size: 3rem;
  color: var(--primary);
  line-height: 1;
  opacity: 0.5;
  flex-shrink: 0;
}

.info-3-layout {
  text-align: center;
}

.info-3-layout p {
  margin-left: auto;
  margin-right: auto;
}

.info-3-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
  text-align: left;
}

.info-3-cards article {
  background: var(--surface);
  border-left: 3px solid var(--primary);
  padding: 16px;
}

.info-3-cards h3 {
  font-size: 0.95rem;
  color: var(--accent);
  margin-bottom: 8px;
}

.info-3-cards p {
  font-size: 0.85rem;
  margin: 0;
}

.info-4-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
}

.info-4-bg {
  min-height: 220px;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
  max-width: 500px;
  max-height: 320px;
}

.info-5-layout {
  border: 1px solid var(--border);
  padding: 28px;
  background: linear-gradient(135deg, var(--surface) 0%, rgba(34, 197, 94, 0.06) 100%);
}

.info-5-layout .decor-wrap {
  float: right;
  margin: 0 0 16px 24px;
  max-width: min(280px, 40%);
}

.info-5-layout::after {
  content: "";
  display: table;
  clear: both;
}

.info-6-layout {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-6-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.info-6-steps li {
  list-style: none;
  background: var(--secondary);
  border: 1px solid var(--border);
  padding: 14px;
  font-size: 0.82rem;
  margin: 0;
}

.info-6-steps strong {
  display: block;
  color: var(--primary);
  margin-bottom: 6px;
}

.info-7-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
}

.info-7-layout > div {
  padding: 28px;
}

.info-7-layout > div:first-child {
  background: var(--surface);
  border-right: 1px solid var(--border);
}

.info-7-quote {
  font-size: 1.05rem;
  color: var(--accent);
  border-left: 2px solid var(--primary);
  padding-left: 16px;
  margin: 16px 0;
}

.info-8-layout {
  position: relative;
  padding-left: 28px;
  border-left: 2px dashed var(--border);
}

.info-8-layout .decor-wrap {
  margin-top: 20px;
}

.info-9-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
}

.info-9-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 24px;
  text-align: center;
  min-width: 160px;
}

.info-9-stat strong {
  display: block;
  font-size: 2rem;
  color: var(--primary);
}

.info-9-stat span {
  font-size: 0.75rem;
  color: var(--muted);
}

.info-10-layout {
  max-width: 680px;
}

.info-10-tips {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.info-10-tips div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 14px;
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.info-10-tips span {
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 40px 20px 28px;
  margin-top: auto;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--text);
}

.footer-brand img {
  width: 32px;
  height: 32px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 20px;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 20px;
}

.footer-badges a,
.footer-badges span {
  display: inline-flex;
  align-items: center;
}

.footer-badges img {
  height: 36px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  opacity: 0.85;
}

.footer-compliance {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 12px;
  max-width: 80ch;
}

.footer-updated {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.footer-requisites {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.footer-ch-disclosure {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 80ch;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(113, 113, 122, 0.35);
}

.footer-ch-disclosure p {
  margin-bottom: 10px;
}

.footer-copy {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 16px;
}

.age-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.age-overlay.active {
  display: flex;
}

.age-dialog {
  background: var(--surface);
  border: 1px solid var(--border);
  max-width: 420px;
  width: 100%;
  padding: 28px 24px;
  text-align: center;
}

.age-dialog h2 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.age-dialog p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 20px;
}

.age-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-confirm,
.btn-decline,
.cookie-actions button,
.contact-form button {
  font-family: var(--font-mono);
  cursor: pointer;
  border: 1px solid var(--border);
  padding: 12px 16px;
  font-size: 0.9rem;
}

.btn-confirm,
#cookie-accept,
.contact-form button {
  background: var(--primary);
  color: var(--bg);
  border-color: var(--primary);
  font-weight: 700;
}

.btn-decline,
#cookie-reject {
  background: transparent;
  color: var(--text);
}

.age-blocked {
  display: none;
  color: var(--text);
  font-size: 0.95rem;
}

.age-blocked.visible {
  display: block;
}

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9990;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 16px 20px;
}

.cookie-banner.active {
  display: block;
}

.cookie-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.cookie-inner p {
  flex: 1 1 260px;
  font-size: 0.85rem;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.legal-page,
.topic-page,
.error-page {
  padding: 40px 20px 64px;
}

.legal-page .content,
.topic-page .content,
.error-page .content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-page h1,
.topic-page h1,
.error-page h1 {
  margin-bottom: 20px;
  color: var(--accent);
}

.legal-page h2,
.topic-page h2 {
  margin: 28px 0 12px;
  font-size: 1.15rem;
  color: var(--primary);
}

.legal-page h3,
.topic-page h3 {
  margin: 20px 0 10px;
  font-size: 1rem;
  color: var(--text);
}

.legal-page p,
.topic-page p,
.error-page p {
  margin-bottom: 12px;
  color: rgba(250, 250, 250, 0.88);
}

.legal-page ul,
.topic-page ul {
  margin: 8px 0 16px 1.2em;
  color: rgba(250, 250, 250, 0.88);
}

.legal-page li,
.topic-page li {
  margin-bottom: 6px;
}

.contact-form {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 480px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  font-family: var(--font-mono);
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 12px;
  font-size: 0.95rem;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.form-error {
  display: none;
  color: #f87171;
  font-size: 0.8rem;
}

.form-error.visible {
  display: block;
}

.form-success {
  display: none;
  margin-top: 24px;
  padding: 20px;
  border: 1px solid var(--border);
  background: rgba(34, 197, 94, 0.08);
  color: var(--accent);
}

.form-success.visible {
  display: block;
}

.go-page {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 20px;
}

.go-ad {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}

.go-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--secondary);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 24px auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.go-compliance {
  margin-top: 24px;
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 420px;
}

.go-compliance a {
  color: var(--accent);
}

.topic-hero {
  padding: 36px 20px;
  background: linear-gradient(135deg, var(--surface), rgba(34, 197, 94, 0.1));
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.topic-hero h1 {
  max-width: 800px;
  margin: 0 auto 12px;
}

.topic-hero p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.95rem;
}

.topic-split {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 32px;
  align-items: start;
}

.topic-rail {
  position: sticky;
  top: 96px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 20px;
  font-size: 0.8rem;
  color: var(--muted);
}

.topic-rail strong {
  display: block;
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 0.85rem;
}

.topic-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 28px 0;
}

.topic-band div {
  background: var(--secondary);
  border: 1px solid var(--border);
  padding: 16px;
  text-align: center;
  font-size: 0.8rem;
}

.topic-band strong {
  display: block;
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.topic-pull {
  font-size: 1.15rem;
  color: var(--accent);
  border-left: 3px solid var(--primary);
  padding: 12px 0 12px 20px;
  margin: 24px 0;
}

.topic-mosaic {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.topic-mosaic .decor-wrap {
  flex: 1 1 200px;
}

.subpage-narrow {
  max-width: 720px;
  margin: 0 auto;
}

.topic-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 220px;
}

@media (max-width: 900px) {
  .info-1-layout,
  .info-4-layout,
  .info-7-layout,
  .info-9-layout,
  .topic-split {
    grid-template-columns: 1fr;
  }

  .info-3-cards,
  .info-6-steps,
  .topic-band {
    grid-template-columns: 1fr;
  }

  .info-5-layout .decor-wrap {
    float: none;
    margin: 0 0 16px;
    max-width: 100%;
  }

  .info-2-layout {
    flex-direction: column;
  }

  .topic-rail {
    position: static;
  }
}

@media (max-width: 768px) {
  .topic-hero-split {
    grid-template-columns: 1fr;
  }

  .nav-marquee {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .nav-drawer {
    display: block;
  }

  .hero {
    min-height: 250px;
    background-attachment: scroll;
  }

  .offers-section {
    background-attachment: scroll;
  }

  .typewriter.is-typing {
    white-space: normal;
    border-right: none;
    animation: none;
    width: auto;
  }

  .info-1-layout .decor-wrap {
    justify-self: start;
  }

  .offer-logo {
    width: 180px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .offer-card .offer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
  }

  .decor-wrap,
  .info-4-bg,
  .topic-mosaic,
  .topic-hero {
    max-width: 100%;
    overflow: hidden;
  }

  .decor-img {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 220px;
  }
}

@media (max-width: 480px) {
  .offer-logo {
    width: 160px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .offer-card .offer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
  }

  .decor-img {
    max-width: 100%;
    max-height: 180px;
  }

  .info-4-bg {
    min-height: 160px;
    max-width: 100%;
  }

  .offers-grid {
    grid-template-columns: 1fr;
  }
}

.footer-helpline,
.footer-regulator {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 10px;
  max-width: 80ch;
}

.footer-helpline a,
.footer-regulator a {
  color: var(--accent);
}
