:root {
  color-scheme: dark;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #f8f7ef;
  background: #080808;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 80% 12%, rgba(255, 237, 0, 0.14), transparent 30rem),
    radial-gradient(circle at 15% 58%, rgba(218, 39, 122, 0.14), transparent 24rem),
    #080808;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 80% 12%, rgba(255, 237, 0, 0.12), transparent 28rem),
    radial-gradient(circle at 15% 58%, rgba(218, 39, 122, 0.12), transparent 24rem),
    linear-gradient(180deg, rgba(8, 8, 8, 0.62), rgba(8, 8, 8, 0.9));
  content: "";
  pointer-events: none;
}

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

.site-shell,
.legal-shell {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  overflow: hidden;
}

.topbar {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 22px max(18px, calc((100vw - 1480px) / 2 + 42px));
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.9), rgba(8, 8, 8, 0.66)),
    rgba(8, 8, 8, 0.72);
  backdrop-filter: blur(14px);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.72);
}

.legal-shell .topbar {
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.94), rgba(8, 8, 8, 0.72)),
    rgba(8, 8, 8, 0.78);
}

.contact-shell {
  min-height: 100svh;
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 237, 0, 0.17), transparent 24rem),
    radial-gradient(circle at 16% 86%, rgba(229, 0, 126, 0.14), transparent 28rem),
    linear-gradient(180deg, rgba(8, 8, 8, 0.18), rgba(8, 8, 8, 0.96)),
    #080808;
}

.contact-shell .topbar {
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.94), rgba(8, 8, 8, 0.72)),
    rgba(8, 8, 8, 0.78);
}

.home-shell .topbar {
  position: absolute;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.34), rgba(8, 8, 8, 0));
  backdrop-filter: none;
}

.social-links {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
}

.social-link {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 999px;
  opacity: 0.9;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    filter 180ms ease;
}

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

.social-link:hover {
  opacity: 1;
  filter: drop-shadow(0 0 12px rgba(255, 237, 0, 0.24));
  transform: translateY(-1px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.channel-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
  margin-right: auto;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.32);
  color: rgba(248, 247, 239, 0.82);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.channel-link img {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.channel-link:hover {
  border-color: rgba(255, 0, 0, 0.58);
  background: rgba(255, 0, 0, 0.12);
  color: #ffffff;
  transform: translateY(-1px);
}

.election-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 6px 11px;
  border: 1px solid rgba(255, 237, 0, 0.44);
  background: rgba(255, 237, 0, 0.13);
  color: #ffed00;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.election-link:hover,
.election-link[aria-current="page"] {
  border-color: rgba(255, 237, 0, 0.82);
  background: rgba(255, 237, 0, 0.22);
  color: #fff36f;
  transform: translateY(-1px);
}

.nav-links {
  flex: 0 0 auto;
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  color: rgba(248, 247, 239, 0.72);
  font-size: 0.82rem;
  font-weight: 650;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: #ffed00;
}

.nav-links a[aria-current="page"] {
  color: #ffed00;
}

.hero-section {
  display: grid;
  width: 100%;
  min-height: 100svh;
  align-items: center;
  justify-items: center;
  padding: 0;
}

.eyebrow,
.section-label {
  margin: 0;
  color: #ffed00;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.1rem, 7.2vw, 7.9rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  width: 100%;
  min-height: 100svh;
  isolation: isolate;
  overflow: hidden;
  background: #080808;
}

.hero-visual::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.42), rgba(8, 8, 8, 0.08) 38%, rgba(8, 8, 8, 0.58)),
    radial-gradient(circle at 80% 72%, rgba(255, 237, 0, 0.18), transparent 28rem);
  content: "";
  pointer-events: none;
}

.hero-visual::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  height: 18vh;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0), #080808 92%);
  content: "";
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: 1;
  object-fit: cover;
  object-position: center;
  opacity: 0.94;
  filter: saturate(1.08) contrast(1.07) brightness(0.82);
  animation: heroVideoFadeIn 700ms ease 1.2s both;
}

@keyframes heroVideoFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 0.94;
  }
}

.quote-rotator {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  width: min(780px, calc(100% - 36px));
  min-height: clamp(132px, 18vw, 190px);
  overflow: hidden;
  transform: translate(-50%, -50%);
}

.quote-rotator p {
  position: absolute;
  inset: clamp(18px, 3vw, 28px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: rgba(248, 247, 239, 0.9);
  font-size: clamp(1.35rem, 3.4vw, 3.7rem);
  font-weight: 800;
  line-height: 1.08;
  text-align: center;
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.72), 0 0 2px rgba(0, 0, 0, 0.9);
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(16px);
  animation: quoteFade 60s infinite both;
}

.nextgen-compass {
  position: absolute;
  right: max(18px, calc((100vw - 1480px) / 2 + 64px));
  bottom: clamp(68px, 10vh, 128px);
  z-index: 5;
  display: grid;
  gap: 9px;
  width: min(326px, calc(100vw - 36px));
  padding: 13px;
  border: 1px solid rgba(255, 237, 0, 0.2);
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(255, 237, 0, 0.16) 0 2px, transparent 2px calc(100% - 2px), rgba(255, 237, 0, 0.16) calc(100% - 2px)),
    linear-gradient(180deg, rgba(248, 247, 239, 0.055), rgba(255, 237, 0, 0.025)),
    rgba(8, 8, 8, 0.36);
  box-shadow:
    inset 0 0 0 1px rgba(248, 247, 239, 0.04),
    0 22px 68px rgba(0, 0, 0, 0.32),
    0 0 26px rgba(255, 237, 0, 0.055);
  backdrop-filter: blur(12px);
  transition:
    border-color 260ms ease,
    background 260ms ease,
    box-shadow 260ms ease;
}

.nextgen-compass.is-in-focus {
  z-index: 9;
  border-color: rgba(255, 237, 0, 0.42);
  background:
    radial-gradient(circle at 50% 32%, rgba(255, 237, 0, 0.18), transparent 62%),
    linear-gradient(145deg, rgba(248, 247, 239, 0.075), rgba(229, 0, 126, 0.045)),
    rgba(8, 8, 8, 0.42);
  box-shadow:
    inset 0 0 0 1px rgba(248, 247, 239, 0.06),
    0 34px 96px rgba(0, 0, 0, 0.48),
    0 0 48px rgba(255, 237, 0, 0.12);
}

.nextgen-compass__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 237, 0, 0.92);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
}

.nextgen-compass__title::after {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 237, 0, 0.55), transparent);
  content: "";
}

.nextgen-compass__stage {
  position: relative;
  display: grid;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  filter:
    drop-shadow(0 16px 34px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 12px rgba(255, 237, 0, 0.075));
  transform: none;
  transition:
    filter 260ms ease,
    transform 260ms ease;
}

.nextgen-compass.is-in-focus .nextgen-compass__stage,
.nextgen-compass:focus-within .nextgen-compass__stage {
  filter:
    drop-shadow(0 20px 48px rgba(0, 0, 0, 0.64))
    drop-shadow(0 0 20px rgba(255, 237, 0, 0.15));
  transform: none;
}

.nextgen-compass__stage:focus-visible,
.nextgen-zone:focus-visible {
  outline: 2px solid #ffed00;
  outline-offset: 6px;
}

.nextgen-compass__glow {
  position: absolute;
  inset: 16%;
  z-index: -1;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 237, 0, 0.22), rgba(229, 0, 126, 0.08) 44%, transparent 72%);
  filter: blur(18px);
  opacity: 0.74;
}

