@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/geist/geist-latin-wght-normal.woff2") format("woff2-variations");
}

:root {
  color-scheme: dark;
  --color-canvas: #17191c;
  --color-surface: #202328;
  --color-surface-raised: #262a30;
  --color-ink: #f6f5ef;
  --color-muted: #aeb2b8;
  --color-subtle: #747a82;
  --color-border: #3e444d;
  --color-brand: #e5d81b;
  --color-brand-strong: #d4c114;
  --color-brand-ink: #11120d;
  --color-success: #49c995;
  --color-error: #ff7a83;
  --color-focus: #fff673;
  --shadow-panel: 0 1.5rem 5rem rgb(0 0 0 / 28%);
  --radius-small: 0.375rem;
  --radius-medium: 0.5rem;
  --content-width: 70rem;
  --registration-width: 36rem;
}

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

html {
  background: var(--color-canvas);
  font-family: "Geist", "Avenir Next", "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  background: var(--color-canvas);
  color: var(--color-ink);
  font-size: 1rem;
  line-height: 1.5;
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
}

.national-marker {
  display: flex;
  min-height: 2.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-bottom: 1px solid rgb(229 216 27 / 18%);
  background: #111316;
  color: var(--color-muted);
  font-size: 0.75rem;
  font-weight: 620;
}

.national-marker__flag {
  font-size: 1rem;
  line-height: 1;
}

.registration-page {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  flex-direction: column;
  overflow: hidden;
}

.standalone-form {
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  place-items: center;
  padding: 1rem;
}

.admin-page {
  width: min(calc(100% - 2rem), var(--content-width));
  margin-inline: auto;
  padding-block: 2rem;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.admin-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--color-border);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
}

.admin-review {
  max-width: var(--registration-width);
}

.access-code {
  display: block;
  overflow-wrap: anywhere;
  margin-block: 1.5rem;
  padding: 1rem;
  border: 1px solid var(--color-brand);
  background: var(--color-canvas);
  color: var(--color-brand);
  font-size: 1.125rem;
}

.registration-page::before {
  position: fixed;
  z-index: -1;
  right: -15rem;
  bottom: -16rem;
  width: 44rem;
  height: 44rem;
  background: url("/logo.png") center / contain no-repeat;
  content: "";
  opacity: 0.018;
  pointer-events: none;
}

.brand-header,
.registration-layout,
.government-priorities,
.direct-contact-callout,
.donation-callout,
.site-footer {
  width: min(calc(100% - 2rem), var(--content-width));
  margin-inline: auto;
}

.brand-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  padding-block: 1rem;
  border-bottom: 1px solid rgb(229 216 27 / 18%);
}

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

.brand-lockup:focus-visible {
  border-radius: var(--radius-small);
  outline: 3px solid var(--color-focus);
  outline-offset: 4px;
}

.brand-lockup__emblem {
  width: 4.25rem;
  height: 4.25rem;
  flex: 0 0 auto;
}

.brand-lockup__text {
  display: grid;
  margin-left: 0.75rem;
  line-height: 1.2;
}

.brand-lockup__text strong {
  max-width: 12rem;
  font-size: 0.875rem;
  font-weight: 720;
}

.brand-lockup__text span {
  margin-top: 0.25rem;
  color: var(--color-brand);
  font-size: 0.75rem;
  font-weight: 620;
}

.brand-header__tagline {
  display: none;
  color: var(--color-muted);
  font-size: 0.8125rem;
  font-weight: 540;
}

.brand-header__nav {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

.brand-header__link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  color: var(--color-ink);
  font-size: 0.8125rem;
  font-weight: 650;
  text-decoration: none;
}

.brand-header__link[aria-current="page"] {
  color: var(--color-brand);
  text-decoration: underline;
  text-decoration-color: var(--color-brand);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.3rem;
}

.brand-header__link:hover {
  color: var(--color-brand);
}

.brand-header__link:focus-visible {
  border-radius: var(--radius-small);
  outline: 3px solid var(--color-focus);
  outline-offset: 4px;
}

.registration-layout {
  display: grid;
  flex: 1;
  align-items: center;
  gap: 2.5rem;
  padding-block: 2rem 3rem;
}

