@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/PlusJakartaSans/PlusJakartaSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/PlusJakartaSans/PlusJakartaSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/PlusJakartaSans/PlusJakartaSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/PlusJakartaSans/PlusJakartaSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/PlusJakartaSans/PlusJakartaSans-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --vs-accent: #d3003d;
  --vs-accent-deep: #9e002e;
  --vs-accent-bright: #e41852;
  --vs-ink: #1a1a1a;
  --vs-muted: #9a9a9a;
  --vs-placeholder: #b0b0b0;
  --vs-white: #ffffff;
  --vs-font: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --bs-font-sans-serif: var(--vs-font);
  --bs-body-font-family: var(--vs-font);
}

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

html,
body,
button,
input,
select,
textarea {
  font-family: var(--vs-font);
}

html {
  height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--vs-white);
  line-height: 1.5;
  background-color: var(--vs-accent);
}

body.page-home {
  background-color: var(--vs-accent);
  background-image: url("../img/bg-hero_img.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
}

/* Header */
.site-header-inner {
  padding: 1.15rem 0 0.85rem;
}

.site-logo {
  color: var(--vs-white);
}

.site-logo:hover {
  color: var(--vs-white);
}

.site-logo-icon,
.content-logo-icon {
  display: block;
  width: auto;
  height: 1.7rem;
  flex-shrink: 0;
}

.site-logo-text {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

.site-menu-btn {
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--vs-white);
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 0.42rem;
  cursor: pointer;
}

.site-menu-line {
  display: block;
  width: 1.35rem;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.site-menu-line-top {
  width: 1.05rem;
}

/* Home layout */
.home-container {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding-top: 1.25rem;
  padding-bottom: 1rem;
}

.page-home .site-main {
  min-height: 0;
}

.page-home .home,
.page-coming-soon .coming-soon {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.page-home .home-stage,
.page-coming-soon .coming-soon-stage {
  margin-top: auto;
  margin-bottom: auto;
}

.page-home .home-quick {
  margin-top: 0;
  margin-bottom: 0;
  flex-shrink: 0;
}

.home-stage {
  width: 100%;
  max-width: 100%;
  text-align: center;
}

.home-headline {
  margin: 0 0 3rem;
  font-size: clamp(1.85rem, 7.2vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--vs-white);
}

.home-sub {
  margin: 0 0 1.35rem;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--vs-white);
}

/* Speech bubble form */
.bubble-form {
  margin: 0;
  width: 100%;
}

.bubble {
  position: relative;
  width: 100%;
  background: var(--vs-white);
  border-radius: 1.35rem;
  padding: 1.15rem 1.15rem 1rem;
  margin-bottom: 1.35rem;
  box-shadow: 0 18px 40px rgba(90, 0, 28, 0.18);
  text-align: left;
}

.bubble-input {
  display: block;
  width: 100%;
  min-height: 5.25rem;
  border: 0;
  outline: none;
  resize: none;
  padding: 0;
  margin: 0 0 1rem;
  background: transparent;
  color: var(--vs-ink);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.45;
  caret-color: var(--vs-accent);
}

.bubble-input::placeholder {
  color: var(--vs-placeholder);
  font-weight: 500;
  opacity: 1;
  transition: opacity 0.18s ease;
}

.bubble-input.is-placeholder-fading::placeholder {
  opacity: 0;
}

.bubble-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.bubble-counter {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--vs-muted);
}

.bubble-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 0;
  border-radius: 0.7rem;
  padding: 0.65rem 0.95rem;
  background: #2c2c2c;
  color: var(--vs-white);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.15s ease, transform 0.15s ease;
}

.bubble-submit:hover {
  background: #1a1a1a;
}

.bubble-submit:active {
  transform: scale(0.98);
}