.nextgen-compass img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  user-select: none;
}

.nextgen-compass__zones {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: auto;
  user-select: none;
}

.nextgen-zone {
  fill: transparent;
  stroke: transparent;
  stroke-width: 0;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  cursor: pointer;
  pointer-events: auto;
  outline: none;
  transition:
    fill 160ms ease,
    filter 160ms ease,
    stroke 160ms ease,
    stroke-width 160ms ease;
}

.nextgen-zone:hover,
.nextgen-zone.is-active {
  fill: transparent;
  stroke: transparent;
  stroke-width: 0;
  filter: none;
  outline: none;
}

.nextgen-zone:focus {
  outline: none;
}

.nextgen-zone:focus-visible {
  outline: none;
  filter: drop-shadow(0 0 5px rgba(255, 237, 0, 0.52));
}

.nextgen-compass__explain {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 132px;
  height: auto;
  right: auto;
  bottom: auto;
  z-index: 3;
  width: 100%;
  margin: 0;
  padding: 11px 12px;
  border: 1px solid rgba(255, 237, 0, 0.12);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 237, 0, 0.055), rgba(229, 0, 126, 0.025)),
    rgba(8, 8, 8, 0.42);
  box-shadow: inset 0 0 0 1px rgba(248, 247, 239, 0.025);
  color: rgba(248, 247, 239, 0.74);
  opacity: 0.82;
  transform: none;
  transition:
    opacity 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
  pointer-events: none;
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.nextgen-compass:hover .nextgen-compass__explain,
.nextgen-compass:focus-within .nextgen-compass__explain,
.nextgen-compass.is-in-focus .nextgen-compass__explain {
  opacity: 0.96;
  border-color: rgba(255, 237, 0, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 237, 0, 0.07), rgba(229, 0, 126, 0.035)),
    rgba(8, 8, 8, 0.58);
}

.nextgen-compass__explain strong {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 237, 0, 0.94);
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nextgen-compass__explain span {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.38;
}

.quote-rotator p:nth-child(2) {
  animation-delay: 6s;
}

.quote-rotator p:nth-child(3) {
  animation-delay: 12s;
}

.quote-rotator p:nth-child(4) {
  animation-delay: 18s;
}

.quote-rotator p:nth-child(5) {
  animation-delay: 24s;
}

.quote-rotator p:nth-child(6) {
  animation-delay: 30s;
}

.quote-rotator p:nth-child(7) {
  animation-delay: 36s;
}

.quote-rotator p:nth-child(8) {
  animation-delay: 42s;
}

.quote-rotator p:nth-child(9) {
  animation-delay: 48s;
}

.quote-rotator p:nth-child(10) {
  animation-delay: 54s;
}

@keyframes quoteFade {
  0%,
  2% {
    opacity: 0;
    transform: translateY(16px);
  }

  3%,
  6% {
    opacity: 1;
    transform: translateY(0);
  }

  8%,
  100% {
    opacity: 0;
    transform: translateY(-14px);
  }
}

.profile-band,
.focus-section,
.imprint-section,
.footer {
  width: min(100%, 1480px);
  margin-inline: auto;
  padding-inline: clamp(18px, 5vw, 64px);
}

.profile-band {
  padding-top: clamp(56px, 7vw, 92px);
  padding-bottom: clamp(64px, 8vw, 96px);
  border-top: 1px solid rgba(248, 247, 239, 0.12);
  border-bottom: 1px solid rgba(248, 247, 239, 0.12);
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.025);
}

.profile-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(460px, 1.42fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  margin-top: 26px;
}

.profile-intro h2,
.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2.35rem, 5vw, 5.4rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.profile-intro {
  display: grid;
  gap: 20px;
  align-content: start;
  justify-self: end;
  justify-items: center;
  width: min(100%, 360px);
  padding: 18px;
  border: 1px solid rgba(248, 247, 239, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.profile-photo {
  display: grid;
  aspect-ratio: 1;
  width: min(100%, 240px);
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(255, 237, 0, 0.34);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 237, 0, 0.12), transparent 38%),
    linear-gradient(315deg, rgba(229, 0, 126, 0.14), transparent 36%),
    #050505;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
}

.profile-photo img {
  display: block;
  width: 90%;
  height: 90%;
  border-radius: inherit;
  object-fit: contain;
  object-position: center;
}

.profile-bio {
  margin: 0;
  color: rgba(248, 247, 239, 0.76);
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.profile-bio a {
  color: #ffed00;
  border-bottom: 1px solid rgba(255, 237, 0, 0.34);
  transition:
    color 180ms ease,
    border-color 180ms ease;
}

.profile-bio a:hover {
  color: #fff36f;
  border-bottom-color: #fff36f;
}

.game-stats {
  display: grid;
  gap: 0;
  align-self: stretch;
  padding: clamp(18px, 2.4vw, 28px);
  border: 1px solid rgba(255, 237, 0, 0.3);
  background:
    linear-gradient(90deg, rgba(255, 237, 0, 0.08), transparent 36%),
    rgba(255, 255, 255, 0.035);
  box-shadow:
    inset 0 0 0 1px rgba(248, 247, 239, 0.04),
    0 24px 80px rgba(0, 0, 0, 0.28);
  font-family: "Cascadia Mono", "Consolas", ui-monospace, monospace;
}

.stat-line {
  display: grid;
  grid-template-columns: minmax(132px, 0.38fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  min-height: 52px;
  border-bottom: 1px solid rgba(248, 247, 239, 0.12);
}

.stat-line:last-child {
  border-bottom: 0;
}

.stat-line span {
  color: rgba(248, 247, 239, 0.48);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.stat-line strong {
  color: rgba(248, 247, 239, 0.92);
  font-size: clamp(0.92rem, 1.2vw, 1.08rem);
  line-height: 1.35;
}

.party-logo {
  display: block;
  width: min(92px, 100%);
  max-height: 36px;
  object-fit: contain;
  object-position: left center;
}

.party-logo-link {
  display: inline-flex;
  width: fit-content;
  border-bottom: 0;
}

.party-logo-link:hover .party-logo {
  filter: drop-shadow(0 0 12px rgba(255, 237, 0, 0.32));
}

.stat-stack {
  align-items: start;
  padding-block: 14px 4px;
}

.stat-stack ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  color: rgba(248, 247, 239, 0.78);
  list-style: none;
}

.stat-stack li::before {
  margin-right: 8px;
  color: #ffed00;
  content: ">";
}

.stat-stack a {
  color: inherit;
  border-bottom: 1px solid rgba(255, 237, 0, 0.28);
}

.stat-stack a:hover {
  color: #ffed00;
  border-bottom-color: #ffed00;
}

.interest-list li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.interest-list li::before {
  display: none;
}

.interest-list span {
  width: 1.35em;
  flex: 0 0 1.35em;
  text-align: center;
}

.focus-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 100px);
  padding-top: 96px;
  padding-bottom: 48px;
}

.topic-list {
  display: grid;
  min-width: 0;
  gap: 12px;
  align-content: start;
}

.topic-item {
  border-bottom: 1px solid rgba(248, 247, 239, 0.14);
}

.topic-item-featured {
  position: relative;
  border-bottom-color: rgba(255, 237, 0, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 237, 0, 0.08), rgba(255, 237, 0, 0.015)),
    rgba(8, 8, 8, 0.18);
}

