:root {
  color-scheme: dark;
  --bg: #0d0b0a;
  --fg: #f3ece6;
  --muted: #9a918c;
  --primary: #e11d28;
  --primary-dark: #b0141d;
  --glass: rgba(20, 17, 16, 0.6);
  --glass-strong: rgba(26, 22, 21, 0.55);
  --search-bg: #1a1615;
  --line: rgba(255, 255, 255, 0.1);
  --fill: rgba(255, 255, 255, 0.06);
  --fill-hover: rgba(255, 255, 255, 0.1);
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  --font: "Instrument Sans", ui-sans-serif, system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --radius: 18px;
  --sidebar: 240px;
}

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

html,
body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  height: 100dvh;
  overflow: hidden;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overscroll-behavior: none;
  touch-action: manipulation;
}

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

button,
input {
  font: inherit;
  color: inherit;
}

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

.ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.ambient__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
}

.ambient__orb--coral {
  top: -10%;
  right: -20%;
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgba(225, 29, 40, 0.28), transparent 65%);
  animation: drift 22s ease-in-out infinite;
}

.ambient__orb--gold {
  bottom: -20%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(225, 45, 55, 0.18), transparent 65%);
  animation: drift 28s ease-in-out infinite reverse;
}

.ambient__hatch {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background: repeating-linear-gradient(
    45deg,
    transparent 0,
    transparent 3px,
    rgba(255, 255, 255, 0.012) 3px,
    rgba(255, 255, 255, 0.012) 4px
  );
}

.nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.nav-backdrop {
  display: none;
}

.sidebar {
  display: none;
}

.sidebar__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 1.5rem;
  min-width: 0;
  padding: 1rem;
  overflow-x: hidden;
  overflow-x: clip;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), var(--shadow);
  backdrop-filter: blur(26px) saturate(1.5);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  outline: none;
}

.brand:focus-visible {
  box-shadow: 0 0 0 2px rgba(225, 29, 40, 0.6);
  border-radius: 12px;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 11px;
  overflow: hidden;
  background: transparent;
}

.brand__logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand__name {
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.brand__name b {
  font-weight: 700;
  color: #ff3b3b;
}

.nav-label {
  margin: 0 0 0.25rem;
  padding: 0 0.5rem;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  border-radius: 11px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.1px;
  transition: color 0.18s ease, background 0.18s ease;
}

.nav-link:hover {
  color: var(--fg);
  background: rgba(255, 255, 255, 0.04);
}

.nav-link.is-active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--fg);
  font-weight: 600;
}

.nav-icon {
  flex-shrink: 0;
}

.nav-icon--brand {
  width: 16px;
  height: 16px;
}

.nav-link.is-active::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 10px;
  bottom: 10px;
  width: 2.5px;
  border-radius: 99px;
  background: var(--primary);
  box-shadow: 0 0 8px rgba(225, 29, 40, 0.8);
  animation: pulse-bar 2.8s ease-in-out infinite;
}

.nav-link.is-active .nav-icon {
  stroke-width: 2;
}

.nav-rule {
  height: 1px;
  margin: 0 0.25rem;
  background: rgba(255, 255, 255, 0.08);
}

.sidebar__end {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  overflow: hidden;
  contain: paint;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.25rem;
  padding: 0 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--fg);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.btn .nav-icon {
  width: 15px;
  height: 15px;
}

.btn:active {
  transform: scale(0.98);
}

.btn:hover {
  background: var(--fill-hover);
}

.btn--block {
  width: 100%;
}

.btn--premium {
  isolation: isolate;
  border-color: rgba(225, 29, 40, 0.5);
  background: linear-gradient(135deg, rgba(225, 29, 40, 0.28), rgba(176, 20, 29, 0.14));
  box-shadow:
    0 0 0 1px rgba(225, 29, 40, 0.12),
    0 0 18px rgba(225, 29, 40, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  animation: premium-glow 2.6s ease-in-out infinite;
}

.btn--premium:hover {
  background: linear-gradient(135deg, rgba(225, 29, 40, 0.38), rgba(176, 20, 29, 0.2));
  border-color: rgba(225, 29, 40, 0.7);
}

.btn--contact {
  border-color: rgba(52, 199, 89, 0.55);
  background: rgba(52, 199, 89, 0.08);
  box-shadow: 0 0 0 1px rgba(52, 199, 89, 0.08);
}

.btn--contact:hover {
  border-color: rgba(52, 199, 89, 0.78);
  background: rgba(52, 199, 89, 0.14);
}

.btn--contact .nav-icon {
  color: #5de87a;
}

.btn--sign-in {
  border-color: rgba(96, 165, 250, 0.55);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.24), rgba(37, 99, 235, 0.12));
  box-shadow:
    0 0 0 1px rgba(59, 130, 246, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.btn--sign-in:hover {
  border-color: rgba(147, 197, 253, 0.75);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.34), rgba(37, 99, 235, 0.2));
}

.btn--sign-in .nav-icon {
  color: #93c5fd;
}

.btn-account {
  display: flex;
  align-items: stretch;
  gap: 0.35rem;
}

.btn-account > .btn {
  flex: 1 1 auto;
  min-width: 0;
}

.btn-account__exit {
  margin: 0;
  flex: 0 0 auto;
}

.btn-account__exit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  min-height: 2.25rem;
  padding: 0;
  border: 1px solid rgba(248, 113, 113, 0.4);
  border-radius: 11px;
  background: rgba(239, 68, 68, 0.12);
  color: #fca5a5;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.btn-account__exit-btn:hover {
  border-color: rgba(248, 113, 113, 0.7);
  background: rgba(239, 68, 68, 0.22);
  color: #fecaca;
}

.btn-account__exit-btn .nav-icon {
  width: 15px;
  height: 15px;
}

.btn__icon-wrap {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
}

.btn__online {
  position: absolute;
  right: -2px;
  bottom: -1px;
  width: 7px;
  height: 7px;
  border: 1.5px solid #141110;
  border-radius: 50%;
  background: #34c759;
  box-shadow: 0 0 0 2px rgba(52, 199, 89, 0.22), 0 0 8px rgba(52, 199, 89, 0.55);
}

.btn__spark {
  position: absolute;
  inset: 0;
  overflow: visible;
  pointer-events: none;
}