.home-note {
  margin: 0 0 0.55rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

.home-think {
  display: inline-block;
  color: var(--vs-white);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.home-think:hover {
  color: var(--vs-white);
}

/* Quick links */
.home-quick {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  width: 100%;
  max-width: 22rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 0.5rem;
}

.home-quick-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  color: var(--vs-white);
  text-decoration: none;
  text-align: center;
}

.home-quick-item:hover {
  color: var(--vs-white);
  opacity: 0.88;
}

.home-quick-icon {
  display: inline-flex;
  color: var(--vs-white);
}

.home-quick-label {
  font-size: 0.75rem;
  font-weight: 600;
}

/* Coming soon */
.page-coming-soon .coming-soon-stage {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.coming-soon-kicker {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.coming-soon-headline {
  margin-bottom: 1.25rem;
}

.coming-soon-lead {
  margin: 0 auto 1.15rem;
  max-width: 36rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

.coming-soon-rule {
  width: 5.5rem;
  height: 0;
  margin: 0 auto 1.5rem;
  opacity: 1;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.62);
  background: none;
}

.coming-soon-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.55rem 1.15rem;
  margin-top: 2.6rem;
}

.coming-soon-text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.12rem 0.05rem;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  transition: color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.coming-soon-text-link:hover {
  color: #fff;
  border-bottom-color: #fff;
  transform: translateY(-1px);
}

.waitlist {
  position: relative;
  width: 100%;
  max-width: 26rem;
  margin: 0 auto;
  text-align: center;
}

.waitlist-intro {
  margin: 0 0 0.9rem;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

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

.waitlist-pill {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(90, 0, 28, 0.16);
}

.waitlist-pill:focus-within {
  outline: 2px solid rgba(255, 255, 255, 0.72);
  outline-offset: 3px;
}

.waitlist-pill input[type="email"] {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 0.88rem 0.35rem 0.88rem 1.2rem;
  color: #1a1a1a;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.2;
  outline: none;
}

.waitlist-pill input[type="email"]::placeholder {
  color: #9a9a9a;
  font-weight: 500;
}

.waitlist-pill button {
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  padding: 0 1.15rem 0 0.7rem;
  color: #d3003d;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.waitlist-pill button:hover {
  color: #9e002e;
}

.waitlist-pill button:disabled {
  color: #c45c76;
  cursor: default;
}

.waitlist-hint {
  margin: 0.7rem 0 0;
  font-size: 0.74rem;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.58);
}

.waitlist-msg {
  margin: 0.7rem 0 0;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.4;
}

.waitlist-msg.is-ok {
  color: #fff;
}

.waitlist-msg.is-err {
  color: #ffe3ea;
}

/* Footer */
.site-footer {
  padding: 1.15rem 0;
}

.site-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  text-align: center;
}

.site-footer-copy {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
}

.site-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 500;
}

