/* Full-screen wrapper — global fallback, replaces entire page */
.ErrorFallback-module_wrapperFullscreen__r-3ik {
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-6);
  background-color: var(--color-bg-main, #253348);
}

/* Inline wrapper — route fallback, fills content area only */
.ErrorFallback-module_wrapperInline__ft8b5 {
  display: flex;
  flex: 1;
  align-items: flex-start;
  justify-content: center;
  padding: var(--spacing-8) var(--spacing-6) var(--spacing-6);
}

/*
 * Card container — theme-responsive surface.
 * Uses --color-surface (white in light, dark in dark mode)
 * with --color-border-default for subtle separation.
 */
.ErrorFallback-module_container__f7smt {
  width: 100%;
  max-width: 28rem;
  padding: var(--spacing-6);
  text-align: center;
  color: var(--color-text-secondary);
  background-color: var(--color-card-bg, #0f172a);
  border-radius: 16px;
  border: 1px solid var(--color-border-default, #334155);
  font-family: var(--font-body, "Noto Sans", sans-serif);
}

.ErrorFallback-module_icon__Dat-W {
  font-size: 3rem;
  margin-bottom: var(--spacing-4, 1rem);
}

/* Title — headline font, uppercase, theme-responsive color */
.ErrorFallback-module_title__peaeF {
  font-family: var(--font-headline, "Bungee Inline", sans-serif);
  font-size: var(--text-h4, 1.5rem);
  font-weight: var(--font-weight-regular, 400);
  line-height: var(--text-h4-line-height, 1.75rem);
  color: var(--color-text-secondary);
  text-transform: uppercase;
  margin: 0 0 var(--spacing-2, 0.5rem) 0;
}

/* Description — secondary text color for softer appearance */
.ErrorFallback-module_message__z379D {
  font-size: var(--text-small, 0.875rem);
  line-height: 1.5;
  color: var(--color-text-secondary);
  margin: 0 0 var(--spacing-5) 0;
}

/* Error message — monospace, #f87171 (red-400) gives 5.2:1 on dark surfaces */
.ErrorFallback-module_errorText__3Ftg8 {
  font-family: monospace;
  font-size: var(--text-small, 0.875rem);
  line-height: var(--text-small--line-height);
  color: #f87171;
  word-break: break-word;
  margin-bottom: var(--spacing-5);
  padding: var(--spacing-3, 0.75rem);
  background-color: var(--color-error-bg, #3a1a1a);
  border-radius: 4px;
  border: 1px solid rgba(220, 38, 38, 0.15);
}

/* ─────────────────────────────────────────────────────────────────
   Button actions — self-contained, theme-responsive.
   Mirrors the "primary" and "ghost" Button variants using the
   same tokens so they flip correctly between light and dark mode.
   Cannot use Button component: its CSS module may not be loaded
   when an ErrorBoundary fires from a lazy-loaded route chunk.
   ───────────────────────────────────────────────────────────────── */

.ErrorFallback-module_actions__xoM-C {
  display: flex;
  flex-direction: row;
  gap: var(--spacing-3);
  width: 100%;
  max-width: 480px;
  justify-content: center;
  margin-bottom: var(--spacing-5);
}

/* Base button — shared styles */
.ErrorFallback-module_buttonPrimary__Dz5qG,
.ErrorFallback-module_buttonSecondary__9MoyM {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-2, 0.5rem);
  padding: var(--spacing-3, 0.75rem) var(--spacing-4, 1rem);
  border: none;
  border-radius: var(--radius-lg, 0.5rem);
  cursor: pointer;
  font-family: var(--font-body, "Noto Sans", sans-serif);
  font-size: 1rem;
  font-weight: var(--font-weight-semibold, 600);
  line-height: 1.25rem;
  text-transform: uppercase;
  transition:
    background-color 0.2s ease,
    transform 0.15s ease,
    opacity 0.2s ease;
}

/* Primary — mirrors Button "primary" variant (auto-flips with theme) */
.ErrorFallback-module_buttonPrimary__Dz5qG {
  background-color: var(--color-button-primary);
  color: var(--color-on-surface);
}

.ErrorFallback-module_buttonPrimary__Dz5qG:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.ErrorFallback-module_buttonPrimary__Dz5qG:active {
  transform: scale(0.98);
}

/* Secondary — mirrors Button "ghost" variant (transparent + border) */
.ErrorFallback-module_buttonSecondary__9MoyM {
  background-color: transparent;
  color: var(--color-text-secondary);
  border: 1px solid var(--color-border);
}

.ErrorFallback-module_buttonSecondary__9MoyM:hover {
  background-color: var(--color-surface-hover, rgba(255, 255, 255, 0.05));
}

.ErrorFallback-module_buttonSecondary__9MoyM:active {
  transform: scale(0.98);
}

@media (max-width: 479px) {
  .ErrorFallback-module_actions__xoM-C {
    flex-direction: column;
  }

  .ErrorFallback-module_buttonPrimary__Dz5qG,
  .ErrorFallback-module_buttonSecondary__9MoyM {
    width: 100%;
  }
}

/* Details/summary for stack trace (dev only) */
.ErrorFallback-module_details__jZYFT {
  text-align: left;
  margin-top: var(--spacing-4);
}

.ErrorFallback-module_summary__QCOdj {
  cursor: pointer;
  font-family: var(--font-body, "Noto Sans", sans-serif);
  font-size: var(--text-small, 0.875rem);
  font-weight: var(--font-weight-medium, 500);
  color: var(--color-text-muted, #707070);
  transition: color 0.2s ease;
  user-select: none;
}

.ErrorFallback-module_summary__QCOdj:hover {
  color: var(--color-text-secondary);
}

.ErrorFallback-module_summary__QCOdj:focus-visible {
  outline: 2px solid var(--color-active);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Stack trace container */
.ErrorFallback-module_stackTrace__DSIDm {
  margin-top: var(--spacing-3);
  max-height: 12rem;
  overflow: auto;
  border-radius: var(--radius-sm);
  padding: var(--spacing-4);
  font-size: 0.75rem;
  font-family: monospace;
  color: var(--color-text-secondary);
  background-color: var(--color-surface-hover, #334155);
  border: 1px solid var(--color-border-default);
  white-space: pre-wrap;
  word-break: break-all;
  line-height: 1.5;
}

.ErrorFallback-module_stackTrace__DSIDm::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.ErrorFallback-module_stackTrace__DSIDm::-webkit-scrollbar-track {
  background: transparent;
}

.ErrorFallback-module_stackTrace__DSIDm::-webkit-scrollbar-thumb {
  background-color: var(--color-text-muted, #707070);
  border-radius: 3px;
}

.ErrorFallback-module_stackTrace__DSIDm::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-active);
}
.Logo-module_wrapper__wRWsV {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.Logo-module_logo__mQXMp {
  display: block;
  height: var(--spacing-14);
  width: auto;
  object-fit: contain;
}

/* ═══════════════════════════════════════════════════
 * Mobile (< 1024px): smaller logo to keep top row compact
 * ═══════════════════════════════════════════════════ */

@media (max-width: 1023px) {
  .Logo-module_logo__mQXMp {
    height: var(--spacing-10);
  }
}

/* ═══════════════════════════════════════════════════
 * Laptop (1024–1535px): compact logo
 * ═══════════════════════════════════════════════════ */

@media (min-width: 1024px) {
  .Logo-module_logo__mQXMp {
    height: var(--spacing-12);
  }
}

/* ═══════════════════════════════════════════════════
 * Large desktop (1536px+): restore full-size logo
 * ═══════════════════════════════════════════════════ */

@media (min-width: 1536px) {
  .Logo-module_logo__mQXMp {
    height: var(--spacing-16);
  }
}
/**
 * HeaderNavigation — visible at ALL breakpoints
 *
 * Centred at all breakpoints.
 */

.Navigation-module_wrapper__WcAIS {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: safe center;
  gap: var(--spacing-4);
}

@media (max-width: 1023px) {
  .Navigation-module_wrapper__WcAIS:not(.Navigation-module_navWrapperMobile__qa4n5) {
    justify-content: safe center;
    gap: var(--spacing-1); /* 4px — padding on items handles visual separation */
  }

  /* Compact tap targets for region links — ~36px height, above WCAG 2.5.8 AA (24px) */
  .Navigation-module_wrapper__WcAIS:not(.Navigation-module_navWrapperMobile__qa4n5) .Navigation-module_navLink__ciRJh,
  .Navigation-module_wrapper__WcAIS:not(.Navigation-module_navWrapperMobile__qa4n5) .Navigation-module_navButtonText__b27ch {
    padding: var(--spacing-2); /* 8px — tighter second row on mobile */
  }
}

@media (min-width: 1024px) {
  .Navigation-module_wrapper__WcAIS {
    gap: var(--spacing-5);
    justify-content: safe center;
  }
}

@media (min-width: 1536px) {
  .Navigation-module_wrapper__WcAIS {
    gap: var(--spacing-8);
  }
}

.Navigation-module_navItem__D462J {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .Navigation-module_navItem__D462J {
    padding: var(--spacing-1) 0;
  }
}

@media (min-width: 1536px) {
  .Navigation-module_navItem__D462J {
    padding: var(--spacing-2) 0;
  }
}

.Navigation-module_navButton__RQq6G {
  display: flex;
  cursor: pointer;
  align-items: center;
  gap: var(--spacing-2);
  border: none;
  background: transparent;
  padding: 0;
  transition: opacity 200ms ease-in-out;
}


.Navigation-module_chevronToggle__-x8ts {
  display: flex;
  align-items: center;
  justify-content: safe center;
  cursor: pointer;
  border: none;
  background: transparent;
  padding: var(--spacing-1);
  margin: calc(-1 * var(--spacing-1));
  transition: opacity 200ms ease-in-out;
}

.Navigation-module_chevronToggle__-x8ts:hover {
  opacity: 0.7;
}

.Navigation-module_chevronToggle__-x8ts:focus-visible {
  outline: 2px solid var(--color-active);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.Navigation-module_navButtonText__b27ch {
  position: relative;
  font-family: var(--font-headline);
  font-size: 0.9375rem;
  line-height: var(--label-menu-item-line-height);
  font-weight: var(--font-weight-regular);
  color: var(--color-white);
  white-space: nowrap;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: opacity 200ms ease-in-out;
}

.Navigation-module_navButtonText__b27ch:hover {
  opacity: 0.7;
}

.Navigation-module_navButtonText__b27ch:focus-visible {
  outline: 2px solid var(--color-active);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.Navigation-module_navButtonText__b27ch[aria-current="page"] {
  color: var(--color-active);
  border-bottom-color: var(--color-active);
}

@media (min-width: 1024px) {
  .Navigation-module_navButtonText__b27ch {
    font-size: 0.8125rem;
  }
}

@media (min-width: 1536px) {
  .Navigation-module_navButtonText__b27ch {
    font-size: 0.9375rem;
  }
}

.Navigation-module_navButtonTextActive__YG-8o {
  border-bottom-color: var(--color-active);
}

.Navigation-module_chevronIcon__S-ZhR {
  width: var(--spacing-6);
  height: var(--spacing-6);
  transition: transform 200ms;
  color: var(--color-white);
}

@media (min-width: 1024px) {
  .Navigation-module_chevronIcon__S-ZhR {
    width: var(--spacing-4);
    height: var(--spacing-4);
  }
}

@media (min-width: 1536px) {
  .Navigation-module_chevronIcon__S-ZhR {
    width: var(--spacing-5);
    height: var(--spacing-5);
  }
}

.Navigation-module_chevronIconRotated__OxEJu {
  transform: rotate(180deg);
}

.Navigation-module_navLink__ciRJh {
  font-family: var(--font-headline);
  font-size: 0.9375rem;
  line-height: var(--label-menu-item-line-height);
  font-weight: var(--font-weight-regular);
  color: var(--color-white);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: opacity 200ms ease-in-out;
}

@media (min-width: 1024px) {
  .Navigation-module_navLink__ciRJh {
    font-size: 0.8125rem;
  }
}

@media (min-width: 1536px) {
  .Navigation-module_navLink__ciRJh {
    font-size: 0.9375rem;
  }
}

/* NOTE: Desktop padding is on .navItem, not here, so border-bottom
   aligns consistently with .navButtonText in dropdown items. */

.Navigation-module_navLink__ciRJh:hover {
  opacity: 0.7;
}

.Navigation-module_navLink__ciRJh:focus-visible {
  outline: 2px solid var(--color-active);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.Navigation-module_navLink__ciRJh[aria-current="page"] {
  color: var(--color-active);
  border-bottom-color: var(--color-active);
}

/* ═══════════════════════════════════════════════════
 * Responsive name abbreviation (header nav only)
 *
 * Items with an abbreviation render two spans:
 * .navTextFull  → shown on tablet+ (full name)
 * .navTextShort → shown on phones only (< 768px, e.g. "HH" for "Hamburg")
 * Scoped to :not(.navWrapperMobile) so the mobile
 * menu panel always shows full names.
 * ═══════════════════════════════════════════════════ */

.Navigation-module_navTextFull__yKYJP,
.Navigation-module_navTextShort__sVGOB {
  text-transform: uppercase;
}

.Navigation-module_navTextShort__sVGOB {
  display: none;
}

@media (max-width: 767px) {
  .Navigation-module_wrapper__WcAIS:not(.Navigation-module_navWrapperMobile__qa4n5) .Navigation-module_navTextFull__yKYJP {
    display: none;
  }

  .Navigation-module_wrapper__WcAIS:not(.Navigation-module_navWrapperMobile__qa4n5) .Navigation-module_navTextShort__sVGOB {
    display: inline;
  }
}

/* ═══════════════════════════════════════════════════
 * Mobile: hide categories, show only abbreviated regions
 * Desktop: hide regions (they live in the header topRow)
 * ═══════════════════════════════════════════════════ */

@media (max-width: 1023px) {
  .Navigation-module_wrapper__WcAIS:not(.Navigation-module_navWrapperMobile__qa4n5) .Navigation-module_navItem__D462J:not(:has(.Navigation-module_navTextShort__sVGOB)) {
    display: none;
  }
}

@media (min-width: 1024px) {
  .Navigation-module_wrapper__WcAIS:not(.Navigation-module_navWrapperMobile__qa4n5) .Navigation-module_navItem__D462J:has(.Navigation-module_navTextShort__sVGOB) {
    display: none;
  }

  /* Categories: casing handled in JS (toTitleCase) */
}

/* ═══════════════════════════════════════════════════
 * Mobile Menu variant (rendered inside expanded header)
 * ═══════════════════════════════════════════════════ */

.Navigation-module_navWrapperMobile__qa4n5 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--spacing-4);
  width: 100%;
}

.Navigation-module_navWrapperMobile__qa4n5 .Navigation-module_navButtonText__b27ch {
  color: var(--color-white);
  font-size: 1rem;
  line-height: var(--label-menu-item-line-height);
  text-decoration: none;
  border-bottom: none;
  padding-bottom: 0;
}

.Navigation-module_navWrapperMobile__qa4n5 .Navigation-module_navButtonText__b27ch[aria-current="page"] {
  color: var(--color-active);
}

.Navigation-module_navWrapperMobile__qa4n5 .Navigation-module_navButton__RQq6G {
  padding: var(--spacing-1) 0;
}

.Navigation-module_navWrapperMobile__qa4n5 .Navigation-module_chevronIcon__S-ZhR {
  width: var(--spacing-6);
  height: var(--spacing-6);
  color: var(--color-white);
}

.Navigation-module_navWrapperMobile__qa4n5 .Navigation-module_navLink__ciRJh {
  color: var(--color-white);
  font-size: 1rem;
  line-height: var(--label-menu-item-line-height);
  border-bottom: none;
  padding: var(--spacing-1) 0;
}

.Navigation-module_navWrapperMobile__qa4n5 .Navigation-module_navLink__ciRJh[aria-current="page"] {
  color: var(--color-active);
}

/* Mobile submenu accordion */
.Navigation-module_mobileSubmenuWrapper__4JHgQ {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 300ms ease-in-out;
}

.Navigation-module_mobileSubmenuOpen__Pau6L {
  grid-template-rows: 1fr;
}
/*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
@layer properties {
  @supports (((-webkit-hyphens: none)) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color: rgb(from red r g b)))) {
    *, :before, :after, ::backdrop {
      --tw-leading: initial;
      --tw-font-weight: initial;
      --tw-duration: initial;
      --tw-ease: initial;
    }
  }
}

.Submenu-module_submenu__yt5Bb {
  margin-top: calc(var(--spacing, .25rem) * 4);
  gap: calc(var(--spacing, .25rem) * 6);
  padding-left: var(--spacing-6);
  flex-direction: column;
  display: flex;
}

.Submenu-module_submenu__yt5Bb.Submenu-module_horizontal__s903E {
  margin-top: calc(var(--spacing, .25rem) * 0);
  gap: var(--spacing-10);
  flex-direction: row;
  padding-left: 0;
}

.Submenu-module_submenuSection__fpgpa {
  flex-direction: column;
  gap: .25rem;
  width: auto;
  display: flex;
}

.Submenu-module_submenu__yt5Bb.Submenu-module_horizontal__s903E .Submenu-module_submenuSection__fpgpa {
  margin-top: calc(var(--spacing, .25rem) * 0);
  gap: 0;
}

.Submenu-module_submenuTitle__BG-s1 {
  font-size: var(--text-sm, .875rem);
  line-height: var(--tw-leading, var(--text-sm--line-height, calc(1.25 / .875)));
  --tw-leading: calc(var(--spacing, .25rem) * 1);
  line-height: calc(var(--spacing, .25rem) * 1);
  --tw-font-weight: var(--font-weight-normal, 400);
  font-weight: var(--font-weight-normal, 400);
  text-transform: capitalize;
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--color-text-muted);
}

.Submenu-module_horizontal__s903E .Submenu-module_submenuTitle__BG-s1 {
  color: var(--color-white);
  font-weight: var(--font-weight-semibold);
  font-size: var(--text-base);
  padding: var(--spacing-4) var(--spacing-4) var(--spacing-1);
}

.Submenu-module_submenuItems__8qocU {
  gap: calc(var(--spacing, .25rem) * 3);
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.Submenu-module_horizontal__s903E .Submenu-module_submenuItems__8qocU {
  gap: 0;
}

.Submenu-module_horizontal__s903E .Submenu-module_submenuListItem__WRk9- {
  border-bottom: 1px solid var(--color-gray-700);
}

.Submenu-module_horizontal__s903E .Submenu-module_submenuListItem__WRk9-:last-child {
  border-bottom: none;
}

.Submenu-module_submenuItem__fWND1 {
  --tw-leading: var(--leading-normal, 1.5);
  line-height: var(--leading-normal, 1.5);
  text-transform: capitalize;
  transition-property: all;
  transition-timing-function: var(--tw-ease, var(--default-transition-timing-function, cubic-bezier(.4, 0, .2, 1)));
  transition-duration: var(--tw-duration, var(--default-transition-duration, .15s));
  --tw-duration: .2s;
  --tw-ease: var(--ease-in-out, cubic-bezier(.4, 0, .2, 1));
  transition-duration: .2s;
  transition-timing-function: var(--ease-in-out, cubic-bezier(.4, 0, .2, 1));
  text-decoration-line: none;
}

@media (hover: hover) {
  .Submenu-module_submenuItem__fWND1:hover {
    opacity: .7;
  }
}

.Submenu-module_submenuItem__fWND1 {
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: var(--text-small);
}

.Submenu-module_horizontal__s903E .Submenu-module_submenuItem__fWND1 {
  color: var(--color-gray-400);
  text-transform: none;
  font-size: var(--text-small);
  padding: var(--spacing-3) var(--spacing-4);
  display: block;
}

.Submenu-module_horizontal__s903E .Submenu-module_submenuItem__fWND1:hover {
  background-color: var(--color-surface-hover);
  color: var(--color-white);
  opacity: 1;
}

.Submenu-module_submenuItemActive__ZmiqC, .Submenu-module_submenuItem__fWND1[aria-current="page"] {
  color: var(--color-active);
  text-underline-offset: 4px;
  text-decoration: underline;
}

@property --tw-leading {
  syntax: "*";
  inherits: false
}

@property --tw-font-weight {
  syntax: "*";
  inherits: false
}

@property --tw-duration {
  syntax: "*";
  inherits: false
}

@property --tw-ease {
  syntax: "*";
  inherits: false
}
.Search-module_searchContainer__tannQ {
  position: relative;
  display: flex;
  align-items: center;
}

.Search-module_searchContainerExpanded__VBhSD {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: var(--z-content);
  display: flex;
  height: 100%;
  align-items: center;
  background-color: rgba(15, 23, 42, 0.95);
  padding-left: var(--spacing-2);
  border-radius: var(--radius-md);
}

/* Mobile: full row width (left:0/right:0), resolving against .topRow.
   height: 100% fills exactly one row. */

/* Desktop: right-anchored bar that grows to a capped width instead of
   spanning the row. The region nav is faded out while open (see
   .regionNavHidden in Header.module.css), so the bar clears the logo on the
   left and never overlaps the region links. The width cap keeps a gutter to
   the logo even on compact laptops. */
@media (min-width: 1024px) {
  .Search-module_searchContainerExpanded__VBhSD {
    left: auto;
    width: min(28rem, calc(100% - 14rem));
  }
}

.Search-module_searchButton__PtQAg {
  flex-shrink: 0;
  cursor: pointer;
  border: none;
  background-color: transparent;
  padding: 0;
  transition: opacity var(--duration-20) ease;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Search-module_searchButton__PtQAg:hover {
  opacity: 0.7;
}

.Search-module_searchIcon__2MIJG {
  width: 20px;
  height: 20px;
  color: var(--color-text-secondary);
}

.Search-module_searchExpanded__gXcnS {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 0;
  animation: Search-module_slideIn__RRFbL var(--duration-15) ease-out;
  /* CSS containment to prevent layout shift during font loading */
  contain: layout;
}

.Search-module_searchClosing__ZoNh8 {
  animation: Search-module_slideOut__uLRwS var(--duration-10) ease-in forwards;
}

@keyframes Search-module_slideIn__RRFbL {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes Search-module_slideOut__uLRwS {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(20px);
  }
}

.Search-module_searchInput__pKdvd {
  width: 100%;
  border-radius: var(--radius-md);
  border: none;
  background-color: var(--color-gray-500);
  padding: var(--spacing-2) var(--spacing-3);
  /* iOS Safari auto-zooms focused inputs below 16px */
  font-size: var(--text-body);
  color: var(--color-white);
  transition: background-color var(--duration-20) ease;
}

.Search-module_searchInput__pKdvd::placeholder {
  color: var(--color-gray-300);
}

.Search-module_searchInput__pKdvd:focus {
  outline: none;
}

.Search-module_searchInput__pKdvd:focus-visible {
  outline: 2px solid var(--color-active);
  outline-offset: 2px;
}

.Search-module_searchButton__PtQAg:focus-visible,
.Search-module_closeButton__wT5Ku:focus-visible {
  outline: 2px solid var(--color-active);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.Search-module_searchInputExpanded__23Gao {
  /* Take full available width on both mobile and desktop */
  flex: 1;
  flex-shrink: 0;
}

.Search-module_closeButton__wT5Ku {
  flex-shrink: 0;
  cursor: pointer;
  border: none;
  background-color: transparent;
  padding: 0;
  transition: opacity var(--duration-20) ease;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Search-module_closeButton__wT5Ku:hover {
  opacity: 0.7;
}

.Search-module_closeIcon__q9L2T {
  width: 20px;
  height: 20px;
  color: var(--color-text-secondary);
}
/* Search Results Dropdown — positioned below the search input.
   Inline styles from getMenuStyle() set top/left/width when inputRef is available;
   CSS provides fallback positioning. */
.SearchResults-module_searchResults__a0Fix {
  position: fixed;
  overflow: hidden;
  background-color: var(--color-gray-900);
  top: var(--header-total-height);
  left: var(--spacing-4);
  right: var(--spacing-4);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-gray-500);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  pointer-events: none;
  z-index: var(--z-modal);
  clip-path: inset(0 0 100% 0);
  transition: clip-path var(--duration-25) var(--ease-smooth);
}

.SearchResults-module_searchResultsOpen__08lsm {
  clip-path: inset(0);
  pointer-events: auto;
}

/* Results container with max height and scroll */
.SearchResults-module_resultsContainer__Jfq41 {
  max-height: 600px;
  overflow-y: auto;
}

.SearchResults-module_loading__t80fG {
  padding: var(--spacing-6) var(--spacing-4);
  text-align: center;
  color: var(--color-text-muted);
  font-size: var(--text-small);
}

.SearchResults-module_noResults__arhfC {
  padding: var(--spacing-6) var(--spacing-4);
  text-align: center;
  color: var(--color-text-muted);
}

.SearchResults-module_noResults__arhfC p {
  font-size: var(--text-small);
}

.SearchResults-module_error__2-kyz {
  padding: var(--spacing-6) var(--spacing-4);
  text-align: center;
  color: var(--color-error, #dc2626);
}

.SearchResults-module_error__2-kyz p {
  font-size: var(--text-small);
  margin: 0;
}

.SearchResults-module_resultsList__AsuTQ {
  list-style: none;
  padding: 0;
  margin: 0;
}

.SearchResults-module_resultItem__G8-T4 {
  border-bottom: 1px solid var(--color-gray-500);
  transition: background-color var(--duration-15) ease;
}

.SearchResults-module_resultItem__G8-T4:last-child {
  border-bottom: none;
}

.SearchResults-module_resultItem__G8-T4:hover {
  background-color: color-mix(in srgb, var(--color-active) 3%, transparent);
  cursor: pointer;
}

.SearchResults-module_resultItemSelected__mqzcm {
  background-color: color-mix(in srgb, var(--color-active) 6%, transparent);
  box-shadow: inset 3px 0 0 0 var(--color-active);
}

.SearchResults-module_resultLink__sb3mr {
  display: flex;
  width: 100%;
  padding: var(--spacing-3) var(--spacing-4);
  text-decoration: none;
  color: inherit;
}

.SearchResults-module_resultContent__z4CJM {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: var(--spacing-1);
}

.SearchResults-module_resultTitle__wDW6G {
  font-size: 1rem;
  color: var(--color-white);
}

.SearchResults-module_highlight__1Ag-F {
  font-weight: var(--font-weight-bold);
  color: inherit;
  background: transparent; /* override UA default mark background (yellow) */
}

.SearchResults-module_resultMeta__187Ze {
  font-size: var(--text-small);
  color: var(--color-gray-500);
}

.SearchResults-module_resultMetaSeparator__CgJzp {
  margin: 0 var(--spacing-1);
}

.SearchResults-module_resultsFooter__GjkuW {
  padding: var(--spacing-3) var(--spacing-4);
  text-align: center;
  font-size: 0.75rem;
  color: var(--color-gray-500);
  border-top: 1px solid var(--color-gray-500);
}

.SearchResults-module_showAllLink__NF6NB {
  background: none;
  border: none;
  color: var(--color-active);
  font-weight: var(--font-weight-bold);
  font-size: var(--text-small);
  cursor: pointer;
  padding: var(--spacing-1) var(--spacing-2);
  transition: opacity var(--duration-15) ease;
}

.SearchResults-module_showAllLink__NF6NB:hover {
  opacity: 0.8;
}
/* Dropdown Menu — Desktop only, appears below the triggering nav button */

.DropdownMenu-module_dropdownMenu__leI2d {
  position: fixed;
  overflow: hidden;
  background-color: var(--color-gray-900);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  z-index: var(--z-modal);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-gray-500);
  pointer-events: none;
  clip-path: inset(0 0 100% 0);
  transition: clip-path var(--duration-15) var(--ease-smooth);
}

.DropdownMenu-module_dropdownMenuOpen__XpPnJ {
  clip-path: inset(0);
  pointer-events: auto;
}

/* Content wrapper */
.DropdownMenu-module_dropdownContent__3ZTWq {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  font-family: var(--font-body);
}

/* Hide on mobile — dropdowns only work on lg+ */
@media (max-width: 1023px) {
  .DropdownMenu-module_dropdownMenu__leI2d {
    display: none;
  }
}
/*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
.MarqueeAnimatedText-module_wrapper__qf-nw {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.MarqueeAnimatedText-module_measureText__726m- {
  visibility: hidden;
  white-space: nowrap;
  pointer-events: none;
  position: absolute;
}

.MarqueeAnimatedText-module_textWrapper__Sgtgh {
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 600px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.MarqueeAnimatedText-module_full__jZzzJ {
  max-width: 1200px;
}

.MarqueeAnimatedText-module_mini__ADZAP {
  justify-content: flex-start;
  max-width: 100%;
}

.MarqueeAnimatedText-module_maskedOverflowHorizontal__HqVQX {
  --mask-width: 6px;
  --mask-image-content: linear-gradient(to right, transparent 0%, black var(--mask-width), black calc(100% - var(--mask-width)), transparent 100%);
  --mask-size-content: 100% 100%;
  -webkit-mask-image: var(--mask-image-content);
  -webkit-mask-image: var(--mask-image-content);
  mask-image: var(--mask-image-content);
  -webkit-mask-size: var(--mask-size-content);
  -webkit-mask-size: var(--mask-size-content);
  mask-size: var(--mask-size-content);
  align-items: center;
  margin-right: -1px;
  padding-right: 1px;
  display: flex;
  position: relative;
  overflow: clip;
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.MarqueeAnimatedText-module_bigMask__a7DEy {
  --mask-width: 32px;
}

.MarqueeAnimatedText-module_smallMask__Z1vrn {
  --mask-width: 10px;
}

.MarqueeAnimatedText-module_songTitleAnimationPart1__0J3os {
  white-space: nowrap;
  will-change: transform;
  animation: 20s linear infinite MarqueeAnimatedText-module_marquee__FPb5F;
}

.MarqueeAnimatedText-module_songTitleAnimationPart2__lq-ur {
  white-space: nowrap;
  will-change: transform;
  align-items: center;
  height: 100%;
  animation: 20s linear infinite MarqueeAnimatedText-module_marquee2__1OjA4;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

@keyframes MarqueeAnimatedText-module_marquee__FPb5F {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}

@keyframes MarqueeAnimatedText-module_marquee2__1OjA4 {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(0%);
  }
}
/* LiveBadge — red pill with hover dropdown for live streams */

.LiveBadge-module_wrapper__-vwwS {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-2);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════
 * Marquee strip — scrolling stream titles next to pill
 * Visible at all breakpoints, width constrained per tier
 * ═══════════════════════════════════════════════════ */

.LiveBadge-module_marqueeStrip__-mRDs {
  display: block;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.LiveBadge-module_marqueeText__Syx8C {
  font-family: var(--font-headline);
  font-size: 10px;
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  white-space: nowrap;
}

.LiveBadge-module_badge__S8BFg {
  display: inline-flex;
  align-items: center;
  height: 24px;
  gap: var(--spacing-1);
  padding: 0 var(--spacing-1_5);
  background-color: var(--color-main-live);
  border-radius: var(--radius-md);
  flex-shrink: 0;
  cursor: pointer;
}

.LiveBadge-module_badge__S8BFg:focus-visible {
  outline: 2px solid var(--color-active);
  outline-offset: 2px;
  border-radius: var(--radius-md);
}

.LiveBadge-module_dot__1nmeF {
  width: 7px;
  height: 7px;
  border-radius: var(--radius-circle);
  background-color: var(--color-white);
  animation: LiveBadge-module_pulse__62Xb3 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

.LiveBadge-module_label__fd5lI {
  font-family: var(--font-headline);
  font-size: 12px;
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  text-transform: uppercase;
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════════
 * Dropdown — appears below badge on hover/focus
 * ═══════════════════════════════════════════════════ */

.LiveBadge-module_dropdown__WO8mk {
  position: absolute;
  top: calc(100% + var(--spacing-2));
  left: 0;
  min-width: 220px;
  background-color: var(--color-on-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition:
    opacity 150ms ease-in-out,
    transform 150ms ease-in-out,
    visibility 150ms;
  z-index: var(--z-submenu);
}

/* hover: hover scopes to pointer devices — prevents tap-hover
   sticking on mobile, where isOpen (wrapperOpen) controls state. */
@media (hover: hover) {
  .LiveBadge-module_wrapper__-vwwS:hover .LiveBadge-module_dropdown__WO8mk {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.LiveBadge-module_wrapper__-vwwS:focus-within .LiveBadge-module_dropdown__WO8mk,
.LiveBadge-module_wrapperOpen__ckGa7 .LiveBadge-module_dropdown__WO8mk {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.LiveBadge-module_dropdownItem__okX-F {
  display: flex;
  align-items: center;
  gap: var(--spacing-2);
  padding: var(--spacing-2) var(--spacing-3);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--color-text-persistent-dark);
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.25rem;
  white-space: nowrap;
  transition: background-color 100ms ease-in-out;
}

.LiveBadge-module_dropdownItem__okX-F:hover {
  background-color: var(--color-surface-hover);
  color: var(--color-white);
}

.LiveBadge-module_dropdownItem__okX-F:focus-visible {
  outline: 2px solid var(--color-active);
  outline-offset: -2px;
  border-radius: var(--radius-md);
}

.LiveBadge-module_dropdownPlayIcon__os-XV {
  width: 16px;
  height: 16px;
  color: var(--color-main-live);
  flex-shrink: 0;
}

.LiveBadge-module_dropdownTitle__x9R3- {
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ═══════════════════════════════════════════════════
 * Mobile: compact badge inline, no marquee
 * ═══════════════════════════════════════════════════ */

@media (max-width: 1023px) {
  .LiveBadge-module_badge__S8BFg {
    height: auto;
    padding: var(--spacing-0_5) var(--spacing-1_5); /* 2px 6px — compact for small mobiles */
  }

  .LiveBadge-module_dot__1nmeF {
    width: 8px;
    height: 8px;
  }

  .LiveBadge-module_label__fd5lI {
    font-size: 0.75rem; /* 12px */
    line-height: 1rem;
  }

  .LiveBadge-module_marqueeStrip__-mRDs {
    display: none;
  }

  .LiveBadge-module_dropdown__WO8mk {
    left: auto;
    right: 0;
    min-width: unset;
    width: max-content;
    max-width: calc(100vw - var(--spacing-4) * 4);
  }

  .LiveBadge-module_dropdownItem__okX-F {
    white-space: normal;
  }
}

/* ═══════════════════════════════════════════════════
 * Laptop (1024–1535px): compact badge (20px)
 * ═══════════════════════════════════════════════════ */

@media (min-width: 1024px) {
  .LiveBadge-module_badge__S8BFg {
    height: 20px;
  }

  .LiveBadge-module_dot__1nmeF {
    width: 6px;
    height: 6px;
  }

  .LiveBadge-module_label__fd5lI {
    font-size: 10px;
  }

  .LiveBadge-module_marqueeStrip__-mRDs {
    max-width: 180px;
    flex: none;
  }

  .LiveBadge-module_marqueeText__Syx8C {
    font-size: 9px;
  }
}

/* ═══════════════════════════════════════════════════
 * Large desktop (1536px+): restore full-size (24px)
 * ═══════════════════════════════════════════════════ */

@media (min-width: 1536px) {
  .LiveBadge-module_badge__S8BFg {
    height: 24px;
  }

  .LiveBadge-module_dot__1nmeF {
    width: 7px;
    height: 7px;
  }

  .LiveBadge-module_label__fd5lI {
    font-size: 12px;
  }

  .LiveBadge-module_marqueeStrip__-mRDs {
    max-width: 250px;
    flex: none;
  }

  .LiveBadge-module_marqueeText__Syx8C {
    font-size: 11px;
  }
}

@keyframes LiveBadge-module_pulse__62Xb3 {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
/**
 * Header — Two-row floating glass layout at ALL breakpoints
 *
 * xs/md  (< 1024px): 16px margins, 16px padding, 12px row gap
 * lg     (1024–1535px): compact laptop layout — tighter padding, smaller fonts
 * xl+    (≥ 1536px): max-width 1536px, 32px min gutters, generous spacing
 */

.Header-module_wrapper__fkS7W {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--spacing-2);
  border-radius: var(--radius-2xl);
  background-color: rgba(15, 23, 42, 0.8);
  padding: var(--spacing-3);
  backdrop-filter: blur(10px);
  margin-top: var(--spacing-3);
  margin-left: var(--spacing-3);
  margin-right: var(--spacing-3);
}

@media (min-width: 1024px) {
  .Header-module_wrapper__fkS7W {
    padding: var(--spacing-4) var(--spacing-8);
    left: var(--spacing-8);
    right: var(--spacing-8);
    margin: var(--spacing-6) auto;
    max-width: calc(var(--max-width-container) - var(--spacing-8) * 2);
  }
}

@media (min-width: 1536px) {
  .Header-module_wrapper__fkS7W {
    padding: var(--spacing-6);
    left: 0;
    right: 0;
    margin: var(--spacing-8) auto;
    gap: var(--spacing-5);
    max-width: var(--max-width-container);
  }
}

.Header-module_topRow__tUkaD {
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  gap: var(--spacing-3); /* 12px — compact for small mobiles */
}

@media (min-width: 1024px) {
  .Header-module_topRow__tUkaD {
    gap: var(--spacing-4);
  }
}

@media (min-width: 1536px) {
  .Header-module_topRow__tUkaD {
    gap: var(--spacing-6);
  }
}

/* Region links in the top row — desktop only
 * Flex: 1 centres links between badge+marquee and search. */
.Header-module_regionNav__nW1pb {
  display: none;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-4);
}

@media (min-width: 1024px) {
  .Header-module_regionNav__nW1pb {
    display: flex;
    flex: 1;
    min-width: 0;
    gap: var(--spacing-8);
  }
}

@media (min-width: 1536px) {
  .Header-module_regionNav__nW1pb {
    gap: var(--spacing-8);
  }
}

/* Fade the region links out while the desktop search is open so the
   right-anchored search bar has room to grow without overlapping them.
   Kept in-flow (visibility/opacity, not display) so the logo doesn't shift. */
.Header-module_regionNavHidden__TZkKq {
  visibility: hidden;
  opacity: 0;
  transition:
    opacity var(--duration-15) ease-out,
    visibility var(--duration-15) ease-out;
}

.Header-module_regionLink__XzEMe {
  font-family: var(--font-headline);
  font-size: var(--label-menu-item);
  line-height: var(--label-menu-item-line-height);
  font-weight: var(--font-weight-regular);
  color: var(--color-white);
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  padding: var(--spacing-1) 0;
  border-bottom: 2px solid transparent;
  transition: opacity 200ms ease-in-out;
}

@media (min-width: 1024px) {
  .Header-module_regionLink__XzEMe {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}

@media (min-width: 1536px) {
  .Header-module_regionLink__XzEMe {
    font-size: var(--label-menu-item);
    line-height: var(--label-menu-item-line-height);
  }
}

.Header-module_regionLink__XzEMe:hover {
  opacity: 0.7;
}

.Header-module_regionLink__XzEMe:focus-visible {
  outline: 2px solid var(--color-active);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.Header-module_regionLink__XzEMe[aria-current="page"] {
  color: var(--color-active);
  border-bottom-color: var(--color-active);
}

/* Region link full/abbreviated text toggle.
 * At compact desktop (1024–1179px) show abbreviations to save space;
 * at mid-desktop+ (≥ 1180px) show the full names. */
.Header-module_regionLinkAbbr__fp162 {
  display: none;
}

@media (min-width: 1024px) and (max-width: 1179px) {
  .Header-module_regionLinkFull__jZr4c {
    display: none;
  }

  .Header-module_regionLinkAbbr__fp162 {
    display: inline;
  }
}

.Header-module_topRowActions__dkzow {
  display: flex;
  align-items: center;
  gap: var(--spacing-2);
  margin-left: auto;
}

@media (min-width: 1024px) {
  .Header-module_topRowActions__dkzow {
    /* No position: relative here — the expanded search (.searchContainerExpanded)
       must resolve against .topRow so it can grow leftward to a capped width.
       .topRowActions is content-sized (margin-left: auto, ~36px when collapsed),
       so anchoring to it would pin the expanded input to the search button width. */
    gap: var(--spacing-6);
  }
}

.Header-module_liveBadgeSlot__D60b9 {
  display: flex;
  align-items: center;
}

.Header-module_searchSlot__osUhU {
  display: flex;
  align-items: center;
}

@media (min-width: 1024px) {
  .Header-module_searchSlot__osUhU {
    /* Hold the search button's 36px space even when expanded search goes absolute,
       preventing regionNav from reflowing. */
    min-width: 36px;
    min-height: 36px;
  }
}

/* ═══════════════════════════════════════════════════
 * Mobile topRow
 *
 * Logo on the left, LiveBadge + Search + Hamburger
 * grouped together on the right (margin-left: auto).
 * ═══════════════════════════════════════════════════ */

@media (max-width: 1023px) {
  .Header-module_topRowActions__dkzow {
    gap: var(--spacing-2); /* 8px — fits LiveBadge + Search + Hamburger at 375px */
  }
}

/* Collapse wrapper — max-height transition with overflow clip.
 * 60px is a generous upper bound for the single-row nav. */
.Header-module_navRowOuter__FefHa {
  overflow: hidden;
  max-height: 60px;
  transition:
    max-height var(--duration-30) var(--ease-smooth),
    margin-top var(--duration-30) var(--ease-smooth),
    opacity var(--duration-25) var(--ease-smooth);
}

.Header-module_navRowCollapsed__gDD4c {
  max-height: 0;
  opacity: 0;
  /* Absorb the parent flex gap so no empty space remains when collapsed */
  margin-top: calc(-1 * var(--spacing-2));
}

@media (min-width: 1536px) {
  .Header-module_navRowCollapsed__gDD4c {
    margin-top: calc(-1 * var(--spacing-5));
  }
}

.Header-module_navRow__c1qFi {
  display: flex;
  width: 100%;
  align-items: center;
  overflow-x: auto;
  overflow-y: clip;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

/* Nav items have finger-friendly padding at mobile; no extra padding needed here.
   Row separation comes from the parent .wrapper flex gap. */

.Header-module_navRow__c1qFi::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

/* Mobile Menu Toggle Button */
.Header-module_mobileMenuToggle__L9N-3 {
  position: relative;
  display: flex;
  cursor: pointer;
  border: none;
  background: transparent;
  width: var(--spacing-10);
  height: var(--spacing-10);
  justify-content: center;
  align-items: center;
}

.Header-module_mobileMenuToggle__L9N-3:focus-visible {
  outline: 2px solid var(--color-active);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

@media (min-width: 1024px) {
  .Header-module_mobileMenuToggle__L9N-3 {
    display: none;
  }
}

.Header-module_iconWrapper__9fgEj {
  position: relative;
  width: var(--spacing-6);
  height: var(--spacing-6);
}

.Header-module_menuIcon__XqZoP {
  position: absolute;
  inset: 0;
  width: var(--spacing-6);
  height: var(--spacing-6);
  transition: all 300ms;
  color: var(--color-white);
}

.Header-module_menuIcon__XqZoP:first-child {
  opacity: 1;
  transform: rotate(0deg);
}

.Header-module_menuIcon__XqZoP:last-child {
  opacity: 0;
  transform: rotate(-90deg);
}

.Header-module_iconWrapperOpen__XUQwE .Header-module_menuIcon__XqZoP:first-child {
  opacity: 0;
  transform: rotate(90deg);
}

.Header-module_iconWrapperOpen__XUQwE .Header-module_menuIcon__XqZoP:last-child {
  opacity: 1;
  transform: rotate(0deg);
}

/* ═══════════════════════════════════════════════════
 * Mobile Menu Open State
 *
 * When the mobile menu is open, the header panel
 * expands to fill the viewport (same glass panel).
 * The navRow is hidden and replaced by the mobile
 * nav list rendered inside the header.
 * ═══════════════════════════════════════════════════ */

.Header-module_wrapperMobileOpen__FGHcO {
  height: calc(100dvh - var(--spacing-8));
  overflow-y: auto;
}

.Header-module_wrapperMobileOpen__FGHcO .Header-module_navRowOuter__FefHa {
  display: none;
}

@media (min-width: 1024px) {
  .Header-module_wrapperMobileOpen__FGHcO {
    height: auto;
    overflow-y: visible;
  }

  .Header-module_wrapperMobileOpen__FGHcO .Header-module_navRowOuter__FefHa {
    display: block;
  }
}


.Header-module_mobileNavContent__FbFuh {
  display: flex;
  flex-direction: column;
  padding-top: var(--spacing-5);
}
.RootLayout-module_rootContainer__fBed- {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.RootLayout-module_errorBanner__sgL1B {
  background-color: var(--color-error-bg);
  padding: var(--spacing-4);
  text-align: center;
  color: var(--color-error-light);
}

.RootLayout-module_mainContentWrapper__M8vzX {
  display: flex;
  flex-direction: column;
  background: linear-gradient(to bottom, transparent 90vh, var(--color-bg-main) 130vh);
  overflow-anchor: none; /* Prevent browser scroll anchoring from overriding manual scrollTo */
}

.RootLayout-module_mainContent__fQpVJ {
  margin-inline: auto;
  width: 100%;
  min-height: 100vh;
  padding-top: var(--header-total-height);
  padding-bottom: var(--spacing-8);
}

.RootLayout-module_aboveFold__XyFoV {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 130vh;
  background-image: url("/images/bg-hero.jpg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  pointer-events: none;
}
.FooterNavigation-module_nav__WRWd2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-5);
}

@media (min-width: 768px) {
  .FooterNavigation-module_nav__WRWd2 {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-4);
  }
}

@media (min-width: 1024px) {
  .FooterNavigation-module_nav__WRWd2 {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-8);
  }
}

@media (min-width: 1536px) {
  .FooterNavigation-module_nav__WRWd2 {
    display: flex;
    justify-content: space-between;
  }
}

.FooterNavigation-module_footerGroupTitle__IekEf {
  margin-bottom: var(--spacing-3);
}

.FooterNavigation-module_columnItems__ojTpa {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-0_5);
}

@media (min-width: 1024px) {
  .FooterNavigation-module_columnItems__ojTpa {
    gap: var(--spacing-2);
  }
}

.FooterNavigation-module_linkWrapper__CI61I {
  display: flex;
  align-items: center;
  gap: var(--spacing-2);
}

.FooterNavigation-module_link__Q4t3R {
  font-size: var(--text-body);
  line-height: var(--text-body-line-height);
  color: var(--color-text-primary);
  text-decoration: none;
  transition: opacity var(--duration-20) ease;
}

.FooterNavigation-module_link__Q4t3R:hover {
  opacity: 0.7;
}

.FooterNavigation-module_linkExternal__UVU3I {
  font-size: var(--text-body);
  line-height: var(--text-body-line-height);
  color: var(--color-text-primary);
  text-decoration: none;
  transition: opacity var(--duration-20) ease;
}

.FooterNavigation-module_linkExternal__UVU3I:hover {
  opacity: 0.7;
}

.FooterNavigation-module_consentButton__GlRJV {
  all: unset;
  font-size: var(--text-body);
  line-height: var(--text-body-line-height);
  color: var(--color-text-primary);
  cursor: pointer;
  transition: opacity var(--duration-20) ease;
}

.FooterNavigation-module_consentButton__GlRJV:hover {
  opacity: 0.7;
}

.FooterNavigation-module_icon__RLguo {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-text-primary);
}
/* Footer — Dark rounded card
 *
 * Width tracks header at every breakpoint:
 *   < 1024px    → 12px side margins, fluid (matches header)
 *   1024–1535px → calc(100% - 64px), max 1136px, centred (matches header 32px clearance)
 *   ≥ 1536px   → max-width 1536px, centred
 */

.Footer-module_footer__0O3bd {
  display: flex;
  flex-direction: column;
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-2xl);
  margin-left: var(--spacing-3);
  margin-right: var(--spacing-3);
  padding: var(--spacing-8);
  gap: var(--spacing-8);
}

@media (min-width: 1024px) {
  .Footer-module_footer__0O3bd {
    width: calc(100% - var(--spacing-8) * 2); /* viewport - 64px — matches header side clearance */
    max-width: calc(var(--max-width-container) - var(--spacing-8) * 2); /* 1136px */
    margin-left: auto;
    margin-right: auto;
    padding: var(--spacing-14);
    gap: var(--spacing-8); /* 32px — tighter gap between nav and bottom bar */
  }
}

@media (min-width: 1536px) {
  .Footer-module_footer__0O3bd {
    width: 100%;
    max-width: var(--max-width-container); /* 1536px — matches header at full-size */
    gap: var(--spacing-14); /* 56px */
  }
}

/* Bottom bar: logo + copyright + legal links */

.Footer-module_bottomBar__2-LUP {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-4);
}

@media (min-width: 1536px) {
  .Footer-module_bottomBar__2-LUP {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

/* Brand section: logo + copyright */

.Footer-module_brandSection__7BDjO {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-2);
}

@media (min-width: 1024px) {
  .Footer-module_brandSection__7BDjO {
    gap: var(--spacing-4);
  }
}

@media (min-width: 1536px) {
  .Footer-module_brandSection__7BDjO {
    flex-direction: row;
    align-items: flex-end;
    gap: var(--spacing-4);
  }
}

.Footer-module_logo__0y0eX {
  width: 80px;
  height: 100px;
  object-fit: contain;
}

.Footer-module_copyright__So90j {
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: var(--text-body-line-height);
  color: var(--color-text-muted);
}

/* Legal links row */

.Footer-module_legalLinks__Is-Xv {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-1);
}

@media (min-width: 768px) {
  .Footer-module_legalLinks__Is-Xv {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: var(--spacing-4);
  }
}

@media (min-width: 1024px) {
  .Footer-module_legalLinks__Is-Xv {
    justify-content: space-between;
    gap: var(--spacing-6);
  }
}

@media (min-width: 1536px) {
  .Footer-module_legalLinks__Is-Xv {
    width: auto;
    justify-content: flex-end;
    gap: var(--spacing-6);
  }
}

.Footer-module_legalLink__PxWVQ {
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: var(--text-body-line-height);
  color: var(--color-text-primary);
  text-decoration: none;
  transition: opacity var(--duration-20) ease;
}

.Footer-module_legalLink__PxWVQ:hover {
  opacity: 0.7;
}

.Footer-module_legalButton__91c1I {
  all: unset;
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: var(--text-body-line-height);
  color: var(--color-text-primary);
  cursor: pointer;
  transition: opacity var(--duration-20) ease;
}

.Footer-module_legalButton__91c1I:hover {
  opacity: 0.7;
}
/**
 * HeaderFallback Styles
 *
 * Matches Header.module.css layout so the fallback occupies the same space
 * and feels visually consistent when the real Header fails to render.
 *
 * Self-contained: does NOT depend on any shared component CSS modules.
 */

.HeaderFallback-module_wrapper__71G69 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  display: flex;
  height: 72px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-2xl);
  background-color: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(10px);
  padding: var(--spacing-4) var(--spacing-6);
  margin: var(--spacing-4);
}

@media (min-width: 1536px) {
  .HeaderFallback-module_wrapper__71G69 {
    height: 88px;
  }
}

.HeaderFallback-module_link__chiug {
  font-family: var(--font-headline, "Bungee Inline", sans-serif);
  font-size: 1.25rem;
  color: var(--color-white);
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
}

.HeaderFallback-module_link__chiug:hover {
  opacity: 0.7;
}
/**
 * FooterFallback Styles
 *
 * Matches Footer dark rounded card so the fallback feels
 * visually consistent when the real Footer fails to render.
 * Preserves legally required links.
 *
 * Self-contained: does NOT depend on any shared component CSS modules.
 */

/* Horizontal margins mirror Header.module.css */
.FooterFallback-module_wrapper__qvIMw {
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-2xl);
  margin-left: var(--spacing-4);
  margin-right: var(--spacing-4);
  padding: var(--spacing-8);
}

@media (min-width: 1024px) {
  .FooterFallback-module_wrapper__qvIMw {
    max-width: 1472px;
    margin-left: max(2rem, calc((100% - 1472px) / 2));
    margin-right: max(2rem, calc((100% - 1472px) / 2));
    padding: var(--spacing-14);
  }
}

.FooterFallback-module_nav__2NtD2 {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-2);
}

@media (min-width: 768px) {
  .FooterFallback-module_nav__2NtD2 {
    flex-direction: row;
    gap: var(--spacing-6);
  }
}

.FooterFallback-module_link__fny5I {
  font-family: var(--font-body, "Noto Sans", sans-serif);
  font-size: var(--text-body);
  line-height: var(--text-body-line-height);
  font-weight: var(--font-weight-regular);
  color: var(--color-text-primary);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.FooterFallback-module_link__fny5I:hover {
  opacity: 0.7;
}
/*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
@layer properties {
  @supports (((-webkit-hyphens: none)) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color: rgb(from red r g b)))) {
    *, :before, :after, ::backdrop {
      --tw-rotate-x: initial;
      --tw-rotate-y: initial;
      --tw-rotate-z: initial;
      --tw-skew-x: initial;
      --tw-skew-y: initial;
      --tw-border-style: solid;
      --tw-outline-style: solid;
      --tw-blur: initial;
      --tw-brightness: initial;
      --tw-contrast: initial;
      --tw-grayscale: initial;
      --tw-hue-rotate: initial;
      --tw-invert: initial;
      --tw-opacity: initial;
      --tw-saturate: initial;
      --tw-sepia: initial;
      --tw-drop-shadow: initial;
      --tw-drop-shadow-color: initial;
      --tw-drop-shadow-alpha: 100%;
      --tw-drop-shadow-size: initial;
    }
  }
}

@layer theme {
  :root, :host {
    --color-gray-50: #f8fafc;
    --color-gray-300: #cbd5e1;
    --color-gray-400: #94a3b8;
    --color-gray-500: #64748b;
    --color-gray-700: #334155;
    --color-gray-900: #0f172a;
    --color-black: #0f172a;
    --color-white: #f8fafc;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --tracking-normal: 0;
    --tracking-wider: .05em;
    --font-headline: "Ridley Grotesk", sans-serif;
    --font-body: "Inter", sans-serif;
    --font-weight-regular: 400;
    --text-h1: 3rem;
    --text-h1-line-height: 3.75rem;
    --text-h2: 2.25rem;
    --text-h2-line-height: 3rem;
    --text-h3: 2rem;
    --text-h3-line-height: 2.25rem;
    --text-h4: 1.25rem;
    --text-h4-line-height: 1.75rem;
    --text-h5: 1.5rem;
    --text-h5-line-height: 2rem;
    --text-h6: 1.25rem;
    --text-h6-line-height: 1.5rem;
    --text-body: 1rem;
    --text-body-line-height: 1.5rem;
    --text-large: 1.125rem;
    --text-large-line-height: 1.5rem;
    --text-small: .875rem;
    --text-small-line-height: 1rem;
    --label-button: 1.25rem;
    --label-button-line-height: 1.75rem;
    --label-menu-item: 1.125rem;
    --label-menu-item-line-height: 1.25rem;
    --color-main-live: #c42517;
    --color-black-light: #1e293b;
    --color-on-surface: #f8fafc;
    --color-active: #0ac8be;
    --color-error: #dc2626;
    --color-error-light: #fecaca;
    --color-error-bg: #3a1a1a;
    --color-border: #334155;
    --color-button-primary: #0ac8be;
    --color-text-primary: #f8fafc;
    --color-text-secondary: #cbd5e1;
    --color-text-tertiary: #94a3b8;
    --color-text-muted: #64748b;
    --color-text-on-accent: #f8fafc;
    --color-text-persistent-dark: #0f172a;
    --color-surface: #1e293b;
    --color-surface-hover: #334155;
    --color-outline: #475569;
    --color-primary: #0ac8be;
    --color-primary-alpha-10: #0ac8be1a;
    --color-brand-magenta: #a21b67;
    --color-highlight: #0ac8be;
    --color-card-bg: #0f172a;
    --color-section-label: #94a3b8;
    --color-gradient-dark: #001e2b;
    --color-border-card: #334155;
    --color-social-instagram: #bb2dce;
    --color-social-whatsapp: #25d366;
    --color-social-facebook: #1877f2;
    --color-border-default: #334155;
    --color-placeholder-background: #253348;
    --color-placeholder-text: #475569;
    --color-bg-main: #253348;
    --color-bg-primary: #1e293b;
    --color-bg-secondary: #0f172a;
    --spacing-0_5: .125rem;
    --spacing-1: .25rem;
    --spacing-1_5: .375rem;
    --spacing-2: .5rem;
    --spacing-2_5: .625rem;
    --spacing-3: .75rem;
    --spacing-4: 1rem;
    --spacing-5: 1.25rem;
    --spacing-6: 1.5rem;
    --spacing-8: 2rem;
    --spacing-10: 2.5rem;
    --spacing-11: 2.75rem;
    --spacing-12: 3rem;
    --spacing-14: 3.5rem;
    --spacing-16: 4rem;
    --button-icon-size: 2.5rem;
    --button-icon-size-sm: 1.5rem;
    --duration-10: .1s;
    --duration-15: .15s;
    --duration-20: .2s;
    --duration-25: .25s;
    --duration-30: .3s;
    --ease-default: ease;
    --ease-smooth: cubic-bezier(.4, 0, .2, 1);
  }
}

@layer base {
  *, :after, :before, ::backdrop {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }

  ::file-selector-button {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }

  html, :host {
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    line-height: 1.5;
    font-family: var(--default-font-family, var(--font-sans, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"));
    font-feature-settings: var(--default-font-feature-settings, initial);
    font-variation-settings: var(--default-font-variation-settings, initial);
    -webkit-tap-highlight-color: transparent;
  }

  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }

  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }

  h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
  }

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

  b, strong {
    font-weight: bolder;
  }

  code, kbd, samp, pre {
    font-family: var(--default-mono-font-family, var(--font-mono, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace));
    font-feature-settings: var(--default-mono-font-feature-settings, initial);
    font-variation-settings: var(--default-mono-font-variation-settings, initial);
    font-size: 1em;
  }

  small {
    font-size: 80%;
  }

  sub, sup {
    vertical-align: baseline;
    font-size: 75%;
    line-height: 0;
    position: relative;
  }

  sub {
    bottom: -.25em;
  }

  sup {
    top: -.5em;
  }

  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }

  :-moz-focusring {
    outline: auto;
  }

  progress {
    vertical-align: baseline;
  }

  summary {
    display: list-item;
  }

  ol, ul, menu {
    list-style: none;
  }

  img, svg, video, canvas, audio, iframe, embed, object {
    vertical-align: middle;
    display: block;
  }

  img, video {
    max-width: 100%;
    height: auto;
  }

  button, input, select, optgroup, textarea {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }

  ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }

  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }

  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }

  ::file-selector-button {
    margin-inline-end: 4px;
  }

  ::placeholder {
    opacity: 1;
  }

  @supports (not ((-webkit-appearance: -apple-pay-button))) or (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentColor;
    }

    @supports (color: color-mix(in lab, red, red)) {
      ::placeholder {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }

  textarea {
    resize: vertical;
  }

  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }

  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }

  ::-webkit-datetime-edit {
    display: inline-flex;
  }

  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }

  ::-webkit-datetime-edit {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-year-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-month-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-day-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-hour-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-minute-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-second-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-millisecond-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }

  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }

  :-moz-ui-invalid {
    box-shadow: none;
  }

  button, input:where([type="button"], [type="reset"], [type="submit"]) {
    appearance: button;
  }

  ::file-selector-button {
    appearance: button;
  }

  ::-webkit-inner-spin-button {
    height: auto;
  }

  ::-webkit-outer-spin-button {
    height: auto;
  }

  [hidden]:where(:not([hidden="until-found"])) {
    display: none !important;
  }
}

@layer components;

@layer utilities {
  .visible {
    visibility: visible;
  }

  .absolute {
    position: absolute;
  }

  .fixed {
    position: fixed;
  }

  .relative {
    position: relative;
  }

  .static {
    position: static;
  }

  .container {
    width: 100%;
  }

  @media (min-width: 40rem) {
    .container {
      max-width: 40rem;
    }
  }

  @media (min-width: 48rem) {
    .container {
      max-width: 48rem;
    }
  }

  @media (min-width: 64rem) {
    .container {
      max-width: 64rem;
    }
  }

  @media (min-width: 80rem) {
    .container {
      max-width: 80rem;
    }
  }

  @media (min-width: 96rem) {
    .container {
      max-width: 96rem;
    }
  }

  .block {
    display: block;
  }

  .flex {
    display: flex;
  }

  .grid {
    display: grid;
  }

  .hidden {
    display: none;
  }

  .inline {
    display: inline;
  }

  .table {
    display: table;
  }

  .border-collapse {
    border-collapse: collapse;
  }

  .transform {
    transform: var(--tw-rotate-x, ) var(--tw-rotate-y, ) var(--tw-rotate-z, ) var(--tw-skew-x, ) var(--tw-skew-y, );
  }

  .resize {
    resize: both;
  }

  .rounded {
    border-radius: .25rem;
  }

  .border {
    border-style: var(--tw-border-style);
    border-width: 1px;
  }

  .uppercase {
    text-transform: uppercase;
  }

  .overline {
    text-decoration-line: overline;
  }

  .outline {
    outline-style: var(--tw-outline-style);
    outline-width: 1px;
  }

  .invert {
    --tw-invert: invert(100%);
    filter: var(--tw-blur, ) var(--tw-brightness, ) var(--tw-contrast, ) var(--tw-grayscale, ) var(--tw-hue-rotate, ) var(--tw-invert, ) var(--tw-saturate, ) var(--tw-sepia, ) var(--tw-drop-shadow, );
  }

  .filter {
    filter: var(--tw-blur, ) var(--tw-brightness, ) var(--tw-contrast, ) var(--tw-grayscale, ) var(--tw-hue-rotate, ) var(--tw-invert, ) var(--tw-saturate, ) var(--tw-sepia, ) var(--tw-drop-shadow, );
  }
}

@media (max-width: 767px) {
  :root {
    --text-h1: 2rem;
    --text-h1-line-height: 2.25rem;
    --text-h2: 1.5rem;
    --text-h2-line-height: 2.25rem;
    --text-h3: 1.25rem;
    --text-h3-line-height: 1.75rem;
    --text-h4: 1.125rem;
    --text-h4-line-height: 1.5rem;
    --text-h5: 1.125rem;
    --text-h5-line-height: 1.5rem;
    --text-h6: 1rem;
    --text-h6-line-height: 1rem;
    --label-button: 1rem;
    --label-button-line-height: 1.25rem;
    --label-menu-item: 1rem;
    --label-menu-item-line-height: 1.25rem;
  }
}

:root {
  --spacing-block-y: var(--spacing-4);
  --spacing-block-gap: var(--spacing-5);
  --spacing-container: var(--spacing-4);
  --spacing-hero-top: var(--spacing-5);
  --hero-height: 260px;
  --header-total-height: 112px;
}

@media (min-width: 768px) {
  :root {
    --spacing-block-y: var(--spacing-12);
    --hero-height: 380px;
  }
}

@media (min-width: 1024px) {
  :root {
    --spacing-container: var(--spacing-11);
    --hero-height: 480px;
    --header-total-height: 148px;
  }
}

@media (min-width: 1536px) {
  :root {
    --spacing-container: var(--spacing-3);
    --spacing-block-y: var(--spacing-8);
    --spacing-hero-top: var(--spacing-5);
    --hero-height: 620px;
    --header-total-height: 192px;
  }
}

@layer {
  @keyframes slideUpFadeIn {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }

    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

:root {
  --max-width-container: 1536px;
  --max-width-content: 100%;
  --radius-sm: .25rem;
  --radius-md: .5rem;
  --radius-lg: 1rem;
  --radius-2xl: 1.5rem;
  --radius-pill: 9999px;
  --radius-circle: 50%;
  --shadow-card-hover: 0 4px 8px #00000026;
  --shadow-elevated: 0 4px 12px #00000026;
  --shadow-floating: 0 10px 15px -3px #0003, 0 4px 6px -4px #00000026;
  --shadow-subtle: 0 2px 8px #00000040;
  --pip-width: 320px;
  --pip-width-mobile: 240px;
  --pip-width-wide: 400px;
  --z-content: 10;
  --z-nav: 20;
  --z-overlay: 30;
  --z-submenu: 35;
  --z-header: 40;
  --z-modal: 50;
}

@media (min-width: 1024px) and (max-width: 1535px) {
  :root {
    --max-width-container: 1200px;
  }
}

@media (min-width: 1024px) {
  :root {
    --max-width-content: 1200px;
  }
}

body {
  background: var(--color-bg-main);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: var(--font-weight-regular);
  line-height: var(--text-body-line-height);
}

*, :before, :after {
  font-family: inherit;
}

input, textarea, select, button, .font-body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: var(--font-weight-regular);
  line-height: var(--text-body-line-height);
}

@font-face {
  font-display: swap;
  font-family: Ridley Grotesk;
  font-style: normal;
  font-weight: 400;
  src: url("/fonts/Ridley%20Grotesk/Radomir%20Tinkov%20-%20RidleyGrotesk-Regular.otf") format("opentype");
}

@font-face {
  font-display: swap;
  font-family: Ridley Grotesk;
  font-style: normal;
  font-weight: 700;
  src: url("/fonts/Ridley%20Grotesk/Radomir%20Tinkov%20-%20RidleyGrotesk-Bold.otf") format("opentype");
}

@font-face {
  font-display: swap;
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  src: url("/fonts/Inter/Inter-VariableFont_opsz,wght.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: Inter;
  font-style: italic;
  font-weight: 100 900;
  src: url("/fonts/Inter/Inter-Italic-VariableFont_opsz,wght.ttf") format("truetype");
}

@property --tw-rotate-x {
  syntax: "*";
  inherits: false
}

@property --tw-rotate-y {
  syntax: "*";
  inherits: false
}

@property --tw-rotate-z {
  syntax: "*";
  inherits: false
}

@property --tw-skew-x {
  syntax: "*";
  inherits: false
}

@property --tw-skew-y {
  syntax: "*";
  inherits: false
}

@property --tw-border-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}

@property --tw-outline-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}

@property --tw-blur {
  syntax: "*";
  inherits: false
}

@property --tw-brightness {
  syntax: "*";
  inherits: false
}

@property --tw-contrast {
  syntax: "*";
  inherits: false
}

@property --tw-grayscale {
  syntax: "*";
  inherits: false
}

@property --tw-hue-rotate {
  syntax: "*";
  inherits: false
}

@property --tw-invert {
  syntax: "*";
  inherits: false
}

@property --tw-opacity {
  syntax: "*";
  inherits: false
}

@property --tw-saturate {
  syntax: "*";
  inherits: false
}

@property --tw-sepia {
  syntax: "*";
  inherits: false
}

@property --tw-drop-shadow {
  syntax: "*";
  inherits: false
}

@property --tw-drop-shadow-color {
  syntax: "*";
  inherits: false
}

@property --tw-drop-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}

@property --tw-drop-shadow-size {
  syntax: "*";
  inherits: false
}
/*! tailwindcss v4.1.14 | MIT License | https://tailwindcss.com */
.Notification-module_overlay__-q0-1 {
  pointer-events: none;
  z-index: var(--z-modal);
  padding: var(--spacing-6) var(--spacing-4);
  align-items: flex-end;
  display: flex;
  position: fixed;
  inset: 0;
}

@media (min-width: 768px) {
  .Notification-module_overlay__-q0-1 {
    padding: var(--spacing-6);
    align-items: flex-start;
  }
}

.Notification-module_stack__Tpixk {
  align-items: center;
  gap: var(--spacing-4);
  flex-direction: column;
  width: 100%;
  display: flex;
}

@media (min-width: 768px) {
  .Notification-module_stack__Tpixk {
    align-items: flex-end;
  }
}

.Notification-module_card__qO87O {
  pointer-events: auto;
  border-radius: var(--radius-md);
  background-color: var(--color-surface);
  outline-offset: -1px;
  opacity: 1;
  outline: 1px solid #ffffff1a;
  width: 100%;
  max-width: 24rem;
  transition: transform .3s ease-out, opacity .3s ease-out;
  transform: translateY(0);
  box-shadow: 0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a;
}

@media (min-width: 768px) {
  .Notification-module_card__qO87O {
    transform: translateX(0);
  }
}

@starting-style {
  .Notification-module_card__qO87O {
    opacity: 0;
    transform: translateY(.5rem);
  }
}

@media (min-width: 768px) {
  @starting-style {
    .Notification-module_card__qO87O {
      opacity: 0;
      transform: translateX(.5rem);
    }
  }
}

.Notification-module_content__h4ZmI {
  padding: var(--spacing-4);
}

.Notification-module_row__DYsZa {
  align-items: flex-start;
  display: flex;
}

.Notification-module_iconWrapper__2z6X5 {
  flex-shrink: 0;
}

.Notification-module_icon__3qaNs {
  width: 1.5rem;
  height: 1.5rem;
}

.Notification-module_iconSuccess__jQlE9 {
  color: #4ade80;
}

.Notification-module_iconError__JUrZw {
  color: #f87171;
}

.Notification-module_iconInfo__cYVCa {
  color: #60a5fa;
}

.Notification-module_iconWarning__EEiUe {
  color: #facc15;
}

.Notification-module_text__Ca39Y {
  margin-left: var(--spacing-3);
  flex: 1;
  width: 0;
  padding-top: .125rem;
}

.Notification-module_title__LNnNs {
  font-size: var(--text-small);
  color: var(--color-text-secondary);
  line-height: 1.25rem;
}

.Notification-module_description__9X9Lq {
  margin-top: var(--spacing-1);
  font-size: var(--text-small);
  color: var(--color-text-muted);
  line-height: 1.25rem;
}

.Notification-module_actions__-xboF {
  margin-left: var(--spacing-4);
  flex-shrink: 0;
  display: flex;
}

.Notification-module_closeButton__upgwL {
  border-radius: var(--radius-md);
  color: var(--color-text-muted);
  cursor: pointer;
  background: none;
  border: none;
  display: inline-flex;
}

.Notification-module_closeButton__upgwL:hover {
  color: var(--color-text-secondary);
}

.Notification-module_closeButton__upgwL:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.Notification-module_closeIcon__X7jiZ {
  width: 1.25rem;
  height: 1.25rem;
}

.Notification-module_srOnly__S2oss {
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}
/**
 * Inverted colors for the consent refresh banner.
 * Overrides color tokens so the banner contrasts with the dark site theme.
 */

.ConsentRefreshBanner-module_inverted__ds4ZD {
  /* Force light surface + dark text to contrast */
  --color-surface: #ffffff;
  --color-text-primary: #1a1a1a;
  --color-text-muted: #999999;
  --color-text-secondary: #1a1a1a;
}
[data-start-icon-button] {
  display: flex;
  padding: 0.25rem;
  border-radius: 9999px;
  border-width: 0px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgb(249 250 251);
  background: none;
  transition-property: color, background-color, border-color, box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

[data-start-icon-button]:hover {
  color: rgb(229 231 235);
  background-color: rgb(55 65 81);
}

[data-start-icon-button]:focus {
  outline: 2px solid transparent;
  outline-color: rgb(249 250 251);
  outline-offset: 2px;
}

[data-start-icon-button]:focus-visible {
  box-shadow: 0 0 0 calc(3px) rgb(17 24 39 / 0.75);
}

[data-start-icon-button]:active {
  color: rgb(243 244 246);
  background-color: rgb(31 41 55);
}

[data-start-icon-button] > svg {
  height: 1.25rem;
  width: 1.25rem;
}
[data-start-text-size="xs"] {
  font-size: 0.75rem;
  line-height: calc(1 / 0.75);
}
[data-start-text-size="sm"] {
  font-size: 0.875rem;
  line-height: calc(1.25 / 0.875);
}
[data-start-text-size="base"] {
  font-size: 1rem;
  line-height: 1.5;
}
[data-start-text-size="lg"] {
  font-size: 1.125rem;
  line-height: calc(1.75 / 1.125);
}
[data-start-text-size="xl"] {
  font-size: 1.25rem;
  line-height: calc(1.75 / 1.25);
}
[data-start-text-size="2xl"] {
  font-size: 1.5rem;
  line-height: calc(2 / 1.5);
}

[data-start-text-font="sans"] {
  font-family:
    system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
    "Noto Color Emoji";
}
[data-start-text-font="serif"] {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
}
[data-start-text-font="mono"] {
  font-family:
    ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New",
    monospace;
}

[data-start-text-weight="thin"] {
  font-weight: 100;
}
[data-start-text-weight="extralight"] {
  font-weight: 200;
}
[data-start-text-weight="light"] {
  font-weight: 300;
}
[data-start-text-weight="normal"] {
  font-weight: 400;
}
[data-start-text-weight="medium"] {
  font-weight: 500;
}
[data-start-text-weight="semibold"] {
  font-weight: 600;
}
[data-start-text-weight="bold"] {
  font-weight: 700;
}
[data-start-text-weight="extrabold"] {
  font-weight: 800;
}
[data-start-text-weight="black"] {
  font-weight: 900;
}

[data-start-text-wrap="wrap"] {
  white-space: wrap;
}
[data-start-text-wrap="nowrap"] {
  white-space: nowrap;
}
[data-start-badge] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;

  border-radius: 0.375rem;
  padding: 0.125rem 0.25rem;

  background-color: var(--background);
  border: 1px var(--foreground) solid;
  color: var(--foreground);
}

[data-start-badge="success"] {
  --background: oklch(98.2% 0.018 155.826);
  --foreground: oklch(52.7% 0.154 150.069);
}

[data-start-badge="failure"] {
  --background: oklch(97.1% 0.013 17.38);
  --foreground: oklch(50.5% 0.213 27.518);
}

[data-start-badge="warning"] {
  --background: oklch(98.7% 0.026 102.212);
  --foreground: oklch(47.6% 0.114 61.907);
}

[data-start-badge="info"] {
  --background: oklch(97% 0.014 254.604);
  --foreground: oklch(48.8% 0.243 264.376);
}
[data-start-placeholder] {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  height: 100%;
}

[data-start-placeholder] > span {
  text-align: center;
}
[data-start-section] {
  display: flex;
  flex-direction: column;
}

[data-start-section-title] {
  text-transform: uppercase;
}

[data-start-section-content] {
  margin-left: 0.5rem;
  padding-left: 0.5rem;
  border-left: 1px oklch(87% 0.065 274.039) solid;

  width: calc(100% - 2rem);

  overflow: auto;
}
[data-start-select] {
  display: flex;
  flex-direction: column;
  margin: 0;
  margin-block: 0;
  list-style-type: none;
  padding-inline: 0;
}

[data-start-select] > * + * {
  border-top: 1px oklch(87% 0.065 274.039) solid;
}

[data-start-select-option] {
  color: rgb(249 250 251);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  outline: none;
  cursor: pointer;

  transition-property: color, background-color, border-color, box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;

  white-space: nowrap;
}

[data-start-select-option][tc-active],
[data-start-select-option][tc-selected],
[data-start-select-option]:focus {
  color: rgb(229 231 235);
  background-color: rgb(55 65 81);
}
[data-start-tab] {
  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 0.5rem;
  cursor: pointer;

  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  border: none;
  outline: none;

  transition-property: color, background-color, border-color, box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

[data-start-tab][tc-active],
[data-start-tab][tc-selected],
[data-start-tab]:hover,
[data-start-tab]:focus {
  color: rgb(229 231 235);
  background-color: rgb(55 65 81);
}

[data-start-tab-group] {
}

[data-start-tab-list] {
  display: flex;
  gap: 0.5rem;
  margin: 0.5rem;
}

[data-start-tab-panel] {
  height: 100%;

  overflow: auto;

  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.5rem;

  border-top: oklch(87% 0.065 274.039) 1px solid;
}
[data-start-button] {
  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  border-radius: 0.5rem;

  color: oklch(97% 0.014 254.604);

  background-color: rgb(17 24 39);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  border: none;
  outline: none;

  transition-property: color, background-color, border-color, box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;

  white-space: nowrap;
}

[data-start-button][tc-active],
[data-start-button][tc-selected],
[data-start-button]:hover,
[data-start-button]:focus {
  color: rgb(219 234 254);
  background-color: rgb(30 58 138);
}
[data-start-blob-viewer] svg {
  width: 1rem;
  height: 1rem;
}
[data-start-seroval-value] {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}
[data-start-headers-viewer] {
  font-size: 0.75rem;
  line-height: 1rem;
}

[data-start-headers-viewer] > [data-start-property] > *:first-child {
  text-transform: capitalize;
}
[data-start-hex-viewer] {
  display: flex;
  border: 1px oklch(87% 0.065 274.039) solid;
  overflow: auto;
}

[data-start-hex-viewer-bytes] {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.5rem;
}

[data-start-hex-viewer-text] {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.5rem;
  border-left: 1px oklch(87% 0.065 274.039) solid;
}

[data-start-hex-row] {
  display: flex;
  align-items: center;
  gap: 1rem;
}

[data-start-hex-text] {
  display: flex;
  align-items: center;
  justify-content: start;
}
[data-start-cascade] {
  display: flex;
  flex-direction: column;
  margin: 0;
  margin-block: 0;
  list-style-type: none;
  padding-inline: 0;
}

[data-start-cascade-option] {
  border-radius: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  outline: none;
  cursor: pointer;

  transition-property: color, background-color, border-color, box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;

  white-space: nowrap;
}

[data-start-cascade-option][tc-active],
[data-start-cascade-option][tc-selected],
[data-start-cascade-option]:focus {
  background-color: rgb(219 234 254);
  color: rgb(30 58 138);
}
[data-start-seroval-viewer] {
  display: grid;
  grid-template-columns: 1fr 2fr;
}

[data-start-seroval-promise] {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

[data-start-seroval-renderer] {
  display: flex;
  border-top: 1px oklch(87% 0.065 274.039) solid;
  border-bottom: 1px oklch(87% 0.065 274.039) solid;
}

[data-start-seroval-renderer] > * {
  border-left: 1px oklch(87% 0.065 274.039) solid;
}

[data-start-seroval-renderer]:last-child {
  border-right: 1px oklch(87% 0.065 274.039) solid;
}

[data-start-seroval-node] {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.25rem;

  width: 100%;
  max-width: 16rem;
}

[data-start-seroval-node-header] {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgb(249 250 251);
}

[data-start-seroval-node-content] {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

[data-start-seroval-value] {
  color: rgb(249 250 251);
}

[data-start-seroval-value-wrapper] {
  display: inline-flex;
  gap: 0.25rem;
  align-items: center;
}

[data-start-seroval-link] {
  display: inline-flex;
  gap: 0.25rem;
  align-items: center;
}

[data-start-seroval-link] > svg {
  width: 1rem;
  height: 1rem;
}
[data-start-functions-instance-detail] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

[data-start-functions-viewer] {
  color: rgb(249 250 251);

  display: flex;
  flex-direction: column;

  min-height: 100%;
}

[data-start-functions-instances-container] {
  color: rgb(249 250 251);
  width: 100%;
  min-height: 100%;
  overflow: auto;
}

[data-start-functions-instances] {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 0px;
}

[data-start-functions-instances] > [data-start-select-option] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem;
  color: rgb(249 250 251);
}

[data-start-headers] {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

[data-start-headers-title] {
  font-weight: 500;
}

[data-start-properties] {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

[data-start-property] {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;

  gap: 0.25rem;
}

[data-start-function-instance-viewer] {
  display: flex;
  flex-direction: column;

  width: 100%;
}

[data-start-function-instance-viewer-nav],
[data-start-functions-nav] {
  padding: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;

  justify-content: space-between;

  position: sticky;
  top: 0;

  border-bottom: oklch(87% 0.065 274.039) 1px solid;

  background: oklch(25.7% 0.09 281.288);
}

[data-start-functions-nav] svg {
  padding: 0.25rem;
}

[data-start-function-instance-viewer-nav-left] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

[data-start-function-instance-viewer-nav-left] > div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

[data-start-function-instance-viewer-content] {
  height: 100%;
}

[data-start-function-instance-viewer-content] > [tc-tab-group] {
  height: 100%;
}
[data-start-dev-toolbar] {
  position: fixed;

  bottom: 0px;
  left: 0px;

  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;

  cursor: grab;
}

[data-start-dev-toolbar]:active {
  cursor: grabbing;
}

[data-start-dev-toolbar] > [tc-toolbar] {
  position: relative;

  background: oklch(25.7% 0.09 281.288);
  margin: 1rem;
  padding: 0.25rem 0.5rem;

  overflow: hidden;
  border-radius: 9999px;

  display: flex;
  flex-direction: row;
  align-items: center;

  gap: 0.5rem;

  border: oklch(87% 0.065 274.039) 1px solid;
}

[data-start-dev-toolbar] > [tc-toolbar] > div {
  display: flex;

  flex-direction: row;
  align-items: center;
  justify-content: center;
}

[data-start-dev-toolbar] > [tc-toolbar] > div:last-child {
  border-left: rgb(249 250 251) 1px solid;
  padding-left: 0.5rem;

  gap: 0.5rem;
}

[data-start-dev-toolbar-version] {
  border-radius: 9999px;
  color: rgb(249 250 251);
  padding: 0.125rem 0.5rem;

  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;

  border: oklch(87% 0.065 274.039) 1px solid;
}

[data-start-dev-toolbar-version] > div {
  height: 1.5rem;
  width: 1.5rem;
}

[data-start-dev-toolbar] svg {
  height: 1.25rem;
  width: 1.25rem;
}

[data-start-dev-toolbar-panel] {
  border: oklch(87% 0.065 274.039) 1px solid;
  background: oklch(25.7% 0.09 281.288);
  margin: 0rem 1rem;

  overflow: auto;

  width: 50rem;
  height: 30rem;

  max-width: calc(100vw - 10rem);
  max-height: calc(100vh - 2rem);

  border-radius: 1rem;
}