.btn__spark i {
  position: absolute;
  left: calc(50% + cos(var(--a)) * 50%);
  top: calc(50% + sin(var(--a)) * 50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #ff6b72;
  box-shadow: 0 0 8px rgba(255, 138, 122, 0.85);
  opacity: 0;
  will-change: transform, opacity;
  --a: 0deg;
  --dist: 18px;
  animation: spark-out 1.85s cubic-bezier(0.16, 0.84, 0.36, 1) infinite;
}

.btn__spark i:nth-child(even) {
  width: 4px;
  height: 4px;
  --dist: 22px;
}

.btn__spark i:nth-child(1) { --a: 0deg; animation-delay: 0s; }
.btn__spark i:nth-child(2) { --a: 30deg; animation-delay: -0.15s; }
.btn__spark i:nth-child(3) { --a: 60deg; animation-delay: -0.31s; }
.btn__spark i:nth-child(4) { --a: 90deg; animation-delay: -0.46s; }
.btn__spark i:nth-child(5) { --a: 120deg; animation-delay: -0.62s; }
.btn__spark i:nth-child(6) { --a: 150deg; animation-delay: -0.77s; }
.btn__spark i:nth-child(7) { --a: 180deg; animation-delay: -0.93s; }
.btn__spark i:nth-child(8) { --a: 210deg; animation-delay: -1.08s; }
.btn__spark i:nth-child(9) { --a: 240deg; animation-delay: -1.24s; }
.btn__spark i:nth-child(10) { --a: 270deg; animation-delay: -1.39s; }
.btn__spark i:nth-child(11) { --a: 300deg; animation-delay: -1.54s; }
.btn__spark i:nth-child(12) { --a: 330deg; animation-delay: -1.7s; }

.shell {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  height: 100dvh;
  max-height: 100dvh;
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: manipulation;
}

.masthead {
  z-index: 30;
  flex-shrink: 0;
  padding: 0 0.75rem 0.85rem;
  overflow: visible;
  animation: rise 0.5s ease both;
}

.topbar {
  padding: 0.5rem 0 0.25rem;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.375rem 0.5rem 0.375rem 0.75rem;
  background: var(--glass-strong);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 8px 24px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(22px) saturate(1.4);
}

.topbar .brand__mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
}

