:root {
  --spshelf-bg-top: #f0f5fa;
  --spshelf-bg-bottom: #e6edf5;
  --spshelf-surface: #f7fafc;
  --spshelf-border: #bcd4ea;
  --spshelf-border-soft: rgba(100, 160, 220, 0.18);
  --spshelf-primary: #4a9fd4;
  --spshelf-primary-deep: #2b7ab0;
  --spshelf-teal: #2dc4b2;
  --spshelf-teal-deep: #21a394;
  --spshelf-ink: #1a2f45;
  --spshelf-ink-deep: #0f1e2e;
  --spshelf-muted: #5a7a94;
  --spshelf-shadow: 0 10px 26px rgba(60, 100, 160, 0.09), 0 2px 6px rgba(60, 100, 160, 0.05);
  --spshelf-radius: 14px;
  --spshelf-shell: min(1180px, calc(100% - 32px));
}

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

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: clip;
}

body {
  min-width: 320px;
  background: linear-gradient(180deg, var(--spshelf-bg-top) 0%, var(--spshelf-bg-bottom) 100%);
  color: var(--spshelf-ink);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}

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

a {
  color: var(--spshelf-primary-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

p,
li {
  color: var(--spshelf-muted);
  font-size: 1rem;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.9rem;
  color: var(--spshelf-ink);
  font-family: "Exo 2", sans-serif;
}

h2 {
  font-size: clamp(1.95rem, 3.2vw, 3rem);
  line-height: 1.1;
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
}

main {
  display: block;
}

section {
  border-bottom: 1px solid var(--spshelf-border-soft);
}

.spshelf-page {
  position: relative;
  min-height: 100vh;
}

.spshelf-shell {
  width: var(--spshelf-shell);
  margin: 0 auto;
  min-width: 0;
}

.spshelf-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(240, 245, 250, 0.96);
  border-bottom: 1px solid var(--spshelf-border);
}

body:not(.spshelf-nav-open) .spshelf-header {
  backdrop-filter: blur(8px);
}

body.spshelf-nav-open .spshelf-header {
  backdrop-filter: none;
}

.spshelf-header.spshelf-header-stuck {
  box-shadow: 0 10px 18px rgba(39, 76, 118, 0.08);
}

.spshelf-header-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 1rem;
  min-height: 78px;
  position: relative;
  overflow: visible;
}

.spshelf-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--spshelf-ink);
  text-decoration: none;
  min-width: 0;
}

.spshelf-brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--spshelf-primary);
  color: #f7fafc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: 800 1.15rem/1 "Exo 2", sans-serif;
  flex-shrink: 0;
}

.spshelf-brand-copy {
  min-width: 0;
}

.spshelf-brand-name {
  display: block;
  font: 700 1.12rem/1.1 "Exo 2", sans-serif;
  color: var(--spshelf-ink);
}

.spshelf-brand-line {
  width: 28px;
  height: 2px;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: var(--spshelf-teal);
}

.spshelf-nav {
  display: flex;
  flex: 1;
  min-width: 0;
}

.spshelf-nav ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.spshelf-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.75rem 0.85rem;
  font: 500 0.875rem/1.2 "Inter", sans-serif;
  color: var(--spshelf-ink);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.spshelf-nav a:hover,
.spshelf-nav a:focus-visible {
  color: var(--spshelf-primary);
  border-color: var(--spshelf-primary);
}

.spshelf-nav a[aria-current="page"]::before {
  content: "❄";
  color: var(--spshelf-teal);
  font-size: 0.92rem;
}

.spshelf-burger {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  width: 46px;
  height: 46px;
  margin-left: auto;
  border: 1px solid var(--spshelf-border);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  flex-shrink: 0;
}

.spshelf-burger span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--spshelf-ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

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

.spshelf-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 199;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.spshelf-hero {
  padding: 2.6rem 0 4.6rem;
}

