:root {
  --ink: #15181b;
  --muted: #687077;
  --line: rgba(21, 24, 27, 0.1);
  --surface: rgba(255, 255, 255, 0.88);
  --mint: #12d6a0;
  --mint-dark: #00a97b;
  --coral: #ff4e45;
  --orange: #ff8b48;
  --violet: #6557ff;
  --yellow: #ffe95c;
  --shadow: 0 24px 70px rgba(20, 35, 30, 0.1);
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: #f7faf8;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(77, 239, 196, 0.15), transparent 24rem),
    radial-gradient(circle at 88% 14%, rgba(255, 126, 94, 0.12), transparent 26rem),
    #f7faf8;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

.page-glow {
  position: fixed;
  z-index: -1;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.25;
  pointer-events: none;
}

.page-glow--mint {
  top: 35%;
  left: -240px;
  background: #48e0b7;
}

.page-glow--orange {
  top: 58%;
  right: -260px;
  background: #ff9a73;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  padding: 10px 0;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
}

.brand__mark {
  display: block;
  width: 44px;
  height: 44px;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(18, 214, 160, 0.28);
}

.brand__mark svg {
  display: block;
  width: 100%;
  height: 100%;
}

.brand__copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand__copy strong {
  font-size: 16px;
}

.brand__copy small {
  margin-top: 4px;
  color: #8c9498;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.ghost-button {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  color: #38403e;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(21, 24, 27, 0.1);
  border-radius: 999px;
  cursor: pointer;
  backdrop-filter: blur(14px);
}

.ghost-button__dot {
  width: 8px;
  height: 8px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(18, 214, 160, 0.13);
}

main,
footer {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  min-height: 630px;
  padding: 78px 70px 64px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(231, 255, 246, 0.96), rgba(255, 255, 255, 0.96) 45%, rgba(255, 239, 230, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 42px;
  box-shadow: var(--shadow);
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  top: -90px;
  left: 42%;
  width: 230px;
  height: 230px;
  border: 58px solid rgba(18, 214, 160, 0.08);
}

.hero::after {
  right: -70px;
  bottom: -100px;
  width: 260px;
  height: 260px;
  background: rgba(255, 98, 72, 0.08);
}

.hero__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 560px;
}

.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  align-self: flex-start;
  margin-bottom: 22px;
  color: #5b6561;
  font-size: 13px;
  font-weight: 750;
}

