@import url("https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;500;600;700&family=Montserrat:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #ffffff;
  --panel: rgba(255, 255, 255, 0.96);
  --panel-strong: rgba(255, 255, 255, 1);
  --panel-soft: rgba(0, 0, 0, 0.03);
  --line: rgba(0, 0, 0, 0.12);
  --text: #111111;
  --muted: #4f4f4f;
  --accent: #111111;
  --accent-strong: #111111;
  --danger: #111111;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Montserrat", "Segoe UI", sans-serif;
  background: var(--bg);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.08), black 26%, black 74%, rgba(0, 0, 0, 0.08));
  opacity: 0.45;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.announcement {
  border-bottom: 0;
  background: #111111;
  color: #ffffff;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.announcement__inner,
.site-header,
.section,
.footer__inner,
.page-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.announcement__inner {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 12px 0;
  min-height: 44px;
}

.announcement__inner > * {
  display: none;
}

.announcement__inner::before {
  content: "Decyzją właściciela sklep spacerange.shop zakończył działalność operacyjną z dniem 31.03.2026. Zwroty i reklamacje pozostają aktywne.";
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  font-weight: 700;
  animation: announcementTicker 24s linear infinite;
}

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

.announcement__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  backdrop-filter: blur(20px);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  z-index: -1;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand__logo {
  display: block;
  width: clamp(168px, 24vw, 260px);
  height: auto;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--text);
  cursor: pointer;
}

.nav-toggle__bars {
  display: inline-grid;
  gap: 4px;
}

.nav-toggle__line {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
}

.nav__link,
.button,
.chip-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  max-width: 100%;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.chip-link[href^="mailto:"] {
  font-size: clamp(0.55rem, 3.4vw, 0.875rem);
  overflow-wrap: anywhere;
}

.site-header .nav__link {
  border-radius: 0;
  font-family: "Montserrat", "Segoe UI", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

@media (min-width: 761px) {
  .site-header .nav {
    gap: 18px;
    align-items: center;
  }

  .site-header .nav__link {
    min-height: auto;
    padding: 0;
    border: 0;
    background: transparent;
    font-weight: 600;
  }

  .site-header .nav__link:hover {
    transform: none;
    border-color: transparent;
    text-decoration: underline;
    text-underline-offset: 6px;
  }

  .site-header .nav__link--muted {
    color: var(--text);
    background: transparent;
  }

  .site-header .nav__link--primary {
    color: #111111;
    background: transparent;
    border: 0;
    font-weight: 800;
  }
}

.nav__link:hover,
.button:hover,
.chip-link:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 0, 0, 0.4);
}

.nav__link--muted {
  color: var(--muted);
  background: rgba(0, 0, 0, 0.02);
}

.nav__link--primary,
.button--primary {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}

.button--ghost {
  background: #ffffff;
}

.button--danger {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.2);
}

.section {
  padding: 40px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 28px;
  align-items: stretch;
  padding-top: 26px;
}

.hero__copy,
.hero__panel,
.content-card,
.status-card,
.catalog-card,
.footer__card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.hero__copy,
.hero__panel {
  padding: clamp(28px, 4vw, 42px);
}

.hero__copy--notice {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.hero__copy--notice .lead {
  margin-left: auto;
  margin-right: auto;
  text-transform: uppercase;
}

.hero__copy--notice .hero__actions {
  justify-content: center;
}

.eyebrow {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.98;
}

h1 {
  margin-top: 18px;
  font-size: clamp(2.2rem, 6.4vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.2rem;
}

.lead {
  margin-top: 20px;
  max-width: 56ch;
  color: #222222;
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero__actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button-stack {
  display: grid;
  gap: 10px;
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.metric {
  padding: 14px 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.02);
}

.metric__label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.metric__value {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.45;
}

.hero__panel::after,
.content-card::after,
.catalog-card::after {
  content: "";
  position: absolute;
  inset: auto -22% -34% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.08), transparent 66%);
}

.status-stack {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.status-card {
  padding: 18px 18px 18px 20px;
  border-radius: var(--radius-md);
}

.status-card__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.status-card__label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(217, 255, 87, 0.8);
}

.status-card--warn .status-card__label::before {
  background: var(--accent-strong);
  box-shadow: 0 0 18px rgba(249, 115, 22, 0.8);
}

.status-card--danger .status-card__label::before {
  background: var(--danger);
  box-shadow: 0 0 18px rgba(255, 107, 107, 0.8);
}

.status-card p,
.content-card p,
.page-copy p,
.page-copy li,
.footer p {
  color: #222222;
  line-height: 1.72;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid--support {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid--catalog {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-card,
.catalog-card {
  padding: 24px;
}

.content-card__tag,
.catalog-card__tag,
.note,
.page-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.05);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.catalog-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.catalog-card__art {
  height: 92px;
  margin-bottom: 18px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.14), transparent),
    linear-gradient(90deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.04));
  filter: blur(0.2px);
}

.catalog-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
}

.catalog-card__meta strong {
  display: block;
  margin-top: 10px;
  font-size: 1.4rem;
}

.catalog-card__meta span {
  color: var(--muted);
  font-size: 0.94rem;
}

.text-block {
  display: grid;
  gap: 18px;
}

.page-shell {
  padding: 38px 0 56px;
}

.page-header {
  margin-bottom: 24px;
}

.page-header .lead {
  margin-top: 14px;
}

.page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 22px;
  min-width: 0;
}

.page-copy,
.page-aside {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow: var(--shadow);
  min-width: 0;
  overflow: hidden;
}

.page-copy h2,
.page-copy h3 {
  margin-top: 22px;
}

.page-copy ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

.page-copy li + li {
  margin-top: 8px;
}

.page-copy .note {
  margin-bottom: 18px;
}

.aside-stack {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.aside-card {
  padding: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.02);
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

.aside-card strong {
  display: block;
  margin-bottom: 10px;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.faq-item {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(0, 0, 0, 0.02);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 18px 20px;
  list-style: none;
  font-weight: 800;
}

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

.faq-item p {
  margin: 0;
  padding: 0 20px 20px;
}

.site-footer {
  background: #0a0a0a;
  color: #ffffff;
  padding: 22px 0 34px;
}

.footer__inner {
  display: grid;
  gap: 18px;
}

.footer__top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.footer__card {
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.footer__card:first-child {
}

.footer__card--social {
  display: grid;
  justify-items: start;
  align-content: start;
}

.footer__card--brand-stack {
  gap: 10px;
}

.footer__brand-full {
  width: min(100%, 210px);
  height: auto;
  object-fit: contain;
}

.footer__social-note {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
}

.footer__brand {
  display: grid;
  gap: 14px;
}

.footer__brand-mark {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.footer__card h3 {
  margin-bottom: 12px;
  font-size: 1.05rem;
  font-style: italic;
}

.footer__links {
  display: grid;
  gap: 8px;
}

.footer__links[aria-label="Social media"] {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
}

.footer__links[aria-label="Social media"] a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  font-size: 0;
  line-height: 0;
  color: transparent;
}

.footer__links[aria-label="Social media"] a::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.footer__links[aria-label="Social media"] a:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.08);
}

.footer__links[aria-label="Social media"] a[href*="instagram.com"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='5' ry='5'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Ccircle cx='17.5' cy='6.5' r='1' fill='%23fff' stroke='none'/%3E%3C/svg%3E");
}

.footer__links[aria-label="Social media"] a[href*="facebook.com"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M14 8h3V4h-3c-3.3 0-6 2.7-6 6v2H5v4h3v4h4v-4h3l1-4h-4v-2c0-1.1.9-2 2-2z'/%3E%3C/svg%3E");
}

.footer__links[aria-label="Social media"] a[href*="pinterest.com"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M12 3a9 9 0 0 0-3.3 17.4l1.1-4.3c-.3-.6-.5-1.4-.5-2.2 0-2.1 1.2-3.7 2.8-3.7 1.3 0 1.9 1 1.9 2.1 0 1.3-.8 3.2-1.2 5-.3 1.5.8 2.7 2.2 2.7 2.7 0 4.5-2.8 4.5-6.2 0-2.6-1.8-4.5-5-4.5-3.6 0-5.8 2.7-5.8 5.6 0 1 .3 1.9.8 2.5.2.2.2.3.1.5l-.3 1.2c-.1.4-.4.5-.7.4-1.9-.8-2.8-2.8-2.8-5.2C4.8 8 8 4 12.5 4c4.7 0 7.7 3.4 7.7 7 0 4.8-2.7 8.4-6.8 8.4-1.4 0-2.7-.8-3.1-1.7l-.9 3.5c-.3 1.1-.9 2.1-1.4 2.8.9.3 1.9.5 2.9.5 5 0 9-4 9-9s-4-9-9-9z'/%3E%3C/svg%3E");
}

.footer__links[aria-label="Social media"] a[href*="youtube.com"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M21.6 7.2a2.8 2.8 0 0 0-2-2C17.9 4.8 12 4.8 12 4.8s-5.9 0-7.6.4a2.8 2.8 0 0 0-2 2C2 8.9 2 12 2 12s0 3.1.4 4.8a2.8 2.8 0 0 0 2 2c1.7.4 7.6.4 7.6.4s5.9 0 7.6-.4a2.8 2.8 0 0 0 2-2c.4-1.7.4-4.8.4-4.8s0-3.1-.4-4.8zM10 15.5v-7l6 3.5-6 3.5z'/%3E%3C/svg%3E");
}

.footer__links a {
  text-decoration: none;
  color: #ffffff;
  font-family: "Fira Code", "Courier New", monospace;
  font-size: 13px;
}

.footer__links a:hover {
  color: #f0f0f0;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  padding: 0 6px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  text-transform: uppercase;
}

.site-footer h3,
.site-footer p,
.site-footer strong,
.site-footer span {
  color: #ffffff;
}

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

.divider {
  height: 1px;
  margin: 2px 0;
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 1120px) {
  .grid--support,
  .footer__top {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .footer__card {
    padding: 24px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.2);
  }

  .grid--catalog,
  .page-layout,
  .hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .footer__legal {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header {
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-toggle__line {
    transition: transform 0.2s ease, opacity 0.2s ease;
    transform-origin: center;
  }

  .nav-toggle.is-active .nav-toggle__line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle.is-active .nav-toggle__line:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-active .nav-toggle__line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-header .nav {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition: max-height 0.28s ease, opacity 0.2s ease, transform 0.2s ease;
  }

  .site-header .nav.is-open {
    max-height: 320px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    padding-top: 8px;
  }

  .site-header .nav__link {
    width: 100%;
  }

  .announcement__inner {
    width: 100%;
  }

  .grid--support,
  .grid--catalog,
  .footer__top,
  .hero__meta {
    grid-template-columns: 1fr;
  }

  .footer__links[aria-label="Social media"] {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 10px;
  }

  .section,
  .page-shell {
    width: min(calc(100% - 22px), var(--max-width));
  }

  .hero__copy,
  .hero__panel,
  .page-copy,
  .page-aside,
  .content-card,
  .catalog-card,
  .footer__card {
    padding: 20px;
  }

  h1 {
    font-size: clamp(1.9rem, 11vw, 3rem);
  }

  .brand__logo {
    width: clamp(144px, 44vw, 220px);
  }

  .footer__card > h3 {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
  }

  .footer__card > h3::after {
    content: "+";
    font-size: 1.2rem;
    line-height: 1;
  }

  .footer__card.is-open > h3::after {
    content: "-";
  }

  .footer__card > nav,
  .footer__card > p {
    display: none;
    margin-top: 10px;
  }

  .footer__card.is-open > nav,
  .footer__card.is-open > p {
    display: grid;
  }

  .footer__card--social > nav {
    justify-content: flex-start;
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    margin-top: 0;
  }

  .footer__card--social > p {
    display: block;
    margin: 0 0 10px;
  }

  .footer__card--social {
    text-align: left;
    justify-items: start;
  }

}

/* ============================================
   RETURN FORM
   ============================================ */

.return-form {
  display: grid;
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 6px;
}

.form-field__label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
}

.form-field__label abbr {
  color: #dc2626;
  text-decoration: none;
}

.form-field__input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-field__input:focus {
  outline: none;
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}

.form-field__input::placeholder {
  color: #aaa;
}

textarea.form-field__input {
  resize: vertical;
  min-height: 80px;
}

select.form-field__input {
  cursor: pointer;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--muted);
  cursor: pointer;
}

.form-check input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  accent-color: #111;
}