.spshelf-hero-frame {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 1.35rem;
  padding: 2rem;
  background: linear-gradient(118deg, #f7fafc 0 55%, #dce8f3 55% 100%);
  border: 1px solid var(--spshelf-border);
  border-top: 2px solid var(--spshelf-primary);
  border-radius: 26px;
  box-shadow: var(--spshelf-shadow);
  min-width: 0;
}

.spshelf-kicker {
  margin: 0 0 1rem;
  color: var(--spshelf-teal);
  font: 600 0.75rem/1.2 "Inter", sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.spshelf-hero h1 {
  font-size: clamp(44px, 8vw, 104px);
  line-height: 1;
  letter-spacing: -0.06em;
  max-width: 9.5ch;
}

.spshelf-hero-accent {
  color: var(--spshelf-primary);
}

.spshelf-hero-bar {
  width: 64px;
  height: 3px;
  margin: 1.1rem 0 1.2rem;
  border-radius: 2px;
  background: var(--spshelf-primary);
}

.spshelf-hero-subline {
  max-width: 540px;
  margin: 0;
  font: 500 1.125rem/1.55 "Inter", sans-serif;
  color: var(--spshelf-muted);
}

.spshelf-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
  margin-top: 2rem;
  min-width: 0;
}

.spshelf-metric {
  padding: 1rem;
  background: rgba(247, 250, 252, 0.96);
  border: 1px solid var(--spshelf-border);
  border-top: 2px solid var(--spshelf-primary);
  border-radius: var(--spshelf-radius);
  box-shadow: var(--spshelf-shadow);
}

.spshelf-metric strong,
.spshelf-side-panel strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--spshelf-ink);
  font: 700 1rem/1.25 "Exo 2", sans-serif;
}

.spshelf-metric span,
.spshelf-side-panel p,
.spshelf-side-panel li {
  color: var(--spshelf-muted);
  font-size: 0.94rem;
}

.spshelf-side-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

.spshelf-side-card {
  padding: 1.35rem;
  background: rgba(247, 250, 252, 0.94);
  border: 1px solid var(--spshelf-border);
  border-top: 2px solid var(--spshelf-teal);
  border-radius: 18px;
  box-shadow: var(--spshelf-shadow);
}

.spshelf-side-card + .spshelf-side-card {
  margin-top: 1rem;
}

.spshelf-side-note {
  margin: 0 0 0.8rem;
  color: var(--spshelf-teal-deep);
  font: 600 0.82rem/1.2 "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.spshelf-side-card ul {
  margin: 0;
  padding-left: 1.15rem;
}

.spshelf-section {
  padding: 5rem 0;
}

.spshelf-section-head {
  max-width: 700px;
  margin-bottom: 1.7rem;
}

.spshelf-section-kicker {
  margin: 0 0 0.8rem;
  color: var(--spshelf-teal-deep);
  font: 700 0.79rem/1.2 "Inter", sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.spshelf-section-intro {
  margin: 0;
  max-width: 62ch;
}

.spshelf-spotlight-grid,
.spshelf-glossary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  min-width: 0;
}

.spshelf-spotlight-card,
.spshelf-glossary-card,
.spshelf-about-panel,
.spshelf-rg-panel,
.spshelf-legal-panel,
.spshelf-card,
.spshelf-timeline-step {
  background: var(--spshelf-surface);
  border: 1px solid var(--spshelf-border);
  border-top: 2px solid var(--spshelf-primary);
  border-radius: var(--spshelf-radius);
  box-shadow: var(--spshelf-shadow);
}

.spshelf-spotlight-card,
.spshelf-glossary-card,
.spshelf-about-panel,
.spshelf-rg-panel,
.spshelf-legal-panel {
  padding: 1.35rem;
}

.spshelf-spotlight-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  background: var(--spshelf-primary);
  color: #f7fafc;
  font: 700 0.69rem/1 "Exo 2", sans-serif;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.spshelf-spotlight-card h3,
.spshelf-glossary-card h3,
.spshelf-about-panel h3,
.spshelf-rg-panel h3,
.spshelf-legal-panel h2,
.spshelf-timeline-step h3 {
  margin-top: 0.9rem;
}

.spshelf-card-list {
  display: grid;
  gap: 1.3rem;
  min-width: 0;
}

.spshelf-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 220px);
  gap: 1.2rem;
  align-items: stretch;
  padding: 1.35rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  min-width: 0;
  background:
    radial-gradient(circle at var(--spshelf-mx, 50%) var(--spshelf-my, 50%), rgba(74, 159, 212, 0.08), transparent 34%),
    var(--spshelf-surface);
}

.spshelf-card:hover {
  transform: translateY(-2px);
  border-color: var(--spshelf-primary-deep);
}

