/* ===== CSS VARIABLES ===== */
:root {
  --bg-deep: #0D0B1A;
  --bg-mid: #110E22;
  --bg-light: #1A1530;
  --cta-start: #7B2FBE;
  --cta-end: #A033CC;
  --purple: #8B2FC9;
  --purple-light: #A033CC;
  --neon-start: #8B2FC9;
  --gold: #FFC107;
  --gold-light: #FFD54F;
  --white: #FFFFFF;
  --text-secondary: #B0B3C7;
  --text-muted: #8A8FA3;
  --card-bg: #16122A;
  --card-bg-alt: #1E1938;
  --card-hover: #26204A;
  --border: rgba(139, 47, 201, 0.2);
  --header-h: 70px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  font-family: 'Poppins', Inter, system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-mid) 50%, var(--bg-deep) 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 20% 20%, rgba(139, 47, 201, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 50% 35% at 80% 70%, rgba(75, 0, 120, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ===== SKIP LINK ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only:focus {
  position: fixed;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  padding: 8px 16px;
  clip: auto;
  background: var(--purple);
  color: var(--white);
  z-index: 9999;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13, 11, 26, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}

.site-header.is-pinned {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--border);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  height: 42px;
  width: auto;
  flex-shrink: 0;
}

/* Header Buttons */
.header-buttons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-register,
.btn-login,
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.55rem 1.25rem;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  border: none;
}

.btn-register {
  background: linear-gradient(135deg, var(--cta-start), var(--cta-end));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(123, 47, 190, 0.4);
}

.btn-register:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(123, 47, 190, 0.6);
}

.btn-login {
  background: transparent;
  color: var(--purple-light);
  border: 1.5px solid var(--purple);
}

.btn-login:hover {
  background: rgba(139, 47, 201, 0.12);
  border-color: var(--purple-light);
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  max-width: 1200px;
  margin: 0.75rem auto 0;
  padding: 0 1.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

.breadcrumbs a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumbs a:hover {
  color: var(--purple-light);
}

.breadcrumbs span.current {
  color: var(--purple-light);
  font-weight: 600;
}

.breadcrumbs .sep {
  margin: 0 0.4rem;
  opacity: 0.5;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  text-align: center;
  padding: 5rem 1.5rem 4rem;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(160, 51, 204, 0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.hero-highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.btn-cta {
  background: linear-gradient(135deg, var(--cta-start), var(--cta-end));
  color: var(--white);
  font-size: 1.05rem;
  padding: 0.85rem 2.2rem;
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(123, 47, 190, 0.45);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  transition: all 0.25s ease;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(123, 47, 190, 0.65);
}

/* ===== MAIN CONTAINER ===== */
main {
  position: relative;
  z-index: 1;
  padding-bottom: 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== CONTENT CARD ===== */
.content-card {
  background: linear-gradient(160deg, var(--card-bg) 0%, var(--card-bg-alt) 100%);
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}

.content-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--purple-light), var(--gold));
}

/* ===== PROSE TYPOGRAPHY ===== */
.prose h2 {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  color: var(--white);
  margin: 2.5rem 0 1rem;
  padding-left: 1rem;
  border-left: 3px solid var(--purple);
  line-height: 1.3;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--neon-start);
  margin: 1.75rem 0 0.75rem;
  line-height: 1.35;
}

.prose p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.prose ul,
.prose ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.prose li {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 0.35rem;
}

.prose li::marker {
  color: var(--purple-light);
}

.prose a {
  color: var(--purple-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.prose a:hover {
  color: var(--gold);
}

.prose strong {
  color: var(--white);
  font-weight: 600;
}

/* ===== BONUS BANNER ===== */
.app-bonus {
  border: 1.5px solid var(--purple);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(123, 47, 190, 0.12) 0%, rgba(26, 21, 48, 0.8) 100%);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.app-bonus .bonus-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.app-bonus-text {
  font-size: 1rem;
  color: var(--white);
  font-weight: 600;
}

.app-bonus-text span {
  color: var(--gold);
}

/* ===== FEATURE GRID ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
  align-items: start;
  grid-auto-rows: min-content;
}

.feature-card {
  background: linear-gradient(160deg, var(--card-bg) 0%, rgba(30, 25, 56, 0.9) 100%);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem 1rem;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  align-self: start;
  height: auto;
  min-height: 0;
}

.feature-card:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 24px rgba(139, 47, 201, 0.3);
}

.feature-card .fc-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.6rem;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.feature-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

/* ===== WIDGET PANELS ===== */
.widget-panel {
  width: 100%;
  background: linear-gradient(160deg, rgba(22, 18, 42, 0.95) 0%, rgba(18, 14, 34, 0.98) 100%);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 1.75rem 1.5rem;
  margin: 2rem 0;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

.widget-panel h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 1.25rem;
  border-left: none !important;
  padding-left: 0 !important;
}

/* Bonus Calculator */
.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.calc-group label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.calc-group input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  background: rgba(139, 47, 201, 0.3);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}

.calc-group input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cta-start), var(--cta-end));
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(123, 47, 190, 0.5);
}

.calc-val {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-top: 0.25rem;
}

.calc-result {
  background: rgba(139, 47, 201, 0.1);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  text-align: center;
}

.calc-result-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.25rem;
}

.calc-result-val {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
}

/* Slot Lobby */
.slot-lobby-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.slot-card {
  background: var(--card-bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 0.75rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.slot-card:hover {
  border-color: var(--purple);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(139, 47, 201, 0.3);
}

.slot-card .slot-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.4rem;
}

.slot-card .slot-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white);
  display: block;
  margin-bottom: 0.3rem;
}

.slot-card .slot-rtp {
  font-size: 0.7rem;
  color: var(--text-muted);
  display: block;
}