.return-form__submit {
  justify-self: start;
  cursor: pointer;
  font-family: inherit;
}

.return-form__submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.return-form__status {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  min-height: 1.4em;
}

.return-form__status--ok {
  color: #16a34a;
}

.return-form__status--err {
  color: #dc2626;
}

.form-captcha {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-captcha__hint {
  font-size: 0.78rem;
  font-weight: 600;
  min-height: 1.2em;
}

/* ============================================
   TEMPLATE SWITCHER
   ============================================ */

.tpl { display: none !important; }
[data-tpl="1"] .tpl--1 { display: block !important; }
[data-tpl="1"] .loading-strip.tpl--1 { display: flex !important; }
[data-tpl="2"] .tpl--2 { display: flex !important; }
[data-tpl="3"] .tpl--3 { display: flex !important; }
[data-tpl="4"] .tpl--4 { display: flex !important; }
[data-tpl="5"] .tpl--5 { display: flex !important; }

/* ---------- Loading Strip ---------- */
.loading-strip {
  width: 100%;
  height: 450px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.loading-strip img {
  width: 600px;
  height: 450px;
  display: block;
}

/* ============================================
   REBOOT HERO — page-home dark theme (tpl 2 only)
   ============================================ */

[data-tpl="2"] .page-home {
  background: #0a0a0a;
  color: #fff;
  animation: rebootFlicker 0.2s ease;
}

@keyframes rebootFlicker {
  0%   { opacity: 0.5; }
  30%  { opacity: 1; }
  55%  { opacity: 0.75; }
  100% { opacity: 1; }
}

[data-tpl="2"] .page-home::before {
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  opacity: 0.35;
}

[data-tpl="2"] .page-home .site-header::before {
  background: rgba(10,10,10,0.85);
  border-bottom-color: rgba(255,255,255,0.06);
}

.brand__logo {
  filter: brightness(0);
}

[data-tpl="2"] .page-home .brand__logo {
  filter: none;
}

[data-tpl="2"] .page-home .site-header .nav__link {
  color: rgba(255,255,255,0.6);
  border-color: rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
}

[data-tpl="2"] .page-home .site-header .nav__link--primary {
  color: #fff;
  border-color: rgba(255,255,255,0.2);
}

[data-tpl="2"] .page-home .nav-toggle {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.15);
  color: #fff;
}

@media (min-width: 761px) {
  [data-tpl="2"] .page-home .site-header .nav__link {
    background: transparent;
    border: 0;
  }
  [data-tpl="2"] .page-home .site-header .nav__link:hover {
    color: #fff;
  }
  [data-tpl="2"] .page-home .site-header .nav__link--primary {
    color: #fff;
    font-weight: 800;
  }
}

  /* ============================================
     SPACERANGE OVERRIDES
     ============================================ */

  @font-face {
    font-family: "PangramLight";
    src: local("Pangram Light"), local("PangramLight"),
         url("/assets/fonts/Pangram_Light.woff2") format("woff2");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: "PangramSans";
    src: local("Pangram Sans"), local("PangramSans"),
         url("/assets/fonts/PangramSans_Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: "MessinaBook";
    src: local("Messina Book"), local("MessinaBook"), local("Messina Sans Book"),
         url("/assets/fonts/MessinaSansMonoWeb_Book.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }

  :root {
    --bg: #040b0e;
    --bg-elevated: #081116;
    --panel: rgba(10, 18, 23, 0.92);
    --panel-strong: rgba(12, 20, 26, 0.98);
    --panel-soft: rgba(228, 166, 71, 0.05);
    --line: rgba(228, 166, 71, 0.24);
    --line-strong: rgba(228, 166, 71, 0.56);
    --text: #FBB03B;
    --text-soft: #ffd08a;
    --muted: rgba(251, 176, 59, 0.72);
    --accent: #FBB03B;
    --accent-strong: #f3c36a;
    --danger: #ff5a46;
    --blue-deep: #091f57;
    --blue: #1d6ae4;
    --cyan: #47c8f7;
    --paper: #f7f1e8;
    --pink: #ff6c78;
    --red: #ff1f0d;
    --red-deep: #be0700;
    --shadow: 0 22px 80px rgba(0, 0, 0, 0.42);
    --font-body: "PangramLight", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
    --font-ui: "MessinaBook", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
    --max-width: 1440px;
  }

  body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    letter-spacing: 0.05em;
  }

  body::before {
    background:
      radial-gradient(circle at top, rgba(71, 200, 247, 0.06), transparent 24%),
      radial-gradient(circle at 85% 0%, rgba(255, 31, 13, 0.08), transparent 22%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.02));
    opacity: 1;
  }

  a {
    text-decoration-color: currentColor;
    text-underline-offset: 0.24em;
  }

  .announcement {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(3, 8, 10, 0.94);
    color: var(--text);
    font-family: var(--font-ui);
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .announcement__inner::before {
    content: "Decyzją właściciela sklep spacerange.shop zakończył działalność operacyjną z dniem 31.03.2026. Zwroty i reklamacje pozostają aktywne.";
    font-weight: 400;
    animation-duration: 28s;
  }

  .site-header {
    padding: 28px 0 20px;
  }

  .site-header::before {
    background: rgba(4, 11, 14, 0.92);
    border-bottom: 1px solid var(--line);
  }

  .brand {
    gap: 10px;
    color: var(--text);
    line-height: 1;
  }

  .brand__logo {
    display: block;
    width: clamp(170px, 24vw, 290px);
    height: auto;
  }

  /* ============================================
     SPACERANGE FINAL FIXES (font + logo visibility)
     ============================================ */

  .brand__logo {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    filter: none !important;
  }

  .announcement,
  .announcement__inner,
  .announcement__inner::before {
    font-family: var(--font-ui) !important;
    font-size: 14px !important;
  }

  .site-header .nav__link {
    font-family: var(--font-body) !important;
    font-size: 20px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.12em !important;
  }

  .footer__card h3 {
    font-family: var(--font-body) !important;
    font-size: 20px !important;
    text-transform: capitalize !important;
  }

  .footer__links a,
  .footer__social-note {
    font-family: var(--font-ui) !important;
    font-size: 14px !important;
  }

  .site-footer .footer__links a:not([href^="mailto:"]),
  .site-footer .footer__social-note {
    text-transform: capitalize !important;
  }

  .site-footer .footer__social-note,
  .site-footer .footer__links[aria-label="Social media"] a {
    color: #FBB03B !important;
  }

  .footer__legal {
    font-family: var(--font-body) !important;
    font-size: 12px !important;
  }

  .footer__brand-full {
    display: block;
    width: min(100%, 220px);
    height: auto;
  }

  .brand__word {
    font-family: var(--font-body);
    font-size: clamp(2.1rem, 3.3vw, 4.2rem);
    letter-spacing: 0.01em;
  }

  .brand__mark {
    position: relative;
    display: inline-block;
    width: clamp(24px, 2vw, 32px);
    height: clamp(36px, 3vw, 48px);
    background: linear-gradient(90deg, var(--blue-deep) 0 14%, var(--blue) 14% 30%, var(--cyan) 30% 46%, var(--paper) 46% 56%, var(--pink) 56% 72%, var(--red) 72% 88%, var(--red-deep) 88% 100%);
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.35));
  }

  .brand__mark::after {
    content: "";
    position: absolute;
    left: -58%;
    right: -58%;
    bottom: -14%;
    height: 28%;
    background: linear-gradient(90deg, var(--blue-deep) 0 14%, var(--blue) 14% 30%, var(--cyan) 30% 46%, var(--paper) 46% 56%, var(--pink) 56% 72%, var(--red) 72% 88%, var(--red-deep) 88% 100%);
    clip-path: polygon(0 100%, 19% 44%, 50% 0, 81% 44%, 100% 100%);
  }

  .brand--footer .brand__word {
    font-size: clamp(1.8rem, 2.4vw, 3rem);
  }

  .brand--footer .brand__mark {
    width: 22px;
    height: 34px;
  }

  .nav {
    gap: 18px;
  }

  .nav-toggle {
    background: var(--bg-elevated);
  }

  .nav__link,
  .button,
  .chip-link,
  .form-field__label {
    font-family: var(--font-ui);
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .nav__link,
  .button,
  .chip-link {
    color: var(--text);
    border-color: var(--line);
    background: transparent;
    font-weight: 400;
  }

  .site-header .nav__link {
    letter-spacing: 0.12em;
    color: var(--text);
  }

  @media (min-width: 761px) {
    .site-header .nav__link {
      font-weight: 400;
    }

    .site-header .nav__link--primary {
      font-weight: 400;
    }
  }

  .nav__link:hover,
  .button:hover,
  .chip-link:hover {
    border-color: var(--line-strong);
  }

  .nav__link--muted {
    color: var(--muted);
    background: rgba(228, 166, 71, 0.03);
  }

  .nav__link--primary,
  .button--primary {
    background: rgba(228, 166, 71, 0.08);
    color: var(--text);
    border-color: var(--line-strong);
  }

  .button--ghost,
  .button--danger {
    background: transparent;
    color: var(--text);
  }

  .hero__copy,
  .hero__panel,
  .content-card,
  .status-card,
  .catalog-card,
  .footer__card,
  .page-copy,
  .page-aside,
  .aside-card,
  .faq-item {
    background: var(--panel);
    border-color: var(--line);
  }

  .aside-card,
  .faq-item,
  .metric,
  .content-card__tag,
  .catalog-card__tag,
  .note,
  .page-tag {
    background: rgba(228, 166, 71, 0.03);
  }

  h1,
  h2,
  h3,
  .mission__title {
    font-weight: 300;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .lead,
  .status-card p,
  .content-card p,
  .page-copy p,
  .page-copy li,
  .footer p,
  .footer__links a,
  .footer__legal,
  .footer__legal span,
  .footer__social-note,
  .form-check,
  .form-field__input,
  .faq-item p,
  .faq-item summary {
    color: var(--text);
  }

  .mission {
    display: grid;
    justify-items: center;
    gap: 38px;
    min-height: calc(100vh - 204px);
    padding: clamp(56px, 9vw, 120px) 0 clamp(72px, 8vw, 110px);
    text-align: center;
  }

  .mission__emblem {
    width: min(100%, 220px);
    margin: 0 auto;
  }

  .mission__emblem img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.32));
  }

  .mission__title {
    margin: 0;
    font-size: clamp(2.6rem, 5.6vw, 5.9rem);
    letter-spacing: 0.18em;
  }

  .mission__lede {
    max-width: 1120px;
    margin: 0 auto;
    color: var(--text);
    font-size: clamp(1.05rem, 1.7vw, 1.7rem);
    line-height: 1.55;
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }

  .mission__status {
    max-width: 760px;
    display: grid;
    gap: 16px;
  }

  .mission__status p,
  .mission__mail {
    margin: 0;
    color: var(--text);
    font-family: var(--font-body);
    font-size: clamp(0.98rem, 1.45vw, 1.35rem);
    letter-spacing: 0.17em;
    text-transform: uppercase;
  }

  .mission__mail {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    text-decoration: none;
    max-width: 100%;
    font-size: clamp(0.72rem, 4vw, 1.35rem);
    overflow-wrap: anywhere;
  }

  .mission__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .mission__actions .button {
    min-width: 210px;
  }

  .site-footer {
    position: relative;
    background: var(--bg);
    color: var(--text);
    padding: 46px 0 24px;
    border-top: 1px solid var(--line);
  }

  .footer__top {
    grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(42px, 0.5fr) minmax(0, 1fr);
    column-gap: clamp(24px, 2.6vw, 44px);
    row-gap: 22px;
    align-items: start;
  }

  .footer__card {
    display: grid;
    align-content: start;
    gap: 12px;
  }

  .footer__card h3 {
    margin: 0;
    font-family: var(--font-body);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: none;
    color: var(--text);
  }

  .footer__links {
    gap: 10px;
  }

  .footer__links a {
    font-family: var(--font-ui);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: none;
    color: var(--text);
  }

  .footer__card--social {
    grid-column: 5;
    justify-items: start;
  }

  .footer__social-note {
    font-family: var(--font-ui);
    font-size: 14px;
    letter-spacing: 0.02em;
    text-transform: none;
    color: var(--text);
  }

  .footer__legal {
    color: var(--text);
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 0.02em;
    text-transform: none;
  }

  .site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, var(--blue-deep) 0 14%, var(--blue) 14% 29%, var(--cyan) 29% 43%, var(--paper) 43% 58%, var(--pink) 58% 72%, var(--red) 72% 87%, var(--red-deep) 87% 100%);
  }

  .footer__links[aria-label="Social media"] a {
    border-color: var(--line);
  }

  .footer__links[aria-label="Social media"] a:hover {
    border-color: var(--line-strong);
    background: rgba(228, 166, 71, 0.08);
  }

  .footer__links[aria-label="Social media"] a[href*="instagram.com"]::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FBB03B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='5' ry='5'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Ccircle cx='17.5' cy='6.5' r='1' fill='%23FBB03B' stroke='none'/%3E%3C/svg%3E");
  }

  .footer__links[aria-label="Social media"] a[href*="facebook.com"]::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FBB03B'%3E%3Cpath d='M14 8h3V4h-3c-3.3 0-6 2.7-6 6v2H5v4h3v4h4v-4h3l1-4h-4v-2c0-1.1.9-2 2-2z'/%3E%3C/svg%3E");
  }

  .footer__links[aria-label="Social media"] a[href*="pinterest.com"]::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FBB03B'%3E%3Cpath d='M12 3a9 9 0 0 0-3.3 17.4l1.1-4.3c-.3-.6-.5-1.4-.5-2.2 0-2.1 1.2-3.7 2.8-3.7 1.3 0 1.9 1 1.9 2.1 0 1.3-.8 3.2-1.2 5-.3 1.5.8 2.7 2.2 2.7 2.7 0 4.5-2.8 4.5-6.2 0-2.6-1.8-4.5-5-4.5-3.6 0-5.8 2.7-5.8 5.6 0 1 .3 1.9.8 2.5.2.2.2.3.1.5l-.3 1.2c-.1.4-.4.5-.7.4-1.9-.8-2.8-2.8-2.8-5.2C4.8 8 8 4 12.5 4c4.7 0 7.7 3.4 7.7 7 0 4.8-2.7 8.4-6.8 8.4-1.4 0-2.7-.8-3.1-1.7l-.9 3.5c-.3 1.1-.9 2.1-1.4 2.8.9.3 1.9.5 2.9.5 5 0 9-4 9-9s-4-9-9-9z'/%3E%3C/svg%3E");
  }

  .footer__links[aria-label="Social media"] a[href*="youtube.com"]::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FBB03B'%3E%3Cpath d='M21.6 7.2a2.8 2.8 0 0 0-2-2C17.9 4.8 12 4.8 12 4.8s-5.9 0-7.6.4a2.8 2.8 0 0 0-2 2C2 8.9 2 12 2 12s0 3.1.4 4.8a2.8 2.8 0 0 0 2 2c1.7.4 7.6.4 7.6.4s5.9 0 7.6-.4a2.8 2.8 0 0 0 2-2c.4-1.7.4-4.8.4-4.8s0-3.1-.4-4.8zM10 15.5v-7l6 3.5-6 3.5z'/%3E%3C/svg%3E");
  }

  .divider {
    background: var(--line);
  }

  .form-field__label {
    font-weight: 400;
  }

  .form-field__input {
    background: rgba(228, 166, 71, 0.03);
    border-color: var(--line);
    color: var(--text);
  }

  .form-field__input:focus {
    border-color: var(--line-strong);
    box-shadow: 0 0 0 3px rgba(228, 166, 71, 0.08);
  }

  .form-field__input::placeholder {
    color: rgba(228, 166, 71, 0.5);
  }

  .form-check input[type="checkbox"] {
    accent-color: var(--accent);
  }

  .return-form__status--ok {
    color: var(--text-soft);
  }

  .return-form__status--err {
    color: #ff8d7d;
  }

  @media (max-width: 760px) {
    .brand__word {
      font-size: clamp(1.55rem, 8vw, 2.5rem);
    }

    .brand__mark {
      width: 20px;
      height: 30px;
    }

    .mission {
      gap: 28px;
      min-height: auto;
      padding-top: 36px;
    }

    .mission__title,
    .mission__lede,
    .mission__status p,
    .mission__mail,
    .footer__links a,
    .footer__legal {
      letter-spacing: 0.08em;
    }

    .site-header .nav__link {
      font-size: 20px;
    }

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

    .footer__card--social {
      grid-column: auto;
    }
  }

