:root {
  --bg: #08060f;
  --bg-elevated: #120e1c;
  --bg-card: #161022;
  --bg-footer: #05040a;
  --text: #f5f0e8;
  --text-muted: #9d968c;
  --accent-gold: #e8b84a;
  --accent-gold-soft: #fcd34d;
  --accent-violet: #a78bfa;
  --accent-violet-deep: #7c3aed;
  --accent-cta: #f59e0b;
  --accent-mint: #5eead4;
  --accent-rose: #f472b6;
  --border: rgba(245, 240, 232, 0.09);
  --border-strong: rgba(232, 184, 74, 0.35);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --header-h: 70px;
  --glow-gold: 0 0 32px rgba(232, 184, 74, 0.35), 0 4px 24px rgba(0, 0, 0, 0.45);
  --glow-violet: 0 0 28px rgba(167, 139, 250, 0.4);
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  background-image: radial-gradient(ellipse 120% 80% at 50% -30%, rgba(124, 58, 237, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 80% 50% at 100% 40%, rgba(232, 184, 74, 0.06) 0%, transparent 45%);
  overflow-x: hidden;
}

#particle-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.28;
  mix-blend-mode: plus-lighter;
}

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

.blob {
  position: absolute;
  border-radius: 30% 70% 65% 35% / 45% 35% 65% 55%;
  filter: blur(72px);
  opacity: 0.28;
  animation: blob-drift 22s ease-in-out infinite;
}

.blob--1 {
  width: min(48vw, 440px);
  height: min(42vw, 400px);
  background: #4c1d95;
  top: -12%;
  left: -8%;
}

.blob--2 {
  width: min(36vw, 320px);
  height: min(40vw, 360px);
  background: #b45309;
  top: 40%;
  right: -15%;
  animation-delay: -5s;
}

.blob--3 {
  width: min(55vw, 520px);
  height: min(38vw, 380px);
  background: #831843;
  bottom: -18%;
  left: 5%;
  animation-delay: -10s;
}

.blob--4 {
  width: min(32vw, 280px);
  height: min(30vw, 260px);
  background: #0d9488;
  top: 12%;
  left: 55%;
  animation-delay: -3s;
  opacity: 0.2;
}

.blob--5 {
  width: min(28vw, 240px);
  height: min(26vw, 220px);
  background: #e8b84a;
  bottom: 30%;
  right: 8%;
  animation-delay: -7s;
  opacity: 0.15;
}

@keyframes blob-drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  40% {
    transform: translate(3%, -2%) scale(1.06);
  }
  70% {
    transform: translate(-2%, 4%) scale(0.96);
  }
}

.page-wrap {
  position: relative;
  z-index: 1;
}

a {
  color: var(--accent-violet);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: var(--accent-gold-soft);
}

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

.container {
  width: min(900px, 91vw);
  margin-inline: auto;
}

.container--wide {
  width: min(1040px, 91vw);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: linear-gradient(180deg, rgba(8, 6, 15, 0.97) 0%, rgba(8, 6, 15, 0.85) 100%);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text);
  letter-spacing: -0.02em;
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: var(--glow-gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
}

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

.nav-list a {
  position: relative;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  padding: 0.4rem 0;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-violet));
  transition: width 0.25s ease;
}

.nav-list a:hover::after,
.nav-list a:focus-visible::after {
  width: 100%;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--text);
}

@media (max-width: 820px) {
  .nav-toggle {
    display: flex;
  }
  .nav-list {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.1rem 5vw 1.35rem;
    background: rgba(8, 6, 15, 0.98);
    border-bottom: 1px solid var(--border);
    display: none;
  }
  .nav-list.is-open {
    display: flex;
  }
}

/* Hero */
.hero {
  padding: clamp(2rem, 6vw, 3.5rem) 0 clamp(2.5rem, 7vw, 4.5rem);
}

.hero-split {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: center;
}

@media (min-width: 880px) {
  .hero-split {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.42fr);
    gap: 2rem 3rem;
  }
}

.hero-copy {
  text-align: left;
}

@media (max-width: 879px) {
  .hero-copy {
    text-align: center;
  }
}