.registration-panel {
  position: relative;
  width: 100%;
  max-width: var(--registration-width);
  padding: clamp(1.25rem, 5vw, 2.5rem);
  border: 1px solid rgb(229 216 27 / 72%);
  border-radius: var(--radius-medium);
  background: rgb(32 35 40 / 96%);
  box-shadow: var(--shadow-panel);
}

.registration-panel::before {
  position: absolute;
  top: -1px;
  left: clamp(1.25rem, 5vw, 2.5rem);
  width: 4.5rem;
  height: 2px;
  background: var(--color-brand);
  content: "";
}

.registration-panel__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.eyebrow {
  margin: 0 0 0.625rem;
  color: var(--color-brand);
  font-size: 0.75rem;
  font-weight: 720;
  line-height: 1.2;
  text-transform: uppercase;
}

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

h1 {
  max-width: 27rem;
  margin-bottom: 0;
  font-size: clamp(1.75rem, 7vw, 2.5rem);
  font-weight: 720;
  line-height: 1.08;
}

h2 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 680;
  line-height: 1.2;
}

.step-count {
  flex: 0 0 auto;
  padding-top: 0.25rem;
  color: var(--color-subtle);
  font-size: 0.75rem;
  font-variant-numeric: tabular-nums;
  font-weight: 650;
}