/* --- reboot section — streetwear / hiphop aesthetic --- */

.reboot {
  position: relative;
  min-height: calc(100vh - 140px);
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 60px 20px;
  background: #0a0a0a;
}

/* film grain noise */
.reboot__grain {
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
  animation: rebootGrain 0.5s steps(4) infinite;
}

@keyframes rebootGrain {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-5%, -5%); }
  50%  { transform: translate(3%, -3%); }
  75%  { transform: translate(-3%, 5%); }
  100% { transform: translate(5%, 0); }
}

/* diagonal accent stripes */
.reboot__stripe {
  position: absolute;
  width: 120%;
  height: 6px;
  background: #fff;
  opacity: 0.04;
  transform: rotate(-4deg);
  pointer-events: none;
  z-index: 0;
}

.reboot__stripe--1 { top: 30%; left: -10%; }
.reboot__stripe--2 { bottom: 25%; left: -10%; height: 3px; opacity: 0.03; }

.reboot__vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.65));
  z-index: 1;
}

.reboot__content {
  position: relative;
  z-index: 2;
  width: min(100%, 620px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

/* --- logo --- */

.reboot__logo-wrap {
  position: relative;
  width: min(100%, 280px);
  opacity: 0;
  animation: rebootLogoIn 0.6s cubic-bezier(0.16,1,0.3,1) 0.2s forwards;
}

.reboot__logo-wrap--mark {
  width: min(100%, 100px);
}

@keyframes rebootLogoIn {
  0%   { opacity: 0; transform: scale(1.3) rotate(-2deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}

.reboot__logo-wrap::after {
  content: "";
  position: absolute;
  inset: -80%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.04), transparent 55%);
  pointer-events: none;
  z-index: -1;
}

.reboot__logo {
  display: block;
  width: 100%;
  height: auto;
  animation: rebootGlitch 8s ease-in-out 3s infinite;
}

@keyframes rebootGlitch {
  0%, 88%, 100% {
    filter: none;
    transform: none;
  }
  89% {
    filter: drop-shadow(-4px 0 rgba(255,255,255,0.6));
    transform: skewX(-3deg) translateX(-4px);
  }
  90% {
    filter: drop-shadow(5px 0 rgba(255,255,255,0.4));
    transform: skewX(2deg) translateX(3px);
  }
  91% {
    filter: none;
    transform: none;
  }
}

/* --- headline --- */

.reboot__headline {
  position: relative;
  text-align: center;
  opacity: 0;
  animation: rebootSlam 0.5s cubic-bezier(0.16,1,0.3,1) 0.5s forwards;
}

@keyframes rebootSlam {
  0%   { opacity: 0; transform: scale(1.4) translateY(-20px); }
  60%  { opacity: 1; transform: scale(0.97); }
  100% { opacity: 1; transform: scale(1); }
}

.reboot__title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(3.5rem, 14vw, 7rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #fff;
}

.reboot__outline {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(5rem, 22vw, 12rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.06);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

/* --- info block --- */

.reboot__info {
  width: 100%;
  padding: 20px 24px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(8px);
  opacity: 0;
  animation: rebootIn 0.5s ease 1.2s forwards;
}

.reboot__line {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  text-align: center;
}

.reboot__line strong {
  color: #fff;
  font-weight: 800;
}

.reboot__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.reboot__tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reboot__tag--ok {
  background: rgba(34,197,94,0.1);
  color: #4ade80;
  border: 1px solid rgba(34,197,94,0.2);
}

.reboot__tag--warn {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.12);
}

/* --- loading bar --- */

.reboot__bar-wrap {
  height: 3px;
  margin: 16px 0;
  border-radius: 2px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
}

.reboot__bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.3), #fff);
  border-radius: 2px;
  animation: rebootBar 3s cubic-bezier(0.4,0,0.2,1) 1.6s forwards;
}

