:root {
  --accent: #1f44ff;
  --accent-ink: #ffffff;

  --paper: #f4f3ee;
  --surface: #ffffff;
  --ink: #14130f;
  --ink-2: #56544c;
  --ink-3: #8a887e;
  --ink-4: #b8b6ab;
  --rank-gold: #EDB318;
  --rank-silver: #9AA3AD;
  --rank-bronze: #C47940;
  --line: #d9d7cd;
  --line-2: #e9e7df;

  --space: 8px;
  --maxw: 1240px;
  --radius: 0px;

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Manrope", system-ui, sans-serif;

  --text-display: clamp(2.25rem, 5.5vw, 4.0625rem);
  --text-stat: clamp(2rem, 4.5vw, 3rem);
  --text-h2: clamp(1.75rem, 3.5vw, 2.25rem);
  --text-h3: clamp(1.125rem, 2vw, 1.5rem);
  --text-card-title: 1.125rem;
  --text-lead: clamp(1rem, 2vw, 1.25rem);
  --text-body: 1rem;
  --text-table: 0.875rem;
  --text-ui: 0.75rem;
  --text-caption: 0.8125rem;
  --text-eyebrow: 0.72rem;

  --lh-display: 0.86;
  --lh-heading: 1.167;
  --lh-lead: 1.4;
  --lh-body: 1.5;

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  --text-primary: var(--ink);
  --text-secondary: #646464;
  --text-tertiary: var(--ink-3);

  --hero-pad-y: clamp(32px, 5vw, 52px);
  --hero-gap-md: clamp(16px, 2.5vw, 24px);
  --hero-gap-lg: clamp(22px, 3.5vw, 36px);
  --hero-stat-pad: clamp(6px, 1.2vw, 10px);
  --results-pad-top: clamp(20px, 3vw, 28px);
  --panel-gap: clamp(12px, 2vw, 20px);
  --table-cell-y: 10px;
  --table-head-y: 10px;
  --table-cell-x: 10px;
  --table-cell-left-x: 6px;

  font-family: var(--font-sans);
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: var(--text-body);
  line-height: var(--lh-body);
  font-feature-settings: "tnum" 1, "lnum" 1;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
}

.visually-hidden,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.skip-link:focus {
  position: fixed;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  clip: auto;
  background: var(--ink);
  color: #fff;
  padding: 8px 14px;
  z-index: 50;
}

.muted {
  color: var(--ink-3);
}

.hero {
  padding: var(--hero-pad-y) 0;
  text-align: center;
}
.hero__logo {
  display: block;
  width: min(252px, 68vw);
  height: auto;
  margin: 0 auto var(--hero-gap-md);
}
.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-display);
  line-height: var(--lh-display);
  font-weight: var(--fw-bold);
  font-synthesis: none;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
  max-width: min(14em, 100%);
  margin-inline: auto;
  color: var(--text-primary);
}
.hero__lead {
  margin-top: var(--hero-gap-md);
  max-width: min(654px, 100%);
  margin-inline: auto;
  font-size: var(--text-lead);
  line-height: var(--lh-lead);
  color: var(--text-secondary);
}
.hero__lead strong {
  font-weight: var(--fw-semibold);
  color: var(--text-primary);
}
.hero__stats {
  margin-top: var(--hero-gap-lg);
  max-width: 900px;
  margin-inline: auto;
}
.hero__stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 3vw, 28px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.hero-stat {
  padding: var(--hero-stat-pad) 8px;
  text-align: center;
}
.hero-stat__value {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: var(--text-stat);
  font-weight: var(--fw-bold);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  color: var(--text-primary);
}
.hero-stat__label {
  margin: 0;
  font-size: var(--text-caption);
  line-height: 1.35;
  color: var(--text-secondary);
}
@media (max-width: 720px) {
  .hero__title,
  .hero__lead {
    max-width: 100%;
  }
  .hero__stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.section-title {
  font-size: var(--text-h2);
  font-weight: var(--fw-bold);
  line-height: var(--lh-heading);
  letter-spacing: 0;
}

.about {
  padding: 72px 0 0;
}
.about-prose {
  margin-top: 28px;
  max-width: min(760px, 100%);
}
.about-prose__lead {
  font-size: var(--text-body);
  line-height: var(--lh-body);
  color: var(--text-secondary);
  padding-bottom: 28px;
}
.about-prose__section {
  padding: 0;
}
.about-prose__section + .about-prose__section {
  margin-top: 24px;
}
.about-prose__h {
  font-size: var(--text-h3);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-heading);
  margin-bottom: 12px;
  letter-spacing: 0;
}
.about-prose__section p {
  color: var(--text-secondary);
  font-size: var(--text-body);
  line-height: var(--lh-body);
}
.about-prose__section p + p {
  margin-top: 12px;
}
.about-prose__defs {
  margin: 0;
}
.about-prose__defs dt {
  font-weight: var(--fw-bold);
  font-size: var(--text-body);
  line-height: var(--lh-heading);
  margin-top: 16px;
}
.about-prose__defs dt:first-child {
  margin-top: 0;
}
.about-prose__defs dd {
  margin: 4px 0 0;
  color: var(--text-secondary);
  font-size: var(--text-body);
  line-height: var(--lh-body);
}