.registration-intro {
  max-width: 31rem;
  margin: 1.25rem 0 1.5rem;
  color: var(--color-muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.step-indicator {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.step-indicator__item {
  display: grid;
  gap: 0.5rem;
  color: var(--color-subtle);
  font-size: 0.6875rem;
  font-weight: 580;
}

.step-indicator__line {
  height: 2px;
  border-radius: 1px;
  background: var(--color-border);
}

.step-indicator__item.is-current {
  color: var(--color-ink);
}

.step-indicator__item.is-current .step-indicator__line {
  background: var(--color-brand);
}

.cedula-form {
  display: grid;
  gap: 1.25rem;
}

.field-group {
  min-width: 0;
}

.field-label-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.field-label {
  color: var(--color-ink);
  font-size: 0.9375rem;
  font-weight: 650;
}

.field-requirement {
  color: var(--color-subtle);
  font-size: 0.75rem;
}

.field-control {
  position: relative;
}

.text-input {
  width: 100%;
  min-height: 3.5rem;
  padding: 0.875rem 3rem 0.875rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-small);
  outline: 0;
  background: var(--color-canvas);
  color: var(--color-ink);
  caret-color: var(--color-brand);
  font-size: 1.125rem;
  font-variant-numeric: tabular-nums;
  font-weight: 560;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.text-input::placeholder {
  color: #686e76;
  opacity: 1;
}

.text-input:hover {
  border-color: #5c636d;
}

.text-input:focus,
.text-input:focus-visible {
  border-color: var(--color-focus);
  outline: 3px solid var(--color-focus);
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgb(255 246 115 / 18%);
}

.field-control__status {
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 0.625rem;
  height: 0.625rem;
  border: 2px solid var(--color-subtle);
  border-radius: 50%;
  opacity: 0;
  transform: translateY(-50%);
  transition:
    opacity 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease;
}

.cedula-form[data-state="typing"] .field-control__status,
.cedula-form[data-state="valid"] .field-control__status,
.cedula-form[data-state="invalid"] .field-control__status,
.cedula-form[data-state="error"] .field-control__status {
  opacity: 1;
}

.cedula-form[data-state="valid"] .text-input {
  border-color: var(--color-success);
  background: rgb(73 201 149 / 4%);
}

.cedula-form[data-state="valid"] .field-control__status {
  border-color: var(--color-success);
  background: var(--color-success);
}

.cedula-form[data-state="invalid"] .text-input,
.cedula-form[data-state="error"] .text-input {
  border-color: var(--color-error);
  background: rgb(255 122 131 / 4%);
}

.cedula-form[data-state="invalid"] .field-control__status,
.cedula-form[data-state="error"] .field-control__status {
  border-color: var(--color-error);
}

.field-feedback {
  min-height: 1.25rem;
  margin: 0.5rem 0 0;
  color: var(--color-muted);
  font-size: 0.8125rem;
  line-height: 1.45;
}

.field-feedback[data-state="valid"] {
  color: var(--color-success);
}

.field-feedback[data-state="invalid"],
.field-feedback[data-state="error"] {
  color: var(--color-error);
}

.button {
  display: inline-flex;
  min-height: 3.375rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.125rem;
  border: 1px solid transparent;
  border-radius: var(--radius-medium);
  font-size: 1rem;
  font-weight: 720;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.button--primary {
  width: 100%;
  background: var(--color-brand);
  color: var(--color-brand-ink);
  cursor: pointer;
}

.button--primary:not(:disabled):hover {
  background: var(--color-brand-strong);
  transform: translateY(-1px);
}

.button--primary:not(:disabled):active {
  transform: translateY(0);
}

.button:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 3px;
}

.button--primary:disabled {
  background: #55543a;
  color: #aaa98f;
  cursor: not-allowed;
}

.button--secondary {
  border-color: var(--color-border);
  background: transparent;
  color: var(--color-ink);
}

.button--secondary:hover {
  border-color: var(--color-brand);
  color: var(--color-brand);
}

.button__arrow {
  margin-left: auto;
  font-size: 1.25rem;
  font-weight: 520;
}

.button__icon {
  width: 1.25rem;
  height: 1.25rem;
  flex: none;
  fill: currentcolor;
}

.button__icon--stroke {
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.privacy-note {
  margin: 1rem 0 0;
  color: var(--color-subtle);
  font-size: 0.75rem;
  line-height: 1.5;
  text-align: center;
}

.contact-form {
  display: grid;
  gap: 1.25rem;
}

.checkbox-field {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 0.625rem;
}

.checkbox-input {
  width: 1.25rem;
  height: 1.25rem;
  margin: 0.125rem 0 0;
  accent-color: var(--color-brand);
}

.checkbox-input:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 3px;
}

.checkbox-label {
  color: var(--color-ink);
  font-size: 0.9375rem;
  font-weight: 560;
  line-height: 1.5;
}

.identity-confirmation {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0 0 1.5rem;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-small);
  background: var(--color-border);
}

.identity-confirmation div {
  min-width: 0;
  padding: 0.875rem 1rem;
  background: var(--color-canvas);
}

.identity-confirmation__primary {
  grid-column: 1 / -1;
}

.identity-confirmation dt {
  color: var(--color-subtle);
  font-size: 0.6875rem;
  font-weight: 650;
  text-transform: uppercase;
}

.identity-confirmation dd {
  margin: 0.25rem 0 0;
  overflow-wrap: anywhere;
  color: var(--color-ink);
  font-size: 0.875rem;
  font-weight: 620;
}

.lookup-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.form-alert {
  margin-bottom: 1.25rem;
  padding: 0.75rem 1rem;
  border-left: 3px solid var(--color-error);
  background: rgb(255 122 131 / 8%);
  color: var(--color-error);
  font-size: 0.875rem;
}

.auth-links {
  display: grid;
  gap: 0.5rem;
  margin-top: 1.5rem;
  text-align: center;
}

.auth-links p {
  margin: 0;
}

.auth-links a {
  color: var(--color-subtle);
  font-size: 0.875rem;
  text-decoration: underline;
}

.auth-links a:hover {
  color: var(--color-brand);
}

.process-overview {
  padding: 0 0.25rem;
}

.process-list {
  display: grid;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  counter-reset: process;
  list-style: none;
}

.process-list li {
  position: relative;
  display: grid;
  min-height: 2.75rem;
  align-content: start;
  padding-left: 3.5rem;
  counter-increment: process;
}

.process-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgb(229 216 27 / 42%);
  border-radius: 50%;
  color: var(--color-brand);
  content: counter(process, decimal-leading-zero);
  font-size: 0.6875rem;
  font-variant-numeric: tabular-nums;
  font-weight: 720;
  place-items: center;
}

.process-list strong {
  font-size: 0.9375rem;
  font-weight: 650;
}

.process-list span {
  margin-top: 0.2rem;
  color: var(--color-muted);
  font-size: 0.8125rem;
  line-height: 1.45;
}

.process-overview__assurance {
  margin: 1.75rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
  color: var(--color-muted);
  font-size: 0.8125rem;
  font-weight: 540;
}

.leadership-callout,
.intention-highlight {
  border-left: 3px solid var(--color-brand);
  background: rgb(229 216 27 / 7%);
}

.leadership-callout {
  margin-top: 1.25rem;
  padding: 1rem;
}

.leadership-callout__label {
  color: var(--color-brand);
  font-size: 0.6875rem;
  font-weight: 720;
  text-transform: uppercase;
}

.leadership-callout p {
  margin: 0.5rem 0;
  color: var(--color-ink);
  font-size: 1rem;
  font-weight: 680;
  line-height: 1.35;
}

.leadership-callout > span:last-child {
  color: var(--color-muted);
  font-size: 0.8125rem;
  line-height: 1.45;
}

.intention-highlight {
  margin: 0 0 2rem;
  padding: 1.25rem;
}

.intention-highlight h2 {
  margin-bottom: 0.75rem;
}

.intention-highlight p:not(.eyebrow) {
  color: var(--color-muted);
}

.intention-highlight strong {
  color: var(--color-brand);
  font-size: 1rem;
  line-height: 1.45;
}

.duarte-section {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}

.duarte-portrait {
  margin: 0;
}

.duarte-portrait img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 600 / 806;
  border: 1px solid var(--color-border);
  object-fit: cover;
}