.site-footer-nav a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.site-footer-nav a:hover {
  color: var(--vs-white);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.site-footer-sep {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1;
}

.site-footer-cookie-btn {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: rgba(255, 255, 255, 0.88);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
}

.site-footer-cookie-btn:hover {
  color: var(--vs-white);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

/* Content pages (white chrome) */
.page-content {
  background: #fff;
  color: #1a1a1a;
}

.content-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.content-header-inner {
  padding: 1rem 0;
  gap: 1rem;
}

.content-logo {
  color: #1a1a1a;
}

.content-logo:hover {
  color: #1a1a1a;
}

.content-logo-text {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

.content-logo-tld {
  font-weight: 500;
  color: #8a8a8a;
}

.content-nav {
  gap: 1.5rem;
}

.content-nav-link {
  color: #8a8a8a;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.content-nav-link:hover,
.content-nav-link.is-active {
  color: #1a1a1a;
  font-weight: 700;
}

.content-menu-btn {
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #1a1a1a;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 0.42rem;
  cursor: pointer;
}

.content-menu-line {
  display: block;
  width: 1.35rem;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.content-menu-line-top {
  width: 1.05rem;
}

/* Off-canvas menu */
.offcanvas-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-1.25rem);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
}

.offcanvas-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.offcanvas-menu-inner {
  position: relative;
  width: 100%;
  max-width: 28rem;
  padding: 4rem 1.5rem 3rem;
}

.offcanvas-menu-close {
  position: absolute;
  top: -0.25rem;
  right: 1.25rem;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  padding: 0;
  background: transparent;
  color: #fff;
  font-size: 2.25rem;
  line-height: 1;
  cursor: pointer;
}

.offcanvas-menu-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.35rem;
  text-align: center;
}

.offcanvas-menu-link {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.offcanvas-menu-link:hover,
.offcanvas-menu-link.is-active {
  color: #fff;
}

body.menu-open {
  overflow: hidden;
}

.content-footer {
  padding: 1.5rem 0;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.content-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.content-footer-copy,
.content-footer-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: #8a8a8a;
}

.content-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.content-footer-nav a,
.content-footer-cookie-btn {
  text-decoration: none;
}

.content-footer-cookie-btn {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: #8a8a8a;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
}

.content-footer-nav a:hover,
.content-footer-cookie-btn:hover {
  color: #1a1a1a;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

/* Subpages */
.page-shell {
  padding: 2rem 0 3rem;
}

.page-shell h1 {
  margin: 0 0 1.5rem;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.page-content .page-shell {
  color: #1a1a1a;
}

.legal-content {
  max-width: 48rem;
}

.legal-content h2 {
  margin: 2rem 0 0.85rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.legal-content h3 {
  margin: 1.5rem 0 0.65rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.legal-content h4 {
  margin: 1.15rem 0 0.5rem;
  font-size: 0.98rem;
  font-weight: 700;
}

.legal-content p,
.legal-content li {
  margin: 0 0 0.9rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: #444;
}

.legal-content ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

.legal-content a {
  color: #9d284b;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.legal-content a:hover {
  color: #7a1e3a;
}

.legal-source {
  margin-top: 2.5rem !important;
  font-size: 0.9rem !important;
  color: #777 !important;
}

.matomo-optout {
  margin: 0 0 1.25rem;
  padding: 0.9rem 1rem;
  border: 1px solid #ddd;
  background: #fafafa;
}

.matomo-optout-label {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #444;
  cursor: pointer;
}

.matomo-optout-label input {
  margin-top: 0.28rem;
  flex-shrink: 0;
}

/* Demo index */
.demo-index-inner {
  max-width: 36rem;
  padding: 2rem 0 3rem;
}

.demo-index-kicker {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9d284b;
}

.demo-index-title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.demo-index-lead,
.demo-index-note {
  margin: 0 0 1rem;
  font-size: 1.02rem;
  line-height: 1.6;
  color: #555;
}

.demo-index-note {
  margin-bottom: 2.25rem;
  font-size: 0.95rem;
  color: #777;
}

.demo-index-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.demo-index-link {
  display: inline-block;
  color: #9d284b;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
}

.demo-index-link:hover {
  color: #7a1e3a;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

/* Empty / coming-soon pages */
.page-empty {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  min-height: min(70vh, 36rem);
  padding: 3rem 0;
}

.page-empty-inner {
  max-width: 34rem;
  margin: 0 auto;
  text-align: center;
}

.page-empty-kicker {
  margin: 0 0 1rem;
  font-size: 0.9rem;
}

.page-empty-kicker a {
  color: #9d284b;
  font-weight: 600;
  text-decoration: none;
}

.page-empty-kicker a:hover {
  text-decoration: underline;
}

.page-empty-title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.page-empty-text {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #555;
}

.page-empty-hint {
  margin: 1.25rem 0 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #888;
}

.page-empty-hint a {
  color: #9d284b;
  font-weight: 600;
  text-decoration: none;
}

.page-empty-hint a:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .content-footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }
}

/* Desktop */
@media (min-width: 768px) {
  body.page-home {
    background-position: center center;
  }

  .site-header-inner {
    padding: 1.5rem 0 1rem;
  }

  .site-logo-text {
    font-size: 1.15rem;
  }

  .site-logo-icon,
  .content-logo-icon {
    height: 1.9rem;
  }

  .site-menu-line,
  .site-menu-line-top {
    width: 1.45rem;
  }

  .home-container {
    padding-top: 2rem;
    padding-bottom: 1.5rem;
  }

  .home-stage {
    width: min(50vw, 42rem);
    max-width: min(50vw, 42rem);
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .page-home .home-stage {
    margin-top: auto;
    margin-bottom: auto;
  }

  .page-coming-soon .coming-soon-stage {
    width: auto;
    max-width: 36rem;
    margin-top: auto;
    margin-bottom: auto;
  }

  .home-headline {
    font-size: clamp(2.4rem, 4vw, 3.15rem);
  }

  .home-sub {
    font-size: 1.25rem;
    margin-bottom: 1.6rem;
  }

  .bubble {
    text-align: left;
    border-radius: 1.5rem;
    padding: 1.35rem 1.35rem 1.15rem;
    margin-bottom: 1.5rem;
  }

  .bubble-input {
    min-height: 7.25rem;
    font-size: 1.1rem;
  }

  .bubble-submit {
    padding: 0.72rem 1.05rem;
    font-size: 0.95rem;
  }

  .home-note {
    font-size: 0.95rem;
  }

  .home-quick {
    max-width: 28rem;
    margin-bottom: 0.5rem;
  }

  .home-quick-label {
    font-size: 0.95rem;
  }

  .site-footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-align: left;
  }

  .site-footer-nav {
    justify-content: flex-end;
    font-size: 0.82rem;
  }

  .site-footer-copy {
    font-size: 0.82rem;
  }
}

@media (min-width: 992px) {
  .home-quick {
    max-width: 30rem;
  }

  .content-header-inner {
    padding: 1.15rem 0;
  }

  .content-logo-text {
    font-size: 1.1rem;
  }
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 2000;
  padding: 1rem;
  pointer-events: none;
}

.cookie-banner:not([hidden]) {
  pointer-events: auto;
}

.cookie-banner-dialog {
  width: min(100%, 40rem);
  margin: 0 auto;
  padding: 1.35rem 1.25rem 1.25rem;
  border-radius: 1.1rem;
  background: #fff;
  color: #1a1a1a;
  box-shadow: 0 18px 50px rgba(20, 20, 30, 0.22);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.cookie-banner-title {
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cookie-banner-text {
  margin: 0 0 1.15rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #555;
}

.cookie-banner-text a {
  color: #d3003d;
  font-weight: 600;
  text-decoration: none;
}

.cookie-banner-text a:hover {
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.cookie-btn-primary {
  background: #d3003d;
  color: #fff;
}

.cookie-btn-primary:hover {
  background: #b80035;
}

.cookie-btn-secondary {
  background: #f3f3f3;
  color: #1a1a1a;
}

.cookie-btn-secondary:hover {
  background: #e8e8e8;
}

.cookie-btn-ghost {
  background: transparent;
  border-color: #ccc;
  color: #333;
}

.cookie-btn-ghost:hover {
  background: #f7f7f7;
}

.cookie-category {
  margin-bottom: 0.85rem;
  padding: 0.9rem 0.95rem;
  border: 1px solid #ececec;
  border-radius: 0.85rem;
  background: #fafafa;
}

.cookie-category-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-category-head strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.cookie-category-head p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.45;
  color: #666;
}

.cookie-category-badge {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
  color: #888;
  white-space: nowrap;
}

.cookie-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.cookie-switch input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-switch-ui {
  width: 2.6rem;
  height: 1.45rem;
  border-radius: 999px;
  background: #ccc;
  position: relative;
  transition: background-color 0.15s ease;
}

.cookie-switch-ui::after {
  content: "";
  position: absolute;
  top: 0.15rem;
  left: 0.15rem;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.15s ease;
}

.cookie-switch input:checked + .cookie-switch-ui {
  background: #d3003d;
}

.cookie-switch input:checked + .cookie-switch-ui::after {
  transform: translateX(1.15rem);
}

.cookie-switch input:focus-visible + .cookie-switch-ui {
  outline: 2px solid #d3003d;
  outline-offset: 2px;
}

.vs-stats-inner {
  max-width: 48rem;
}

.vs-stats-kicker {
  margin: 0 0 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d3003d;
}

.vs-stats-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.7rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.vs-stats-lead {
  margin: 0 0 1.75rem;
  font-size: 1.02rem;
  line-height: 1.6;
  color: #555;
}

.vs-stats-empty {
  margin: 0;
  padding: 1rem 1.1rem;
  background: #f6f6f6;
  color: #666;
}

.vs-stats-kpis {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.vs-stats-kpi {
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fafafa;
}

.vs-stats-kpi-label,
.vs-stats-kpi-note {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: #888;
}

.vs-stats-kpi-value {
  margin: 0.2rem 0 0.15rem;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #d3003d;
}

.vs-stats-panel {
  margin-bottom: 1.75rem;
}

.vs-stats-panel h2 {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.vs-stats-bars {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.45rem;
  align-items: end;
  min-height: 10rem;
}

.vs-stats-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
  min-height: 10rem;
}

.vs-stats-bar-count {
  font-size: 0.72rem;
  font-weight: 600;
  color: #888;
}

.vs-stats-bar-fill {
  width: 100%;
  min-height: 4px;
  background: #d3003d;
  border-radius: 3px 3px 0 0;
}

.vs-stats-bar-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: #666;
}

.vs-stats-pie-wrap {
  display: grid;
  gap: 1.25rem;
  align-items: center;
}

.vs-stats-pie {
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
  justify-self: center;
}

.vs-stats-legend {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vs-stats-legend li {
  display: grid;
  grid-template-columns: 0.75rem 1fr auto;
  gap: 0.65rem;
  align-items: center;
  margin: 0 0 0.55rem;
  font-size: 0.92rem;
}

.vs-stats-swatch {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
}

.vs-stats-legend-label {
  font-weight: 600;
  color: #1a1a1a;
}

.vs-stats-legend-meta {
  color: #888;
  font-weight: 500;
  font-size: 0.85rem;
}

.vs-stats-month-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.85rem 1rem;
  margin-bottom: 1rem;
}

.vs-stats-month-head h2 {
  margin: 0;
}

.vs-stats-month-total {
  margin: 0.25rem 0 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: #888;
}

.vs-stats-month-nav {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.vs-stats-month-name {
  margin: 0;
  min-width: 9.5rem;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a1a;
}

.vs-stats-month-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  background: #fff;
  color: #1a1a1a;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
}

.vs-stats-month-btn:hover {
  border-color: #d3003d;
  color: #d3003d;
}

.vs-stats-month-btn.is-disabled {
  opacity: 0.35;
  cursor: default;
}

.vs-stats-hbars {
  display: grid;
  gap: 0.85rem;
}

.vs-stats-hbar-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}

.vs-stats-hbar-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: #1a1a1a;
}

.vs-stats-hbar-count {
  font-size: 0.85rem;
  font-weight: 600;
  color: #888;
  white-space: nowrap;
}

.vs-stats-hbar-track {
  height: 0.7rem;
  overflow: hidden;
  background: #f0f0f0;
  border-radius: 999px;
}

.vs-stats-hbar-fill {
  display: block;
  height: 100%;
  background: #d3003d;
  border-radius: 999px;
}

@media (min-width: 640px) {
  .vs-stats-kpis {
    grid-template-columns: 1fr 1fr;
  }

  .vs-stats-pie-wrap {
    grid-template-columns: 11rem 1fr;
  }

  .vs-stats-pie {
    justify-self: start;
  }
}

@media (min-width: 768px) {
  .cookie-banner {
    padding: 1.25rem;
  }

  .cookie-banner-dialog {
    margin-left: 0;
    margin-right: auto;
  }
}

