/* ==========================================================================
   vipsta — vip-sta.de
   Design mirrored from https://vipstaa.com/de/ (light theme, teal accent).
   Layout system is original to this build (multipage-plus / Google 2026 mode).
   ========================================================================== */

:root {
  --bg: #f5f8fb;
  --surface: #ffffff;
  --surface-2: #eef2f7;
  --text: #10141c;
  --text-muted: #5b6472;
  --accent: #0ea5a4;
  --accent-hover: #0b8685;
  --accent-ink: #ffffff;
  --border: #e2e8f0;
  --success: #1a9e5c;
  --gold: #e8a838;
  --danger: #d1435b;
  --shadow-sm: 0 1px 2px rgba(16, 20, 28, 0.06);
  --shadow-md: 0 8px 24px rgba(16, 20, 28, 0.10);
  --shadow-lg: 0 16px 48px rgba(16, 20, 28, 0.16);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-heading: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  --container: 1180px;
  --sticky-cta-h: 64px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 0;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  position: relative;
}

body.has-sticky-cta {
  padding-bottom: 0;
}

@media (max-width: 900px) {
  body.has-sticky-cta {
    padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
  }
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
}

h2 {
  font-size: clamp(22px, 3vw, 32px);
}

h3 {
  font-size: clamp(18px, 2.4vw, 22px);
}

p {
  margin: 0 0 1em;
  color: var(--text);
}

.muted {
  color: var(--text-muted);
}

.wrap {
  max-width: var(--container);
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 480px) {
  .wrap {
    padding: 0 14px;
  }
}