.eyebrow span {
  padding: 5px 10px;
  color: #0b7f5e;
  font-size: 10px;
  letter-spacing: 0.12em;
  background: #bff8e7;
  border-radius: 999px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(46px, 5.4vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.hero h1 em {
  position: relative;
  color: var(--ink);
  font-style: normal;
}

.hero h1 em::after {
  position: absolute;
  right: -4px;
  bottom: -9px;
  left: 0;
  height: 10px;
  background: linear-gradient(90deg, var(--mint), #82e28a);
  border-radius: 999px 40px;
  content: "";
  transform: rotate(-1.4deg);
}

.hero__copy > p {
  max-width: 490px;
  margin: 34px 0 32px;
  color: #59615f;
  font-size: 16px;
  line-height: 1.9;
}

.hero__meta {
  display: flex;
  gap: 34px;
}

.hero__meta div {
  display: flex;
  flex-direction: column;
}

.hero__meta strong {
  font-size: 25px;
  line-height: 1;
}

.hero__meta span {
  margin-top: 8px;
  color: #8b9390;
  font-size: 12px;
}

.hero__visual {
  position: relative;
  z-index: 2;
  min-height: 480px;
}

.hero__scroll-cue {
  position: absolute;
  bottom: 18px;
  left: 50%;
  z-index: 4;
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  width: min(280px, calc(100% - 32px));
  min-height: 96px;
  padding: 16px 24px 12px;
  color: rgba(21, 24, 27, 0.54);
  font-size: 16px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(32, 45, 40, 0.08);
  transform: translateX(-50%);
  backdrop-filter: blur(10px);
}

.hero__scroll-cue:hover {
  color: rgba(21, 24, 27, 0.78);
  background: rgba(255, 255, 255, 0.72);
}

.hero__scroll-cue:focus-visible {
  outline: 3px solid rgba(18, 214, 160, 0.36);
  outline-offset: 3px;
}

.hero__scroll-cue svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: scroll-cue-float 1.7s ease-in-out infinite;
}

@keyframes scroll-cue-float {
  0%,
  100% {
    transform: translateY(-1px);
  }

  50% {
    transform: translateY(3px);
  }
}

.hero-card {
  position: absolute;
  width: 230px;
  height: 500px;
  overflow: hidden;
  background: #fff;
  border: 10px solid rgba(255, 255, 255, 0.94);
  border-radius: 36px;
  box-shadow: 0 35px 75px rgba(42, 56, 49, 0.2);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero-card--back {
  top: 0;
  right: 12px;
  transform: rotate(7deg) scale(0.9);
}

.hero-card--front {
  right: 155px;
  bottom: -30px;
  transform: rotate(-7deg);
}

.hero-badge {
  position: absolute;
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  color: white;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  border: 5px solid rgba(255, 255, 255, 0.92);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(34, 38, 35, 0.16);
}

.hero-badge--top {
  top: 35px;
  right: 210px;
  background: linear-gradient(145deg, var(--coral), var(--orange));
  transform: rotate(-9deg);
}

.hero-badge--bottom {
  right: 32px;
  bottom: 10px;
  background: linear-gradient(145deg, var(--violet), #8f69ff);
  transform: rotate(8deg);
}

.notice {
  display: flex;
  gap: 16px;
  align-items: center;
  margin: 24px 0 70px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(18, 214, 160, 0.22);
  border-radius: 20px;
  backdrop-filter: blur(14px);
}

.notice__icon {
  display: grid;
  flex: 0 0 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  font-weight: 900;
  background: var(--mint);
  border-radius: 12px;
}

.notice strong {
  font-size: 14px;
}

.notice p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.notice.is-voted {
  border-color: rgba(101, 87, 255, 0.2);
}

.notice.is-voted .notice__icon {
  background: var(--violet);
}

.vote-section {
  margin-bottom: 88px;
  scroll-margin-top: 100px;
}

.section-heading {
  display: flex;
  gap: 24px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 30px;
}

.step-chip {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 11px;
  color: #047f5b;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  background: #c9f9e9;
  border-radius: 999px;
}

.step-chip--coral {
  color: #b92623;
  background: #ffe0dc;
}

.step-chip--violet {
  color: #5142d8;
  background: #e8e4ff;
}

.step-chip--dark {
  color: white;
  background: #242827;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(29px, 3vw, 42px);
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.selection-pill {
  flex: 0 0 auto;
  padding: 9px 14px;
  color: #7c8581;
  font-size: 12px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.selection-pill.is-selected {
  color: #087a5a;
  background: #d4faed;
  border-color: rgba(18, 214, 160, 0.3);
}

.selection-pill.is-voted {
  color: #fff;
  background: var(--mint-dark);
  border-color: var(--mint-dark);
  box-shadow: 0 8px 20px rgba(0, 169, 123, 0.2);
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.candidate-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  text-align: left;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(21, 24, 27, 0.08);
  border-radius: 24px;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
  appearance: none;
}

.candidate-card:hover {
  border-color: rgba(18, 214, 160, 0.52);
  box-shadow: 0 18px 38px rgba(34, 51, 45, 0.1);
  transform: translateY(-4px);
}

.candidate-card:focus-visible {
  outline: 3px solid rgba(18, 214, 160, 0.36);
  outline-offset: 3px;
}

.candidate-card.is-selected {
  background: #f5fffb;
  border-color: var(--mint);
  box-shadow: 0 16px 34px rgba(18, 214, 160, 0.16);
}

.candidate-card.is-vote-locked {
  cursor: default;
}

.candidate-card.is-vote-locked:hover {
  transform: none;
}

.candidate-card.is-voted-choice {
  background: linear-gradient(145deg, #f2fff9, #e8fff5);
  border-color: var(--mint-dark);
  box-shadow:
    0 0 0 3px rgba(18, 214, 160, 0.18),
    0 18px 38px rgba(0, 169, 123, 0.18);
}

.candidate-card__choice-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  color: #fff;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.04em;
  background: var(--mint-dark);
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0, 126, 91, 0.24);
}

.candidate-card__check {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: white;
  font-size: 13px;
  font-weight: 900;
  background: rgba(20, 24, 23, 0.22);
  border: 2px solid white;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.8);
  transition: 180ms ease;
}

.candidate-card.is-selected .candidate-card__check {
  background: var(--mint);
  opacity: 1;
  transform: scale(1);
}

.icon-card__image {
  display: grid;
  aspect-ratio: 1 / 1;
  margin: 10px;
  overflow: hidden;
  place-items: center;
  background: linear-gradient(145deg, #f5f6f5, #ecefed);
  border-radius: 18px;
}

.icon-card__image svg {
  width: 100%;
  height: 100%;
}

.candidate-card__copy {
  padding: 4px 16px 17px;
}

.candidate-card__copy strong {
  display: block;
  overflow: hidden;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.candidate-card__copy small {
  display: block;
  min-height: 34px;
  margin-top: 6px;
  color: #8a918f;
  font-size: 11px;
  line-height: 1.55;
}

.ui-filter {
  display: flex;
  gap: 8px;
  margin: -6px 0 22px;
}

.filter-button {
  padding: 9px 15px;
  color: #737b78;
  font-size: 12px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
}

.filter-button.is-active {
  color: white;
  background: #242827;
  border-color: #242827;
}

.ui-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(178px, 1fr));
  gap: 14px;
  align-items: start;
}

.ui-card {
  --ui-image-height: 250px;

  padding: 8px;
  border-radius: 22px;
}

.ui-card__select {
  display: block;
  width: 100%;
  padding: 0;
  color: inherit;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.ui-card__select:focus-visible {
  outline: 3px solid rgba(18, 214, 160, 0.36);
  outline-offset: 2px;
  border-radius: 20px;
}

.ui-card__select:disabled {
  cursor: not-allowed;
}

.ui-card[hidden] {
  display: none;
}

.ui-card__image {
  position: relative;
  display: block;
  height: var(--ui-image-height);
  overflow: hidden;
  background: #edf1ef;
  border-radius: 16px;
}

.ui-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 320ms ease;
}

.ui-card:hover .ui-card__image img {
  transform: scale(1.025);
}

.ui-card__preview {
  position: absolute;
  top: calc(8px + var(--ui-image-height) - 36px);
  right: 14px;
  z-index: 3;
  padding: 6px 9px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  background: rgba(18, 22, 21, 0.66);
  border: 0;
  border-radius: 999px;
  cursor: zoom-in;
  backdrop-filter: blur(8px);
}

.ui-card .candidate-card__copy {
  padding: 10px 6px 7px;
}

.loading-card {
  grid-column: 1 / -1;
  display: grid;
  min-height: 180px;
  place-items: center;
  color: #87908c;
  background: rgba(255, 255, 255, 0.72);
  border: 1px dashed rgba(21, 24, 27, 0.15);
  border-radius: 24px;
}

.submit-bar {
  position: sticky;
  bottom: 18px;
  z-index: 15;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  margin: -34px 0 90px;
  padding: 14px 15px 14px 22px;
  background: rgba(24, 28, 27, 0.93);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  box-shadow: 0 25px 55px rgba(17, 22, 20, 0.24);
  backdrop-filter: blur(18px);
}

.submit-bar__summary {
  display: flex;
  flex-direction: column;
  color: white;
}

.submit-bar__summary span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
}

.submit-bar__summary strong {
  margin-top: 4px;
  font-size: 14px;
}

.submit-button {
  display: inline-flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  min-width: 220px;
  min-height: 54px;
  padding: 0 20px;
  color: #073f30;
  font-weight: 850;
  background: linear-gradient(100deg, #57efc0, #9bec78);
  border: 0;
  border-radius: 16px;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(67, 227, 178, 0.23);
}

.submit-button b {
  font-size: 22px;
}

.submit-button:disabled {
  color: rgba(255, 255, 255, 0.45);
  background: #4a504e;
  box-shadow: none;
  cursor: not-allowed;
}

.results-section {
  margin: 0 0 90px;
  padding: 42px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(237, 253, 246, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 34px;
  box-shadow: var(--shadow);
  scroll-margin-top: 100px;
}

.results-section[hidden] {
  display: none;
}

.result-total {
  font-size: 14px;
}

.result-total span {
  color: var(--mint-dark);
  font-size: 30px;
}

.result-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.result-panel {
  padding: 24px;
  background: white;
  border: 1px solid rgba(21, 24, 27, 0.07);
  border-radius: 24px;
}

.result-panel h3 {
  margin: 0 0 22px;
  font-size: 17px;
}

.result-row {
  display: grid;
  grid-template-columns: minmax(90px, 1fr) 2fr 56px;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
}

.result-row__name {
  overflow: hidden;
  font-size: 12px;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.result-row__track {
  height: 8px;
  overflow: hidden;
  background: #edf1ef;
  border-radius: 999px;
}

.result-row__bar {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--mint), #8fe275);
  border-radius: inherit;
  transition: width 600ms ease;
}

.result-panel:nth-child(2) .result-row__bar {
  background: linear-gradient(90deg, var(--coral), var(--orange));
}

.result-panel:nth-child(3) .result-row__bar {
  background: linear-gradient(90deg, var(--violet), #9d86ff);
}

@media (max-width: 1080px) {
  .result-columns {
    grid-template-columns: 1fr 1fr;
  }

  .result-panel:first-child {
    grid-column: 1 / -1;
  }
}

.result-row__count {
  color: #6f7774;
  font-size: 11px;
  text-align: right;
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 30px 0 50px;
  color: #929a97;
  font-size: 11px;
  border-top: 1px solid var(--line);
}

.preview-dialog {
  width: min(520px, calc(100% - 28px));
  max-height: 92vh;
  padding: 14px;
  overflow: hidden;
  background: #fff;
  border: 0;
  border-radius: 28px;
  box-shadow: 0 40px 90px rgba(10, 20, 16, 0.3);
}

.preview-dialog::backdrop {
  background: rgba(11, 16, 14, 0.68);
  backdrop-filter: blur(10px);
}

.preview-dialog > img {
  display: block;
  width: 100%;
  max-height: 75vh;
  object-fit: contain;
  background: #eef2f0;
  border-radius: 18px;
}

.preview-dialog__close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: white;
  font-size: 22px;
  line-height: 1;
  background: rgba(17, 22, 20, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  cursor: pointer;
}

.preview-dialog__caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 6px 4px;
}

.preview-dialog__caption span {
  color: #929a97;
  font-size: 11px;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  max-width: min(380px, calc(100% - 44px));
  padding: 14px 18px;
  color: white;
  font-size: 13px;
  font-weight: 700;
  background: #212624;
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(17, 22, 20, 0.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: 200ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.toast.is-error {
  background: #bf332f;
}

@media (max-width: 1000px) {
  .hero {
    grid-template-columns: 1fr 360px;
    padding: 60px 46px;
  }

  .hero__visual {
    transform: scale(0.85);
    transform-origin: center right;
  }

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

}

@media (max-width: 760px) {
  .site-header,
  main,
  footer {
    width: min(100% - 24px, 1180px);
  }

  .brand__copy small {
    display: none;
  }

  .ghost-button {
    min-height: 38px;
    padding: 0 13px;
    font-size: 12px;
  }

  .hero {
    display: block;
    min-height: auto;
    padding: 48px 26px 380px;
    border-radius: 30px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 64px);
  }

  .hero__copy > p {
    font-size: 14px;
  }

  .hero__meta {
    gap: 20px;
  }

  .hero__visual {
    position: absolute;
    right: 0;
    bottom: -74px;
    left: 0;
    min-height: 420px;
    transform: scale(0.74);
    transform-origin: bottom center;
  }

  .hero-card--front {
    right: 50%;
    transform: translateX(12%) rotate(-7deg);
  }

  .hero-card--back {
    right: 50%;
    transform: translateX(82%) rotate(7deg) scale(0.9);
  }

  .hero-badge--top {
    right: calc(50% + 100px);
  }

  .hero-badge--bottom {
    right: calc(50% - 230px);
    bottom: 60px;
  }

  .notice {
    margin-bottom: 56px;
  }

  .section-heading {
    align-items: flex-start;
  }

  .section-heading p {
    max-width: 290px;
    line-height: 1.7;
  }

  .icon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .ui-card {
    --ui-image-height: 230px;

    padding: 7px;
    border-radius: 20px;
  }

  .ui-card__preview {
    top: calc(7px + var(--ui-image-height) - 36px);
  }

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

  .result-panel:first-child {
    grid-column: auto;
  }

  .results-section {
    padding: 26px 18px;
    border-radius: 26px;
  }

  footer {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .site-header {
    min-height: 68px;
  }

  .brand__mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .brand__copy strong {
    font-size: 14px;
  }

  .hero {
    padding-top: 38px;
  }

  .hero__meta strong {
    font-size: 21px;
  }

  .selection-pill {
    display: none;
  }

  .ui-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .ui-card {
    --ui-image-height: 190px;
  }

  .ui-card .candidate-card__copy small {
    min-height: 30px;
    font-size: 10px;
  }

  .submit-bar {
    right: 12px;
    bottom: 10px;
    left: 12px;
    margin-inline: 0;
    padding-left: 15px;
  }

  .submit-button {
    min-width: 0;
    min-height: 50px;
    padding: 0 15px;
  }

  .submit-button b {
    display: none;
  }

  .submit-bar__summary strong {
    max-width: 130px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .preview-dialog__caption span {
    display: none;
  }
}

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

  .hero__scroll-cue svg {
    animation: none;
  }
}