.organizers {
  padding: 72px 0 clamp(40px, 5vw, 56px);
}
.organizers__list {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 5vw, 48px);
  margin-top: 28px;
}
.organizers__partner {
  display: flex;
  flex-direction: column;
}
.organizers__logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  text-decoration: none;
}
.organizers__logo img {
  display: block;
  width: auto;
  max-height: 40px;
}
.organizers__partner + .organizers__partner .organizers__logo img {
  width: 195px;
  height: 30px;
  max-height: none;
}
.organizers__text {
  margin: 0;
  max-width: min(760px, 100%);
  font-size: var(--text-body);
  line-height: var(--lh-body);
  color: var(--text-secondary);
}
@media (min-width: 768px) {
  .organizers__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 4vw, 56px);
    align-items: start;
  }
  .organizers__text {
    max-width: none;
  }
}

.results {
  padding: var(--results-pad-top) 0 0;
}
.results-bar {
  --bar-control-height: 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  font-size: var(--text-table);
}
.results-bar__period {
  margin: 0;
  text-align: left;
  font-weight: var(--fw-semibold);
  line-height: 1.35;
  letter-spacing: 0;
  color: var(--text-primary);
  white-space: nowrap;
}
.tabs {
  display: inline-flex;
  flex-shrink: 0;
  justify-self: center;
  height: var(--bar-control-height);
  box-sizing: border-box;
  border: 1px solid var(--ink);
}
.tab {
  appearance: none;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--ink);
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding: 0 26px;
  font: inherit;
  font-weight: var(--fw-semibold);
  cursor: pointer;
  color: var(--text-primary);
}
.tab:last-child {
  border-right: 0;
}
.tab.is-active {
  background: var(--ink);
  color: #fff;
}
.tab:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.panel {
  margin-top: var(--panel-gap);
}

.search {
  position: relative;
  justify-self: end;
  width: 252px;
  max-width: 252px;
  min-width: 0;
}
.search__icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--ink-3);
  stroke-width: 2;
  stroke-linecap: round;
}
.search input {
  width: 100%;
  height: var(--bar-control-height);
  box-sizing: border-box;
  font: inherit;
  padding: 0 12px 0 38px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  color: var(--ink);
}
.search input:focus-visible {
  outline: none;
  border-color: var(--accent);
  box-shadow: inset 0 0 0 1px var(--accent);
}