.topic-item-featured summary {
  color: rgba(255, 237, 0, 0.92);
}

.topic-item-featured::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 237, 0, 0.72), rgba(255, 237, 0, 0));
  content: "";
}

.topic-item summary {
  display: flex;
  min-height: 78px;
  cursor: pointer;
  list-style: none;
  align-items: center;
  color: rgba(248, 247, 239, 0.88);
  font-size: clamp(1.35rem, 2.8vw, 2.75rem);
  font-weight: 800;
  text-transform: uppercase;
}

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

.topic-item summary::after {
  margin-left: auto;
  color: #ffed00;
  content: "+";
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1;
}

.topic-item[open] summary::after {
  content: "-";
}

.topic-item p {
  max-width: 720px;
  margin: -2px 0 24px;
  color: rgba(248, 247, 239, 0.68);
  font-size: 1.02rem;
  line-height: 1.75;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.topic-link {
  display: inline-flex;
  max-width: 720px;
  margin: 0 0 28px;
  color: #ffed00;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.45;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  border-bottom: 1px solid rgba(255, 237, 0, 0.36);
}

.topic-link:hover {
  border-bottom-color: #ffed00;
}

.imprint-section,
.legal-page {
  padding-top: 56px;
  padding-bottom: 64px;
  border-top: 1px solid rgba(248, 247, 239, 0.12);
}

.imprint-section p,
.legal-page p {
  margin: 14px 0 0;
  color: rgba(248, 247, 239, 0.62);
  font-size: 1rem;
  line-height: 1.7;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.legal-page {
  width: min(100%, 980px);
  margin-inline: auto;
  padding: clamp(48px, 7vw, 82px) clamp(18px, 5vw, 64px) 72px;
  border-top: 0;
}

.legal-page h1 {
  max-width: none;
  margin-bottom: 28px;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
}

.legal-page h2 {
  margin: 42px 0 10px;
  color: #ffed00;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.2;
  text-transform: uppercase;
}

.legal-page h3 {
  margin: 30px 0 8px;
  color: rgba(248, 247, 239, 0.9);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.3;
  text-transform: uppercase;
}

.legal-page address {
  color: rgba(248, 247, 239, 0.78);
  font-style: normal;
  line-height: 1.75;
}

.legal-list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: rgba(248, 247, 239, 0.68);
  line-height: 1.7;
}

.legal-page a {
  color: #ffed00;
  border-bottom: 1px solid rgba(255, 237, 0, 0.34);
}

.election-shell {
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.38), rgba(8, 8, 8, 0.95)),
    radial-gradient(circle at 82% 14%, rgba(255, 237, 0, 0.18), transparent 30rem),
    radial-gradient(circle at 18% 86%, rgba(230, 0, 126, 0.14), transparent 28rem),
    #080808;
}

.election-shell .topbar {
  padding-top: 15px;
  padding-bottom: 15px;
}

.election-hero,
.election-message {
  width: min(100%, 1480px);
  margin-inline: auto;
  padding-inline: clamp(18px, 5vw, 64px);
}

.election-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  min-height: auto;
  padding-top: clamp(8px, 1.6vw, 18px);
  padding-bottom: clamp(46px, 7vw, 86px);
}

.election-hero h1 {
  max-width: 980px;
  margin: 14px 0 24px;
  font-size: clamp(3rem, 7.4vw, 7.8rem);
}

.election-hero h1 span {
  display: block;
  margin-bottom: clamp(8px, 1vw, 14px);
  color: #ffed00;
  font-size: clamp(1.25rem, 2.5vw, 2.25rem);
  line-height: 1;
}

.election-lead {
  max-width: 780px;
  margin: 0;
  color: rgba(248, 247, 239, 0.82);
  font-size: clamp(1.06rem, 1.7vw, 1.48rem);
  font-weight: 650;
  line-height: 1.5;
}

.election-program-link {
  position: relative;
  display: inline-grid;
  gap: 6px;
  width: 100%;
  margin-top: 0;
  padding: 15px 46px 15px 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 237, 0, 0.26);
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(255, 237, 0, 0.28) 0 2px, transparent 2px),
    radial-gradient(circle at 12% 0%, rgba(255, 237, 0, 0.14), transparent 48%),
    linear-gradient(145deg, rgba(248, 247, 239, 0.065), rgba(229, 0, 126, 0.035)),
    rgba(8, 8, 8, 0.5);
  box-shadow:
    inset 0 0 0 1px rgba(248, 247, 239, 0.04),
    0 18px 44px rgba(0, 0, 0, 0.24);
  text-decoration: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.election-program-link::after {
  position: absolute;
  top: 50%;
  right: 16px;
  color: #ffed00;
  content: "↗";
  font-size: 1.2rem;
  font-weight: 900;
  transform: translateY(-50%);
}

.election-program-link:hover,
.election-program-link:focus-visible {
  border-color: rgba(255, 237, 0, 0.5);
  box-shadow:
    inset 0 0 0 1px rgba(255, 237, 0, 0.08),
    0 22px 54px rgba(0, 0, 0, 0.34),
    0 0 28px rgba(255, 237, 0, 0.12);
  outline: none;
  transform: translateY(-1px);
}

.election-program-link.is-active {
  border-color: rgba(77, 255, 167, 0.68);
  background:
    linear-gradient(90deg, rgba(77, 255, 167, 0.34) 0 2px, transparent 2px),
    radial-gradient(circle at 12% 0%, rgba(77, 255, 167, 0.16), transparent 48%),
    linear-gradient(145deg, rgba(248, 247, 239, 0.065), rgba(77, 255, 167, 0.04)),
    rgba(8, 8, 8, 0.5);
  box-shadow:
    inset 0 0 0 1px rgba(77, 255, 167, 0.12),
    0 22px 54px rgba(0, 0, 0, 0.34),
    0 0 30px rgba(77, 255, 167, 0.16);
}

.election-program-link.is-active::after,
.election-program-link.is-active .election-program-link__meta,
.election-program-link.is-active .election-program-link__hint {
  color: #7dffbf;
}

.election-program-link__meta,
.election-program-link__hint {
  color: rgba(255, 237, 0, 0.78);
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.election-program-link strong {
  color: #f8f7ef;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  font-weight: 950;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-transform: uppercase;
}

.election-program-link__hint {
  color: rgba(248, 247, 239, 0.62);
  letter-spacing: 0.08em;
}

.election-goals {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin-top: clamp(24px, 3.6vw, 42px);
}

.election-goals__header {
  display: block;
  padding: 0 0 10px clamp(10px, 1.3vw, 18px);
  border-bottom: 1px solid rgba(255, 237, 0, 0.22);
}

.election-goals h2,
.election-goal-dialog h2 {
  margin: 0;
  color: rgba(248, 247, 239, 0.92);
  font-size: clamp(1rem, 1.8vw, 1.42rem);
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.election-goals__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 12px;
}

.election-goal-column {
  position: relative;
  display: grid;
  align-content: start;
  grid-template-rows: 72px;
  grid-auto-rows: minmax(44px, auto);
  gap: 9px;
  min-height: 292px;
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 237, 0, 0.22);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(255, 237, 0, 0.28) 0 2px, transparent 2px),
    radial-gradient(circle at 18% 0%, rgba(255, 237, 0, 0.13), transparent 46%),
    linear-gradient(145deg, rgba(248, 247, 239, 0.065), rgba(229, 0, 126, 0.03)),
    rgba(8, 8, 8, 0.46);
  box-shadow:
    inset 0 0 0 1px rgba(248, 247, 239, 0.04),
    0 18px 42px rgba(0, 0, 0, 0.24);
}