.topbar .brand__name {
  font-size: 1.12rem;
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.topbar__logo {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  overflow: hidden;
  background: transparent;
  flex: 0 0 auto;
}

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

.menu-btn {
  appearance: none;
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.menu-btn:hover {
  background: rgba(255, 255, 255, 0.05);
}

.menu-btn:focus-visible {
  outline: 2px solid rgba(225, 29, 40, 0.7);
  outline-offset: 2px;
}

.menu-btn:active {
  background: rgba(255, 255, 255, 0.08);
}

.menu-btn__icon {
  position: relative;
  display: block;
  width: 0.9rem;
  height: 0.62rem;
}

.menu-btn__icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  border-radius: 99px;
  background: var(--muted);
  transition: transform 0.22s ease, opacity 0.18s ease, top 0.22s ease;
}

.menu-btn__icon span:nth-child(1) {
  top: 0;
}

.menu-btn__icon span:nth-child(2) {
  top: calc(50% - 0.75px);
}

.menu-btn__icon span:nth-child(3) {
  top: calc(100% - 1.5px);
}

body:has(#nav-toggle:checked) .menu-btn {
  border-color: rgba(255, 255, 255, 0.1);
  background: transparent;
}

body:has(#nav-toggle:checked) .menu-btn__icon span:nth-child(1) {
  top: calc(50% - 0.75px);
  transform: rotate(45deg);
}

body:has(#nav-toggle:checked) .menu-btn__icon span:nth-child(2) {
  opacity: 0;
}

body:has(#nav-toggle:checked) .menu-btn__icon span:nth-child(3) {
  top: calc(50% - 0.75px);
  transform: rotate(-45deg);
}

.content {
  position: relative;
  z-index: 1;
  flex: 1;
  min-height: 0;
  display: flex;
  padding: 0 0.35rem 6rem;
  overflow: hidden;
  transition: padding-bottom 0.32s ease;
}

.panel {
  flex: 1;
  min-height: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.offer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.85rem 1rem;
  margin: 0.65rem 0 0;
  padding: 0.7rem 0.7rem 0.7rem 0.85rem;
  border: 3px solid transparent;
  border-radius: 18px;
  background:
    radial-gradient(120% 160% at 0% 40%, rgba(255, 48, 55, 0.28), transparent 55%),
    radial-gradient(90% 140% at 100% 0%, rgba(225, 45, 55, 0.12), transparent 52%),
    linear-gradient(135deg, #4a1814 0%, #2a1010 48%, #3a1512 100%),
    repeating-linear-gradient(
      -45deg,
      #ffffff 0 9px,
      #e11d28 9px 18px
    );
  background-origin: padding-box, padding-box, padding-box, border-box;
  background-clip: padding-box, padding-box, padding-box, border-box;
  background-size: auto, auto, auto, 26px 26px;
  background-position: 0 0, 0 0, 0 0, 0 0;
  box-shadow:
    0 6px 18px rgba(225, 29, 40, 0.22),
    0 0 0 1px rgba(255, 140, 145, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  animation:
    offer-cane-scroll 2s linear infinite,
    offer-breathe 3.6s ease-in-out infinite;
}

.offer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 38%,
    rgba(255, 255, 255, 0.12) 50%,
    transparent 62%
  );
  transform: translateX(-130%);
  opacity: 0;
  animation: offer-sheen 5.5s ease-in-out infinite;
  pointer-events: none;
  border-radius: inherit;
  z-index: 0;
}

.offer::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -55px;
  top: -70px;
  background: radial-gradient(circle, rgba(255, 70, 80, 0.22), transparent 70%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
  animation: offer-glow 3.6s ease-in-out infinite;
}

.offer__badge,
.offer__meta,
.offer__cta {
  position: relative;
  z-index: 1;
}

.offer__badge {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3rem;
  margin: 0;
  padding: 0.55rem 0.8rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #f02828, #e11d28 55%, #c41a22);
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  box-shadow:
    0 0 0 1px rgba(225, 29, 40, 0.28),
    0 8px 20px rgba(225, 29, 40, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
  animation: offer-soft-pulse 3.2s ease-in-out infinite;
}

.offer__badge-value {
  font-family: var(--mono);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}

.offer__badge-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.offer__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.95rem;
  min-width: 0;
  padding: 0.4rem 0.8rem;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.offer__block {
  display: grid;
  gap: 0.22rem;
  justify-items: center;
  text-align: center;
}

.offer__divider {
  width: 1px;
  height: 2.2rem;
  background: linear-gradient(180deg, transparent, rgba(255, 160, 165, 0.4), transparent);
  flex-shrink: 0;
}

.offer__kicker {
  margin: 0;
  color: #ffb5ba;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.offer__time {
  margin: 0;
  font-family: var(--mono);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  text-shadow: 0 0 14px rgba(225, 29, 40, 0.45);
  animation: offer-time-glow 1.2s ease-in-out infinite;
}

.offer__prices {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  margin: 0;
  line-height: 1;
  white-space: nowrap;
}

.offer__was {
  color: rgba(243, 236, 230, 0.48);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  text-decoration-color: rgba(255, 140, 145, 0.75);
}

.offer__now {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #ff5a5a;
  text-shadow: 0 0 14px rgba(225, 45, 55, 0.4);
}

.offer__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.7rem;
  padding: 0 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  background: linear-gradient(135deg, #ff3535, #e11d28 45%, #b0141d);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  white-space: nowrap;
  text-decoration: none;
  box-shadow:
    0 0 0 1px rgba(225, 29, 40, 0.28),
    0 8px 20px rgba(225, 29, 40, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
  animation: offer-soft-pulse 3.2s ease-in-out infinite;
  transition: filter 0.18s ease;
}

.offer__cta .nav-icon {
  width: 15px;
  height: 15px;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.35));
  animation: offer-diamond-spin 4s ease-in-out infinite;
}

.offer__cta:hover {
  filter: brightness(1.06);
}

@media (max-width: 767.98px) {
  .offer {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "meta meta"
      "badge cta";
    gap: 0.55rem;
    padding: 0.65rem;
  }

  .offer__meta {
    grid-area: meta;
    justify-content: space-evenly;
    width: 100%;
  }

  .offer__badge {
    grid-area: badge;
    justify-self: stretch;
    justify-content: center;
    min-height: 2.45rem;
    border-radius: 12px;
  }

  .offer__time,
  .offer__now {
    font-size: 1.2rem;
  }

  .offer__cta {
    grid-area: cta;
    justify-self: stretch;
    min-height: 2.45rem;
    padding: 0 0.65rem;
    font-size: 0.8rem;
    border-radius: 12px;
  }

  .offer__cta .nav-icon {
    width: 13px;
    height: 13px;
  }
}

.search {
  position: relative;
  z-index: 40;
  width: 100%;
  max-width: 100%;
  margin: 0.65rem 0 0;
  cursor: text;
}

.search__bar {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 0.75rem;
  background: #1a1615;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 8px 24px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(22px) saturate(1.4);
  transition: border-color 0.36s ease, box-shadow 0.36s ease, background 0.36s ease, border-radius 0.48s cubic-bezier(0.16, 1, 0.3, 1);
}

.search__bar:hover {
  border-color: rgba(255, 255, 255, 0.16);
}

.search.is-open .search__bar {
  position: relative;
  z-index: 42;
  background: var(--search-bg);
  border-color: var(--line);
  border-bottom-color: var(--search-bg);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.search__icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--fill);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.search__input {
  flex: 1;
  min-width: 0;
  width: 100%;
  border: 0;
  background: transparent;
  outline: none;
  color: var(--fg);
  font-size: 16px;
  line-height: 1.4;
  appearance: none;
  -webkit-appearance: none;
}

.search__input::-webkit-search-decoration,
.search__input::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.search__close {
  display: grid;
  place-items: center;
  width: 0;
  height: 2.5rem;
  margin: -0.25rem 0;
  padding: 0;
  flex-shrink: 0;
  overflow: hidden;
  opacity: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  pointer-events: none;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.28s ease, margin 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.search.is-open .search__close {
  width: 2.5rem;
  margin: -0.25rem -0.25rem -0.25rem 0;
  opacity: 1;
  pointer-events: auto;
}

.search__close:hover,
.search__close:focus-visible {
  color: var(--fg);
  background: var(--fill-hover);
}

.search__input::placeholder {
  color: var(--muted);
}

.search__sort {
  position: relative;
  flex-shrink: 0;
  margin-left: 0;
}

.search__sort + .search__sort {
  margin-left: 0.3rem;
}

.search__sort--category .search__sort-toggle {
  max-width: 7.5rem;
}

.search__sort--category .search__sort-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search__sort--category .search__sort-menu {
  min-width: 10.5rem;
  right: auto;
  left: 0;
}

.search__sort-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 2.15rem;
  padding: 0 0.55rem 0 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--fg);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.search__sort-toggle:hover,
.search__sort-toggle:focus-visible {
  background: var(--fill-hover);
  border-color: rgba(255, 255, 255, 0.2);
  outline: none;
}

.search__sort.is-open .search__sort-toggle {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

.search__sort-current-icon,
.search__sort-option-icon {
  display: inline-flex;
  flex-shrink: 0;
}

.search__sort-current-icon .nav-icon,
.search__sort-option-icon .nav-icon {
  width: 14px;
  height: 14px;
}

.search__sort-label {
  line-height: 1;
}

.search__sort-chevron {
  flex-shrink: 0;
  opacity: 0.72;
  transition: transform 0.2s ease;
}

.search__sort.is-open .search__sort-chevron {
  transform: rotate(180deg);
}

.search__sort-menu {
  position: absolute;
  top: calc(100% + 0.35rem);
  right: 0;
  z-index: 50;
  min-width: 9.5rem;
  margin: 0;
  padding: 0.35rem;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(18, 15, 14, 0.98);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(18px);
}

.search__sort-option {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  min-height: 2.15rem;
  padding: 0 0.55rem;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--fg);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: left;
  cursor: pointer;
}

.search__sort-option:hover,
.search__sort-option:focus-visible {
  background: var(--fill-hover);
  outline: none;
}

.search__sort-option.is-selected {
  background: rgba(225, 29, 40, 0.14);
  color: #ffd0d4;
}

@media (max-width: 767.98px) {
  .search__bar {
    gap: 0.35rem;
    padding: 0.45rem 0.5rem;
  }

  .search__icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
  }

  .search__icon svg {
    width: 13px;
    height: 13px;
  }

  .search__input {
    font-size: 16px;
    min-width: 3.5rem;
  }

  .search__sort + .search__sort {
    margin-left: 0.15rem;
  }

  .search__sort-toggle {
    gap: 0.2rem;
    min-height: 1.85rem;
    padding: 0 0.35rem 0 0.3rem;
    border-radius: 8px;
    font-size: 0.58rem;
    letter-spacing: 0.04em;
  }

  .search__sort-current-icon .nav-icon,
  .search__sort-option-icon .nav-icon {
    width: 12px;
    height: 12px;
  }

  .search__sort-chevron {
    width: 10px;
    height: 10px;
  }

  .search__sort--category .search__sort-toggle {
    max-width: 4.6rem;
  }

  .search__sort-menu {
    min-width: 8.5rem;
  }

  .search__sort--category .search__sort-menu {
    min-width: 9.5rem;
  }

  .search__sort-option {
    min-height: 1.9rem;
    gap: 0.4rem;
    padding: 0 0.45rem;
    font-size: 0.58rem;
  }
}