.duarte-portrait figcaption {
  margin-top: 0.625rem;
  color: var(--color-subtle);
  font-size: 0.6875rem;
  line-height: 1.45;
}

.duarte-section__content h2 {
  margin-bottom: 1rem;
}

.duarte-section__content > p:not(.eyebrow) {
  color: var(--color-muted);
}

.duarte-principles {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0;
  padding-left: 1.25rem;
  color: var(--color-muted);
}

.duarte-principles strong {
  color: var(--color-ink);
}

.duarte-section__connection {
  padding-left: 1rem;
  border-left: 3px solid var(--color-brand);
  color: var(--color-ink) !important;
  font-weight: 620;
}

.donations-page {
  max-width: 46rem;
}

.donation-section {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.donation-section h2 {
  margin-bottom: 0.75rem;
}

.donation-section h3 {
  margin: 2rem 0 1rem;
  font-size: 1rem;
}

.donation-section p {
  color: var(--color-muted);
  line-height: 1.55;
}

.donation-section__number {
  margin: 0;
  color: var(--color-brand) !important;
  font-size: 0.75rem;
  font-variant-numeric: tabular-nums;
  font-weight: 720;
}

.donation-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 1.5rem 0 0;
  border-top: 1px solid var(--color-border);
  border-left: 1px solid var(--color-border);
}

.donation-details div {
  min-width: 0;
  padding: 0.875rem;
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.donation-details dt {
  color: var(--color-subtle);
  font-size: 0.6875rem;
  font-weight: 650;
  text-transform: uppercase;
}

.donation-details dd {
  margin: 0.3rem 0 0;
  overflow-wrap: anywhere;
  color: var(--color-ink);
  font-variant-numeric: tabular-nums;
  font-weight: 650;
}

.digital-accounts {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--color-border);
  list-style: none;
}

.digital-accounts li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
}

.digital-accounts li > div {
  display: grid;
  min-width: 0;
  gap: 0.25rem;
}

.digital-accounts strong {
  font-size: 0.875rem;
  text-transform: uppercase;
}

.digital-accounts span {
  overflow-wrap: anywhere;
  color: var(--color-muted);
  font-size: 0.875rem;
}

.donation-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  width: fit-content;
  min-width: min(100%, 12rem);
}

.donation-action__mark {
  display: grid;
  flex: 0 0 auto;
  width: 1.5rem;
  height: 1.5rem;
  border: 1px solid rgb(255 255 255 / 58%);
  border-radius: 50%;
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1;
  place-items: center;
}

