/* Valter WD — dark theme, light type, signal runway */
:root {
  --wd-ink: #feffff;
  --wd-deep: #c8c5d6;
  --wd-paper: #09080d;
  --wd-surface: #181624;
  --wd-surface-2: #1f1c2e;
  --wd-mist: #b6b3c6;
  --wd-purple: #663bfa;
  --wd-purple-2: #6840f8;
  --wd-lilac: #beacff;
  --wd-lime: #bceb4e;
  --wd-lime-ink: #0c0b10;
  --wd-max: 1180px;
  --wd-head: 4.25rem;
  --wd-dock: 4.5rem;
  --wd-font-display: "Unbounded", system-ui, sans-serif;
  --wd-font-body: "Figtree", system-ui, sans-serif;
  --wd-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --wd-line: rgba(190, 172, 255, 0.18);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--wd-font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--wd-ink);
  background:
    radial-gradient(ellipse 80% 50% at 100% -10%, rgba(102, 59, 250, 0.28), transparent 55%),
    radial-gradient(ellipse 60% 40% at 0% 30%, rgba(188, 235, 78, 0.08), transparent 50%),
    var(--wd-paper);
  overflow-x: hidden;
  padding-bottom: calc(var(--wd-dock) + env(safe-area-inset-bottom, 0px));
}

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

a {
  color: var(--wd-lilac);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--wd-lime);
}

a:focus-visible,
button:focus-visible,
.wd-btn:focus-visible {
  outline: 2px solid var(--wd-lime);
  outline-offset: 3px;
}

h1, h2, h3, h4 {
  font-family: var(--wd-font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 0.6rem;
  color: var(--wd-ink);
}

p {
  margin: 0 0 1rem;
  color: var(--wd-deep);
}

ul, ol {
  margin: 0 0 1.2rem;
  padding-left: 1.2rem;
  color: var(--wd-deep);
}

strong {
  color: var(--wd-ink);
}

/* —— Top signal bar —— */
.wd-signal {
  background: var(--wd-surface);
  color: var(--wd-mist);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.45rem 1rem;
  border-bottom: 1px solid var(--wd-line);
}

.wd-signal a {
  color: var(--wd-lime);
}

.wd-signal a:hover {
  color: var(--wd-lilac);
}

/* —— Header (centered brand, no left rail) —— */
.wd-top {
  position: sticky;
  top: 0;
  z-index: 80;
  height: var(--wd-head);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0 1.15rem;
  background: rgba(9, 8, 13, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--wd-line);
}

.wd-top__nav {
  display: none;
  gap: 0.35rem;
  justify-self: start;
}

.wd-top__nav a {
  color: var(--wd-mist);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.4rem 0.65rem;
  border-radius: 8px;
}

.wd-top__nav a:hover,
.wd-top__nav a.is-on {
  background: rgba(102, 59, 250, 0.22);
  color: var(--wd-ink);
}

.wd-mark {
  justify-self: center;
  font-family: var(--wd-font-display);
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--wd-ink);
  text-align: center;
  line-height: 1.05;
}

.wd-mark span {
  display: block;
  color: var(--wd-lime);
  font-size: 0.85em;
}

.wd-top__cta {
  justify-self: end;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.wd-menu {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--wd-line);
  background: rgba(102, 59, 250, 0.18);
  display: grid;
  place-items: center;
  gap: 4px;
  cursor: pointer;
  padding: 0;
}

.wd-menu i {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--wd-ink);
  border-radius: 2px;
}

@media (min-width: 920px) {
  .wd-top__nav {
    display: flex;
  }

  .wd-menu {
    display: none;
  }
}

/* —— Buttons —— */
.wd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.7rem 1.25rem;
  border-radius: 12px;
  border: 1px solid transparent;
  font-family: var(--wd-font-body);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s var(--wd-ease), background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.wd-btn--go {
  background: var(--wd-lime);
  color: var(--wd-lime-ink);
}

.wd-btn--go:hover {
  color: var(--wd-lime-ink);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(188, 235, 78, 0.35);
}

.wd-btn--ghost {
  background: transparent;
  color: var(--wd-ink);
  border-color: rgba(254, 255, 255, 0.28);
}

.wd-btn--ghost:hover {
  color: var(--wd-ink);
  border-color: var(--wd-lime);
  background: rgba(188, 235, 78, 0.1);
}