.search-pop {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 41;
  display: grid;
  grid-template-rows: 0fr;
  max-width: 100%;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  background: var(--search-bg);
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 14px 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  transform: translateY(-12px);
  transition:
    grid-template-rows 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s ease,
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.search.is-open .search-pop {
  grid-template-rows: 1fr;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.search-pop__inner {
  min-height: 0;
  overflow: hidden;
}

.search.is-open .search-pop__inner {
  overflow: auto;
  max-height: min(26rem, calc(100dvh - 14rem));
}

.search-pop__head {
  padding: 0.9rem 1rem 0.5rem;
}

.search-pop__kicker {
  margin: 0;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.search-pop__hits {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  padding: 0 1rem 0.95rem;
  list-style: none;
}

.search-pop__hit {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  white-space: nowrap;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--fill);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.search-pop__hit:hover,
.search-pop__hit:focus-visible {
  background: var(--fill-hover);
  border-color: rgba(225, 29, 40, 0.4);
  color: var(--primary);
}

.search-pop__n {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary);
}

.search-pop__block--cats {
  padding: 0.7rem 1rem 0.95rem;
  border-top: 1px solid var(--line);
}

.search-pop__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.55rem 0 0;
  padding: 0;
  list-style: none;
}

.search-pop__chip {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--fill);
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.search-pop__chip:hover,
.search-pop__chip:focus-visible {
  background: var(--fill-hover);
  border-color: rgba(225, 29, 40, 0.4);
  color: var(--primary);
}

.stage {
  width: 100%;
  min-height: 100%;
}

.stage:not(:has(.folders-grid)):not(:has(.folder-detail)) {
  padding: 0.85rem 0.65rem 1.25rem;
}

.stage h1 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.lead {
  margin: 0.75rem 0 0;
  max-width: 40rem;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--muted);
}

.lead a {
  color: var(--fg);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.dock {
  display: none;
}

@media (min-width: 768px) {
  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 40;
  display: flex;
  flex-direction: column;
  width: var(--sidebar);
  height: 100dvh;
  padding: 1rem 0.5rem 1rem 0.75rem;
  gap: 1.25rem;
  overflow: hidden;
  overflow-x: clip;
    animation: rise 0.45s ease both;
  }

  .topbar {
    display: none;
  }

  .shell {
    padding: 0 1rem 1rem calc(var(--sidebar) + 0.5rem);
  }

  .masthead {
    padding: 1rem 0 0.85rem;
  }

  .content {
    padding: 0;
  }

  .dock {
    display: none !important;
  }
}

@media (max-width: 767.98px) {
  .shell {
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  /* Flatten so sticky topbar/search are not trapped in a short header box. */
  .masthead {
    display: contents;
  }

  .topbar {
    position: sticky;
    top: 0;
    z-index: 36;
    flex-shrink: 0;
    margin: 0;
    padding: 0.5rem 0.75rem 0.35rem;
    background: linear-gradient(180deg, var(--bg) 72%, rgba(13, 11, 10, 0.94) 100%);
  }

  .offer {
    flex-shrink: 0;
    margin: 0.45rem 0.75rem 0;
  }

  .search {
    position: sticky;
    top: var(--tv-sticky-search-top, 3.55rem);
    z-index: 35;
    flex-shrink: 0;
    margin: 0.35rem 0 0;
    padding: 0.35rem 0.75rem 0;
    background: transparent;
  }

  .search::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: calc(0.35rem + 3.1rem);
    background: #0d0b0a;
    pointer-events: none;
    z-index: 0;
  }

  .search__bar {
    position: relative;
    z-index: 1;
  }

  .search.is-open .search__bar {
    z-index: 42;
  }

  .search-pop {
    left: 0.75rem;
    right: 0.75rem;
  }

  .content {
    flex: none;
    min-height: auto;
    overflow: visible;
    padding: 0 0.35rem 6.5rem;
  }

  .panel {
    overflow: visible;
    min-height: auto;
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 45;
    display: block;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
  }

  body:has(#nav-toggle:checked) .nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .sidebar {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    width: min(var(--sidebar), calc(100vw - 2rem));
    height: 100dvh;
    padding: 1rem;
    overflow: hidden;
    transform: translateX(-110%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.28s ease, visibility 0.28s ease;
  }

  body:has(#nav-toggle:checked) .sidebar {
    transform: none;
    visibility: visible;
    pointer-events: auto;
  }

  .dock {
    display: grid;
    position: fixed;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.875rem;
    z-index: 40;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    gap: 0;
    padding: 0.45rem 0.25rem;
    background: rgba(20, 17, 16, 0.55);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(26px) saturate(1.6);
    margin-bottom: env(safe-area-inset-bottom, 0px);
    transition: opacity 0.32s ease, transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.32s ease;
  }

  body.keyboard-open .dock {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(calc(100% + 1.25rem));
  }

  body.keyboard-open .content {
    padding-bottom: 0.75rem;
  }

  .dock__list {
    display: contents;
  }

  .dock__list > li {
    display: contents;
  }

  .dock__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    min-width: 0;
    padding: 0.375rem 0.2rem;
    border-radius: 14px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 500;
  }

  .dock__icon {
    display: grid;
    place-items: center;
    width: 2.75rem;
    height: 1.75rem;
    border-radius: 14px;
    transition: background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  }

  .dock__icon .nav-icon {
    width: 18px;
    height: 18px;
  }

  .dock__item span:last-child {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .dock__item.is-active {
    color: var(--fg);
  }

  .dock__item.is-active .dock__icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    box-shadow: 0 4px 14px rgba(225, 29, 40, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-3%, 4%) scale(1.06);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes pulse-bar {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 8px rgba(225, 29, 40, 0.8);
  }
  50% {
    opacity: 0.65;
    box-shadow: 0 0 14px rgba(225, 29, 40, 0.95);
  }
}

@keyframes premium-glow {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(225, 29, 40, 0.12),
      0 0 14px rgba(225, 29, 40, 0.32),
      inset 0 1px 0 rgba(255, 255, 255, 0.16);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(225, 29, 40, 0.28),
      0 0 26px rgba(225, 29, 40, 0.55),
      inset 0 1px 0 rgba(255, 255, 255, 0.22);
  }
}