.donation-action--paypal {
  border-color: #0070ba;
  background: #0070ba;
  color: #fff;
}

.donation-action--paypal:hover {
  border-color: #005ea6;
  background: #005ea6;
  color: #fff;
}

.donation-action--cash-app {
  border-color: #007a2d;
  background: #007a2d;
  color: #fff;
}

.donation-action--cash-app .donation-action__mark {
  border-color: rgb(255 255 255 / 68%);
}

.donation-action--cash-app:hover {
  border-color: #006524;
  background: #006524;
  color: #fff;
}

.physical-donations {
  display: grid;
  gap: 0.625rem;
  margin: 1rem 0 1.5rem;
  padding-left: 1.25rem;
  color: var(--color-ink);
}

.donations-page__back-link {
  display: inline-block;
  margin-top: 2rem;
}

.donation-callout {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2.5rem;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border-block: 1px solid rgb(229 216 27 / 52%);
  background: rgb(229 216 27 / 7%);
}

.donation-callout h2 {
  max-width: 32rem;
  margin-bottom: 0.75rem;
  font-size: clamp(1.5rem, 5vw, 2rem);
}

.donation-callout p:not(.eyebrow) {
  max-width: 38rem;
  margin-bottom: 0;
  color: var(--color-muted);
  line-height: 1.55;
}

.donation-callout__action {
  width: 100%;
  gap: 0.625rem;
}

.direct-contact-callout {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2.5rem;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border-block: 1px solid rgb(37 211 102 / 45%);
  background: rgb(37 211 102 / 7%);
}

.direct-contact-callout h2 {
  max-width: 44rem;
  margin-bottom: 0;
  font-size: clamp(1.35rem, 4vw, 1.75rem);
}

.direct-contact-callout__action {
  width: 100%;
  gap: 0.625rem;
  border-color: #25d366;
  background: #25d366;
  color: #101813;
}

.direct-contact-callout__action:hover {
  border-color: #20bd5a;
  background: #20bd5a;
}

.government-priorities {
  margin-bottom: 3rem;
  padding-block: clamp(2rem, 5vw, 4rem);
  border-block: 1px solid rgb(229 216 27 / 28%);
}