@keyframes rebootBar {
  0%   { width: 0; }
  25%  { width: 38%; }
  55%  { width: 68%; }
  80%  { width: 82%; }
  100% { width: 84%; }
}

@keyframes rebootIn {
  to { opacity: 1; transform: translateY(0); }
}

/* --- bottom message --- */

.reboot__msg {
  margin: 0;
  text-align: center;
  color: rgba(255,255,255,0.35);
  font-size: 0.92rem;
  line-height: 1.8;
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(8px);
  animation: rebootIn 0.6s ease 2.4s forwards;
}

/* --- CTA buttons --- */

.reboot__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(8px);
  animation: rebootIn 0.5s ease 2.8s forwards;
}

.reboot__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  background: #fff;
  color: #0a0a0a;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.reboot__btn:hover {
  transform: translateY(-2px) scale(1.02);
  background: #e8e8e8;
}

.reboot__btn--ghost {
  background: transparent;
  color: #fff;
}

.reboot__btn--ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.4);
}

/* --- socials --- */

.reboot__socials {
  display: flex;
  gap: 18px;
  opacity: 0;
  animation: rebootIn 0.4s ease 3.2s forwards;
}

.reboot__socials a {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,0.25);
  transition: color 0.15s ease;
}

.reboot__socials a:hover {
  color: #fff;
}

/* --- reboot responsive --- */

@media (max-width: 760px) {
  .reboot {
    min-height: calc(100vh - 120px);
    padding: 40px 16px;
  }
  .reboot__content { gap: 28px; }
  .reboot__logo-wrap--mark { width: min(100%, 72px); }
  .reboot__title { font-size: clamp(2.8rem, 16vw, 4.5rem); }
  .reboot__outline { font-size: clamp(4rem, 28vw, 8rem); }
  .reboot__info {
    padding: 16px 18px;
  }
}

/* ============================================
   TEMPLATE 3 + 4 + 5 — dark theme overrides
   ============================================ */

[data-tpl="3"] .page-home,
[data-tpl="4"] .page-home,
[data-tpl="5"] .page-home {
  background: #0a0a0a;
  color: #fff;
}

[data-tpl="3"] .page-home .site-header::before,
[data-tpl="4"] .page-home .site-header::before,
[data-tpl="5"] .page-home .site-header::before {
  background: rgba(10,10,10,0.85);
  border-bottom-color: rgba(255,255,255,0.06);
}

[data-tpl="3"] .page-home .brand__logo,
[data-tpl="4"] .page-home .brand__logo,
[data-tpl="5"] .page-home .brand__logo {
  filter: none;
}

[data-tpl="3"] .page-home .site-header .nav__link,
[data-tpl="4"] .page-home .site-header .nav__link,
[data-tpl="5"] .page-home .site-header .nav__link {
  color: rgba(255,255,255,0.6);
  border-color: rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
}

[data-tpl="3"] .page-home .site-header .nav__link--primary,
[data-tpl="4"] .page-home .site-header .nav__link--primary,
[data-tpl="5"] .page-home .site-header .nav__link--primary {
  color: #fff;
  border-color: rgba(255,255,255,0.2);
}

[data-tpl="3"] .page-home .nav-toggle,
[data-tpl="4"] .page-home .nav-toggle,
[data-tpl="5"] .page-home .nav-toggle {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.15);
  color: #fff;
}