.election-goal-column::after {
  position: absolute;
  right: 12px;
  bottom: 10px;
  width: 34px;
  height: 10px;
  background:
    linear-gradient(90deg, rgba(255, 237, 0, 0.72) 0 8px, transparent 8px 13px, rgba(255, 237, 0, 0.34) 13px 100%);
  clip-path: polygon(0 0, 100% 0, 82% 100%, 0 100%);
  content: "";
  opacity: 0;
  pointer-events: none;
}

.election-goal-column__head {
  display: grid;
  gap: 7px;
  align-content: start;
  margin-bottom: 4px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(248, 247, 239, 0.12);
}

.election-goal-column__head span {
  color: rgba(255, 237, 0, 0.78);
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.election-goal-column h3 {
  margin: 0;
  color: #f8f7ef;
  font-size: clamp(0.9rem, 1.3vw, 1.08rem);
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.18;
  text-transform: uppercase;
}

.election-goal-chip {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 44px;
  width: 100%;
  padding: 10px 28px 10px 11px;
  border: 1px solid rgba(248, 247, 239, 0.12);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(255, 237, 0, 0.12), transparent 52%),
    rgba(248, 247, 239, 0.045);
  color: rgba(248, 247, 239, 0.82);
  cursor: pointer;
  font: inherit;
  font-size: clamp(0.78rem, 0.92vw, 0.9rem);
  font-weight: 850;
  letter-spacing: 0.02em;
  line-height: 1.22;
  text-align: left;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.election-goal-chip::after {
  position: absolute;
  right: 11px;
  color: #ffed00;
  content: "›";
  font-size: 1.1rem;
  line-height: 1;
  opacity: 0.74;
}

.election-goal-chip:hover,
.election-goal-chip:focus-visible {
  border-color: rgba(255, 237, 0, 0.42);
  box-shadow:
    inset 0 0 0 1px rgba(255, 237, 0, 0.08),
    0 0 22px rgba(255, 237, 0, 0.12);
  color: #f8f7ef;
  outline: none;
  transform: translateY(-1px);
}

.election-goal-chip.is-active {
  border-color: rgba(77, 255, 167, 0.68);
  background:
    linear-gradient(90deg, rgba(77, 255, 167, 0.22), transparent 56%),
    rgba(77, 255, 167, 0.065);
  box-shadow:
    inset 0 0 0 1px rgba(77, 255, 167, 0.12),
    0 0 24px rgba(77, 255, 167, 0.16);
  color: #f8f7ef;
  transform: translateY(-1px);
}

.election-goal-chip.is-active::after {
  color: #7dffbf;
  opacity: 1;
}

.election-goal-dialog {
  width: min(560px, calc(100vw - 36px));
  padding: 0;
  border: 1px solid rgba(255, 237, 0, 0.34);
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 237, 0, 0.18), transparent 44%),
    linear-gradient(145deg, rgba(248, 247, 239, 0.08), rgba(229, 0, 126, 0.05)),
    rgba(8, 8, 8, 0.88);
  box-shadow:
    inset 0 0 0 1px rgba(248, 247, 239, 0.06),
    0 34px 100px rgba(0, 0, 0, 0.72),
    0 0 46px rgba(255, 237, 0, 0.14);
  color: #f8f7ef;
}

.election-goal-dialog.is-active {
  border-color: rgba(77, 255, 167, 0.5);
  background:
    radial-gradient(circle at 18% 0%, rgba(77, 255, 167, 0.16), transparent 44%),
    linear-gradient(145deg, rgba(248, 247, 239, 0.08), rgba(77, 255, 167, 0.045)),
    rgba(8, 8, 8, 0.88);
  box-shadow:
    inset 0 0 0 1px rgba(77, 255, 167, 0.1),
    0 34px 100px rgba(0, 0, 0, 0.72),
    0 0 46px rgba(77, 255, 167, 0.15);
}

.election-goal-dialog::backdrop {
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 237, 0, 0.14), transparent 34rem),
    rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(8px);
}

.election-goal-dialog.is-active::backdrop {
  background:
    radial-gradient(circle at 50% 35%, rgba(77, 255, 167, 0.12), transparent 34rem),
    rgba(0, 0, 0, 0.68);
}

.election-goal-dialog__panel {
  position: relative;
  display: grid;
  gap: 15px;
  padding: clamp(22px, 4vw, 34px);
  overflow: hidden;
}

.election-goal-dialog__panel::after {
  position: absolute;
  right: 18px;
  bottom: 16px;
  width: 58px;
  height: 14px;
  background:
    linear-gradient(90deg, rgba(255, 237, 0, 0.72) 0 12px, transparent 12px 20px, rgba(255, 237, 0, 0.34) 20px 100%);
  clip-path: polygon(0 0, 100% 0, 84% 100%, 0 100%);
  content: "";
  opacity: 0.46;
}

.election-goal-dialog__phase {
  width: fit-content;
  padding: 6px 9px;
  border: 1px solid rgba(255, 237, 0, 0.24);
  border-radius: 999px;
  color: #ffed00;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.election-goal-dialog.is-active .election-goal-dialog__phase {
  border-color: rgba(77, 255, 167, 0.3);
  color: #7dffbf;
}

.election-goal-dialog.is-active .election-goal-dialog__panel::after {
  background:
    linear-gradient(90deg, rgba(77, 255, 167, 0.76) 0 12px, transparent 12px 20px, rgba(77, 255, 167, 0.36) 20px 100%);
}

.election-goal-dialog__text {
  display: grid;
  gap: 12px;
}

.election-goal-dialog__text p {
  max-width: 46rem;
  margin: 0;
  color: rgba(248, 247, 239, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  font-weight: 650;
  line-height: 1.62;
}

.election-goal-dialog__text a {
  color: #ffed00;
  border-bottom: 1px solid rgba(255, 237, 0, 0.42);
  text-decoration: none;
}

.election-goal-dialog__text a:hover,
.election-goal-dialog__text a:focus-visible {
  border-bottom-color: #ffed00;
  outline: none;
}

.election-goal-dialog__link {
  width: fit-content;
  margin-top: 4px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 237, 0, 0.28);
  border-radius: 999px;
  background: rgba(255, 237, 0, 0.08);
  color: #ffed00;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.election-goal-dialog__link:hover,
.election-goal-dialog__link:focus-visible {
  border-color: rgba(255, 237, 0, 0.52);
  box-shadow: 0 0 22px rgba(255, 237, 0, 0.14);
  outline: none;
}

.election-goal-dialog__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 237, 0, 0.2);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.52);
  color: rgba(248, 247, 239, 0.84);
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
}

.election-goal-dialog__close:hover,
.election-goal-dialog__close:focus-visible {
  border-color: rgba(255, 237, 0, 0.48);
  color: #ffed00;
  outline: none;
}

.election-goal-dialog.is-active .election-goal-dialog__close:hover,
.election-goal-dialog.is-active .election-goal-dialog__close:focus-visible {
  border-color: rgba(77, 255, 167, 0.48);
  color: #7dffbf;
}

.election-hero__visual {
  display: grid;
  gap: 16px;
  align-self: start;
}