.spshelf-card-main,
.spshelf-card-side,
.spshelf-card-top,
.spshelf-card-copy,
.spshelf-score-line,
.spshelf-card-pills {
  min-width: 0;
}

.spshelf-card-top {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.spshelf-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(140px, 100%);
  height: auto;
  min-height: 4.25rem;
  max-width: 100%;
  background: #fff;
  border-radius: 8px;
  padding: 8px 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.spshelf-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.spshelf-card-brand {
  min-width: 0;
}

.spshelf-card-brand h3 {
  margin: 0 0 0.3rem;
}

.spshelf-offer-badge,
.spshelf-pick-flag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0.72rem;
  border-radius: 999px;
  font: 600 0.76rem/1.2 "Inter", sans-serif;
}

.spshelf-offer-badge {
  background: rgba(74, 159, 212, 0.12);
  color: var(--spshelf-ink);
  border: 1px solid rgba(74, 159, 212, 0.32);
}

.spshelf-pick-flag {
  background: var(--spshelf-primary);
  color: #f7fafc;
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.69rem;
}

.spshelf-score-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 0.8rem 0 0.9rem;
}

.spshelf-crystals {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.spshelf-crystals span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid var(--spshelf-border);
  background: transparent;
}

.spshelf-crystals .spshelf-filled {
  background: var(--spshelf-primary);
  border-color: var(--spshelf-primary);
}

.spshelf-score-value {
  color: var(--spshelf-ink);
  font: 700 1rem/1.1 "Exo 2", sans-serif;
  min-width: 0;
  flex-shrink: 1;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.spshelf-bonus-text {
  margin: 0 0 0.9rem;
  color: var(--spshelf-ink);
  font: 700 1.5rem/1.25 "Exo 2", sans-serif;
  text-decoration: underline;
  text-decoration-color: var(--spshelf-teal);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.spshelf-card-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.spshelf-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(74, 159, 212, 0.12);
  color: var(--spshelf-ink);
  border: 1px solid rgba(74, 159, 212, 0.32);
  font: 500 11px/1.2 "Inter", sans-serif;
  letter-spacing: 0.3px;
}

.spshelf-card-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding-left: 0.2rem;
}

.spshelf-cta-stack {
  display: grid;
  gap: 0.8rem;
}

.spshelf-cta-btn,
.spshelf-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 0.9rem 1rem;
  border-radius: 8px;
  border: 1.5px solid var(--spshelf-primary);
  background: var(--spshelf-primary);
  color: #f7fafc;
  text-decoration: none;
  text-align: center;
  font: 700 0.95rem/1.1 "Exo 2", sans-serif;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 16px rgba(74, 159, 212, 0.28);
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.spshelf-cta-btn:hover,
.spshelf-cta-btn:focus-visible,
.spshelf-button:hover,
.spshelf-button:focus-visible {
  background: var(--spshelf-ink-deep);
  border-color: var(--spshelf-ink-deep);
  color: #f7fafc;
}

.spshelf-button-secondary {
  border: 1.5px solid var(--spshelf-teal);
  background: #f7fafc;
  color: var(--spshelf-ink);
  box-shadow: none;
}

.spshelf-button-secondary:hover,
.spshelf-button-secondary:focus-visible {
  background: var(--spshelf-teal);
  border-color: var(--spshelf-teal);
  color: #f7fafc;
}

.spshelf-card-note {
  margin: 0;
  font-size: 0.82rem;
  color: var(--spshelf-muted);
}

.spshelf-card-side small {
  color: var(--spshelf-muted);
}

.spshelf-timeline {
  display: grid;
  gap: 1rem;
}

.spshelf-timeline-step {
  padding: 1.4rem;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.spshelf-step-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(180deg, var(--spshelf-primary), var(--spshelf-primary-deep));
  color: #f7fafc;
  font: 800 1.25rem/1 "Exo 2", sans-serif;
}

.spshelf-about-grid,
.spshelf-rg-grid,
.spshelf-legal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 1rem;
  min-width: 0;
}

.spshelf-about-panel ul,
.spshelf-rg-panel ul,
.spshelf-legal-panel ul {
  margin: 0;
  padding-left: 1.15rem;
}

.spshelf-term-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0;
  border: 0;
  background: none;
  color: var(--spshelf-ink);
  text-align: left;
  cursor: pointer;
  font: 700 1.1rem/1.3 "Exo 2", sans-serif;
}