.hero-badge-row {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.35rem;
  padding: 0.4rem 0.85rem 0.4rem 0.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@media (max-width: 879px) {
  .hero-badge-row {
    margin-inline: auto;
  }
}

.hero-badge-row img {
  width: 26px;
  height: auto;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.08;
  margin: 0 0 1.15rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.hero h1 .hl-gold {
  color: var(--accent-gold-soft);
  font-style: normal;
  text-shadow: 0 0 48px rgba(252, 211, 77, 0.35);
}

.hero-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 1.5rem;
  max-width: 38ch;
}

@media (max-width: 879px) {
  .hero-lead {
    margin-inline: auto;
  }
}

.hero-points {
  margin: 0 0 1.65rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
  max-width: 36ch;
  font-size: 0.88rem;
  color: var(--text-muted);
}

@media (max-width: 879px) {
  .hero-points {
    margin-inline: auto;
    text-align: left;
  }
}

.hero-points li {
  position: relative;
  padding-left: 1.15rem;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-violet));
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
}

@media (max-width: 879px) {
  .hero-actions {
    justify-content: center;
  }
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.85rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  cursor: pointer;
  background: linear-gradient(145deg, var(--accent-cta) 0%, #d97706 100%);
  color: #1c0a00;
  box-shadow: var(--glow-gold);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245, 158, 11, 0.4);
}

.hero-cta:focus-visible {
  outline: 2px solid var(--accent-violet);
  outline-offset: 3px;
}

.hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.hero-scroll svg {
  width: 18px;
  height: 18px;
  animation: chevron-nudge 1.6s ease-in-out infinite;
  color: var(--accent-violet);
}

@keyframes chevron-nudge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}

.hero-aside {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem 1rem;
  border-left: 1px solid var(--border-strong);
  min-height: 200px;
}

@media (min-width: 880px) {
  .hero-aside {
    display: flex;
  }
}

.hero-stat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-stat strong {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: var(--accent-gold-soft);
}

/* Sections */
section {
  padding: clamp(2.5rem, 5.5vw, 4rem) 0;
}

.section-head {
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.section-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-violet);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.8vw, 2.5rem);
  font-weight: 700;
  font-style: italic;
  margin: 0;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.15;
}

.section-title--center {
  text-align: center;
}

.section-head--center {
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.hl-violet {
  color: var(--accent-violet);
  font-style: normal;
}

.hl-mint {
  color: var(--accent-mint);
  font-style: normal;
  text-shadow: 0 0 28px rgba(94, 234, 212, 0.25);
}

/* Offer */
.offer-section {
  padding-top: 0;
}

.offer-layout {
  display: grid;
  gap: 1.75rem;
  align-items: stretch;
}

@media (min-width: 720px) {
  .offer-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 2rem;
  }
}

.offer-panel {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
  text-align: left;
}

.offer-panel-media {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transform: rotate(-1.2deg);
  transition: transform 0.35s ease;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.offer-panel-media:hover {
  transform: rotate(0deg) scale(1.01);
}

.offer-panel-media a {
  display: block;
}

.offer-panel-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.offer-body {
  padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1.25rem, 3vw, 1.85rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06) 0%, rgba(22, 16, 34, 0.92) 100%);
  border: 1px solid var(--border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.offer-stars {
  display: flex;
  gap: 0.15rem;
  margin-bottom: 0.85rem;
  color: #fbbf24;
  filter: drop-shadow(0 0 6px rgba(251, 191, 36, 0.35));
}

.offer-headline {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.2vw, 1.95rem);
  font-weight: 700;
  font-style: italic;
  margin: 0 0 0.65rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.offer-sub {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0 0 1.15rem;
  line-height: 1.55;
}

.offer-sub svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--accent-rose);
}

.offer-facts {
  margin: 0 0 1.35rem;
  padding: 0.85rem 1rem;
  list-style: none;
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.offer-facts li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.4rem;
}

.offer-facts li:last-child {
  margin-bottom: 0;
}

.offer-facts li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: 800;
}

.btn-offer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 300px;
  padding: 0.9rem 1.4rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--accent-violet-deep) 0%, #5b21b6 100%);
  color: #fff;
  box-shadow: var(--glow-violet);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-offer-cta:hover {
  transform: translateY(-2px);
  color: #fff;
}

.offer-terms {
  margin: 1.15rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.65rem;
  line-height: 1.55;
  color: #78716c;
}

/* Principles */
.principles {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
}

.principle {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.15rem 1.5rem;
  padding: 1.5rem 1.35rem;
  border-bottom: 1px solid var(--border);
  align-items: start;
  transition: background 0.25s ease;
}

.principle:last-child {
  border-bottom: none;
}

.principle:hover {
  background: rgba(167, 139, 250, 0.05);
}

.principle-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  color: rgba(167, 139, 250, 0.45);
  min-width: 2.5rem;
}

.principle-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}

.principle-body h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.01em;
  color: var(--text);
}

.principle-body p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.principle-icon {
  width: 40px;
  height: 40px;
  color: var(--accent-mint);
  filter: drop-shadow(0 0 8px rgba(94, 234, 212, 0.25));
}