.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  background: var(--surface);
}
.table-scroll:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}
.rank-table {
  border-collapse: collapse;
  width: 100%;
  min-width: 980px;
}
.rank-table tbody {
  font-size: var(--text-table);
}
.rank-table th,
.rank-table td {
  padding: var(--table-head-y) var(--table-cell-x) var(--table-head-y) var(--table-cell-left-x);
  text-align: right;
  white-space: nowrap;
  border-bottom: 1px solid var(--line-2);
}
.rank-table tbody td {
  padding-block: var(--table-cell-y);
}
.rank-table thead th {
  position: sticky;
  top: 0;
  background: var(--paper);
  z-index: 3;
  border-bottom: 1px solid var(--ink);
  font-weight: var(--fw-semibold);
  font-size: var(--text-ui);
  letter-spacing: 0.01em;
  color: var(--text-secondary);
  vertical-align: middle;
}
.rank-table th.col-sortable {
  cursor: pointer;
  user-select: none;
}
.rank-table th.col-sortable:hover {
  color: var(--ink);
}
.rank-table th .th-inner {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  justify-content: flex-end;
  min-height: calc(2 * 1.2em);
}
.rank-table th .th-label-lines {
  display: inline-block;
  line-height: 1.2;
  text-align: right;
  white-space: normal;
}
.rank-table th.col-name .th-label-lines {
  text-align: left;
}
.rank-table thead th.num {
  white-space: normal;
}
.rank-table th.col-micro,
.rank-table td.col-micro {
  width: 4.25rem;
  padding-inline: 4px;
  text-align: center;
}
.rank-table th.col-micro .th-inner {
  justify-content: center;
}
.th-channel-icon {
  width: 16px;
  height: 16px;
  display: block;
  flex-shrink: 0;
}
.rank-table td.messenger-symbol {
  font-weight: var(--fw-semibold);
  letter-spacing: 0.02em;
}
.rank-table th.col-name .th-inner {
  justify-content: flex-start;
}
.sort-arrow {
  width: 8px;
  padding-left: 3px;
  flex-shrink: 0;
  line-height: 1;
  opacity: 0.25;
}
th[aria-sort="ascending"] .sort-arrow,
th[aria-sort="descending"] .sort-arrow {
  opacity: 1;
  color: var(--ink-2);
}
th[aria-sort] {
  color: var(--ink);
}

.col-rank,
.col-name {
  text-align: left;
}
.col-rank {
  position: sticky;
  left: 0;
  z-index: 2;
  background: var(--surface);
  width: 52px;
  text-align: left;
}
.rank-table td.col-rank,
.rank-table th.col-rank {
  text-align: left;
}

.rank-table td.col-name,
.rank-table th.col-name {
  position: sticky;
  left: var(--rank-w, 52px);
  z-index: 2;
  width: 11.5rem;
  min-width: 11.5rem;
  max-width: 11.5rem;
  white-space: normal;
  vertical-align: top;
  border-right: 1px solid var(--line);
  overflow-wrap: anywhere;
  text-align: left;
}
.rank-table td.col-name {
  background: var(--surface);
}
.rank-table td.col-name .dev-link {
  display: inline;
  max-width: 100%;
}
.rank-table thead th.col-rank,
.rank-table thead th.col-name {
  z-index: 4;
  background: var(--paper);
}
.rank-table thead th.col-rank {
  padding-left: calc(var(--table-cell-left-x) + 9px);
}

.rank-num {
  font-weight: var(--fw-regular);
  font-variant-numeric: tabular-nums;
  color: var(--text-tertiary);
  padding-left: 9px;
}
.dev-link {
  font-weight: var(--fw-semibold);
  text-decoration: none;
  line-height: 1.25;
  overflow-wrap: break-word;
}
a.dev-link:hover {
  color: var(--accent);
  text-decoration: underline;
}
td.num {
  font-variant-numeric: tabular-nums;
}
.is-empty {
  color: var(--ink-3);
}
.rank-table td.num.is-zero {
  color: var(--ink-4);
  font-weight: var(--fw-regular);
}
.rank-table td.num.is-insufficient {
  color: var(--ink-3);
  font-weight: var(--fw-regular);
  white-space: normal;
}
.insufficient-label {
  display: inline-block;
  font-size: 0.8125rem;
  line-height: 1.25;
  white-space: nowrap;
}
tr.is-insufficient .rank-num {
  color: var(--ink-3);
}

tr.is-top-1 .col-rank {
  box-shadow: inset 5px 0 0 var(--rank-gold);
}
tr.is-top-1 .rank-num {
  color: var(--rank-gold);
  font-weight: var(--fw-semibold);
}
tr.is-top-2 .col-rank {
  box-shadow: inset 5px 0 0 var(--rank-silver);
}
tr.is-top-2 .rank-num {
  color: var(--rank-silver);
  font-weight: var(--fw-semibold);
}
tr.is-top-3 .col-rank {
  box-shadow: inset 5px 0 0 var(--rank-bronze);
}
tr.is-top-3 .rank-num {
  color: var(--rank-bronze);
  font-weight: var(--fw-semibold);
}