.wd-btn--night {
  background: rgba(254, 255, 255, 0.08);
  color: var(--wd-ink);
  border-color: rgba(254, 255, 255, 0.28);
}

.wd-btn--night:hover {
  color: var(--wd-ink);
  border-color: var(--wd-lime);
  background: rgba(188, 235, 78, 0.12);
}

.wd-top__cta .wd-btn {
  padding: 0.5rem 0.95rem;
  font-size: 0.82rem;
}

.wd-top__cta .wd-btn--ghost {
  display: none;
}

@media (min-width: 640px) {
  .wd-top__cta .wd-btn--ghost {
    display: inline-flex;
  }
}

/* —— Sheet menu —— */
.wd-sheet {
  position: fixed;
  inset: 0;
  z-index: 120;
  visibility: hidden;
  pointer-events: none;
}

.wd-sheet.is-open {
  visibility: visible;
  pointer-events: auto;
}

.wd-sheet__veil {
  position: absolute;
  inset: 0;
  background: rgba(9, 8, 13, 0.55);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.wd-sheet.is-open .wd-sheet__veil {
  opacity: 1;
}

.wd-sheet__panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: 78vh;
  background: var(--wd-surface);
  border-radius: 22px 22px 0 0;
  padding: 1.25rem 1.25rem calc(1.5rem + env(safe-area-inset-bottom));
  transform: translateY(110%);
  transition: transform 0.35s var(--wd-ease);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  border-top: 1px solid var(--wd-line);
}

.wd-sheet.is-open .wd-sheet__panel {
  transform: translateY(0);
}

.wd-sheet__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wd-sheet__x {
  border: 0;
  background: rgba(102, 59, 250, 0.28);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.35rem;
  cursor: pointer;
  color: var(--wd-ink);
}

.wd-sheet__links {
  display: grid;
  gap: 0.25rem;
}

.wd-sheet__links a {
  padding: 0.85rem 0.5rem;
  border-bottom: 1px solid var(--wd-line);
  color: var(--wd-ink);
  font-weight: 700;
  font-family: var(--wd-font-display);
  font-size: 1.05rem;
}

.wd-sheet__acts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

/* —— Layout shell —— */
.wd-wrap {
  width: min(100% - 1.75rem, var(--wd-max));
  margin-inline: auto;
}

.wd-block {
  padding: 3.25rem 0;
}

.wd-block--tight {
  padding: 2rem 0;
}

.wd-kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wd-lilac);
  margin-bottom: 0.65rem;
}

.wd-lede {
  max-width: 40rem;
  color: var(--wd-mist);
  margin: 0 0 1.25rem;
}

.wd-ink-invert .wd-kicker {
  color: var(--wd-lime);
}

.wd-ink-invert .wd-lede,
.wd-ink-invert p,
.wd-ink-invert li {
  color: rgba(254, 255, 255, 0.82);
}

.wd-ink-invert h2,
.wd-ink-invert h3 {
  color: var(--wd-ink);
}

/* —— Hero (full bleed, brand-led, bottom-left stack) —— */
.wd-hero {
  position: relative;
  min-height: min(86vh, 720px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.wd-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.wd-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: wdDrift 28s ease-in-out infinite alternate;
}

.wd-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(9, 8, 13, 0.88) 0%, rgba(9, 8, 13, 0.45) 48%, rgba(9, 8, 13, 0.25) 100%),
    linear-gradient(180deg, transparent 20%, rgba(9, 8, 13, 0.7) 100%);
}

.wd-hero__inner {
  position: relative;
  z-index: 2;
  width: min(100% - 1.75rem, var(--wd-max));
  margin: 0 auto;
  padding: 2rem 0;
  animation: wdUp 0.9s var(--wd-ease) both;
}