/* ---------- header / nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(16, 20, 28, 0.04);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1440px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  flex-shrink: 0;
  text-decoration: none;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.brand .logo-text {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(6px, 1.1vw, 16px);
  margin-left: auto;
}

.main-nav a:not(.cta-header) {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 4px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color .15s ease, border-color .15s ease;
}

.main-nav a:not(.cta-header):hover {
  color: var(--text);
  border-bottom-color: var(--accent);
}

.main-nav a:not(.cta-header)[aria-current="page"] {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.cta-header {
  font-size: 13.5px;
  font-weight: 700;
  padding: 9px 20px;
  min-height: 38px;
  white-space: nowrap;
  flex-shrink: 0;
  border-radius: var(--radius-pill);
  margin-left: 8px;
  line-height: 1;
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.burger span,
.burger span::before,
.burger span::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  position: relative;
  transition: transform .2s ease, opacity .2s ease;
}

.burger span::before {
  position: absolute;
  top: -6px;
}

.burger span::after {
  position: absolute;
  top: 6px;
}

@media (max-width: 1140px) {
  .burger {
    display: inline-flex;
  }

  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: calc(100vh - 72px);
    z-index: 999;
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    padding: 20px 24px 32px;
    gap: 0;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform .25s ease, visibility .25s ease;
    overflow-y: auto;
    margin-left: 0;
    box-shadow: -4px 0 24px rgba(16, 20, 28, 0.08);
  }

  .main-nav.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .main-nav a:not(.cta-header) {
    padding: 14px 8px;
    font-size: 16px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
  }

  .main-nav .cta-header {
    margin: 20px 0 0 0;
    padding: 14px 20px;
    min-height: 48px;
    text-align: center;
    font-size: 16px;
    width: 100%;
  }
}

/* ---------- hero / main showcase ---------- */
.hero-stage,
.hero-banner {
  position: relative;
  overflow: hidden;
  background-color: #061918;
  background-image:
    linear-gradient(135deg, rgba(6, 25, 24, 0.88) 0%, rgba(10, 36, 35, 0.82) 50%, rgba(6, 25, 24, 0.92) 100%),
    radial-gradient(1000px 500px at 85% 15%, rgba(14, 165, 164, 0.35) 0%, transparent 60%),
    radial-gradient(700px 400px at 15% 85%, rgba(232, 168, 56, 0.2) 0%, transparent 60%),
    url("foto/stage-decor.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 64px 0 76px;
  border-bottom: 1px solid rgba(14, 165, 164, 0.2);
}

.hero-stage::after,
.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 400px at 70% 30%, rgba(251, 191, 36, 0.15), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-stage,
  .hero-banner {
    padding: 44px 0 56px;
  }
.hero-stage h1,
.hero-banner h1 {
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(28px, 3.8vw, 42px);
  line-height: 1.18;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.hero-stage .hero-offer,
.hero-banner .hero-offer {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(32px, 4.6vw, 50px);
  margin: 18px 0;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.7);
}

.hero-stage .hero-offer .amount,
.hero-banner .hero-offer .amount {
  color: #fbbf24;
  text-shadow: 0 0 32px rgba(251, 191, 36, 0.65), 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-stage .hero-sub,
.hero-banner .hero-sub {
  color: #e6f7f5 !important;
  font-size: 17px;
  line-height: 1.6;
  max-width: 52ch;
  margin-bottom: 14px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.hero-stage p:not(.hero-offer):not(.hero-sub),
.hero-banner p:not(.hero-offer):not(.hero-sub) {
  color: #c9e8e5;
  font-size: 15.5px;
  line-height: 1.65;
  max-width: 52ch;
  margin-bottom: 24px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-stage p:last-of-type,
.hero-banner p:last-of-type {
  margin-bottom: 24px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.98);
  color: var(--text);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 24px 54px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
}

.hero-card .bonus-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 14.5px;
}

.hero-card .bonus-line:last-of-type {
  border-bottom: none;
  margin-bottom: 8px;
}

.hero-card .bonus-line span {
  color: #64748b;
  font-weight: 500;
}

.hero-card .bonus-line strong {
  font-family: var(--font-heading);
  color: var(--text);
  font-weight: 700;
}

.hero-card .btn-primary {
  margin-top: 6px;
  border-radius: var(--radius-pill);
  padding: 13px 22px;
  font-size: 15px;
  background: linear-gradient(135deg, #0ea5a4 0%, #087f7e 100%);
  box-shadow: 0 10px 24px -6px rgba(14, 165, 164, 0.45);
}

.hero-card .btn-primary:hover {
  background: linear-gradient(135deg, #14b8b6 0%, #0ea5a4 100%);
  box-shadow: 0 14px 28px -4px rgba(14, 165, 164, 0.55);
}

/* ---------- buttons / CTA ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15.5px;
  border-radius: var(--radius-md);
  padding: 14px 26px;
  border: none;
  cursor: pointer;
  min-height: 44px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 10px 24px -8px rgba(14, 165, 164, 0.55);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn-gold {
  background: linear-gradient(135deg, #fcd34d 0%, #f59e0b 50%, #d97706 100%);
  color: #211500;
  font-weight: 800;
  font-size: 16px;
  border-radius: var(--radius-pill);
  padding: 15px 34px;
  box-shadow: 0 12px 28px -4px rgba(217, 119, 6, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  letter-spacing: 0.01em;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #fde68a 0%, #fbbf24 50%, #ea580c 100%);
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 16px 32px -2px rgba(217, 119, 6, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}

.btn-block {
  width: 100%;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16.5px;
}

.cta-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.cta-section .btn {
  border-radius: var(--radius-pill);
  margin-top: 10px;
}

/* ---------- mobile sticky CTA ---------- */
.sticky-cta {
  display: none;
}

@media (max-width: 900px) {
  .sticky-cta {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 9999;
    box-sizing: border-box;
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 -8px 24px rgba(16, 20, 28, 0.12);
    text-align: center;
  }

  .sticky-cta .btn,
  .sticky-cta .btn-primary,
  .sticky-cta .btn-gold {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 390px !important;
    min-height: 46px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
    border-radius: var(--radius-pill) !important;
    background: linear-gradient(135deg, #fcd34d 0%, #f59e0b 50%, #d97706 100%) !important;
    color: #211500 !important;
    font-family: var(--font-heading) !important;
    font-weight: 800 !important;
    font-size: clamp(12px, 3.2vw, 14.5px) !important;
    letter-spacing: -0.015em !important;
    line-height: 1.2 !important;
    padding: 10px 14px !important;
    border: none !important;
    text-decoration: none !important;
    text-align: center !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    box-shadow: 0 8px 24px -4px rgba(217, 119, 6, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
    transition: transform .15s ease, filter .15s ease, box-shadow .15s ease;
  }

  .sticky-cta .btn:hover,
  .sticky-cta .btn:active,
  .sticky-cta .btn-primary:hover,
  .sticky-cta .btn-primary:active,
  .sticky-cta .btn-gold:hover,
  .sticky-cta .btn-gold:active {
    background: linear-gradient(135deg, #fde68a 0%, #fbbf24 50%, #ea580c 100%) !important;
    transform: scale(0.99);
    filter: brightness(1.05);
    box-shadow: 0 10px 28px -2px rgba(217, 119, 6, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
  }
}

/* ---------- quick action grid (NavBoost) ---------- */
.quick-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: -34px 0 40px;
  position: relative;
  z-index: 2;
}

@media (max-width: 760px) {
  .quick-actions {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 16px;
  }
}

.qa-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 14px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform .15s ease;
}

.qa-card:hover {
  transform: translateY(-3px);
}

.qa-card .qa-icon {
  font-size: 26px;
  margin-bottom: 8px;
}

.qa-card .qa-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
}

/* ---------- sections / cards ---------- */
section {
  padding: 48px 0;
}

.section-head {
  max-width: 68ch;
  margin-bottom: 24px;
}

.section-lead {
  max-width: 68ch;
  margin-bottom: 10px;
}

.card-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink, #14202b);
  margin: 0 0 6px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 860px) {

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

/* ---------- games grid (2:3 posters) ---------- */
.games-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(200px, 1fr));
  gap: 16px;
}

@media (max-width: 980px) {
  .games-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 14px;
  }
}

@media (max-width: 620px) {
  .games-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}

.game-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.game-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 2/3;
  object-fit: cover;
  display: block;
}

.game-card h3,
.game-card .game-name {
  margin: 10px 12px 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-heading);
  overflow-wrap: anywhere;
}