@keyframes offer-cane-scroll {
  to {
    background-position: 0 0, 0 0, 0 0, 26px 0;
  }
}

@keyframes offer-breathe {
  0%,
  100% {
    box-shadow:
      0 6px 18px rgba(225, 29, 40, 0.2),
      0 0 0 1px rgba(255, 140, 145, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.12);
  }
  50% {
    box-shadow:
      0 8px 22px rgba(225, 29, 40, 0.28),
      0 0 0 1px rgba(255, 140, 145, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.14);
  }
}

@keyframes offer-sheen {
  0%,
  12% {
    opacity: 0;
    transform: translateX(-130%);
  }
  22% {
    opacity: 1;
  }
  38% {
    opacity: 0;
    transform: translateX(130%);
  }
  100% {
    opacity: 0;
    transform: translateX(130%);
  }
}

@keyframes offer-glow {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.65;
    transform: scale(1.04);
  }
}

@keyframes offer-soft-pulse {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(225, 29, 40, 0.28),
      0 8px 20px rgba(225, 29, 40, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.32);
    transform: scale(1);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(255, 150, 155, 0.32),
      0 12px 26px rgba(225, 29, 40, 0.52),
      inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transform: scale(1.02);
  }
}

@keyframes offer-time-glow {
  0%,
  100% {
    text-shadow: 0 0 10px rgba(225, 29, 40, 0.35);
    opacity: 1;
  }
  50% {
    text-shadow: 0 0 22px rgba(255, 90, 100, 0.85);
    opacity: 0.92;
  }
}

@keyframes offer-diamond-spin {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(-6deg) scale(1.04);
  }
}

@keyframes spark-out {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.4);
  }
  14% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%)
      translate3d(
        calc(cos(var(--a)) * var(--dist)),
        calc(sin(var(--a)) * var(--dist)),
        0
      )
      scale(0.15);
  }
}

.folders-meta {
  margin: 0.35rem 0 0.85rem;
}

.folders-meta__count {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.folders-meta__count span {
  color: var(--fg);
  font-family: var(--mono);
  font-weight: 500;
}

.folders-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  width: 100%;
}

.folder-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(18, 15, 14, 0.72);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.folder-card:hover {
  transform: translateY(-2px);
  border-color: rgba(225, 29, 40, 0.28);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.folder-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.folder-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.folder-card:hover .folder-card__media img {
  transform: scale(1.03);
}

.folder-card__placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-size: 2rem;
  opacity: 0.55;
}

.folder-card__report {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 2;
  width: 1.65rem;
  height: 1.65rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  color: #fbbf24;
  font-size: 0.72rem;
  cursor: pointer;
  backdrop-filter: blur(6px);
}

.folder-card__body {
  display: grid;
  gap: 0.85rem;
  padding: 0.95rem 0.95rem 1rem;
}

.folder-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.55rem;
}

.folder-card__title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.folder-card__title a {
  color: inherit;
  text-decoration: none;
}

.folder-card__title a:hover {
  color: #fff;
}

.folder-card__cat {
  flex-shrink: 0;
  padding: 0.18rem 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.66rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.folder-card__actions {
  display: grid;
  gap: 0.45rem;
}

.folder-card__open,
.folder-card__skip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  min-height: 2.4rem;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.folder-card__open {
  border: 0;
  background: linear-gradient(135deg, #e23030 0%, #c41a22 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(225, 29, 40, 0.22);
}

.folder-card__open:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #f03a3a 0%, #c41a22 100%);
}

.folder-card__skip {
  border: 1px solid rgba(225, 29, 40, 0.38);
  background: rgba(225, 29, 40, 0.06);
  color: #ff6b72;
}

.folder-card__skip:hover {
  border-color: rgba(225, 29, 40, 0.55);
  background: rgba(225, 29, 40, 0.12);
  color: #ff8a90;
}

.folder-card__open .nav-icon,
.folder-card__skip .nav-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.folders-empty {
  padding: 2rem 1rem;
  text-align: center;
  color: var(--muted);
}

.folders-empty__icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.folders-empty h2 {
  margin: 0 0 0.35rem;
  color: var(--fg);
}

.folders-pagination {
  margin-top: 1.25rem;
}

.folders-pagination__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
}

.folders-pagination__btn,
.folders-pagination__num {
  min-height: 2rem;
  padding: 0 0.7rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--fg);
  text-decoration: none;
  font-size: 0.88rem;
  line-height: 2rem;
}

.folders-pagination__num.is-active {
  border-color: rgba(225, 29, 40, 0.55);
  background: rgba(225, 29, 40, 0.14);
}

.folder-detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: min(34rem, 100%);
  margin: 0.35rem auto 0.75rem;
  padding: 0.85rem 0.85rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background:
    radial-gradient(90% 70% at 50% 0%, rgba(225, 29, 40, 0.12), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 42%),
    rgba(18, 15, 14, 0.82);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  animation: rise 0.45s ease both;
}

.folder-detail__crumbs {
  width: 100%;
}

.folder-detail__crumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.folder-detail__crumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 0.45rem;
  opacity: 0.55;
}

.folder-detail__crumbs a {
  color: var(--muted);
  text-decoration: none;
}

.folder-detail__crumbs a:hover {
  color: var(--fg);
}

.folder-detail__crumbs [aria-current="page"] {
  color: #fda4af;
}

.folder-detail__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.1rem;
  width: 100%;
  justify-items: center;
  text-align: center;
}