.election-portrait {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 237, 0, 0.32);
  background:
    linear-gradient(135deg, rgba(255, 237, 0, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.035);
  box-shadow:
    inset 0 0 0 1px rgba(248, 247, 239, 0.04),
    0 26px 80px rgba(0, 0, 0, 0.34);
}

.election-portrait::after {
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0), rgba(8, 8, 8, 0.34));
  content: "";
  pointer-events: none;
}

.election-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.election-facts {
  display: grid;
  gap: 0;
  align-self: start;
  border-top: 1px solid rgba(255, 237, 0, 0.42);
  border-bottom: 1px solid rgba(248, 247, 239, 0.16);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 0 0 1px rgba(248, 247, 239, 0.04);
}

.election-facts div {
  display: grid;
  gap: 7px;
  padding: 16px clamp(16px, 2.2vw, 22px);
  border-bottom: 1px solid rgba(248, 247, 239, 0.12);
}

.election-facts div:last-child {
  border-bottom: 0;
}

.election-facts span {
  color: #ffed00;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.election-facts strong {
  color: rgba(248, 247, 239, 0.92);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.35;
  text-transform: uppercase;
}

.election-party a {
  display: inline-flex;
  width: fit-content;
  border-bottom: 0;
}

.election-party img {
  display: block;
  width: min(170px, 100%);
  max-height: 74px;
  object-fit: contain;
  object-position: left center;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.election-party a:hover img {
  filter: drop-shadow(0 0 14px rgba(255, 237, 0, 0.28));
}

.contact-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
  gap: clamp(30px, 6vw, 88px);
  align-items: center;
  width: min(100%, 1480px);
  min-height: calc(100svh - 92px);
  margin-inline: auto;
  padding: clamp(54px, 8vw, 118px) clamp(18px, 5vw, 64px);
}

.contact-page__copy {
  max-width: 850px;
}

.contact-page h1 {
  max-width: 820px;
  margin: 14px 0 24px;
  color: #f8f7ef;
  font-size: clamp(3rem, 7vw, 7.2rem);
  font-weight: 950;
  letter-spacing: -0.08em;
  line-height: 0.9;
  text-transform: uppercase;
}

.contact-page__copy p:not(.section-label) {
  max-width: 760px;
  margin: 0;
  color: rgba(248, 247, 239, 0.78);
  font-size: clamp(1.08rem, 1.55vw, 1.38rem);
  font-weight: 650;
  line-height: 1.58;
}

.contact-card {
  position: relative;
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 32px);
  overflow: hidden;
  border: 1px solid rgba(255, 237, 0, 0.28);
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(255, 237, 0, 0.32) 0 2px, transparent 2px),
    radial-gradient(circle at 18% 0%, rgba(255, 237, 0, 0.16), transparent 46%),
    linear-gradient(145deg, rgba(248, 247, 239, 0.075), rgba(229, 0, 126, 0.045)),
    rgba(8, 8, 8, 0.58);
  box-shadow:
    inset 0 0 0 1px rgba(248, 247, 239, 0.05),
    0 28px 82px rgba(0, 0, 0, 0.38),
    0 0 38px rgba(255, 237, 0, 0.08);
}

.contact-card::after {
  position: absolute;
  right: 20px;
  bottom: 18px;
  width: 64px;
  height: 14px;
  background:
    linear-gradient(90deg, rgba(255, 237, 0, 0.72) 0 13px, transparent 13px 22px, rgba(255, 237, 0, 0.32) 22px 100%);
  clip-path: polygon(0 0, 100% 0, 84% 100%, 0 100%);
  content: "";
  opacity: 0.48;
}

.contact-card__label {
  color: rgba(255, 237, 0, 0.84);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.contact-card__mailbox {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  min-width: 0;
  overflow: hidden;
  padding: 8px;
  border: 1px solid rgba(255, 237, 0, 0.26);
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(255, 237, 0, 0.24) 0 2px, transparent 2px),
    radial-gradient(circle at 0% 50%, rgba(255, 237, 0, 0.11), transparent 48%),
    rgba(8, 8, 8, 0.42);
  box-shadow:
    inset 0 0 0 1px rgba(248, 247, 239, 0.04),
    0 14px 34px rgba(0, 0, 0, 0.22);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.contact-card__mailbox.is-copied {
  border-color: rgba(77, 255, 167, 0.72);
  background:
    linear-gradient(90deg, rgba(77, 255, 167, 0.42) 0 2px, transparent 2px),
    radial-gradient(circle at 0% 50%, rgba(77, 255, 167, 0.18), transparent 48%),
    rgba(6, 28, 18, 0.5);
  box-shadow:
    inset 0 0 0 1px rgba(77, 255, 167, 0.14),
    0 14px 34px rgba(0, 0, 0, 0.22),
    0 0 28px rgba(77, 255, 167, 0.18);
}

.contact-card__mail {
  display: block;
  min-width: 0;
  overflow: hidden;
  color: #f8f7ef;
  font-family: "Courier New", ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: clamp(0.58rem, 2.6vw, 0.98rem);
  font-weight: 950;
  line-height: 1.25;
  text-overflow: ellipsis;
  text-decoration: none;
  white-space: nowrap;
}

.contact-card__mail:hover,
.contact-card__mail:focus-visible {
  color: #ffed00;
  outline: none;
}

.contact-card__copy {
  padding: 8px 10px;
  border: 1px solid rgba(255, 237, 0, 0.32);
  border-radius: 999px;
  background: rgba(255, 237, 0, 0.1);
  color: #ffed00;
  cursor: pointer;
  font: inherit;
  font-size: 0.64rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.contact-card__copy:hover,
.contact-card__copy:focus-visible,
.contact-card__copy.is-copied {
  border-color: rgba(255, 237, 0, 0.62);
  background: rgba(255, 237, 0, 0.18);
  box-shadow: 0 0 22px rgba(255, 237, 0, 0.16);
  color: #fff36f;
  outline: none;
  transform: translateY(-1px);
}

.contact-card__copy.is-copied {
  border-color: rgba(77, 255, 167, 0.72);
  background: rgba(77, 255, 167, 0.16);
  box-shadow: 0 0 22px rgba(77, 255, 167, 0.2);
  color: #7dffbf;
}

.contact-card p {
  max-width: 34rem;
  margin: 0;
  color: rgba(248, 247, 239, 0.7);
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.62;
}

.election-message {
  display: grid;
  gap: 30px;
  padding-top: clamp(34px, 6vw, 76px);
  padding-bottom: clamp(70px, 10vw, 118px);
  border-top: 1px solid rgba(248, 247, 239, 0.12);
}

.election-message article {
  display: grid;
  max-width: 900px;
  gap: 24px;
}

.election-message p {
  margin: 0;
  color: rgba(248, 247, 239, 0.74);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.78;
}

.election-message p a {
  color: #ffed00;
  border-bottom: 1px solid rgba(255, 237, 0, 0.34);
}

.election-message p a:hover {
  border-bottom-color: #ffed00;
}

.not-found-shell {
  min-height: 100svh;
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 237, 0, 0.16), transparent 24rem),
    radial-gradient(circle at 20% 88%, rgba(230, 0, 126, 0.13), transparent 22rem),
    #080808;
}

.not-found-page {
  display: grid;
  min-height: 100svh;
  align-content: center;
  padding-top: clamp(120px, 16vw, 180px);
}