.spshelf-term-toggle span:last-child {
  color: var(--spshelf-primary);
  font-size: 1.35rem;
  line-height: 1;
}

.spshelf-term-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.25s ease, opacity 0.2s ease, padding-top 0.2s ease;
  padding-top: 0;
}

.spshelf-glossary-card.is-open .spshelf-term-panel {
  opacity: 1;
  padding-top: 0.8rem;
}

.spshelf-rg-links,
.spshelf-footer-links,
.spshelf-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
}

.spshelf-age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: var(--spshelf-ink-deep);
  color: #f7fafc;
  font: 700 0.9rem/1 "Exo 2", sans-serif;
}

.spshelf-footer {
  padding: 2.4rem 0 2.8rem;
  background: rgba(247, 250, 252, 0.85);
}

.spshelf-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 1.3rem;
  min-width: 0;
}

.spshelf-footer-copy,
.spshelf-footer-authority {
  padding: 1.4rem;
  border: 1px solid var(--spshelf-border);
  border-top: 2px solid var(--spshelf-primary);
  border-radius: var(--spshelf-radius);
  background: #f7fafc;
  box-shadow: var(--spshelf-shadow);
}

.spshelf-footer small {
  display: block;
  margin-top: 0.85rem;
  color: var(--spshelf-muted);
}

.spshelf-footer-links-secondary {
  margin-top: 1rem;
}

.spshelf-subhero {
  padding: 3.2rem 0 2.2rem;
}

.spshelf-subhero-panel {
  padding: 1.8rem;
  background: linear-gradient(118deg, #f7fafc 0 60%, #dde9f3 60% 100%);
  border: 1px solid var(--spshelf-border);
  border-top: 2px solid var(--spshelf-primary);
  border-radius: 22px;
  box-shadow: var(--spshelf-shadow);
}

.spshelf-subhero h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: -0.04em;
}

.spshelf-legal-stack {
  display: grid;
  gap: 1rem;
}

.spshelf-legal-panel h2 {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
}

.spshelf-legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin-top: 1rem;
  color: var(--spshelf-muted);
  font-size: 0.9rem;
}

.spshelf-cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 100;
  display: grid;
  gap: 0.8rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--spshelf-border);
  border-top: 2px solid var(--spshelf-primary);
  border-radius: 14px;
  background: rgba(247, 250, 252, 0.98);
  box-shadow: var(--spshelf-shadow);
  pointer-events: none;
}

.spshelf-cookie-banner[data-spshelf-cookie-state="hidden"] {
  display: none;
}

.spshelf-cookie-banner p,
.spshelf-cookie-actions,
.spshelf-cookie-actions a,
.spshelf-cookie-actions button {
  pointer-events: auto;
}

.spshelf-cookie-banner p {
  margin: 0;
  color: var(--spshelf-ink);
  font-size: 0.92rem;
}

.spshelf-cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.spshelf-cookie-actions button {
  cursor: pointer;
}

.spshelf-age-overlay {
  position: fixed !important;
  inset: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  height: 100dvh !important;
  min-height: 100vh !important;
  z-index: 2147483646 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  padding: max(env(safe-area-inset-top), 16px) 0.65rem max(env(safe-area-inset-bottom), 16px) !important;
  background: rgba(0, 0, 0, 0.85) !important;
  margin: 0 !important;
  overflow-y: auto !important;
  overscroll-behavior: contain !important;
}

.spshelf-age-box {
  margin-block: auto;
  flex-shrink: 0;
  max-width: 100%;
  width: min(420px, calc(100% - 12px));
  padding: 2rem 1.5rem !important;
  border-radius: 12px !important;
  background: #ffffff !important;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5) !important;
}

.spshelf-age-box h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}

.spshelf-age-box .spshelf-age-badge {
  margin: 0 auto 1rem;
}

.spshelf-age-box p {
  margin: 0 0 1rem;
}

.spshelf-age-actions {
  display: grid;
  gap: 0.75rem;
}

.spshelf-age-overlay[data-spshelf-age-state="confirmed"],
.spshelf-age-overlay[data-spshelf-age-state="hidden"] {
  display: none !important;
}

.spshelf-to-top {
  position: fixed;
  right: 18px;
  bottom: 110px;
  z-index: 120;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--spshelf-primary);
  color: #f7fafc;
  box-shadow: 0 6px 16px rgba(74, 159, 212, 0.28);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease, background 0.2s ease;
}