.folder-detail__media {
  position: relative;
  width: min(100%, 280px);
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.folder-detail__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.folder-detail__content {
  display: grid;
  gap: 1rem;
  width: min(100%, 22rem);
  justify-items: center;
}

.folder-detail__intro {
  display: grid;
  gap: 0.45rem;
  justify-items: center;
}

.folder-detail__kicker {
  margin: 0;
}

.folder-detail__kicker a {
  display: inline-flex;
  align-items: center;
  min-height: 1.55rem;
  padding: 0 0.65rem;
  border: 1px solid rgba(225, 29, 40, 0.35);
  border-radius: 999px;
  background: rgba(225, 29, 40, 0.1);
  color: #ff8a90;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.folder-detail__kicker a:hover {
  border-color: rgba(225, 29, 40, 0.55);
  background: rgba(225, 29, 40, 0.16);
  color: #ffb0b5;
}

.folder-detail h1 {
  margin: 0;
  font-size: clamp(1.55rem, 3.4vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.folder-detail__desc {
  margin: 0;
  max-width: 28ch;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.folder-detail__cta {
  width: 100%;
}

.folder-detail__cta .folder-card__actions {
  width: 100%;
  max-width: none;
  margin: 0;
  gap: 0.55rem;
}

.folder-detail__cta .folder-card__open,
.folder-detail__cta .folder-card__skip {
  min-height: 2.75rem;
  font-size: 0.95rem;
  border-radius: 14px;
}

.folder-detail__note {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.folder-detail__back {
  margin: 0;
  text-align: center;
}

.folder-detail__back a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
}

.folder-detail__back a:hover {
  color: var(--fg);
}

.stage:has(.folder-detail) {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 0.65rem 0.5rem 1.1rem;
  min-height: min(70vh, 42rem);
}

.folder-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.65);
}

.folder-modal[hidden] {
  display: none;
}

.folder-modal__panel {
  width: min(420px, 100%);
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #171311;
}

.folder-modal__title {
  margin: 0 0 0.35rem;
}

.folder-modal__name {
  margin: 0 0 0.5rem;
  font-weight: 600;
}

.folder-modal__text {
  margin: 0 0 1rem;
  color: var(--muted);
}

.folder-modal__submit,
.folder-modal__cancel {
  min-height: 2.35rem;
  border-radius: 10px;
  cursor: pointer;
}

.folder-modal__submit {
  width: 100%;
  border: 0;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
}

.folder-modal__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.folder-modal__cancel {
  width: 100%;
  margin-top: 0.5rem;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--fg);
}

.folder-unlock__image {
  display: grid;
  place-items: center;
  margin: 0 0 0.85rem;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  min-height: 8rem;
}

.folder-unlock__image img {
  display: block;
  width: 100%;
  max-height: 220px;
  object-fit: cover;
}

.folder-unlock__placeholder {
  font-size: 2rem;
  line-height: 1;
  padding: 1.5rem 0;
}

.folder-unlock__actions {
  display: grid;
  gap: 0.55rem;
}

.folder-unlock__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.55rem;
  padding: 0.55rem 0.9rem;
  border-radius: 11px;
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
}

.folder-unlock__btn--primary {
  border: 1px solid rgba(225, 29, 40, 0.55);
  background: linear-gradient(135deg, rgba(225, 29, 40, 0.42), rgba(176, 20, 29, 0.22));
  color: #ffe4e6;
}

.folder-unlock__btn--primary:hover {
  border-color: rgba(248, 113, 113, 0.8);
}

.folder-unlock__btn--skip {
  border: 1px solid rgba(251, 191, 36, 0.45);
  background: rgba(251, 191, 36, 0.1);
  color: #fde68a;
}

.folder-unlock__btn--skip:hover {
  border-color: rgba(251, 191, 36, 0.7);
  background: rgba(251, 191, 36, 0.16);
}

.archive-head__lead,
.archive-count {
  color: var(--muted);
}

.archive-filters {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1rem 0;
}

.archive-filters__field {
  display: grid;
  gap: 0.35rem;
}

.archive-filters__field span {
  color: var(--muted);
  font-size: 0.82rem;
}

.archive-filters__field input,
.archive-filters__field select {
  min-height: 2.35rem;
  padding: 0 0.65rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #1a1615;
  color: var(--fg);
}

.archive-table-wrap {
  overflow-x: auto;
}

.archive-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.archive-table th,
.archive-table td {
  padding: 0.6rem 0.45rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.archive-table a {
  color: var(--fg);
}

.archive-table__open {
  min-height: 2rem;
  padding: 0 0.65rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--fill);
  color: var(--fg);
  cursor: pointer;
}

@media (max-width: 767.98px) {
  .archive-filters {
    grid-template-columns: 1fr;
  }

  .folder-detail {
    width: 100%;
    margin-top: 0.15rem;
    padding: 0.75rem 0.7rem 1rem;
    border-radius: 18px;
  }

  .folders-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }
}

@media (min-width: 768px) and (max-width: 1099.98px) {
  .folders-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) and (max-width: 1399.98px) {
  .folders-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* —— Info pages: FAQ / Contact / VIP —— */
.stage:has(.info-page) {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 0.35rem 0.2rem 1rem;
  min-height: 100%;
}

.info-page {
  width: min(52rem, 100%);
  margin: 0 auto;
  padding: 1.15rem 1.2rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background:
    radial-gradient(90% 70% at 0% 0%, rgba(225, 29, 40, 0.1), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 40%),
    rgba(18, 15, 14, 0.78);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  animation: rise 0.45s ease both;
}

.info-page--vip,
.info-page--faq {
  width: 100%;
  max-width: none;
  height: auto;
  align-self: flex-start;
}

.info-page--vip .info-hero,
.info-page--vip .vip-layout {
  width: min(56rem, 100%);
  margin-inline: auto;
}

.info-page--faq .info-hero,
.info-page--faq .faq-list {
  width: min(52rem, 100%);
  margin-inline: auto;
}

.info-page--contact {
  width: min(40rem, 100%);
  align-self: center;
}

.info-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.25rem;
  margin: 0 0 1.15rem;
  padding: 0 0 1.05rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.info-hero__copy {
  flex: 1 1 18rem;
  min-width: 0;
}

.info-page--faq .info-hero {
  justify-content: center;
  text-align: center;
}

.info-page--faq .info-hero__copy {
  flex: 1 1 100%;
}

.info-page--faq .info-lead {
  margin-inline: auto;
}

.info-page--faq .info-kicker,
.info-page--vip .info-kicker,
.info-page--contact .info-kicker {
  margin-inline: auto;
}

.info-page--faq .info-cta {
  margin-top: 0.15rem;
  margin-inline: auto;
}

.info-page--vip .info-hero {
  justify-content: center;
  text-align: center;
}

.info-page--vip .info-hero__copy {
  flex: 1 1 100%;
}

.info-page--vip .info-lead {
  margin-inline: auto;
}

.info-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.45rem;
  color: #ffb0b4;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.info-kicker .nav-icon {
  width: 14px;
  height: 14px;
  color: var(--primary);
}