.not-found-page h1 {
  max-width: 920px;
  margin: 14px 0 0;
  font-size: clamp(2.8rem, 8vw, 7rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.not-found-page p:not(.section-label) {
  max-width: 620px;
  margin-top: 24px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  padding-bottom: 30px;
  border-top: 1px solid rgba(248, 247, 239, 0.14);
  color: rgba(248, 247, 239, 0.68);
  font-size: 0.86rem;
  font-weight: 750;
  text-transform: uppercase;
}

.footer p {
  margin: 0;
}

.footer-brand {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}

.footer-social-links .social-link {
  width: 24px;
  height: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 20px;
}

.footer-links a {
  border-bottom: 1px solid rgba(255, 237, 0, 0.18);
  transition:
    color 180ms ease,
    border-color 180ms ease;
}

.footer-links a:hover {
  color: #ffed00;
  border-bottom-color: #ffed00;
}

.achievement-toast {
  position: fixed;
  right: clamp(14px, 3vw, 34px);
  bottom: clamp(14px, 3vw, 34px);
  z-index: 50;
  width: min(390px, calc(100vw - 28px));
  padding: 18px 20px 18px 22px;
  border: 1px solid rgba(255, 237, 0, 0.34);
  border-left: 5px solid #ffed00;
  background:
    linear-gradient(135deg, rgba(255, 237, 0, 0.13), rgba(230, 0, 126, 0.07)),
    rgba(8, 8, 8, 0.92);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.44);
  color: #f8f7ef;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.98);
  transition:
    opacity 240ms ease,
    transform 240ms ease;
}

.achievement-toast.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.achievement-toast__kicker {
  margin: 0 0 6px;
  color: #ffed00;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.achievement-toast__title {
  display: block;
  font-size: 1rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.achievement-toast__message {
  margin: 8px 0 0;
  color: rgba(248, 247, 239, 0.76);
  font-size: 0.94rem;
  line-height: 1.45;
}

.music-toggle {
  position: fixed;
  left: clamp(14px, 3vw, 34px);
  bottom: clamp(14px, 3vw, 34px);
  z-index: 49;
  display: inline-grid;
  grid-template-columns: 22px auto;
  grid-template-rows: auto auto;
  column-gap: 9px;
  align-items: center;
  min-width: 92px;
  min-height: 44px;
  padding: 8px 13px 8px 12px;
  border: 1px solid rgba(255, 237, 0, 0.28);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 237, 0, 0.12), rgba(230, 0, 126, 0.06)),
    rgba(8, 8, 8, 0.72);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.28);
  color: #ffed00;
  cursor: pointer;
  opacity: 0.76;
  text-align: left;
  touch-action: none;
  user-select: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.music-toggle:hover,
.music-toggle:focus-visible,
.music-toggle.is-playing {
  border-color: rgba(255, 237, 0, 0.58);
  background:
    linear-gradient(135deg, rgba(255, 237, 0, 0.18), rgba(230, 0, 126, 0.08)),
    rgba(8, 8, 8, 0.86);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.36), 0 0 18px rgba(255, 237, 0, 0.12);
  opacity: 1;
  transform: translateY(-1px);
}

.music-toggle.is-dragging {
  cursor: grabbing;
  opacity: 1;
  transition: none;
}

.music-toggle.has-error {
  border-color: rgba(230, 0, 126, 0.5);
  color: #f8f7ef;
  opacity: 1;
}

.music-toggle:focus-visible {
  outline: 2px solid rgba(255, 237, 0, 0.7);
  outline-offset: 3px;
}

.music-toggle__icon {
  grid-row: 1 / 3;
  justify-self: center;
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid currentColor;
}

.music-toggle.is-playing .music-toggle__icon {
  width: 12px;
  height: 14px;
  margin-left: 0;
  border: 0;
  background: linear-gradient(90deg, currentColor 0 4px, transparent 4px 8px, currentColor 8px 12px);
}

.music-toggle__text,
.music-toggle__state {
  display: block;
  line-height: 1;
  white-space: nowrap;
}