.wd-hero__brand {
  font-family: var(--wd-font-display);
  font-size: clamp(2.8rem, 9vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.92;
  color: var(--wd-ink);
  margin: 0 0 1rem;
}

.wd-hero__brand em {
  font-style: normal;
  color: var(--wd-lime);
  display: block;
}

.wd-hero__line {
  width: 4.5rem;
  height: 3px;
  background: linear-gradient(90deg, var(--wd-lime), var(--wd-purple));
  margin: 0 0 1.1rem;
  border: 0;
  animation: wdGrow 1.2s var(--wd-ease) 0.2s both;
}

.wd-hero__title {
  font-size: clamp(1.15rem, 2.6vw, 1.55rem);
  font-weight: 500;
  max-width: 22ch;
  color: var(--wd-ink);
  margin: 0 0 0.75rem;
  font-family: var(--wd-font-body);
  letter-spacing: -0.01em;
}

.wd-hero__note {
  max-width: 36ch;
  color: rgba(254, 255, 255, 0.82);
  margin: 0 0 1.4rem;
}

.wd-hero__acts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

@keyframes wdDrift {
  from { transform: scale(1.04) translate(0, 0); }
  to { transform: scale(1.1) translate(-1.5%, -1%); }
}

@keyframes wdUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes wdGrow {
  from { width: 0; opacity: 0; }
  to { width: 4.5rem; opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .wd-hero__bg img,
  .wd-hero__inner,
  .wd-hero__line {
    animation: none !important;
  }
}

/* —— Bonus runway (numbered steps, not cards grid) —— */
.wd-runway {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--wd-line);
  border-bottom: 1px solid var(--wd-line);
}

@media (min-width: 860px) {
  .wd-runway {
    grid-template-columns: repeat(3, 1fr);
  }
}

.wd-step {
  padding: 1.5rem 1.25rem 1.6rem;
  border-bottom: 1px solid var(--wd-line);
  position: relative;
  background: linear-gradient(180deg, rgba(102, 59, 250, 0.14), transparent 70%);
  display: flex;
  flex-direction: column;
  height: 100%;
}

@media (min-width: 860px) {
  .wd-step {
    border-bottom: 0;
    border-right: 1px solid var(--wd-line);
  }

  .wd-step:last-child {
    border-right: 0;
  }
}

.wd-step__n {
  font-family: var(--wd-font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: rgba(190, 172, 255, 0.35);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.wd-step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.wd-step p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: var(--wd-mist);
  flex: 1 1 auto;
}

.wd-step .wd-btn {
  width: 100%;
  margin-top: auto;
}

/* —— Pulse meter —— */
.wd-pulse {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: baseline;
  justify-content: space-between;
  padding: 1.1rem 0;
  border-bottom: 1px dashed rgba(190, 172, 255, 0.28);
}

.wd-pulse__item strong {
  font-family: var(--wd-font-display);
  font-size: 1.35rem;
  color: var(--wd-lime);
  font-variant-numeric: tabular-nums;
}

.wd-pulse__item span {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wd-mist);
}

/* —— Game tabs + horizontal track —— */
.wd-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.15rem;
}

.wd-tabs button {
  border: 1px solid var(--wd-line);
  background: transparent;
  color: var(--wd-mist);
  font-family: var(--wd-font-body);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.wd-tabs button.is-on {
  background: var(--wd-purple);
  border-color: var(--wd-purple);
  color: var(--wd-ink);
}

.wd-panel {
  display: none;
}

.wd-panel.is-on {
  display: block;
}

.wd-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(148px, 38vw);
  gap: 0.85rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.65rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

@media (min-width: 720px) {
  .wd-track {
    grid-auto-columns: minmax(170px, 1fr);
    grid-template-columns: repeat(5, 1fr);
    grid-auto-flow: row;
    overflow: visible;
  }
}

.wd-game {
  scroll-snap-align: start;
  border: 0;
  background: transparent;
  padding: 0;
  text-align: left;
  cursor: pointer;
  color: inherit;
}

.wd-game__art {
  position: relative;
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  background: var(--wd-surface);
}

.wd-game__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--wd-ease);
}

.wd-game:hover .wd-game__art img,
.wd-game:focus-within .wd-game__art img {
  transform: scale(1.07);
}

.wd-game__hit {
  position: absolute;
  inset: auto 0.55rem 0.55rem 0.55rem;
  display: flex;
  gap: 0.35rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.wd-game:hover .wd-game__hit,
.wd-game:focus-within .wd-game__hit {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: none) {
  .wd-game__hit {
    opacity: 1;
    transform: none;
  }
}

.wd-game__hit .wd-btn {
  flex: 1;
  padding: 0.4rem 0.35rem;
  font-size: 0.72rem;
  border-radius: 8px;
}

.wd-game__name {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--wd-ink);
}

.wd-game__studio {
  display: block;
  font-size: 0.72rem;
  color: var(--wd-mist);
}