.info-hero h1 {
  margin: 0;
  font-size: clamp(1.55rem, 2.8vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.15;
  color: var(--fg);
}

.info-lead {
  margin: 0.55rem 0 0;
  max-width: 38rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.info-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.6rem;
  margin-top: 0.9rem;
  padding: 0 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: linear-gradient(135deg, #ff3535, #e11d28 48%, #b0141d);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  box-shadow:
    0 8px 20px rgba(225, 29, 40, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: filter 0.18s ease, transform 0.18s ease, opacity 0.2s ease, border-color 0.18s ease, background 0.18s ease;
}

.info-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 32%, rgba(255, 255, 255, 0.18) 50%, transparent 68%);
  transform: translateX(-120%);
  transition: transform 0.5s ease;
  pointer-events: none;
}

.info-cta:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.info-cta:hover::after {
  transform: translateX(120%);
}

.info-cta .nav-icon,
.info-cta span {
  position: relative;
  z-index: 1;
}

.info-cta--compact {
  min-height: 2.35rem;
  margin-top: 0.85rem;
  font-size: 0.82rem;
}

.info-cta--ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
  color: var(--fg);
}

.info-cta--ghost::after {
  display: none;
}

.info-cta--ghost:hover {
  border-color: rgba(225, 29, 40, 0.4);
  background: rgba(225, 29, 40, 0.12);
  filter: none;
}

.info-cta.is-locked {
  opacity: 0.45;
  pointer-events: none;
  cursor: not-allowed;
  transform: none;
  filter: none;
}

.info-cta.is-locked::after {
  display: none;
}

/* Contact */
.info-page--contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: min(28rem, 70vh);
}

.info-page--contact .info-hero {
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 1.15rem;
}

.info-page--contact .info-lead {
  margin-inline: auto;
}