.demo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cta-start), var(--cta-end));
  color: var(--white);
  font-weight: 600;
  font-size: 0.75rem;
  padding: 0.35rem 0.9rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: all 0.2s;
}

.demo-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(123, 47, 190, 0.5);
}

.lobby-msg {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Quiz */
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.9rem;
  background: var(--card-bg-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
}

.quiz-option:hover {
  border-color: var(--purple);
  background: rgba(139, 47, 201, 0.1);
}

.quiz-option input[type="radio"] {
  accent-color: var(--purple);
  width: 16px;
  height: 16px;
}

.quiz-option label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.quiz-submit {
  background: linear-gradient(135deg, var(--cta-start), var(--cta-end));
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.6rem 1.5rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.quiz-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(123, 47, 190, 0.5);
}

.quiz-result {
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(139, 47, 201, 0.12);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.875rem;
  color: var(--white);
  display: none;
}

/* Demo Roulette */
.roulette-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.roulette-display {
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  min-width: 80px;
  text-align: center;
  background: rgba(255, 193, 7, 0.08);
  border: 2px solid rgba(255, 193, 7, 0.3);
  border-radius: 12px;
  padding: 0.5rem 1.25rem;
  letter-spacing: 0.05em;
  transition: all 0.1s;
}

.roulette-btn {
  background: linear-gradient(135deg, var(--cta-start), var(--cta-end));
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.7rem 1.75rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
}

.roulette-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123, 47, 190, 0.5);
}

.roulette-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}

/* ===== TABLES ===== */
.table-wrapper {
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  margin: 1.25rem 0;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.data-table thead tr {
  background: linear-gradient(90deg, var(--purple), var(--purple-light));
}

.data-table thead th {
  padding: 0.9rem 1rem;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  white-space: nowrap;
}

.data-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.data-table tbody tr:last-child {
  border-bottom: none;
}

.data-table tbody tr:hover {
  background: var(--card-hover);
}

.data-table tbody td {
  padding: 0.85rem 1rem;
  color: var(--text-secondary);
  vertical-align: middle;
}

.data-table tbody td b {
  color: var(--gold);
  font-weight: 700;
}

/* ===== CTA BLOCK ===== */
.cta-block {
  margin: 2.5rem 0;
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(123, 47, 190, 0.18) 0%, rgba(13, 11, 26, 0.95) 100%);
  border: 1.5px solid rgba(139, 47, 201, 0.35);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--gold), var(--purple));
}

.cta-block h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-block p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* ===== FOOTER ===== */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  background: rgba(13, 11, 26, 0.9);
  padding: 2rem 1.5rem;
  text-align: center;
}

.payment-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.pay-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(26, 21, 48, 0.8);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.4rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.footer-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-text a {
  color: var(--purple-light);
  text-decoration: none;
}

.footer-text a:hover {
  text-decoration: underline;
}

/* ===== FAQ ===== */
.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item:hover {
  border-color: rgba(139, 47, 201, 0.4);
}

.faq-q {
  width: 100%;
  background: var(--card-bg-alt);
  border: none;
  padding: 1rem 1.25rem;
  text-align: left;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s;
}

.faq-q:hover {
  background: var(--card-hover);
}

.faq-q::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--purple-light);
  flex-shrink: 0;
  transition: transform 0.25s;
}

.faq-item.open .faq-q::after {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 1.25rem;
}

.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0.75rem 1.25rem 1rem;
}

.faq-a p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

/* ===== STEP LIST ===== */
.step-list {
  counter-reset: steps;
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.step-list li {
  counter-increment: steps;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.step-list li:last-child {
  border-bottom: none;
}

.step-list li::before {
  content: counter(steps);
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, var(--cta-start), var(--cta-end));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  :root {
    --header-h: 110px;
  }

  body {
    font-size: 0.875rem;
    line-height: 1.55;
  }

  .header-inner {
    flex-direction: column;
    height: auto;
    padding: 0.75rem 1rem;
    gap: 0.65rem;
  }

  .header-buttons {
    width: 100%;
    gap: 0.5rem;
  }

  .btn-register,
  .btn-login {
    flex: 1;
    min-height: 42px;
    font-size: 0.875rem;
  }

  .hero {
    padding: 3rem 1rem 2.5rem;
  }

  .hero h1 {
    font-size: clamp(1.35rem, 5.5vw, 1.75rem);
  }

  .hero-lead {
    font-size: 0.875rem;
  }

  .content-card {
    padding: 1.5rem 1rem;
    border-radius: 14px;
  }

  .prose h2 {
    font-size: clamp(1.05rem, 4vw, 1.35rem);
  }

  .prose h3 {
    font-size: 0.95rem;
  }

  .prose p,
  .prose li {
    font-size: 0.875rem;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .slot-lobby-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .container {
    padding: 0 0.85rem;
  }

  /* Table → Card layout */
  .data-table thead {
    display: none;
  }

  .data-table tbody tr {
    display: block;
    background: var(--card-bg-alt);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
  }

  .data-table tbody td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.55rem 1rem;
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(139, 47, 201, 0.1);
  }

  .data-table tbody td:last-child {
    border-bottom: none;
  }

  .data-table tbody td::before {
    content: attr(data-label);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    flex-shrink: 0;
    margin-right: 0.75rem;
  }

  .cta-block {
    padding: 2rem 1rem;
  }

  .widget-panel {
    padding: 1.25rem 0.9rem;
  }

  .breadcrumbs {
    padding: 0 1rem;
  }
}

@media (max-width: 380px) {
  body {
    font-size: 0.8125rem;
  }

  .prose h2 {
    font-size: 1.05rem;
  }

  .hero h1 {
    font-size: clamp(1.2rem, 6vw, 1.5rem);
  }
}