/* —— Night band (live console) —— */
.wd-night {
  background:
    radial-gradient(ellipse 50% 60% at 85% 20%, rgba(102, 59, 250, 0.4), transparent 60%),
    var(--wd-surface);
  color: var(--wd-ink);
  padding: 3.5rem 0;
  margin: 1rem 0;
  border-block: 1px solid var(--wd-line);
}

.wd-console {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 800px) {
  .wd-night__grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 2.5rem;
    align-items: center;
  }
}

.wd-console__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.85rem;
  align-items: center;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: rgba(254, 255, 255, 0.05);
  border: 1px solid rgba(254, 255, 255, 0.1);
}

.wd-console__glyph {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--wd-purple), rgba(188, 235, 78, 0.35));
  font-size: 1.2rem;
}

.wd-console__row h3 {
  margin: 0;
  font-size: 1rem;
  color: var(--wd-ink);
}

.wd-console__row small {
  color: var(--wd-mist);
  font-size: 0.8rem;
}

.wd-console__row strong {
  color: var(--wd-lime);
  font-variant-numeric: tabular-nums;
}

.wd-night__visual {
  border-radius: 18px;
  overflow: hidden;
  min-height: 220px;
  margin-top: 1.5rem;
}

@media (min-width: 800px) {
  .wd-night__visual {
    margin-top: 0;
    min-height: 360px;
  }
}

.wd-night__visual img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: top center;
}

@media (min-width: 800px) {
  .wd-night__visual img {
    min-height: 360px;
  }
}

/* —— Event timeline —— */
.wd-timeline {
  display: grid;
  gap: 1rem;
  position: relative;
}

@media (min-width: 760px) {
  .wd-timeline {
    grid-template-columns: repeat(3, 1fr);
  }

  .wd-timeline::before {
    content: "";
    position: absolute;
    top: 1.15rem;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, var(--wd-purple), var(--wd-lime));
    opacity: 0.35;
    pointer-events: none;
  }
}

.wd-event {
  padding-top: 0.5rem;
}

.wd-event__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--wd-lime);
  box-shadow: 0 0 0 4px rgba(188, 235, 78, 0.25);
  margin-bottom: 0.85rem;
}

.wd-event__clock {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--wd-lilac);
  margin-bottom: 0.35rem;
  font-variant-numeric: tabular-nums;
}

.wd-event h3 {
  font-size: 1.05rem;
}

.wd-event p {
  font-size: 0.92rem;
  color: var(--wd-mist);
}

/* —— Split VIP —— */
.wd-split {
  display: grid;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  background: var(--wd-surface);
  border: 1px solid var(--wd-line);
}

@media (min-width: 860px) {
  .wd-split {
    grid-template-columns: 1.05fr 0.95fr;
    min-height: 420px;
  }
}

.wd-split__media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top center;
}

@media (min-width: 860px) {
  .wd-split__media img {
    height: 100%;
    min-height: 420px;
  }
}