.contact-panel {
  width: 100%;
  margin: 0 auto;
  padding: 1.35rem 1.35rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background:
    linear-gradient(160deg, rgba(225, 29, 40, 0.12), transparent 45%),
    rgba(12, 10, 9, 0.55);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.contact-panel .info-hero {
  margin-bottom: 1rem;
}

.contact-gate__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.contact-gate__actions .info-cta {
  width: 100%;
  margin-top: 0;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.6rem;
  width: 100%;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(10, 8, 7, 0.45);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.faq-item[open] {
  border-color: rgba(225, 29, 40, 0.38);
  background: rgba(225, 29, 40, 0.06);
  box-shadow:
    0 8px 22px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  padding: 0.9rem 1rem;
  cursor: pointer;
  list-style: none;
  color: var(--fg);
  font-size: 0.97rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

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

.faq-item__q::marker {
  content: "";
}

.faq-item__mark {
  position: relative;
  flex-shrink: 0;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.faq-item__mark::before,
.faq-item__mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #ffb0b4;
  border-radius: 99px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.faq-item__mark::before {
  width: 0.62rem;
  height: 1.5px;
  transform: translate(-50%, -50%);
}

.faq-item__mark::after {
  width: 1.5px;
  height: 0.62rem;
  transform: translate(-50%, -50%);
}

.faq-item[open] .faq-item__mark {
  border-color: rgba(225, 29, 40, 0.35);
  background: rgba(225, 29, 40, 0.16);
}

.faq-item[open] .faq-item__mark::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}

.faq-item__a {
  padding: 0 1rem 1rem;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.faq-item__a p {
  margin: 0;
}

.faq-item__a a {
  color: #ffb5ba;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.faq-item__a a:hover {
  color: #fff;
}

.dmca-cta {
  margin-top: 1rem;
  padding: 1.1rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  display: grid;
  gap: 0.85rem;
  justify-items: start;
}

.dmca-cta__copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.faq-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.faq-compare--vip-only {
  grid-template-columns: 1fr;
}

.faq-compare__col {
  padding: 0.85rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.28);
}

.faq-compare__col--vip {
  border-color: rgba(225, 29, 40, 0.32);
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(225, 29, 40, 0.16), transparent 60%),
    rgba(0, 0, 0, 0.28);
}

.faq-compare__col h2 {
  margin: 0 0 0.5rem;
  color: var(--fg);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.faq-compare__col ul {
  margin: 0;
  padding: 0 0 0 1rem;
  display: grid;
  gap: 0.32rem;
}

.faq-compare__col li {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.faq-vip-perks {
  padding-left: 0 !important;
  list-style: none;
  gap: 0.7rem !important;
}

.faq-vip-perks li {
  display: grid;
  gap: 0.2rem;
}

.faq-vip-perks strong {
  color: var(--fg);
  font-size: 0.92rem;
  font-weight: 650;
}

.faq-vip-perks span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

/* VIP */
.vip-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 19rem);
  gap: 1rem 1.15rem;
  align-items: stretch;
}

.vip-benefits {
  height: 100%;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  background: rgba(10, 8, 7, 0.4);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.vip-benefits__title {
  margin: 0 0 0.85rem;
  font-size: 0.7rem;
  font-family: var(--mono);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.vip-benefits__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.vip-benefit {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  padding: 0.8rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.025);
  transition: border-color 0.18s ease, background 0.18s ease;
}

.vip-benefit:hover {
  border-color: rgba(225, 29, 40, 0.3);
  background: rgba(225, 29, 40, 0.06);
}

.vip-benefit__icon {
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 140, 145, 0.22);
  background: linear-gradient(145deg, rgba(225, 29, 40, 0.24), rgba(225, 29, 40, 0.06));
  color: #ffb5ba;
}

.vip-benefit__icon .nav-icon {
  width: 16px;
  height: 16px;
}

.vip-benefit__body h3 {
  margin: 0.05rem 0 0.25rem;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.vip-benefit__body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.vip-card {
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  height: 100%;
  min-height: 100%;
  padding: 1.25rem 1.1rem 1.15rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 160, 165, 0.28);
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(225, 29, 40, 0.28), transparent 58%),
    linear-gradient(165deg, #3f1915 0%, #1c1010 58%, #261311 100%);
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  text-align: center;
}

.vip-card__badge {
  margin: 0;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #f02828, #e11d28);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  box-shadow: 0 6px 14px rgba(225, 29, 40, 0.35);
}

.vip-card__kicker {
  margin: 0.35rem 0 0;
  color: #ffb5ba;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vip-card__prices {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  margin: 0.15rem 0 0;
  line-height: 1;
}

.vip-card__was {
  color: rgba(243, 236, 230, 0.42);
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}

.vip-card__now {
  color: #ff5a5a;
  font-size: 2.15rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-shadow: 0 0 16px rgba(225, 45, 55, 0.28);
}

.vip-card__note {
  margin: 0.3rem 0 0.45rem;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.vip-card__cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  min-height: 2.85rem;
  margin-top: 0.2rem;
  padding: 0 1rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  background: linear-gradient(135deg, #ff3535, #e11d28 45%, #b0141d);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow:
    0 8px 20px rgba(225, 29, 40, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.vip-card__cta:hover {
  filter: brightness(1.05);
}

.vip-card__trust {
  margin: 0.55rem 0 0;
  color: rgba(243, 236, 230, 0.5);
  font-size: 0.72rem;
}

.vip-card__faq {
  margin-top: 0.2rem;
  color: #ffb5ba;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.vip-card__faq:hover {
  color: #fff;
}

@media (max-width: 767.98px) {
  .info-page {
    padding: 0.9rem 0.8rem 1.1rem;
    border-radius: 16px;
  }

  .vip-layout {
    grid-template-columns: 1fr;
  }

  .vip-card {
    height: auto;
    min-height: 0;
    order: -1;
  }

  .faq-compare {
    grid-template-columns: 1fr;
  }

  .contact-gate__actions {
    grid-template-columns: 1fr;
  }

  .info-page--faq .info-cta {
    width: 100%;
  }

  .info-page--contact {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ambient__orb,
  .masthead,
  .sidebar,
  .panel,
  .nav-link.is-active::before,
  .btn--premium,
  .btn__spark i,
  .offer,
  .offer::before,
  .offer::after,
  .offer__badge,
  .offer__cta,
  .offer__cta .nav-icon,
  .offer__time,
  .info-page {
    animation: none !important;
  }

  .sidebar,
  .nav-backdrop,
  .nav-link,
  .btn,
  .menu-btn,
  .menu-btn__icon span,
  .search__bar,
  .search__icon,
  .search__close,
  .search__sort-toggle,
  .search__sort-chevron,
  .search-pop,
  .dock,
  .dock__icon {
    transition: none;
  }
}

/* Account / sign-in */
.info-page--auth {
  max-width: 28rem;
  margin: 0 auto;
}

.auth-panel {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: 0.25rem 0 1.5rem;
}

.auth-panel .info-hero {
  gap: 0.55rem;
}

.auth-panel .info-lead {
  margin: 0;
}

.auth-alert {
  margin: 0;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(248, 113, 113, 0.45);
  border-radius: 12px;
  background: rgba(239, 68, 68, 0.12);
  color: #fecaca;
  font-size: 0.92rem;
}

.auth-alert--ok {
  border-color: rgba(52, 199, 89, 0.45);
  background: rgba(52, 199, 89, 0.12);
  color: #bbf7d0;
}

.vip-card__cta.is-disabled {
  opacity: 0.55;
  pointer-events: none;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.auth-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
}

.auth-field input {
  width: 100%;
  min-height: 2.6rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--fg);
  font: inherit;
  font-size: 0.95rem;
}

.auth-field input:focus {
  outline: none;
  border-color: rgba(225, 29, 40, 0.65);
  box-shadow: 0 0 0 3px rgba(225, 29, 40, 0.18);
}

.auth-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  min-height: 2.7rem;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(225, 29, 40, 0.65);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(225, 29, 40, 0.42), rgba(176, 20, 29, 0.22));
  color: #ffe4e6;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  box-shadow:
    0 0 0 1px rgba(225, 29, 40, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.auth-submit:hover {
  border-color: rgba(248, 113, 113, 0.85);
  background: linear-gradient(135deg, rgba(225, 29, 40, 0.55), rgba(176, 20, 29, 0.32));
  box-shadow:
    0 0 0 1px rgba(225, 29, 40, 0.18),
    0 0 18px rgba(225, 29, 40, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.auth-submit .nav-icon {
  width: 16px;
  height: 16px;
  color: #fda4af;
}

.auth-submit--secondary {
  border-color: rgba(225, 29, 40, 0.4);
  background: rgba(225, 29, 40, 0.12);
  box-shadow: none;
  font-weight: 550;
}

.auth-submit--secondary:hover {
  border-color: rgba(248, 113, 113, 0.7);
  background: rgba(225, 29, 40, 0.22);
  box-shadow: none;
}

.auth-submit--ghost {
  border-color: rgba(248, 113, 113, 0.45);
  background: rgba(239, 68, 68, 0.1);
  color: #fecaca;
  font-weight: 550;
  box-shadow: none;
}

.auth-submit--ghost:hover {
  border-color: rgba(248, 113, 113, 0.7);
  background: rgba(239, 68, 68, 0.18);
  box-shadow: none;
}

.auth-submit--link {
  width: 100%;
}

.account-card {
  margin: 0;
  padding: 0.35rem 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.account-row {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.account-row:first-child {
  border-top: 0;
}

.account-row dt {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
}

.account-row dd {
  margin: 0;
  font-size: 0.95rem;
  word-break: break-word;
}

.account-badge {
  display: inline-flex;
  align-items: center;
  min-height: 1.55rem;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
}

.account-badge--free {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
}

.account-badge--premium {
  border: 1px solid rgba(225, 29, 40, 0.55);
  background: rgba(225, 29, 40, 0.16);
  color: #fecaca;
}

.account-note {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.45;
}

.account-logout {
  margin: 0.35rem 0 0;
}

.account-cancel,
.account-logout {
  margin: 0.35rem 0 0;
}

.account-cancel .auth-submit,
.account-logout .auth-submit {
  width: 100%;
}

@media (max-width: 520px) {
  .account-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}

/* —— Requests / Request a Folder —— */
.info-page--requests {
  width: min(40rem, 100%);
  align-self: center;
}

.request-panel .info-hero {
  justify-content: center;
  text-align: center;
}

.request-panel .info-hero__copy {
  flex: 1 1 100%;
}

.request-panel .info-kicker {
  margin-inline: auto;
}

.request-panel .info-lead {
  margin-inline: auto;
}

.request-vip-gate {
  display: grid;
  gap: 0.85rem;
  padding: 1.15rem 1.1rem;
  border: 1px solid rgba(225, 29, 40, 0.28);
  border-radius: 16px;
  background:
    radial-gradient(80% 120% at 0% 0%, rgba(225, 29, 40, 0.16), transparent 60%),
    rgba(255, 255, 255, 0.03);
  text-align: center;
}

.request-vip-gate__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 0 auto;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(253, 164, 175, 0.35);
  background: rgba(225, 29, 40, 0.14);
  color: #fda4af;
  font-size: 0.92rem;
  font-weight: 700;
}

.request-vip-gate__badge .nav-icon {
  width: 1rem;
  height: 1rem;
}

.request-vip-gate__copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.5;
}

.request-vip-gate__actions {
  display: grid;
  gap: 0.55rem;
}

.request-form-block {
  display: grid;
  gap: 0.9rem;
}

.request-form-block__title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
}

.request-form {
  display: grid;
  gap: 0.85rem;
}

.request-form .auth-submit {
  width: 100%;
  margin-top: 0.25rem;
}