.rank-table tbody tr:hover td {
  background: #faf9f5;
}
.rank-table tbody tr:hover .col-rank,
.rank-table tbody tr:hover .col-name {
  background: #faf9f5;
}

.empty-row td {
  text-align: center;
  padding: 40px;
  color: var(--ink-3);
}

.nominations {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.nom-card {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px;
  background: var(--surface);
}
.nom-card__title {
  font-size: var(--text-card-title);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-heading);
  display: flex;
  align-items: center;
  gap: 10px;
}
.nom-card__icon {
  width: 22px;
  height: 22px;
  flex: none;
  color: var(--accent);
}
.nom-card__desc {
  color: var(--text-secondary);
  font-size: var(--text-body);
  line-height: var(--lh-body);
  margin: 8px 0 18px;
  min-height: calc(3em * var(--lh-body));
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.nom-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nom-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 9px 0;
  border-top: 1px solid var(--line-2);
}
.nom-item:first-child {
  border-top: 0;
}
.nom-pos {
  font-variant-numeric: tabular-nums;
  color: var(--text-tertiary);
  width: 1.4em;
  font-weight: var(--fw-semibold);
}
.nom-item--lead .nom-pos {
  color: var(--accent);
}
.nom-name {
  flex: 1;
  font-weight: var(--fw-medium);
}
.nom-val {
  font-variant-numeric: tabular-nums;
  font-weight: var(--fw-bold);
  font-size: var(--text-body);
  white-space: nowrap;
}

.market-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
@media (max-width: 640px) {
  .market-cards {
    grid-template-columns: 1fr;
  }
}
.market-card {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 24px;
  background: var(--surface);
}
.market-card__value {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: var(--text-stat);
  font-weight: var(--fw-bold);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  color: var(--text-primary);
}
.market-card__title {
  margin: 0 0 8px;
  font-size: var(--text-card-title);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-heading);
}
.market-card__desc {
  margin: 0 0 14px;
  color: var(--text-secondary);
  font-size: var(--text-body);
  line-height: var(--lh-body);
}
.market-card__channels {
  margin: 0 0 14px;
  font-size: var(--text-caption);
  color: var(--text-secondary);
  font-variant-numeric: tabular-nums;
}
.market-card__channel-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: -0.2em;
}
.market-card__sms {
  color: var(--ink-3);
}
.market-card__best {
  margin: 0;
  font-size: var(--text-body);
  line-height: var(--lh-body);
  color: var(--text-secondary);
}
.market-card__best strong {
  color: var(--accent);
  font-weight: var(--fw-bold);
}