.music-toggle__text {
  color: rgba(248, 247, 239, 0.9);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.music-toggle__state {
  margin-top: 3px;
  color: rgba(248, 247, 239, 0.58);
  font-size: 0.68rem;
  font-weight: 800;
}

.music-toggle.is-playing .music-toggle__state {
  color: #ffed00;
}

.music-toggle.has-error .music-toggle__state {
  color: #e5007e;
}

@media (prefers-reduced-motion: reduce) {
  .achievement-toast,
  .music-toggle,
  .nextgen-compass,
  .nextgen-compass__stage,
  .nextgen-compass__explain {
    transition: none;
  }
}

@media (max-width: 900px) {
  .topbar {
    padding-inline: 18px;
  }

  .nav-links {
    display: none;
  }

  .hero-section,
  .profile-grid,
  .focus-section,
  .election-hero,
  .contact-page,
  .imprint-section {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: 100svh;
    padding-top: 0;
  }

  .hero-visual {
    min-height: 100svh;
  }

  .quote-rotator {
    top: 50%;
    left: 50%;
    width: min(720px, calc(100% - 28px));
  }

  .nextgen-compass {
    right: 18px;
    bottom: clamp(22px, 4vh, 46px);
    width: min(244px, calc(100vw - 36px));
    padding: 11px;
  }

  .nextgen-compass.is-in-focus {
    right: 18px;
    bottom: clamp(22px, 4vh, 46px);
    width: min(244px, calc(100vw - 36px));
  }

  .nextgen-compass__explain {
    min-height: 122px;
    margin-top: 7px;
  }

  .game-stats {
    max-width: 760px;
  }

  .election-hero__visual {
    width: min(100%, 620px);
  }

  .contact-page {
    min-height: auto;
  }

  .profile-intro {
    grid-template-columns: minmax(120px, 180px) minmax(0, 1fr);
    justify-items: start;
    justify-self: auto;
    width: auto;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .profile-bio {
    grid-column: 1 / -1;
    max-width: 620px;
  }
}

@media (max-width: 560px) {
  .hero-section {
    padding-inline: 0;
  }

  .hero-visual::before {
    background:
      linear-gradient(180deg, rgba(8, 8, 8, 0.62), rgba(8, 8, 8, 0.08) 36%, rgba(8, 8, 8, 0.66)),
      radial-gradient(circle at 72% 72%, rgba(255, 237, 0, 0.14), transparent 18rem);
  }

  .hero-visual::after {
    height: 12vh;
  }

  .profile-band {
    padding-top: 32px;
  }

  .contact-page {
    padding-top: 42px;
  }

  .contact-page h1 {
    letter-spacing: -0.06em;
  }

  .footer {
    flex-direction: column;
    align-items: stretch;
  }

  .quote-rotator {
    width: calc(100% - 24px);
    min-height: clamp(178px, 34svh, 260px);
  }

  .quote-rotator p {
    inset: 18px 12px;
    font-size: clamp(1.42rem, 8.2vw, 2.45rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .nextgen-compass {
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    gap: 6px;
    width: min(184px, calc(100vw - 20px));
    padding: 8px;
    border-radius: 14px;
  }

  .nextgen-compass.is-in-focus {
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    width: min(184px, calc(100vw - 20px));
  }

  .nextgen-compass__title {
    font-size: 0.56rem;
    letter-spacing: 0.16em;
  }

  .nextgen-compass__stage {
    transform: none;
  }

  .nextgen-compass.is-in-focus .nextgen-compass__stage,
  .nextgen-compass:focus-within .nextgen-compass__stage {
    transform: none;
  }

  .nextgen-compass__hint {
    display: none;
  }

  .nextgen-compass__explain {
    width: 100%;
    min-height: 104px;
    padding: 8px 9px;
    border-radius: 10px;
  }

  .nextgen-compass__explain strong {
    margin-bottom: 5px;
    font-size: 0.57rem;
    letter-spacing: 0.11em;
  }

  .nextgen-compass__explain span {
    font-size: 0.64rem;
    line-height: 1.28;
  }

  .brand {
    font-size: 0.74rem;
  }

  .election-link {
    min-height: 30px;
    padding-inline: 8px;
    font-size: 0.66rem;
  }

  .election-portrait {
    aspect-ratio: 4 / 5;
  }

  .channel-link {
    max-width: 42px;
    padding: 6px;
    overflow: hidden;
  }

  .channel-link span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .social-links {
    gap: 6px;
  }

  .social-link {
    width: 23px;
    height: 23px;
  }

  .topic-item summary {
    min-height: 68px;
  }

  .topic-item p {
    margin-left: 0;
    max-width: none;
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .topic-link {
    max-width: none;
    font-size: 0.84rem;
  }

  .stat-line {
    grid-template-columns: 1fr;
    gap: 4px;
    padding-block: 10px;
  }

  .profile-intro {
    grid-template-columns: 1fr;
  }

  .profile-photo {
    width: min(100%, 170px);
  }

  .profile-bio {
    font-size: 0.94rem;
    line-height: 1.62;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 390px) {
  .nextgen-compass {
    width: min(168px, calc(100vw - 18px));
    padding: 7px;
  }

  .nextgen-compass.is-in-focus {
    width: min(168px, calc(100vw - 18px));
  }

  .nextgen-compass__explain {
    min-height: 96px;
  }

  .nextgen-compass__explain span {
    font-size: 0.6rem;
  }
}

/* NEXTGEN compass launcher override */
.nextgen-compass {
  position: absolute;
  right: max(18px, calc((100vw - 1480px) / 2 + 52px));
  bottom: clamp(38px, 6vh, 82px);
  z-index: 8;
  display: block;
  width: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.nextgen-compass__launcher {
  display: grid;
  grid-template-columns: auto auto;
  gap: 3px 10px;
  align-items: center;
  min-width: 168px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 237, 0, 0.22);
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(255, 237, 0, 0.22) 0 2px, transparent 2px calc(100% - 2px), rgba(255, 237, 0, 0.22) calc(100% - 2px)),
    linear-gradient(135deg, rgba(248, 247, 239, 0.07), rgba(255, 237, 0, 0.035)),
    rgba(8, 8, 8, 0.44);
  box-shadow:
    inset 0 0 0 1px rgba(248, 247, 239, 0.04),
    0 18px 48px rgba(0, 0, 0, 0.34),
    0 0 22px rgba(255, 237, 0, 0.055);
  color: rgba(248, 247, 239, 0.9);
  cursor: pointer;
  transition:
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
  backdrop-filter: blur(12px);
}

.nextgen-compass__launcher:hover,
.nextgen-compass__launcher:focus-visible,
.nextgen-compass.is-open .nextgen-compass__launcher {
  border-color: rgba(255, 237, 0, 0.42);
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 237, 0, 0.15), transparent 48%),
    linear-gradient(135deg, rgba(248, 247, 239, 0.09), rgba(229, 0, 126, 0.045)),
    rgba(8, 8, 8, 0.5);
  box-shadow:
    inset 0 0 0 1px rgba(248, 247, 239, 0.06),
    0 22px 58px rgba(0, 0, 0, 0.44),
    0 0 34px rgba(255, 237, 0, 0.12);
  transform: translateY(-1px);
}

.nextgen-compass__launcher:focus-visible,
.nextgen-compass__close:focus-visible,
.nextgen-zone:focus-visible {
  outline: 2px solid #ffed00;
  outline-offset: 4px;
}

.nextgen-compass__launcher-kicker,
.nextgen-compass__eyebrow {
  color: rgba(255, 237, 0, 0.92);
  font-size: 0.58rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.nextgen-compass__launcher-title {
  grid-column: 1;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.nextgen-compass__launcher-action {
  grid-column: 2;
  grid-row: 1 / span 2;
  padding: 4px 7px;
  border: 1px solid rgba(255, 237, 0, 0.18);
  border-radius: 999px;
  color: rgba(248, 247, 239, 0.74);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nextgen-compass__dialog {
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  z-index: 10;
  display: grid;
  gap: 9px;
  width: min(314px, calc(100vw - 36px));
  padding: 12px;
  border: 1px solid rgba(255, 237, 0, 0.28);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 237, 0, 0.13), transparent 54%),
    linear-gradient(145deg, rgba(248, 247, 239, 0.075), rgba(229, 0, 126, 0.045)),
    rgba(8, 8, 8, 0.64);
  box-shadow:
    inset 0 0 0 1px rgba(248, 247, 239, 0.06),
    0 30px 86px rgba(0, 0, 0, 0.52),
    0 0 42px rgba(255, 237, 0, 0.12);
  backdrop-filter: blur(16px);
}

.nextgen-compass__dialog[hidden] {
  display: none;
}

.nextgen-compass__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.nextgen-compass__title {
  color: rgba(248, 247, 239, 0.92);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-transform: uppercase;
}

.nextgen-compass__title::after {
  display: none;
}

.nextgen-compass__close {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 237, 0, 0.18);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.44);
  color: rgba(248, 247, 239, 0.86);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
}

.nextgen-compass__close:hover {
  border-color: rgba(255, 237, 0, 0.38);
  color: #ffed00;
}

.nextgen-compass__dialog:focus-within .nextgen-compass__stage {
  filter:
    drop-shadow(0 20px 48px rgba(0, 0, 0, 0.64))
    drop-shadow(0 0 20px rgba(255, 237, 0, 0.15));
}

.nextgen-compass__explain {
  min-height: 126px;
  padding: 11px 12px;
}

.nextgen-compass__preload {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 900px) {
  .nextgen-compass,
  .nextgen-compass.is-in-focus {
    right: 18px;
    bottom: clamp(18px, 4vh, 42px);
    width: auto;
    padding: 0;
  }

  .nextgen-compass__dialog {
    width: min(286px, calc(100vw - 36px));
  }
}

@media (max-width: 560px) {
  .nextgen-compass,
  .nextgen-compass.is-in-focus {
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    width: auto;
    padding: 0;
  }

  .nextgen-compass__launcher {
    min-width: 144px;
    padding: 8px 10px;
    border-radius: 12px;
  }

  .nextgen-compass__launcher-kicker {
    font-size: 0.5rem;
  }

  .nextgen-compass__launcher-title {
    font-size: 0.7rem;
  }

  .nextgen-compass__launcher-action {
    padding: 3px 6px;
    font-size: 0.54rem;
  }

  .nextgen-compass__dialog {
    right: 0;
    bottom: calc(100% + 9px);
    width: min(252px, calc(100vw - 20px));
    max-height: calc(100svh - 108px);
    overflow: hidden;
    padding: 10px;
    border-radius: 15px;
  }

  .nextgen-compass__title {
    font-size: 0.68rem;
  }

  .nextgen-compass__close {
    width: 28px;
    height: 28px;
  }

  .nextgen-compass__explain {
    min-height: 96px;
    padding: 8px 9px;
  }

  .nextgen-compass__explain strong {
    margin-bottom: 5px;
    font-size: 0.57rem;
  }

  .nextgen-compass__explain span {
    font-size: 0.62rem;
    line-height: 1.27;
  }
}

@media (max-width: 390px) {
  .nextgen-compass__dialog {
    width: min(232px, calc(100vw - 18px));
  }

  .nextgen-compass__launcher {
    min-width: 132px;
  }
}

/* NEXTGEN compass launcher refinement */
.nextgen-compass__launcher {
  grid-template-columns: 11px auto auto;
  min-width: 0;
  padding: 9px 10px;
}

.nextgen-compass__launcher-marker {
  grid-column: 1;
  grid-row: 1;
  width: 8px;
  height: 8px;
  border: 1px solid rgba(255, 237, 0, 0.78);
  border-radius: 999px;
  background: rgba(255, 237, 0, 0.12);
  box-shadow: 0 0 12px rgba(255, 237, 0, 0.18);
}

.nextgen-compass.is-open .nextgen-compass__launcher-marker {
  background: #ffed00;
  box-shadow:
    0 0 0 3px rgba(255, 237, 0, 0.08),
    0 0 16px rgba(255, 237, 0, 0.38);
}

.nextgen-compass.is-open .nextgen-compass__launcher-marker {
  animation: compassMarkerPulse 1.8s ease-in-out infinite;
}

.nextgen-compass__launcher-title {
  grid-column: 2;
  grid-row: 1;
  white-space: nowrap;
}

.nextgen-compass__launcher-action {
  grid-column: 3;
  grid-row: 1;
  align-self: center;
  min-width: 62px;
  text-align: center;
}

.nextgen-compass__dialog {
  grid-template-rows: auto auto 154px;
}

.nextgen-compass__explain {
  min-height: 0;
  height: 154px;
  overflow: hidden;
}

.nextgen-compass__explain span {
  font-size: 0.74rem;
  line-height: 1.32;
}

@keyframes compassMarkerPulse {
  0%,
  100% {
    box-shadow:
      0 0 0 3px rgba(255, 237, 0, 0.08),
      0 0 16px rgba(255, 237, 0, 0.34);
  }

  50% {
    box-shadow:
      0 0 0 5px rgba(255, 237, 0, 0.04),
      0 0 22px rgba(255, 237, 0, 0.52);
  }
}

@media (max-width: 560px) {
  .nextgen-compass__launcher {
    grid-template-columns: 9px auto auto;
    min-width: 0;
    padding: 8px 9px;
  }

  .nextgen-compass__launcher-marker {
    width: 7px;
    height: 7px;
  }

  .nextgen-compass__dialog {
    grid-template-rows: auto auto 148px;
  }

  .nextgen-compass__explain {
    height: 148px;
  }

  .nextgen-compass__explain span {
    font-size: 0.58rem;
    line-height: 1.2;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nextgen-compass.is-open .nextgen-compass__launcher-marker {
    animation: none;
  }
}

/* Keep the opened compass anchored low in the hero instead of floating over the quotes. */
@media (min-width: 701px) {
  .nextgen-compass__dialog {
    right: calc(100% + 12px);
    bottom: 0;
  }
}

@media (max-width: 700px) {
  .nextgen-compass__dialog {
    right: 0;
    bottom: calc(100% + 6px);
  }
}

/* Keep the compass popover compact when it opens above the launcher. */
.nextgen-compass__dialog {
  right: 0;
  bottom: calc(100% + 10px);
  grid-template-rows: auto auto auto;
  height: auto;
  max-height: none;
  overflow: visible;
}

.nextgen-compass__stage {
  justify-self: center;
  width: min(100%, 238px);
}

.nextgen-compass__explain {
  height: auto;
  min-height: 136px;
}

@media (min-width: 701px) {
  .nextgen-compass__dialog {
    right: 0;
    bottom: calc(100% + 10px);
  }
}

@media (max-width: 560px) {
  .nextgen-compass__dialog {
    bottom: calc(100% + 8px);
    max-height: none;
    overflow: visible;
  }

  .nextgen-compass__stage {
    width: min(100%, 198px);
  }

  .nextgen-compass__explain {
    height: auto;
    min-height: 140px;
  }
}

/* Final compact popover layout: no stretched empty screen between compass and text. */
.nextgen-compass__dialog {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  width: min(294px, calc(100vw - 36px));
  height: 452px;
  box-sizing: border-box;
  overflow: hidden;
}

.nextgen-compass__stage {
  display: block;
  flex: 0 0 auto;
  align-self: center;
  width: min(212px, 100%);
  aspect-ratio: 1;
  min-height: 0;
  cursor: default;
}

.nextgen-compass__stage img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
}

.nextgen-compass__stage,
.nextgen-zone,
.nextgen-compass__launcher,
.nextgen-compass__close {
  -webkit-tap-highlight-color: transparent;
}

.nextgen-zone:focus,
.nextgen-zone:focus-visible {
  outline: none;
}

.nextgen-zone:focus-visible {
  filter: drop-shadow(0 0 6px rgba(255, 237, 0, 0.56));
}

.nextgen-compass__explain {
  flex: 1 1 auto;
  min-height: 0;
  margin-top: 0;
  overflow: hidden;
}

.nextgen-compass__explain span {
  font-size: 0.69rem;
  line-height: 1.28;
}

.nextgen-compass__stage:has(.nextgen-zone:hover) {
  filter:
    drop-shadow(0 22px 52px rgba(0, 0, 0, 0.66))
    drop-shadow(0 0 22px rgba(255, 237, 0, 0.18));
}

.nextgen-zone:hover {
  cursor: pointer;
}

@media (max-width: 560px) {
  .nextgen-compass__dialog {
    width: min(252px, calc(100vw - 20px));
    height: 344px;
    gap: 8px;
  }

  .nextgen-compass__stage {
    width: min(154px, 100%);
  }

  .nextgen-compass__explain {
    padding: 9px 10px;
  }

  .nextgen-compass__explain span {
    font-size: 0.55rem;
    line-height: 1.16;
  }
}

@media (max-width: 390px) {
  .nextgen-compass__dialog {
    height: 332px;
  }

  .nextgen-compass__stage {
    width: min(146px, 100%);
  }

  .nextgen-compass__explain span {
    font-size: 0.54rem;
  }
}

@media (max-width: 900px) {
  .election-goals__grid {
    grid-template-columns: repeat(3, minmax(210px, 1fr));
  }
}

@media (max-width: 560px) {
  .election-goals {
    margin-top: 26px;
  }

  .election-goals__grid {
    grid-auto-columns: minmax(236px, 78vw);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 10px;
    margin-inline: -18px;
    padding: 2px 18px 8px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
  }

  .election-goal-column {
    grid-template-rows: auto;
    grid-auto-rows: auto;
    min-height: 0;
    padding: 14px 13px 16px;
    border-radius: 16px;
    scroll-snap-align: start;
  }

  .election-goal-chip {
    min-height: 38px;
    font-size: 0.8rem;
  }

  .election-goal-dialog {
    width: min(92vw, 420px);
    border-radius: 18px;
  }

  .election-goal-dialog__panel {
    padding: 24px 18px 22px;
  }
}

.scroll-reveal {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(18px) scale(0.985);
  transition:
    opacity 620ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 620ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, filter, transform;
}

.scroll-reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}