@media (min-width: 761px) {
  [data-tpl="3"] .page-home .site-header .nav__link,
  [data-tpl="4"] .page-home .site-header .nav__link,
  [data-tpl="5"] .page-home .site-header .nav__link {
    background: transparent;
    border: 0;
  }
  [data-tpl="3"] .page-home .site-header .nav__link:hover,
  [data-tpl="4"] .page-home .site-header .nav__link:hover,
  [data-tpl="5"] .page-home .site-header .nav__link:hover {
    color: #fff;
  }
  [data-tpl="3"] .page-home .site-header .nav__link--primary,
  [data-tpl="4"] .page-home .site-header .nav__link--primary,
  [data-tpl="5"] .page-home .site-header .nav__link--primary {
    color: #fff;
    font-weight: 800;
  }
}

/* ============================================
   TEMPLATE 3 — NOCTURN / STREET NIGHT
   ============================================ */

.noct {
  position: relative;
  min-height: calc(100vh - 140px);
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 20px 60px;
  background: #050508;
  font-family: "Montserrat", sans-serif;
}

/* ---- STROBE FLASH ---- */
.noct__strobe {
  position: absolute;
  inset: 0;
  z-index: 30;
  background: #fff;
  pointer-events: none;
  animation: noctStrobe 1.6s steps(1) forwards;
}

@keyframes noctStrobe {
  0%   { opacity: 0; }
  2%   { opacity: 1; }
  6%   { opacity: 0; }
  10%  { opacity: 1; }
  14%  { opacity: 0; }
  20%  { opacity: 0.9; }
  23%  { opacity: 0; }
  30%  { opacity: 0.7; }
  33%  { opacity: 0; }
  42%  { opacity: 0.5; }
  44%  { opacity: 0; }
  55%  { opacity: 0.25; }
  57%  { opacity: 0; }
  70%  { opacity: 0.1; }
  72%  { opacity: 0; }
  100% { opacity: 0; }
}

/* ---- GRAIN NOISE ---- */
.noct__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* ---- NEON GLOWS (ambient blurs) ---- */
.noct__glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  animation: noctGlowIn 1.5s ease 1.6s forwards;
}

.noct__glow--1 {
  top: 10%;
  left: -5%;
  background: #ff2d55;
  opacity: 0;
}

.noct__glow--2 {
  bottom: 15%;
  right: -8%;
  background: #6e00ff;
  opacity: 0;
  animation-delay: 2s;
}

@keyframes noctGlowIn {
  to { opacity: 0.12; }
}

/* ---- LASER SCAN LINE ---- */
.noct__laser {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ff2d55;
  box-shadow: 0 0 8px #ff2d55, 0 0 30px rgba(255,45,85,0.4), 0 0 60px rgba(255,45,85,0.1);
  z-index: 4;
  pointer-events: none;
  opacity: 0;
  animation: noctLaserScan 6s ease-in-out 2.5s infinite;
}

@keyframes noctLaserScan {
  0%   { top: -2%; opacity: 0; }
  5%   { opacity: 0.7; }
  50%  { top: 102%; opacity: 0.5; }
  51%  { opacity: 0; }
  100% { opacity: 0; top: 102%; }
}

/* ---- SMOKE / HAZE ---- */
.noct__smoke {
  position: absolute;
  width: 100%;
  height: 40%;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  animation: noctSmokeIn 2s ease 1.8s forwards;
}

.noct__smoke--1 {
  bottom: 0;
  left: 0;
  background: radial-gradient(ellipse at 30% 100%, rgba(255,45,85,0.06) 0%, transparent 70%);
  animation: noctSmokeIn 2s ease 1.8s forwards, noctSmokeDrift 12s ease-in-out 1.8s infinite;
}

.noct__smoke--2 {
  bottom: 0;
  right: 0;
  background: radial-gradient(ellipse at 70% 100%, rgba(110,0,255,0.05) 0%, transparent 70%);
  animation: noctSmokeIn 2s ease 2.2s forwards, noctSmokeDrift 15s ease-in-out 2.2s infinite reverse;
}

@keyframes noctSmokeIn {
  to { opacity: 1; }
}

@keyframes noctSmokeDrift {
  0%, 100% { transform: translateX(0) scaleX(1); }
  50% { transform: translateX(5%) scaleX(1.1); }
}

/* ---- SCROLLING TICKER TAPE ---- */
.noct__ticker {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  animation: noctFadeUp 0.5s ease 1.6s forwards;
}

.noct__ticker--top {
  top: 0;
  border-bottom: 1px solid rgba(255,45,85,0.08);
  background: rgba(255,45,85,0.02);
}

.noct__ticker--bottom {
  bottom: 0;
  border-top: 1px solid rgba(110,0,255,0.08);
  background: rgba(110,0,255,0.02);
}

.noct__ticker-track {
  display: inline-block;
  white-space: nowrap;
  font-family: "Fira Code", monospace;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.08);
  text-transform: uppercase;
  padding: 6px 0;
  animation: noctTickerScroll 25s linear infinite;
}

.noct__ticker-track--rev {
  animation: noctTickerScrollRev 30s linear infinite;
}

@keyframes noctTickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes noctTickerScrollRev {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* ---- TITLE GLITCH EFFECT ---- */
@keyframes noctTitleGlitch {
  0%, 88%, 100% { transform: none; text-shadow: inherit; }
  89% { transform: translateX(-4px) skewX(-1deg); text-shadow: -3px 0 #ff2d55, 3px 0 #6e00ff; }
  90% { transform: translateX(3px) skewX(1deg); text-shadow: 2px 0 #ff2d55, -2px 0 #6e00ff; }
  91% { transform: translateX(-2px); text-shadow: -1px 0 #00ccff, 1px 0 #ff2d55; }
  92% { transform: none; text-shadow: inherit; }
}

/* ---- CONTENT ---- */
.noct__content {
  position: relative;
  z-index: 2;
  width: min(100%, 700px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

/* ---- EQUALIZER BARS ---- */
.noct__eq {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
  height: 44px;
  opacity: 0;
  animation: noctFadeUp 0.5s ease 1.6s forwards;
}

.noct__eq--sm {
  height: 28px;
  gap: 4px;
  animation-delay: 4.2s;
}

.noct__eq-bar {
  width: 3px;
  background: #ff2d55;
  border-radius: 1px;
  transform-origin: bottom;
  animation: noctEqPulse 0.6s ease-in-out infinite alternate;
}

.noct__eq-bar:nth-child(1) { height: 35%; animation-delay: 0s; animation-duration: 0.5s; }
.noct__eq-bar:nth-child(2) { height: 65%; animation-delay: 0.08s; animation-duration: 0.7s; }
.noct__eq-bar:nth-child(3) { height: 90%; animation-delay: 0.15s; animation-duration: 0.45s; }
.noct__eq-bar:nth-child(4) { height: 50%; animation-delay: 0.05s; animation-duration: 0.65s; }
.noct__eq-bar:nth-child(5) { height: 100%; animation-delay: 0.2s; animation-duration: 0.55s; }
.noct__eq-bar:nth-child(6) { height: 55%; animation-delay: 0.12s; animation-duration: 0.48s; }
.noct__eq-bar:nth-child(7) { height: 80%; animation-delay: 0.03s; animation-duration: 0.72s; }
.noct__eq-bar:nth-child(8) { height: 40%; animation-delay: 0.18s; animation-duration: 0.58s; }
.noct__eq-bar:nth-child(9) { height: 70%; animation-delay: 0.1s; animation-duration: 0.42s; }

.noct__eq--sm .noct__eq-bar {
  width: 2px;
  background: rgba(255,45,85,0.4);
}

@keyframes noctEqPulse {
  0% { transform: scaleY(0.2); }
  100% { transform: scaleY(1); }
}

/* ---- LOGO ---- */
.noct__logo-wrap {
  width: 72px;
  opacity: 0;
  animation: noctFadeUp 0.5s ease 1.8s forwards;
}

.noct__logo {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 12px rgba(255,45,85,0.3));
  animation: noctLogoPulse 3s ease-in-out 2s infinite;
}

@keyframes noctLogoPulse {
  0%, 100% { filter: drop-shadow(0 0 12px rgba(255,45,85,0.3)); }
  50% { filter: drop-shadow(0 0 24px rgba(255,45,85,0.6)) drop-shadow(0 0 40px rgba(110,0,255,0.2)); }
}

/* ---- TITLE ---- */
.noct__title {
  margin: 0;
  text-align: center;
  overflow: hidden;
}

.noct__title-line {
  display: block;
  font-size: clamp(4.5rem, 20vw, 11rem);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
}

.noct__title-line--1 {
  animation: noctTitleSlam 0.5s cubic-bezier(0.16, 1, 0.3, 1) 2.0s forwards, noctTitleGlitch 8s ease-in-out 4s infinite;
  text-shadow: 0 0 30px rgba(255,45,85,0.4), 0 0 80px rgba(255,45,85,0.15);
}

.noct__title-line--2 {
  animation: noctTitleSlam 0.5s cubic-bezier(0.16, 1, 0.3, 1) 2.3s forwards, noctTitleGlitch 8s ease-in-out 4.3s infinite;
  text-shadow: 0 0 30px rgba(110,0,255,0.4), 0 0 80px rgba(110,0,255,0.15);
}

@keyframes noctTitleSlam {
  0% { opacity: 0; transform: translateY(100%) scaleY(1.4); }
  60% { opacity: 1; transform: translateY(-4%) scaleY(0.95); }
  100% { opacity: 1; transform: translateY(0) scaleY(1); }
}

/* ---- TAGLINE ---- */
.noct__tagline {
  margin: 0;
  font-family: "Fira Code", monospace;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #ff2d55;
  text-align: center;
  opacity: 0;
  animation: noctFadeUp 0.5s ease 2.7s forwards;
  text-shadow: 0 0 20px rgba(255,45,85,0.5);
}

/* ---- PULSE DIVIDER ---- */
.noct__pulse {
  width: 100%;
  max-width: 320px;
  height: 2px;
  background: #ff2d55;
  border-radius: 1px;
  opacity: 0;
  animation: noctPulseIn 0.4s ease 3.0s forwards, noctPulseBeat 1.2s ease-in-out 3.4s infinite;
  box-shadow: 0 0 8px #ff2d55, 0 0 24px rgba(255,45,85,0.3);
}

@keyframes noctPulseIn {
  from { opacity: 0; transform: scaleX(0); }
  to { opacity: 1; transform: scaleX(1); }
}

@keyframes noctPulseBeat {
  0%, 100% { transform: scaleX(0.4); opacity: 0.4; box-shadow: 0 0 4px #ff2d55; }
  50% { transform: scaleX(1); opacity: 1; box-shadow: 0 0 12px #ff2d55, 0 0 30px rgba(255,45,85,0.4); }
}

/* ---- OVERLINE ---- */
.noct__overline {
  font-family: "Fira Code", monospace;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.2);
  text-transform: uppercase;
  opacity: 0;
  animation: noctFadeUp 0.4s ease 3.3s forwards;
}

/* ---- INFO BLOCK ---- */
.noct__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 24px;
  border: 1px solid rgba(255,45,85,0.1);
  background: rgba(255,45,85,0.02);
  width: 100%;
}

.noct__text {
  margin: 0;
  font-family: "Fira Code", monospace;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  text-align: center;
  opacity: 0;
  animation: noctFadeUp 0.4s ease forwards;
}

.noct__text:nth-child(1) { animation-delay: 3.5s; }
.noct__text:nth-child(2) { animation-delay: 3.7s; }
.noct__text:nth-child(3) { animation-delay: 3.9s; }

.noct__text--active {
  color: #4ade80;
  text-shadow: 0 0 10px rgba(74,222,128,0.3);
}

/* ---- BASS DROP DIVIDER ---- */
.noct__bass {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 280px;
  opacity: 0;
  animation: noctFadeUp 0.4s ease 4.2s forwards;
}

.noct__bass-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(110,0,255,0.3), transparent);
  animation: noctBassLine 2s ease-in-out infinite;
}

.noct__bass-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6e00ff;
  box-shadow: 0 0 8px #6e00ff, 0 0 20px rgba(110,0,255,0.4);
  animation: noctBassDot 1.2s ease-in-out infinite;
}

@keyframes noctBassLine {
  0%, 100% { opacity: 0.3; transform: scaleX(0.6); }
  50% { opacity: 1; transform: scaleX(1); }
}

@keyframes noctBassDot {
  0%, 100% { transform: scale(1); box-shadow: 0 0 8px #6e00ff; }
  50% { transform: scale(1.5); box-shadow: 0 0 16px #6e00ff, 0 0 32px rgba(110,0,255,0.5); }
}

/* ---- MOTTO ---- */
.noct__motto {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.12);
  text-transform: uppercase;
  text-align: center;
  opacity: 0;
  animation: noctFadeUp 0.5s ease 4.5s forwards;
}

/* ---- CTA ---- */
.noct__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  animation: noctFadeUp 0.5s ease 4.8s forwards;
}

.noct__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 30px;
  border: 2px solid #ff2d55;
  background: #ff2d55;
  color: #fff;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.2s ease;
  box-shadow: 0 0 20px rgba(255,45,85,0.2);
}

.noct__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255,45,85,0.4), 0 4px 20px rgba(0,0,0,0.3);
  background: #e6264c;
}