.government-priorities__heading {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.government-priorities__heading h2 {
  max-width: 40rem;
  margin-bottom: 0;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
}

.government-priorities__heading > p {
  max-width: 42rem;
  margin-bottom: 0;
  color: var(--color-muted);
  line-height: 1.6;
}

.government-priorities__list {
  display: grid;
  border-top: 1px solid var(--color-border);
}

.government-priority {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 1rem;
  padding-block: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.government-priority__number {
  color: var(--color-brand);
  font-size: 0.75rem;
  font-variant-numeric: tabular-nums;
  font-weight: 720;
}

.government-priority h3 {
  margin: 0 0 0.5rem;
  color: var(--color-ink);
  font-size: 1.125rem;
}

.government-priority p {
  max-width: 46rem;
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

.government-priorities__status {
  max-width: 46rem;
  margin: 1.5rem 0 0;
  color: var(--color-subtle);
  font-size: 0.75rem;
  line-height: 1.55;
}

@media (max-width: 31.25rem) {
  .donation-section {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .donation-details {
    grid-template-columns: 1fr;
  }

  .donation-action {
    width: 100%;
  }
}

@media (min-width: 48rem) {
  .direct-contact-callout,
  .donation-callout {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .direct-contact-callout__action,
  .donation-callout__action {
    width: auto;
    min-width: 13rem;
  }
}

@media (min-width: 52rem) {
  .government-priorities__heading {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.8fr);
    align-items: end;
  }

  .government-priorities__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .government-priority:nth-child(odd) {
    padding-right: 2rem;
  }

  .government-priority:nth-child(even) {
    padding-left: 2rem;
    border-left: 1px solid var(--color-border);
  }
}

@media (min-width: 40rem) {
  .duarte-section {
    grid-template-columns: minmax(10rem, 0.72fr) minmax(0, 1.6fr);
    align-items: start;
  }
}

.format-result {
  display: grid;
}

.format-result__marker {
  display: grid;
  width: 4rem;
  height: 4rem;
  margin: 0.5rem 0 1.5rem;
  border: 1px solid var(--color-success);
  border-radius: 50%;
  color: var(--color-success);
  font-size: 0.875rem;
  font-variant-numeric: tabular-nums;
  font-weight: 720;
  place-items: center;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.25rem 1.5rem;
  padding-block: 1.25rem 1.5rem;
  border-top: 1px solid rgb(255 255 255 / 6%);
  color: var(--color-muted);
  font-size: 0.6875rem;
}

.site-footer__identity,
.social-links {
  display: flex;
  align-items: center;
}

.site-footer__identity {
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.social-links {
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.375rem;
}

.social-link {
  --social-color: var(--color-muted);

  position: relative;
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--social-color);
  place-items: center;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.social-link:hover {
  border-color: var(--social-color);
  background: color-mix(in srgb, var(--social-color) 12%, transparent);
  transform: translateY(-1px);
}

.social-link--whatsapp {
  --social-color: #25d366;
}

.social-link--telegram {
  --social-color: #26a5e4;
}

.social-link--x {
  --social-color: #f2f2f2;
}

.social-link--instagram {
  --social-color: #e4405f;
}

.social-link--facebook {
  --social-color: #1877f2;
}

.social-link--tiktok {
  --social-color: #25f4ee;
}

.social-link--youtube {
  --social-color: #ff0033;
}

.social-link:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 3px;
}

.social-link::after {
  position: absolute;
  z-index: 2;
  bottom: calc(100% + 0.5rem);
  left: 50%;
  padding: 0.3rem 0.45rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-small);
  background: var(--color-surface-raised);
  color: var(--color-ink);
  content: attr(data-tooltip);
  font-size: 0.6875rem;
  font-weight: 620;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 0.25rem);
  transition:
    opacity 120ms ease,
    transform 120ms ease;
  white-space: nowrap;
}

.social-link:hover::after,
.social-link:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.social-link svg {
  width: 1.125rem;
  height: 1.125rem;
  fill: currentcolor;
}

@media (max-width: 39.99rem) {
  .brand-header__nav {
    display: grid;
    gap: 0;
    grid-template-columns: minmax(0, 1fr);
  }

  .brand-header__link {
    justify-content: flex-start;
    border-top: 1px solid var(--color-border);
  }
}

@media (min-width: 40rem) {
  .brand-header,
  .registration-layout,
  .government-priorities,
  .direct-contact-callout,
  .donation-callout,
  .site-footer {
    width: min(calc(100% - 3rem), var(--content-width));
  }

  .brand-header {
    padding-block: 1.25rem;
  }

  .brand-lockup__emblem {
    width: 5rem;
    height: 5rem;
  }

  .brand-lockup__text strong {
    max-width: none;
    font-size: 0.9375rem;
  }

  .brand-header__tagline {
    display: block;
  }

  .brand-header__nav {
    width: auto;
  }

  .site-footer {
    flex-direction: row;
    justify-content: space-between;
    gap: 1rem 1.5rem;
  }

  .social-links {
    flex-wrap: nowrap;
  }

  .registration-layout {
    padding-block: 3.5rem 4rem;
  }
}

@media (min-width: 60rem) {
  .registration-layout {
    grid-template-columns: minmax(0, var(--registration-width)) minmax(18rem, 1fr);
    gap: clamp(4rem, 9vw, 8rem);
  }

  .process-overview {
    padding-left: clamp(2rem, 5vw, 4rem);
    border-left: 1px solid rgb(255 255 255 / 8%);
  }
}

@media (max-height: 43rem) and (max-width: 39.99rem) {
  .brand-lockup__emblem {
    width: 3.5rem;
    height: 3.5rem;
  }

  .registration-layout {
    align-items: start;
    padding-top: 1.25rem;
  }
}

@media (max-width: 39.99rem) {
  .step-count {
    display: none;
  }
}

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

@media print {
  .registration-page::before,
  .button,
  .step-indicator {
    display: none;
  }

  body,
  .registration-panel {
    background: #fff;
    color: #000;
    box-shadow: none;
  }
}