.wd-split__copy {
  padding: 1.75rem 1.4rem 2rem;
  color: var(--wd-ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wd-split__copy h2 {
  color: var(--wd-ink);
}

.wd-split__copy p,
.wd-split__copy li {
  color: rgba(254, 255, 255, 0.8);
}

.wd-pillrow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 1.25rem;
}

.wd-pill {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(188, 235, 78, 0.15);
  color: var(--wd-lime);
  font-size: 0.78rem;
  font-weight: 700;
}

/* —— Studio strip —— */
.wd-studios {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

@media (min-width: 640px) {
  .wd-studios {
    grid-template-columns: repeat(5, 1fr);
  }
}

.wd-studios--row {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.65rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  grid-template-columns: none;
}

.wd-studios--row figure {
  flex: 1 1 0;
  min-width: 5.5rem;
}

.wd-studios figure {
  margin: 0;
  min-height: 64px;
  display: grid;
  place-items: center;
  padding: 0.65rem;
  background: rgba(254, 255, 255, 0.04);
  border-radius: 12px;
  border: 1px solid var(--wd-line);
}

.wd-studios img {
  max-height: 32px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

/* —— Quotes marquee —— */
.wd-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.wd-marquee__rail {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: wdScroll 40s linear infinite;
}

.wd-marquee:hover .wd-marquee__rail {
  animation-play-state: paused;
}

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

.wd-quote {
  width: min(320px, 78vw);
  flex-shrink: 0;
  padding: 1.15rem 1.2rem;
  border-left: 3px solid var(--wd-lime);
  background: rgba(102, 59, 250, 0.16);
  border-radius: 0 14px 14px 0;
}

.wd-quote p {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  color: var(--wd-deep);
}

.wd-quote footer {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--wd-lilac);
}

/* —— FAQ filter —— */
.wd-faq-tools {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.wd-faq-tools input {
  flex: 1;
  min-width: 0;
  font-size: 1rem;
  padding: 0.7rem 0.95rem;
  border-radius: 12px;
  border: 1px solid var(--wd-line);
  background: var(--wd-surface);
  font-family: inherit;
  color: var(--wd-ink);
}

.wd-faq {
  display: grid;
  gap: 0.55rem;
}

.wd-faq__item {
  border-bottom: 1px solid var(--wd-line);
}

.wd-faq__item[hidden] {
  display: none;
}

.wd-faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0.15rem;
  background: transparent;
  border: 0;
  font-family: var(--wd-font-display);
  font-size: 0.98rem;
  font-weight: 650;
  text-align: left;
  cursor: pointer;
  color: var(--wd-ink);
  min-height: 48px;
}

.wd-faq__q::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(102, 59, 250, 0.28);
  color: var(--wd-lilac);
  font-size: 1.15rem;
}

.wd-faq__item.is-open .wd-faq__q::after {
  content: "\2212";
  background: var(--wd-lime);
  color: var(--wd-lime-ink);
}

.wd-faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.wd-faq__item.is-open .wd-faq__a {
  grid-template-rows: 1fr;
}

.wd-faq__a > div {
  overflow: hidden;
}

.wd-faq__a p {
  margin: 0;
  padding: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--wd-mist);
}

/* —— Prose —— */
.wd-prose {
  max-width: none;
  width: 100%;
}

.wd-prose h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  margin-top: 1.75rem;
}

.wd-prose a {
  font-weight: 700;
  color: var(--wd-lilac);
  text-decoration: underline;
  text-decoration-color: rgba(190, 172, 255, 0.4);
  text-underline-offset: 0.15em;
}

.wd-prose a:hover {
  color: var(--wd-lime);
  text-decoration-color: var(--wd-lime);
}

/* —— Finale —— */
.wd-finale {
  text-align: center;
  padding: 2.75rem 1.25rem;
  border-radius: 20px;
  background:
    radial-gradient(ellipse 70% 80% at 50% 120%, rgba(102, 59, 250, 0.35), transparent 55%),
    var(--wd-surface);
  color: var(--wd-ink);
  border: 1px solid var(--wd-line);
}

.wd-finale h2 {
  color: var(--wd-ink);
}

.wd-finale p {
  color: rgba(254, 255, 255, 0.8);
  max-width: 36rem;
  margin: 0 auto 1.25rem;
}

.wd-finale__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

/* —— Footer —— */
.wd-foot {
  margin-top: 2.5rem;
  padding: 2.5rem 0 1.5rem;
  background: #05040a;
  color: var(--wd-ink);
  border-top: 1px solid var(--wd-line);
}

.wd-foot a {
  color: var(--wd-lilac);
}

.wd-foot a:hover {
  color: var(--wd-lime);
}

.wd-foot__grid {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 860px) {
  .wd-foot__grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.wd-foot__brand {
  font-family: var(--wd-font-display);
  font-size: 1.7rem;
  font-weight: 800;
  margin: 0 0 0.75rem;
  line-height: 1.05;
}

.wd-foot__brand span {
  color: var(--wd-lime);
  display: block;
}

.wd-foot__tag {
  color: var(--wd-mist);
  max-width: 36ch;
  font-size: 0.95rem;
}

.wd-foot__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
  margin: 1.15rem 0;
}

.wd-foot__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.wd-foot__badges img {
  height: 32px;
  width: auto;
  filter: brightness(2);
  opacity: 0.9;
}

.wd-form {
  display: grid;
  gap: 0.55rem;
  background: rgba(254, 255, 255, 0.04);
  border: 1px solid rgba(254, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.1rem;
}

.wd-form h3 {
  color: var(--wd-ink);
  font-size: 1.05rem;
  margin: 0;
}

.wd-form p {
  color: var(--wd-mist);
  font-size: 0.85rem;
  margin: 0 0 0.25rem;
}

.wd-form label {
  display: grid;
  gap: 0.25rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wd-mist);
}