.noct__btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.15);
  box-shadow: none;
}

.noct__btn--outline:hover {
  border-color: #ff2d55;
  box-shadow: 0 0 20px rgba(255,45,85,0.15);
}

/* ---- SOCIALS ---- */
.noct__socials {
  display: flex;
  gap: 24px;
  opacity: 0;
  animation: noctFadeUp 0.4s ease 5.1s forwards;
}

.noct__socials a {
  font-family: "Fira Code", monospace;
  font-weight: 600;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,0.12);
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.noct__socials a:hover {
  color: #ff2d55;
  text-shadow: 0 0 10px rgba(255,45,85,0.4);
}

/* ---- FOOTNOTE ---- */
.noct__footnote {
  font-family: "Fira Code", monospace;
  font-size: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.06);
  text-transform: uppercase;
  opacity: 0;
  animation: noctFadeUp 0.4s ease 5.4s forwards;
}

/* ---- SHARED KEYFRAME ---- */
@keyframes noctFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 760px) {
  .noct {
    min-height: calc(100vh - 120px);
    padding: 50px 16px 40px;
  }
  .noct__content { gap: 26px; }
  .noct__title-line { font-size: clamp(3rem, 22vw, 6rem); }
  .noct__tagline { font-size: 0.72rem; letter-spacing: 0.25em; }
  .noct__eq { height: 32px; gap: 4px; }
  .noct__eq-bar { width: 2px; }
  .noct__info { padding: 16px; }
  .noct__text { font-size: 0.62rem; }
  .noct__socials { gap: 16px; }
  .noct__glow { width: 200px; height: 200px; filter: blur(80px); }
}

/* ============================================
   TEMPLATE 4 — MANIFEST
   ============================================ */

.manifest {
  position: relative;
  min-height: calc(100vh - 140px);
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 20px;
  background: #000;
}

/* full-screen flash between lines */
.manifest__flash {
  position: absolute;
  inset: 0;
  z-index: 10;
  background: #fff;
  pointer-events: none;
  opacity: 0;
  animation:
    manifestFlash1 0.12s ease 0.35s both,
    manifestFlash2 0.12s ease 1.15s both,
    manifestFlash3 0.12s ease 1.95s both,
    manifestFlash4 0.12s ease 2.75s both,
    manifestFlash5 0.12s ease 3.55s both,
    manifestInvert 0.2s ease 4.4s both;
}

@keyframes manifestFlash1 { 0% { opacity: 0; } 50% { opacity: 0.7; } 100% { opacity: 0; } }
@keyframes manifestFlash2 { 0% { opacity: 0; } 50% { opacity: 0.5; } 100% { opacity: 0; } }
@keyframes manifestFlash3 { 0% { opacity: 0; } 50% { opacity: 0.6; } 100% { opacity: 0; } }
@keyframes manifestFlash4 { 0% { opacity: 0; } 50% { opacity: 0.4; } 100% { opacity: 0; } }
@keyframes manifestFlash5 { 0% { opacity: 0; } 50% { opacity: 0.8; } 100% { opacity: 0; } }

/* brief full inversion after all lines */
@keyframes manifestInvert {
  0%   { opacity: 0; }
  30%  { opacity: 1; }
  60%  { opacity: 1; }
  100% { opacity: 0; }
}