.cta-lead {
  margin: 0 0 clamp(24px, 4vw, 40px);
  border-top: 1px solid var(--line);
  padding: 72px 0 clamp(32px, 5vw, 56px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}
.cta-lead__eyebrow {
  margin: 0 0 12px;
  font-size: var(--text-eyebrow);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}
.cta-lead__title {
  font-size: var(--text-h2);
  font-weight: var(--fw-bold);
  line-height: var(--lh-heading);
  letter-spacing: 0;
  color: var(--text-primary);
}
.cta-lead__lead {
  margin-top: 12px;
  max-width: 42ch;
  font-size: var(--text-body);
  line-height: var(--lh-body);
  color: var(--text-secondary);
}
.cta-lead__benefits {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.cta-lead__benefits li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: var(--text-body);
  line-height: var(--lh-body);
  color: var(--text-primary);
}
.cta-lead__check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  color: var(--accent);
}
.cta-lead__trust {
  margin-top: 28px;
  padding-top: 0;
}
.cta-lead__trust-label {
  margin: 0 0 8px;
  font-size: var(--text-caption);
  color: var(--text-tertiary);
}
.cta-lead__trust-clients {
  margin: 0;
  font-size: var(--text-caption);
  font-weight: var(--fw-medium);
  line-height: 1.6;
  color: var(--text-secondary);
}
.cta-lead__card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 36px);
}
.lead-form__head {
  margin-bottom: 20px;
}
.lead-form__title {
  font-size: var(--text-h3);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-heading);
  letter-spacing: 0;
  color: var(--text-primary);
}
.lead-form__subtitle {
  margin-top: 6px;
  font-size: var(--text-caption);
  color: var(--text-tertiary);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
}
.field--full {
  grid-column: 1 / -1;
}
.field--hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.lead-form .field {
  display: grid;
  gap: 6px;
  align-content: start;
}
.lead-form .field label {
  font-size: var(--text-caption);
  font-weight: var(--fw-medium);
  color: var(--text-secondary);
}
.lead-form .field label span[aria-hidden] {
  color: var(--ink-2);
  margin-left: 2px;
}
.lead-form .field input,
.lead-form .field select,
.lead-form .field textarea {
  font: inherit;
  font-size: var(--text-body);
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--surface);
  color: var(--ink);
  width: 100%;
}
.lead-form .field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2356544c' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.lead-form .field textarea {
  resize: vertical;
  min-height: 80px;
}
.lead-form .field input::placeholder,
.lead-form .field textarea::placeholder {
  color: var(--ink-3);
}
.lead-form .field input:focus-visible,
.lead-form .field select:focus-visible,
.lead-form .field textarea:focus-visible {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent) 18%, transparent);
}
.lead-form .field input[aria-invalid="true"],
.lead-form .field select[aria-invalid="true"],
.lead-form .field textarea[aria-invalid="true"] {
  border-color: #b42318;
}
.lead-form .field input[aria-invalid="true"]:focus-visible,
.lead-form .field select[aria-invalid="true"]:focus-visible,
.lead-form .field textarea[aria-invalid="true"]:focus-visible {
  border-color: #b42318;
  box-shadow: 0 0 0 2px color-mix(in srgb, #b42318 18%, transparent);
}
.field__hint {
  font-size: var(--text-caption);
  color: var(--text-tertiary);
}
.field__error {
  font-size: var(--text-caption);
  color: #b42318;
  min-height: 1.25em;
}
.btn {
  appearance: none;
  font: inherit;
  font-weight: var(--fw-semibold);
  font-size: var(--text-body);
  cursor: pointer;
  border: 0;
  border-radius: 4px;
  transition: filter 0.15s ease;
}
.btn--primary {
  display: block;
  width: 100%;
  margin-top: 20px;
  padding: 14px 22px;
  min-height: 48px;
  background: var(--accent);
  color: var(--accent-ink);
}
.btn--primary:hover {
  filter: brightness(1.08);
}
.btn--primary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}
.btn--outline {
  padding: 11px 22px;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 4px;
  justify-self: start;
  margin-top: 4px;
}
.btn--outline:hover {
  border-color: var(--ink-3);
  background: var(--line-2);
}
.btn--outline:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}
.btn[disabled] {
  opacity: 0.6;
  cursor: default;
}
.form-privacy {
  margin: 12px 0 0;
  font-size: var(--text-eyebrow);
  line-height: 1.45;
  color: var(--text-tertiary);
}
.form-privacy a {
  color: var(--accent);
  text-decoration: none;
}
.form-privacy a:hover {
  text-decoration: underline;
}
.form-status {
  font-size: var(--text-caption);
  min-height: 0;
  margin: 8px 0 0;
}
.form-status.is-ok {
  color: #1a7f4b;
}
.form-status.is-err {
  color: #b42318;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: clamp(32px, 5vw, 56px) 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}
.footer-strong {
  font-weight: var(--fw-semibold);
  margin-bottom: 8px;
}
.footer-grid a {
  color: var(--accent);
}
.footer-join-note {
  margin-top: 12px;
}

@media (max-height: 900px) {
  :root {
    --results-pad-top: 16px;
    --panel-gap: 12px;
    --table-cell-y: 8px;
    --table-head-y: 9px;
    --table-cell-x: 8px;
    --table-cell-left-x: 5px;
  }
}

@media (max-width: 720px) {
  .cta-lead {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .tabs {
    display: inline-flex;
    width: auto;
    justify-self: center;
  }
  .tab {
    flex: 0 1 auto;
    padding: 0 16px;
    text-align: center;
  }
  .results-bar {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .results-bar__period {
    text-align: left;
  }
  .search {
    justify-self: stretch;
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 960px) {
  .nominations {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
}

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

@media (prefers-reduced-motion: no-preference) {
  .panel {
    animation: fade 0.18s ease both;
  }
  @keyframes fade {
    from {
      opacity: 0;
      transform: translateY(4px);
    }
  }
}