.wd-form input,
.wd-form textarea {
  width: 100%;
  font-size: 1rem;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  border: 1px solid rgba(254, 255, 255, 0.14);
  background: rgba(9, 8, 13, 0.45);
  color: var(--wd-ink);
  font-family: inherit;
  resize: none;
}

.wd-form textarea {
  min-height: 3.2rem;
}

.wd-form.is-sent .wd-form__fields,
.wd-form.is-sent .wd-btn {
  display: none;
}

.wd-form__note[hidden] {
  display: none;
}

.wd-form__note {
  color: var(--wd-lime);
  font-weight: 700;
  margin: 0;
}

.wd-foot__bar {
  margin-top: 1.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(254, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--wd-mist);
}

.wd-foot__bar p {
  margin: 0;
  color: inherit;
  font-size: inherit;
}

/* —— Cookie —— */
.wd-cookie {
  position: fixed;
  bottom: calc(var(--wd-dock) + 0.75rem + env(safe-area-inset-bottom, 0px));
  left: 0.75rem;
  right: 0.75rem;
  z-index: 90;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.wd-cookie.is-hidden {
  display: none;
}

.wd-cookie__box {
  pointer-events: auto;
  width: min(100%, 520px);
  background: var(--wd-surface);
  border: 1px solid var(--wd-line);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.wd-cookie__box p {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  color: var(--wd-deep);
}

.wd-cookie__acts {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.wd-cookie__acts .wd-btn {
  flex: 1;
  min-height: 42px;
}

/* —— Bottom dock (mobile-first unique chrome) —— */
.wd-dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 85;
  height: calc(var(--wd-dock) + env(safe-area-inset-bottom, 0px));
  padding: 0.55rem 0.85rem calc(0.55rem + env(safe-area-inset-bottom, 0px));
  background: rgba(9, 8, 13, 0.94);
  backdrop-filter: blur(10px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.35rem;
  border-top: 1px solid rgba(188, 235, 78, 0.2);
}

.wd-dock a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  color: var(--wd-mist);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 10px;
  min-height: 44px;
}

.wd-dock a:hover,
.wd-dock a.is-on {
  color: var(--wd-lime);
  background: rgba(188, 235, 78, 0.08);
}

.wd-dock svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (min-width: 920px) {
  .wd-dock {
    display: none;
  }

  body {
    padding-bottom: 0;
  }

  .wd-cookie {
    bottom: 1rem;
  }
}

/* —— Page hero (bonuses) —— */
.wd-pagehead {
  padding: 2.5rem 0 1.25rem;
}

.wd-pagehead h1 {
  font-size: clamp(1.85rem, 5vw, 2.75rem);
  max-width: 16ch;
}

.wd-pagehead h1 em {
  font-style: normal;
  color: var(--wd-lilac);
}

.wd-pagehead p {
  max-width: 42ch;
  color: var(--wd-mist);
}

.wd-ladder {
  display: grid;
  gap: 0;
  margin: 1.5rem 0;
  border-left: 2px solid rgba(190, 172, 255, 0.3);
  padding-left: 1.15rem;
}

.wd-ladder__item {
  position: relative;
  padding: 0 0 1.75rem;
}

.wd-ladder__item::before {
  content: "";
  position: absolute;
  left: calc(-1.15rem - 5px);
  top: 0.35rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--wd-lime);
  box-shadow: 0 0 0 3px rgba(188, 235, 78, 0.25);
}

.wd-ladder__item h3 {
  font-size: 1.15rem;
}

.wd-table {
  width: 100%;
  min-width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.wd-table th,
.wd-table td {
  text-align: left;
  padding: 0.85rem 0.75rem;
  border-bottom: 1px solid var(--wd-line);
  vertical-align: top;
  color: var(--wd-deep);
  word-wrap: break-word;
  overflow-wrap: anywhere;
}

.wd-table th {
  color: var(--wd-lilac);
  font-weight: 700;
}

.wd-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.wd-scroll .wd-table {
  width: 100%;
}

.wd-banner {
  border-radius: 18px;
  overflow: hidden;
  margin: 1.5rem 0;
}

.wd-banner img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

@media (min-width: 760px) {
  .wd-banner img {
    height: 280px;
  }
}

@media (max-width: 480px) {
  .wd-hero {
    min-height: min(78vh, 620px);
  }

  .wd-block {
    padding: 2.35rem 0;
  }
}