.manifest__content {
  position: relative;
  z-index: 1;
  width: min(100%, 800px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

/* manifest lines */
.manifest__lines {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.manifest__line {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.2rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
}

/* each line slams in with screen shake */
.manifest__line--1 { animation: manifestSlam 0.5s cubic-bezier(0.16,1,0.3,1) 0.4s forwards; }
.manifest__line--2 { animation: manifestSlam 0.5s cubic-bezier(0.16,1,0.3,1) 1.2s forwards; }
.manifest__line--3 { animation: manifestSlam 0.5s cubic-bezier(0.16,1,0.3,1) 2.0s forwards; }
.manifest__line--4 { animation: manifestSlam 0.5s cubic-bezier(0.16,1,0.3,1) 2.8s forwards; }
.manifest__line--5 { animation: manifestSlam 0.5s cubic-bezier(0.16,1,0.3,1) 3.6s forwards; }

@keyframes manifestSlam {
  0%   { opacity: 0; transform: translateY(40px) scale(1.15); }
  50%  { opacity: 1; transform: translateY(-4px) scale(0.98); }
  70%  { transform: translateY(2px) scale(1.01); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* blinking cursor on last line */
.manifest__cursor {
  display: inline-block;
  animation: manifestCursorBlink 0.6s steps(1) infinite;
  color: #fff;
  margin-left: 2px;
}

@keyframes manifestCursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* screen shake on the whole section — triggers with each line */
.manifest__lines {
  position: relative;
  animation:
    manifestShake1 0.15s ease 0.4s both,
    manifestShake2 0.15s ease 1.2s both,
    manifestShake3 0.15s ease 2.0s both,
    manifestShake4 0.15s ease 2.8s both,
    manifestShake5 0.15s ease 3.6s both;
}

@keyframes manifestShake1 {
  0%, 100% { transform: translate(0); }
  25% { transform: translate(-3px, 2px); }
  75% { transform: translate(3px, -1px); }
}
@keyframes manifestShake2 {
  0%, 100% { transform: translate(0); }
  25% { transform: translate(2px, -3px); }
  75% { transform: translate(-2px, 2px); }
}
@keyframes manifestShake3 {
  0%, 100% { transform: translate(0); }
  25% { transform: translate(-4px, 1px); }
  75% { transform: translate(3px, -2px); }
}
@keyframes manifestShake4 {
  0%, 100% { transform: translate(0); }
  25% { transform: translate(3px, 3px); }
  75% { transform: translate(-3px, -1px); }
}
@keyframes manifestShake5 {
  0%, 100% { transform: translate(0); }
  25% { transform: translate(-2px, -3px); }
  75% { transform: translate(4px, 2px); }
}

@keyframes manifestIn {
  0%   { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* after all lines appear, subtle pulse on the whole block */
.manifest__lines::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.02), transparent 60%);
  pointer-events: none;
  opacity: 0;
  animation: manifestGlow 2s ease 4.5s forwards;
}

@keyframes manifestGlow {
  0%   { opacity: 0; }
  50%  { opacity: 1; }
  100% { opacity: 0.5; }
}

/* logo */
.manifest__logo-wrap {
  width: 70px;
  opacity: 0;
  animation: manifestLogoIn 0.6s cubic-bezier(0.16,1,0.3,1) 4.8s forwards;
}

@keyframes manifestLogoIn {
  0%   { opacity: 0; transform: scale(2) rotate(-5deg); filter: blur(8px); }
  60%  { opacity: 1; transform: scale(0.95) rotate(1deg); filter: blur(0); }
  100% { opacity: 1; transform: scale(1) rotate(0); filter: blur(0); }
}

.manifest__logo {
  display: block;
  width: 100%;
  height: auto;
  animation: manifestLogoGlitch 6s ease-in-out 6s infinite;
}

@keyframes manifestLogoGlitch {
  0%, 93%, 100% { filter: none; transform: none; }
  94% { filter: drop-shadow(-3px 0 rgba(255,255,255,0.5)); transform: skewX(-4deg) translateX(-3px); }
  95% { filter: drop-shadow(4px 0 rgba(255,255,255,0.4)); transform: skewX(2deg) translateX(2px); }
  96% { filter: none; transform: none; }
}

/* CTA area */
.manifest__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  opacity: 0;
  animation: manifestIn 0.8s ease 5.4s forwards;
}

.manifest__sub {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.manifest__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.manifest__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 32px;
  border: 2px solid #fff;
  background: #fff;
  color: #000;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.manifest__btn:hover {
  transform: translateY(-2px) scale(1.02);
  background: #e8e8e8;
}

.manifest__btn--ghost {
  background: transparent;
  color: #fff;
}

.manifest__btn--ghost:hover {
  background: rgba(255,255,255,0.08);
}

/* socials */
.manifest__socials {
  display: flex;
  gap: 20px;
}

.manifest__socials a {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,0.15);
  transition: color 0.15s ease;
}

.manifest__socials a:hover { color: #fff; }

/* manifest responsive */
@media (max-width: 760px) {
  .manifest {
    min-height: calc(100vh - 120px);
    padding: 50px 16px;
  }
  .manifest__line {
    font-size: clamp(1.8rem, 10vw, 3.5rem);
  }
  .manifest__content { gap: 36px; }
}

/* ============================================
   TEMPLATE 5 — KINETIC / MOTION POSTER
   ============================================ */

.kinet {
  position: relative;
  min-height: calc(100vh - 140px);
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 20px 60px;
  background: #060608;
  font-family: "Montserrat", sans-serif;
}

/* ---- ORBITING WORDS RING ---- */
.kinet__orbit {
  position: absolute;
  width: 520px;
  height: 520px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  animation: kinetOrbitSpin 30s linear infinite;
}

.kinet__orbit-word {
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: "Montserrat", sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.04);
  white-space: nowrap;
  transform-origin: 0 0;
  transform: rotate(calc(var(--i) * 45deg)) translateX(260px) rotate(calc(var(--i) * -45deg));
  opacity: 0;
  animation: kinetWordFade 0.5s ease calc(1.5s + var(--i) * 0.1s) forwards;
}

@keyframes kinetOrbitSpin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes kinetWordFade {
  to { opacity: 1; }
}

/* ---- FLOATING AMBIENT KEYWORDS ---- */
.kinet__float {
  position: absolute;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(255,255,255,0.02);
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
}

.kinet__float--1 {
  font-size: 5rem;
  top: 8%;
  left: 5%;
  animation: kinetDrift1 18s ease-in-out infinite;
}

.kinet__float--2 {
  font-size: 3.5rem;
  top: 20%;
  right: 3%;
  animation: kinetDrift2 22s ease-in-out infinite reverse;
}

.kinet__float--3 {
  font-size: 7rem;
  bottom: 15%;
  left: -2%;
  animation: kinetDrift1 25s ease-in-out infinite;
  animation-delay: -5s;
}

.kinet__float--4 {
  font-size: 4rem;
  bottom: 30%;
  right: 5%;
  animation: kinetDrift2 20s ease-in-out infinite;
  animation-delay: -8s;
}

.kinet__float--5 {
  font-size: 6rem;
  top: 55%;
  left: 8%;
  animation: kinetDrift1 16s ease-in-out infinite reverse;
  animation-delay: -3s;
}

.kinet__float--6 {
  font-size: 3rem;
  top: 5%;
  right: 15%;
  animation: kinetDrift2 24s ease-in-out infinite;
  animation-delay: -12s;
}

@keyframes kinetDrift1 {
  0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); }
  25% { transform: translateY(-15px) translateX(10px) rotate(1deg); }
  50% { transform: translateY(5px) translateX(-8px) rotate(-0.5deg); }
  75% { transform: translateY(-8px) translateX(15px) rotate(0.8deg); }
}

@keyframes kinetDrift2 {
  0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); }
  33% { transform: translateY(12px) translateX(-12px) rotate(-1deg); }
  66% { transform: translateY(-10px) translateX(8px) rotate(0.5deg); }
}

/* ---- CONTENT ---- */
.kinet__content {
  position: relative;
  z-index: 2;
  width: min(100%, 700px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

/* ---- LOGO WITH PULSE RINGS ---- */
.kinet__logo-wrap {
  position: relative;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: kinetFadeUp 0.5s ease 0.5s forwards;
}

.kinet__ring {
  position: absolute;
  inset: -15px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 50%;
  animation: kinetRingPulse 3s ease-in-out infinite;
}

.kinet__ring--2 {
  inset: -30px;
  border-color: rgba(255,255,255,0.03);
  animation-delay: 1.5s;
}

@keyframes kinetRingPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.3; }
}

.kinet__logo {
  display: block;
  width: 100%;
  height: auto;
  animation: kinetLogoFloat 4s ease-in-out infinite;
}

@keyframes kinetLogoFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-6px) scale(1.03); }
}

/* ---- TITLE WITH PER-LETTER ANIMATION ---- */
.kinet__title {
  margin: 0;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 20px;
  line-height: 0.85;
}

.kinet__word {
  display: inline-flex;
}

.kinet__char {
  display: inline-block;
  font-size: clamp(4rem, 18vw, 10rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  animation:
    kinetCharIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) calc(0.8s + var(--d) * 0.07s) forwards,
    kinetCharBreathe 4s ease-in-out calc(2.5s + var(--d) * 0.2s) infinite;
}

@keyframes kinetCharIn {
  0% { opacity: 0; transform: translateY(60px) rotateX(40deg) scale(0.8); }
  100% { opacity: 1; transform: translateY(0) rotateX(0) scale(1); }
}

@keyframes kinetCharBreathe {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(calc(-3px - var(--d) * 0.5px)); }
}

/* ---- SPINNING CIRCULAR TAGLINE ---- */
.kinet__spin {
  width: 200px;
  height: 200px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  animation: kinetFadeUp 0.6s ease 2s forwards, kinetSpinRotate 20s linear 2s infinite;
}

.kinet__spin-svg {
  width: 100%;
  height: 100%;
}

.kinet__spin-svg text {
  font-family: "Fira Code", monospace;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 2px;
  fill: rgba(255,255,255,0.08);
  text-transform: uppercase;
}

@keyframes kinetSpinRotate {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ---- INFO BLOCK ---- */
.kinet__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.kinet__text {
  margin: 0;
  font-family: "Fira Code", monospace;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  text-align: center;
  opacity: 0;
  animation: kinetFadeUp 0.4s ease forwards;
}

.kinet__text:nth-child(1) { animation-delay: 2.2s; }
.kinet__text:nth-child(2) { animation-delay: 2.4s; }
.kinet__text:nth-child(3) { animation-delay: 2.6s; }

.kinet__text--active {
  color: #4ade80;
  text-shadow: 0 0 10px rgba(74,222,128,0.3);
}

/* ---- MARQUEE DIVIDER ---- */
.kinet__marquee {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  opacity: 0;
  animation: kinetFadeUp 0.4s ease 2.8s forwards;
}

.kinet__marquee-track {
  display: inline-block;
  white-space: nowrap;
  font-family: "Montserrat", sans-serif;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.06);
  text-transform: uppercase;
  padding: 10px 0;
  animation: kinetMarquee 20s linear infinite;
}