.game-card p {
  margin: 6px 12px 12px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.game-card .play-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  padding: 3px 8px;
}

/* ---------- tables ---------- */
.table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-sizing: border-box;
  margin: 16px 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  box-sizing: border-box;
}

@media (min-width: 680px) {
  .mechanics-table {
    min-width: 520px;
  }
}

th,
td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  font-size: 14.5px;
}

thead th {
  background: var(--surface-2);
  font-family: var(--font-heading);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--text-muted);
}

tbody tr:last-child td {
  border-bottom: none;
}

.mechanics-table td strong {
  color: var(--accent-hover);
}

/* ---------- calculator widget ---------- */
.calculator {
  background: linear-gradient(160deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.calculator .calc-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.calculator label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  display: block;
  margin-bottom: 6px;
}

.calculator input[type="number"],
.calculator input[type="range"] {
  width: 100%;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-size: 15px;
  background: #fff;
}

.calculator .calc-result {
  margin-top: 10px;
  background: var(--surface);
  border: 1px dashed var(--accent);
  border-radius: var(--radius-md);
  padding: 16px;
  font-size: 15px;
}

.calculator .calc-result strong {
  color: var(--accent-hover);
  font-size: 18px;
}

/* ---------- FAQ ---------- */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(16, 20, 28, 0.03);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.faq-item:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 14px rgba(16, 20, 28, 0.06);
}

.faq-item[open] {
  border-color: #bfe5e4;
  box-shadow: 0 6px 18px rgba(14, 165, 164, 0.08);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 16.5px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  transition: color .15s ease;
}

.faq-item summary:hover h3 {
  color: var(--accent);
}

.faq-item summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #eef8f7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform .25s ease, background .2s ease, color .2s ease;
}

.faq-item[open] summary {
  border-bottom: 1px solid var(--border);
}

.faq-item[open] summary::after {
  content: "+";
  transform: rotate(45deg);
  background: var(--accent);
  color: #fff;
}

.faq-item .faq-a {
  padding: 16px 22px 20px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  background: #fbfdfe;
}

/* ---------- pros/cons, steps, glossary ---------- */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 700px) {
  .pros-cons {
    grid-template-columns: 1fr;
  }
}

.pros-cons .box {
  border-radius: var(--radius-md);
  padding: 18px;
  border: 1px solid var(--border);
}

.pros-cons .pros {
  background: #eefaf3;
  border-color: #c7ecd7;
}

.pros-cons .cons {
  background: #fdf1f2;
  border-color: #f3ccd2;
}

.pros-cons ul {
  margin: 0;
  padding-left: 18px;
}

.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding: 14px 14px 14px 52px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  margin-bottom: 10px;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
}

.glossary dt {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-top: 14px;
}

.glossary dd {
  margin: 4px 0 0;
  color: var(--text-muted);
}

/* ---------- trust / author box / disclosure ---------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

@media (max-width: 760px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.trust-grid .item {
  text-align: center;
  padding: 14px;
}

.trust-grid img {
  height: 40px;
  margin: 0 auto 8px;
}

.author-box {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  background: var(--surface-2);
}

.author-box img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
}

.author-box .meta {
  font-size: 12.5px;
  color: var(--text-muted);
}

.disclosure {
  font-size: 12.5px;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: 14px;
}

/* ---------- internal links / footer ---------- */
.link-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.link-cloud a {
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 8px 14px;
  font-size: 13.5px;
  font-weight: 600;
  background: var(--surface);
}

.link-cloud a:hover {
  border-color: var(--accent);
  color: var(--accent-hover);
}

.site-footer {
  background: #0c1620;
  color: #c7d2dc;
  padding: 40px 0 90px;
}

.site-footer a {
  color: #c7d2dc;
}

.site-footer .foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 24px;
}

@media (max-width: 780px) {
  .site-footer .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.site-footer h4,
.site-footer .foot-title {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 4px;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 8px;
  font-size: 13.5px;
}

.site-footer .legal {
  margin-top: 28px;
  font-size: 12px;
  color: #8b98a5;
  border-top: 1px solid #1c2833;
  padding-top: 18px;
}

@media (min-width: 641px) {
  .site-footer {
    padding-bottom: 40px;
  }
}

.responsible-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  color: #8b98a5;
  margin-top: 14px;
}

.responsible-strip img {
  height: 24px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}