@media (max-width: 520px) {
  .principle {
    grid-template-columns: 1fr;
  }
  .principle-num {
    font-size: 1.5rem;
  }
}

/* Buttons shared */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.45rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: linear-gradient(145deg, var(--accent-cta) 0%, #d97706 100%);
  color: #1c0a00;
  box-shadow: var(--glow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--accent-violet);
  color: var(--accent-violet);
}

.btn:focus-visible {
  outline: 2px solid var(--accent-mint);
  outline-offset: 3px;
}

/* Footer */
.site-footer {
  padding: 0;
  background: var(--bg-footer);
  border-top: 1px solid var(--border);
}

.footer-responsible {
  padding: 2.75rem 0 2rem;
}

.footer-responsible .section-head {
  margin-bottom: 1rem;
}

.footer-responsible h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  font-style: italic;
  margin: 0 0 0.85rem;
  color: var(--text);
  text-align: center;
}

.footer-columns {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .footer-columns {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
  }
}

.footer-responsible > .footer-columns > p,
.footer-responsible > p {
  margin: 0 auto 1.5rem;
  max-width: none;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.footer-responsible > p {
  text-align: center;
  max-width: 54ch;
}

.footer-note {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.footer-note strong {
  color: var(--accent-gold-soft);
  font-weight: 700;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.15rem 1.5rem;
  margin: 1.75rem 0 1.25rem;
}

.footer-badges a {
  display: block;
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-badges a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.footer-badges img {
  height: 32px;
  width: auto;
  max-width: 128px;
  object-fit: contain;
}

.badge-18-footer img {
  height: 36px;
}

.footer-support-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.1rem;
  margin-bottom: 0.5rem;
}

.footer-support-links a {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.footer-support-links a:hover {
  color: var(--accent-gold-soft);
}

.footer-bar {
  border-top: 1px solid var(--border);
  padding: 1.1rem 4vw;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem 1.25rem;
  background: rgba(0, 0, 0, 0.35);
}

.footer-bar img {
  width: 30px;
  height: auto;
}

.footer-bar p {
  margin: 0;
  font-size: 0.68rem;
  line-height: 1.5;
  color: #78716c;
  text-align: center;
  max-width: 56ch;
}

/* Modals */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(5, 4, 10, 0.92);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  width: min(420px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 1.85rem;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.65), 0 0 50px rgba(232, 184, 74, 0.08);
  transform: scale(0.96) translateY(16px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.is-visible .modal-box {
  transform: scale(1) translateY(0);
}

.modal-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.modal-logo img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: var(--glow-gold);
}

.modal-box h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  margin: 0 0 0.65rem;
  text-align: center;
}

.modal-box p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0 0 1.35rem;
  text-align: center;
  line-height: 1.6;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

.modal-actions .btn {
  min-width: 140px;
}

.modal-overlay--captcha {
  z-index: 210;
}

.modal-box--captcha {
  width: min(400px, 100%);
}

.captcha-stage {
  margin-top: 0.25rem;
}

.captcha-canvas-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  margin-bottom: 1rem;
  background: #0a0612;
}

#captcha-bg {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 320 / 170;
  vertical-align: middle;
}

.captcha-piece-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 15.625%;
  height: 29.4118%;
  pointer-events: none;
  border: 2px solid var(--accent-gold-soft);
  border-radius: 6px;
  box-shadow: 0 0 20px rgba(232, 184, 74, 0.35), 0 4px 16px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

#captcha-piece {
  display: block;
  width: 100%;
  height: 100%;
}

.captcha-slider-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

#captcha-range {
  flex: 1;
  accent-color: var(--accent-cta);
  height: 6px;
}

.captcha-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0.65rem 0 0;
  text-align: center;
  line-height: 1.45;
}

.captcha-error {
  color: #f87171;
  font-size: 0.82rem;
  text-align: center;
  margin: 0.5rem 0 0;
  min-height: 1.25em;
}

/* Cookie bar */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  background: linear-gradient(180deg, rgba(18, 14, 28, 0.98) 0%, rgba(5, 4, 10, 0.99) 100%);
  border-top: 1px solid var(--border-strong);
  padding: 1rem 4vw;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-bar.is-visible {
  transform: translateY(0);
}

.cookie-inner {
  width: min(1040px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
}

@media (max-width: 768px) {
  .cookie-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .cookie-logo {
    justify-self: center;
  }
}

.cookie-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.cookie-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

.cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .cookie-btns {
    justify-content: center;
  }
}

.btn-sm {
  padding: 0.5rem 0.95rem;
  font-size: 0.8rem;
}

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