@keyframes kinetMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---- CTA ---- */
.kinet__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  animation: kinetFadeUp 0.5s ease 3.1s forwards;
}

.kinet__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 30px;
  border: 2px solid #fff;
  background: #fff;
  color: #060608;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.kinet__btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #fff;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.kinet__btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(255,255,255,0.1);
}

.kinet__btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.15);
}

.kinet__btn--outline:hover {
  border-color: #fff;
}

/* ---- SOCIALS ---- */
.kinet__socials {
  display: flex;
  gap: 24px;
  opacity: 0;
  animation: kinetFadeUp 0.4s ease 3.4s forwards;
}

.kinet__socials a {
  font-family: "Fira Code", monospace;
  font-weight: 600;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,0.1);
  transition: color 0.2s ease, transform 0.2s ease;
}

.kinet__socials a:hover {
  color: #fff;
  transform: translateY(-2px);
}

/* ---- SHARED KEYFRAME ---- */
@keyframes kinetFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 760px) {
  .kinet {
    min-height: calc(100vh - 120px);
    padding: 50px 16px 40px;
  }
  .kinet__content { gap: 28px; }
  .kinet__char { font-size: clamp(2.8rem, 20vw, 5rem); }
  .kinet__orbit { width: 320px; height: 320px; }
  .kinet__orbit-word { transform: rotate(calc(var(--i) * 45deg)) translateX(160px) rotate(calc(var(--i) * -45deg)); font-size: 0.5rem; }
  .kinet__spin { width: 150px; height: 150px; }
  .kinet__spin-svg text { font-size: 9px; }
  .kinet__float { display: none; }
  .kinet__info { gap: 6px; }
  .kinet__text { font-size: 0.62rem; }
  .kinet__title { gap: 0 12px; }
  .kinet__socials { gap: 16px; }
}
  .kinet__socials { gap: 16px; }
}

/* =====================================================
   COOKIE CONSENT BANNER & MODAL
   ===================================================== */

/* ---- Banner (fixed top bar) ---- */
.cmb {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 9990;
  padding: 14px 20px;
  background: rgba(4, 11, 14, 0.97);
  border-bottom: 1px solid rgba(228, 166, 71, 0.28);
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.5);
  font-family: var(--font-body, "Montserrat", sans-serif);
}

.cmb.is-hidden {
  display: none;
}

.cmb__inner {
  width: min(calc(100% - 24px), var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px 28px;
}

.cmb__text {
  margin: 0;
  font-size: 0.74rem;
  line-height: 1.65;
  color: rgba(251, 176, 59, 0.72);
  font-family: var(--font-body, "Montserrat", sans-serif);
  letter-spacing: 0.04em;
}

.cmb__text a {
  color: #FBB03B;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cmb__text a:hover {
  color: #ffd08a;
}

.cmb__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  align-items: center;
}

.cmb__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(228, 166, 71, 0.3);
  font-family: var(--font-ui, "Montserrat", sans-serif);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
  white-space: nowrap;
  background: none;
  color: #FBB03B;
}

.cmb__btn:hover {
  transform: translateY(-1px);
  border-color: rgba(228, 166, 71, 0.7);
}

.cmb__btn--primary {
  background: rgba(228, 166, 71, 0.1);
  color: #FBB03B;
  border-color: rgba(228, 166, 71, 0.56);
}

.cmb__btn--primary:hover {
  background: rgba(228, 166, 71, 0.18);
  border-color: #FBB03B;
}

.cmb__btn--ghost {
  background: transparent;
  color: rgba(251, 176, 59, 0.6);
  border-color: rgba(228, 166, 71, 0.2);
}

.cmb__btn--link {
  background: transparent;
  color: rgba(251, 176, 59, 0.38);
  border-color: transparent;
  font-size: 0.63rem;
  padding: 0 4px;
  min-height: 32px;
}

.cmb__btn--link:hover {
  border-color: transparent;
  color: rgba(251, 176, 59, 0.65);
  transform: none;
}

/* ---- Manage-consent button in footer ---- */
.cmb-manage-link {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-ui, "Montserrat", sans-serif);
  font-size: 0.75rem;
  color: rgba(251, 176, 59, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.15s;
}

.cmb-manage-link:hover {
  color: rgba(251, 176, 59, 0.7);
}

/* ---- Modal overlay ---- */
.cmb-modal {
  position: fixed;
  inset: 0;
  z-index: 9995;
  background: rgba(0, 0, 0, 0.72);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.cmb-modal.is-hidden {
  display: none;
}

.cmb-modal__box {
  background: #081116;
  color: #FBB03B;
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 24px 24px 0 0;
  padding: 32px 24px 28px;
  outline: none;
  border: 1px solid rgba(228, 166, 71, 0.2);
  box-shadow: 0 -8px 48px rgba(0, 0, 0, 0.6);
  font-family: var(--font-body, "Montserrat", sans-serif);
}

@media (min-width: 660px) {
  .cmb-modal {
    align-items: center;
  }
  .cmb-modal__box {
    border-radius: 24px;
    margin: 24px;
  }
}

.cmb-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.cmb-modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: none;
  border: 1px solid rgba(228, 166, 71, 0.22);
  border-radius: 50%;
  color: rgba(251, 176, 59, 0.55);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
  padding: 0;
}

.cmb-modal__close:hover {
  border-color: #FBB03B;
  color: #FBB03B;
}

.cmb-modal__title {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FBB03B;
  font-family: var(--font-ui, "Montserrat", sans-serif);
}

.cmb-modal__desc {
  margin: 0 0 20px;
  font-size: 0.74rem;
  color: rgba(251, 176, 59, 0.6);
  line-height: 1.65;
  letter-spacing: 0.04em;
}

.cmb-modal__desc a {
  color: #FBB03B;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---- Cookie category accordion ---- */
.cmb-cat {
  border: 1px solid rgba(228, 166, 71, 0.18);
  border-radius: 14px;
  margin-bottom: 10px;
  background: rgba(228, 166, 71, 0.03);
}

.cmb-cat__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  cursor: pointer;
  user-select: none;
}

.cmb-cat__head:focus-visible {
  outline: 2px solid rgba(228, 166, 71, 0.5);
  outline-offset: 2px;
  border-radius: 14px;
}

.cmb-cat__info {
  flex: 1;
}

.cmb-cat__name {
  margin: 0 0 2px;
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FBB03B;
  font-family: var(--font-ui, "Montserrat", sans-serif);
}

.cmb-cat__summary {
  margin: 0;
  font-size: 0.68rem;
  color: rgba(251, 176, 59, 0.52);
  letter-spacing: 0.03em;
}

/* chevron */
.cmb-cat__chevron {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: rgba(228, 166, 71, 0.4);
  transition: transform 0.2s ease;
}

.cmb-cat.is-open .cmb-cat__chevron {
  transform: rotate(180deg);
}

/* category detail table */
.cmb-cat__body {
  padding: 0 16px 16px;
}

/* ---- Toggle switch ---- */
.cmb-toggle {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.cmb-toggle__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.cmb-toggle__track {
  display: inline-block;
  width: 40px;
  height: 22px;
  border-radius: 999px;
  background: rgba(228, 166, 71, 0.1);
  border: 1px solid rgba(228, 166, 71, 0.28);
  position: relative;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.cmb-toggle__track::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(228, 166, 71, 0.45);
  transition: transform 0.2s, background 0.2s;
}

.cmb-toggle__input:checked + .cmb-toggle__track {
  background: rgba(228, 166, 71, 0.22);
  border-color: #FBB03B;
}

.cmb-toggle__input:checked + .cmb-toggle__track::after {
  transform: translateX(18px);
  background: #FBB03B;
}

.cmb-toggle--locked {
  opacity: 0.35;
  pointer-events: none;
}

/* ---- Cookie table ---- */
.cmb-cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.67rem;
  color: rgba(251, 176, 59, 0.52);
  letter-spacing: 0.03em;
}

.cmb-cookie-table th {
  text-align: left;
  padding: 5px 8px 5px 0;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(228, 166, 71, 0.15);
  color: rgba(251, 176, 59, 0.7);
  font-family: var(--font-ui, "Montserrat", sans-serif);
}

.cmb-cookie-table td {
  padding: 6px 8px 6px 0;
  border-bottom: 1px solid rgba(228, 166, 71, 0.08);
  vertical-align: top;
}

.cmb-cookie-table tbody tr:last-child td {
  border-bottom: none;
}

/* ---- Modal footer buttons ---- */
.cmb-modal__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.cmb-modal__footer .cmb__btn {
  flex: 1;
  min-width: 120px;
}

/* ---- Responsive ---- */
@media (max-width: 600px) {
  .cmb__inner {
    grid-template-columns: 1fr;
  }

  .cmb__actions {
    flex-wrap: wrap;
  }

  .cmb__btn--link {
    order: 3;
    width: 100%;
    justify-content: center;
  }
}