.spshelf-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.spshelf-to-top:hover,
.spshelf-to-top:focus-visible {
  background: var(--spshelf-ink-deep);
}

.spshelf-table-wrap {
  overflow-x: auto;
  width: 100%;
  max-width: 100%;
}

table {
  width: 100%;
  border-collapse: collapse;
}

thead th,
tbody td {
  padding: 0.85rem;
  border-bottom: 1px solid var(--spshelf-border);
  text-align: left;
}

@media (min-width: 1101px) {
  .spshelf-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    overflow: visible;
  }

  .spshelf-nav ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .spshelf-burger {
    display: none;
  }
}

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

  .spshelf-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100dvh;
    z-index: 201;
    background: #ffffff;
    transform: translateX(calc(100% + 16px));
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0s linear 0.3s;
    overflow-y: auto;
    padding: 1.5rem 1rem;
    max-width: min(320px, 85vw) !important;
    box-shadow: -8px 0 30px rgba(15, 30, 46, 0.14);
  }

  .spshelf-nav ul {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .spshelf-nav a {
    width: 100%;
    padding-inline: 0.35rem;
  }

  body.spshelf-nav-open .spshelf-nav {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0s linear 0s;
  }

  body.spshelf-nav-open .spshelf-nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  body.spshelf-nav-open {
    overflow: hidden;
  }

  .spshelf-hero-frame,
  .spshelf-about-grid,
  .spshelf-rg-grid,
  .spshelf-legal-grid,
  .spshelf-footer-grid {
    grid-template-columns: 1fr;
  }

  .spshelf-spotlight-grid,
  .spshelf-glossary-grid,
  .spshelf-hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .spshelf-section,
  .spshelf-subhero,
  .spshelf-hero {
    padding-top: 3.8rem;
    padding-bottom: 3.8rem;
  }

  .spshelf-spotlight-grid,
  .spshelf-glossary-grid,
  .spshelf-hero-metrics {
    grid-template-columns: 1fr;
  }

  .spshelf-card,
  .spshelf-timeline-step {
    grid-template-columns: 1fr;
  }

  .spshelf-card-side {
    padding-left: 0;
  }

  .spshelf-to-top {
    bottom: 104px;
  }
}

@media (max-width: 550px) {
  html,
  body {
    overflow-x: hidden;
    max-width: 100%;
  }

  html,
  body {
    overflow-x: clip;
  }

  .spshelf-page * {
    max-width: 100%;
  }

  .spshelf-card-list,
  .spshelf-spotlight-grid,
  .spshelf-glossary-grid,
  .spshelf-hero-metrics {
    grid-template-columns: 1fr !important;
    min-width: 0;
  }

  .spshelf-card-list > *,
  .spshelf-spotlight-grid > *,
  .spshelf-glossary-grid > *,
  .spshelf-hero-metrics > * {
    min-width: 0;
  }

  .spshelf-card {
    grid-template-columns: 1fr !important;
    min-width: 0;
  }

  .spshelf-card * {
    min-width: 0;
    max-width: 100%;
  }

  .spshelf-card-top {
    flex-wrap: wrap;
    gap: 8px;
  }

  .spshelf-logo-wrap {
    max-width: 120px;
    height: 36px;
  }

  .spshelf-cta-btn,
  .spshelf-button {
    width: 100% !important;
    max-width: 100%;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  h1,
  h2 {
    font-size: clamp(1.25rem, 6vw, 2rem) !important;
  }

  .spshelf-card:hover {
    transform: none !important;
  }

  .spshelf-header-inner {
    position: relative;
  }

  table {
    table-layout: auto;
    width: max-content;
    min-width: 0;
  }

  .spshelf-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    max-width: 100%;
  }

  .spshelf-table-wrap table {
    min-width: 100%;
    width: max-content;
  }

  :not(.spshelf-table-wrap) > table {
    width: 100%;
  }

  thead th {
    white-space: nowrap;
  }

  td {
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: none;
  }

  .spshelf-cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: clamp(1.1rem, 7vw, 1.5rem) !important;
  }

  .spshelf-logo-wrap {
    max-width: 90px;
    height: 30px;
  }

  .spshelf-bonus-text {
    font-size: 0.85rem;
  }
}
