:root {
  --blue-deep: oklch(30% 0.13 254);
  --blue-dark: oklch(25% 0.105 254);
  --blue: oklch(46% 0.16 251);
  --yellow: oklch(86% 0.18 93);
  --yellow-hover: oklch(90% 0.17 95);
  --green: oklch(54% 0.16 142);
  --paper: oklch(98% 0.012 95);
  --paper-muted: oklch(94% 0.018 96);
  --ink: oklch(25% 0.055 253);
  --muted: oklch(48% 0.035 250);
  --line: oklch(84% 0.025 250);
  --focus: oklch(82% 0.18 92);
  --font-display: "Archivo", "Arial Narrow", Arial, sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --shell: min(100% - 2.5rem, 76rem);
  --header-height: 5.5rem;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); }
body {
  margin: 0;
  min-width: 20rem;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  font-kerning: normal;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; }
img { max-width: 100%; height: auto; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible { outline: 3px solid var(--focus); outline-offset: 4px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 200;
  padding: 0.75rem 1rem;
  translate: 0 -200%;
  background: var(--yellow);
  color: var(--blue-dark);
  font-weight: 800;
  text-decoration: none;
}
.skip-link:focus { translate: 0; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  background: var(--blue-deep);
  color: var(--paper);
  transition: box-shadow 220ms var(--ease-out), background-color 220ms var(--ease-out);
}
.site-header.is-scrolled {
  background: var(--blue-dark);
  box-shadow: 0 0.4rem 1.5rem oklch(15% 0.06 254 / 0.28);
}
.header-inner {
  width: var(--shell);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  position: relative;
  display: inline-grid;
  color: var(--paper);
  font-family: var(--font-display);
  font-style: italic;
  line-height: 0.75;
  text-decoration: none;
  text-transform: uppercase;
}
.brand-small { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.02em; }
.brand strong { font-size: 1.85rem; font-weight: 900; letter-spacing: -0.08em; }
.brand-mark {
  position: absolute;
  top: -0.15rem;
  right: -0.8rem;
  width: 0.8rem;
  height: 0.34rem;
  rotate: -22deg;
  background: linear-gradient(90deg, var(--green) 0 50%, var(--yellow) 50%);
}
.site-nav {
  position: fixed;
  inset: var(--header-height) 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  background: var(--blue-dark);
  opacity: 0;
  visibility: hidden;
  translate: 0 -1rem;
  transition: opacity 220ms var(--ease-out), translate 220ms var(--ease-out), visibility 220ms;
}
.site-nav.is-open { opacity: 1; visibility: visible; translate: 0; }
.site-nav a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
}
.menu-toggle {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-content: center;
  gap: 0.4rem;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}
.menu-toggle span:not(.sr-only) {
  width: 1.6rem;
  height: 2px;
  background: currentColor;
  transition: rotate 180ms var(--ease-out), translate 180ms var(--ease-out);
}
.menu-toggle[aria-expanded="true"] span:nth-of-type(2) { translate: 0 0.2rem; rotate: 45deg; }
.menu-toggle[aria-expanded="true"] span:nth-of-type(3) { translate: 0 -0.2rem; rotate: -45deg; }
.header-action { display: none; }

.button {
  min-height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.85rem 1.3rem;
  border: 2px solid var(--yellow);
  border-radius: 999px;
  background: var(--yellow);
  color: var(--blue-dark);
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: background-color 180ms var(--ease-out), border-color 180ms var(--ease-out), translate 180ms var(--ease-out);
}
.button svg {
  width: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.button-outline { background: transparent; border-color: var(--paper); color: var(--paper); }
.button-small { min-height: 2.75rem; padding: 0.65rem 1rem; font-size: 0.9rem; }
.button-small svg { width: 1.25rem; fill: currentColor; stroke: none; }

.hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-height) + 2.5rem) 0 4.8rem;
  overflow: hidden;
  isolation: isolate;
  background: radial-gradient(circle at 12% 10%, oklch(48% 0.17 251 / 0.42), transparent 38rem), var(--blue-deep);
  color: var(--paper);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.16;
  background-image: linear-gradient(oklch(98% 0.012 95 / 0.12) 1px, transparent 1px), linear-gradient(90deg, oklch(98% 0.012 95 / 0.12) 1px, transparent 1px);
  background-size: 4rem 4rem;
  mask-image: linear-gradient(90deg, black, transparent 75%);
}
.hero-grid {
  position: relative;
  z-index: 2;
  width: var(--shell);
  margin-inline: auto;
  display: grid;
  align-items: center;
  gap: 2rem;
}
.hero-copy { position: relative; z-index: 4; }
.eyebrow, .section-kicker {
  margin: 0 0 1rem;
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 850;
  font-style: italic;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow span {
  display: inline-flex;
  margin-left: 0.5rem;
  padding: 0.15rem 0.45rem;
  background: var(--yellow);
  color: var(--blue-dark);
  font-style: normal;
  letter-spacing: 0.06em;
}
.hero h1 {
  max-width: 10ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 16vw, 7.5rem);
  font-stretch: condensed;
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.085em;
  line-height: 0.78;
  text-transform: uppercase;
  text-wrap: balance;
}
.hero h1 span, .hero h1 strong { display: block; }
.hero h1 span { font-size: 0.62em; letter-spacing: -0.065em; }
.hero-slogan {
  max-width: 32rem;
  margin: 1.6rem 0 0;
  font-size: clamp(1.1rem, 3vw, 1.45rem);
  font-weight: 600;
  line-height: 1.35;
  text-wrap: pretty;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  margin-top: 1.6rem;
}
.vote-lockup {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-top: 1.8rem;
  color: var(--yellow);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  line-height: 0.78;
}
.vote-lockup span {
  margin-top: 0.35rem;
  padding: 0.3rem 0.45rem;
  background: var(--green);
  color: var(--paper);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.vote-lockup strong {
  font-size: clamp(3.2rem, 16vw, 7rem);
  letter-spacing: -0.075em;
  font-variant-numeric: tabular-nums;
}
.hero-portrait { position: relative; min-height: 29rem; margin: 0 -1.25rem -4.8rem; }
.portrait-halo {
  position: absolute;
  inset: 4% -15% -10% 9%;
  z-index: -1;
  border-radius: 52% 0 0;
  background: var(--yellow);
  rotate: -5deg;
}
.portrait-frame {
  position: absolute;
  inset: 0 4% 0 4%;
  overflow: hidden;
  border-radius: 48% 48% 0 0;
  background-color: var(--paper);
  background-image: linear-gradient(45deg, var(--paper-muted) 25%, transparent 25%), linear-gradient(-45deg, var(--paper-muted) 25%, transparent 25%), linear-gradient(45deg, transparent 75%, var(--paper-muted) 75%), linear-gradient(-45deg, transparent 75%, var(--paper-muted) 75%);
  background-position: 0 0, 0 1rem, 1rem -1rem, -1rem 0;
  background-size: 2rem 2rem;
  box-shadow: 0 1.5rem 4rem oklch(14% 0.075 254 / 0.38);
}
.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, var(--blue-deep) 100%);
  pointer-events: none;
}
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 10%; }
.portrait-note {
  position: absolute;
  right: 5%;
  bottom: 9%;
  z-index: 2;
  margin: 0;
  padding: 0.4rem 0.75rem;
  background: var(--green);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-swoop { position: absolute; z-index: -1; border-radius: 50%; pointer-events: none; }
.hero-swoop-yellow { width: 58rem; height: 18rem; right: -34rem; bottom: 2rem; border: 3.2rem solid var(--yellow); rotate: -18deg; }
.hero-swoop-green { width: 52rem; height: 13rem; right: -39rem; bottom: -2rem; border: 1.7rem solid var(--green); rotate: -19deg; }
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.3rem;
  z-index: 6;
  display: none;
  align-items: center;
  gap: 0.5rem;
  color: var(--paper);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  translate: -50% 0;
}
.hero-scroll svg { width: 1rem; fill: none; stroke: currentColor; stroke-width: 2; }

.section-shell { width: var(--shell); margin-inline: auto; }
.section-paper { background: var(--paper); }
.commitments { position: relative; padding: clamp(5rem, 10vw, 9rem) 0; }
.commitments::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(22rem, 62vw);
  height: 0.45rem;
  translate: -50% -50%;
  background: linear-gradient(90deg, var(--blue) 0 55%, var(--yellow) 55% 82%, var(--green) 82%);
}
.section-heading { display: grid; gap: 1rem; margin-bottom: clamp(3rem, 7vw, 6rem); }
.section-kicker { color: var(--blue); }
.section-heading h2, .candidate-copy h2, .participate-heading h2 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 8vw, 5.5rem);
  font-stretch: condensed;
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 1;
  text-wrap: balance;
}
.section-heading > p:last-child { max-width: 36rem; margin: 0; color: var(--muted); font-size: 1.15rem; }
.commitment-list { border-top: 1px solid var(--line); }
.commitment {
  display: grid;
  grid-template-columns: 2.2rem 3.2rem 1fr;
  gap: 0.8rem;
  padding: 1.7rem 0;
  border-bottom: 1px solid var(--line);
}
.commitment-index { color: var(--blue); font-family: var(--font-display); font-size: 0.8rem; font-weight: 800; }
.commitment-icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--blue-dark);
}
.commitment:nth-child(2) .commitment-icon { background: var(--blue); color: var(--paper); }
.commitment:nth-child(3) .commitment-icon { background: var(--green); color: var(--paper); }
.commitment-icon svg {
  width: 1.7rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.commitment h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 1;
}
.commitment p { max-width: 56ch; margin: 0; color: var(--muted); }

.candidate {
  position: relative;
  padding: clamp(5rem, 10vw, 9rem) 0;
  overflow: hidden;
  background: var(--blue-deep);
  color: var(--paper);
}
.candidate-number {
  position: absolute;
  top: -0.1em;
  right: -0.06em;
  color: oklch(41% 0.13 252);
  font-family: var(--font-display);
  font-size: clamp(8rem, 27vw, 25rem);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.11em;
  line-height: 1;
  pointer-events: none;
}
.candidate-grid { position: relative; display: grid; gap: 3rem; align-items: center; }
.candidate-art { position: relative; max-width: 27rem; margin-inline: auto; rotate: -2deg; }
.candidate-art::before {
  content: "";
  position: absolute;
  inset: -0.65rem;
  z-index: -1;
  background: var(--yellow);
  rotate: 4deg;
}
.candidate-art img { width: 100%; box-shadow: 0 2rem 4rem oklch(14% 0.075 254 / 0.4); }
.candidate-copy { position: relative; z-index: 2; }
.candidate-copy .section-kicker { color: var(--yellow); }
.candidate-copy h2 { max-width: 11ch; }
.candidate-copy > p {
  max-width: 57ch;
  margin: 1.4rem 0 0;
  color: oklch(91% 0.025 245);
  font-size: 1.08rem;
}
.candidate-copy .candidate-lead {
  color: var(--paper);
  font-size: clamp(1.2rem, 3vw, 1.55rem);
  font-weight: 650;
  line-height: 1.4;
}
.candidate-copy blockquote {
  max-width: 28rem;
  margin: 2.5rem 0 0;
  padding: 1.2rem 0 0;
  border-top: 0.35rem solid var(--yellow);
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 4vw, 2rem);
  font-style: italic;
  font-weight: 800;
  line-height: 1.2;
}

.participate {
  position: relative;
  padding: clamp(5rem, 10vw, 9rem) 0;
  overflow: hidden;
  background: var(--yellow);
  color: var(--blue-dark);
}
.participate-ribbon {
  position: absolute;
  top: -7rem;
  right: -9rem;
  width: 24rem;
  height: 11rem;
  border: 2rem solid var(--green);
  border-radius: 50%;
  rotate: -20deg;
}
.participate-heading { position: relative; max-width: 56rem; }
.participate-heading .section-kicker { color: var(--blue); }
.participate-heading h2 { max-width: 14ch; }
.participate-actions { margin-top: clamp(3rem, 6vw, 5rem); border-top: 2px solid var(--blue-dark); }
.participate-action {
  display: grid;
  grid-template-columns: 2rem 1fr 1.5rem;
  align-items: center;
  gap: 1rem;
  min-height: 8rem;
  padding: 1.3rem 0;
  border-bottom: 2px solid var(--blue-dark);
  color: var(--blue-dark);
  text-decoration: none;
  transition: padding-inline 220ms var(--ease-out), background-color 220ms var(--ease-out);
}
.action-number { align-self: start; font-family: var(--font-display); font-size: 0.8rem; font-weight: 800; }
.action-copy { display: grid; gap: 0.35rem; }
.action-copy strong {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.6rem);
  font-weight: 850;
  letter-spacing: -0.05em;
  line-height: 1;
}
.action-copy span { max-width: 46ch; line-height: 1.4; }
.participate-action > svg {
  width: 1.5rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: translate 180ms var(--ease-out);
}

.site-footer { position: relative; overflow: hidden; background: var(--blue-dark); color: var(--paper); }
.footer-swoop {
  position: absolute;
  top: -9rem;
  right: -16rem;
  width: 36rem;
  height: 14rem;
  border: 2rem solid var(--yellow);
  border-radius: 50%;
  rotate: -13deg;
}
.footer-inner {
  position: relative;
  width: var(--shell);
  margin-inline: auto;
  padding: clamp(4.5rem, 8vw, 7rem) 0 3rem;
  display: grid;
  gap: 2.5rem;
}
.footer-brand {
  display: grid;
  width: max-content;
  font-family: var(--font-display);
  font-style: italic;
  line-height: 0.85;
  text-transform: uppercase;
}
.footer-brand span { font-size: 1rem; font-weight: 700; }
.footer-brand strong { font-size: 2.7rem; font-weight: 900; letter-spacing: -0.08em; }
.footer-brand b { margin-top: 1rem; color: var(--yellow); font-size: 2.2rem; font-variant-numeric: tabular-nums; }
.footer-candidate p { margin: 0.2rem 0; }
.footer-candidate > p:first-child { font-family: var(--font-display); font-size: 1.2rem; }
.footer-number { color: var(--yellow); }
.footer-contact { display: grid; align-content: start; gap: 0.5rem; font-style: normal; }
.footer-contact a { width: fit-content; color: var(--paper); text-underline-offset: 0.25rem; }
.footer-legal {
  position: relative;
  width: var(--shell);
  margin-inline: auto;
  padding: 1.2rem 0 max(1.2rem, env(safe-area-inset-bottom));
  border-top: 1px solid oklch(91% 0.025 245 / 0.35);
  color: oklch(86% 0.035 245);
  font-size: 0.82rem;
  line-height: 1.5;
}
.footer-legal p { margin: 0.15rem 0; }
.whatsapp-float {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 90;
  width: 3.5rem;
  height: 3.5rem;
  display: grid;
  place-items: center;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: var(--green);
  color: var(--paper);
  box-shadow: 0 0.7rem 2rem oklch(18% 0.055 250 / 0.3);
  transition: scale 180ms var(--ease-out);
}
.whatsapp-float svg { width: 1.75rem; fill: currentColor; }

.reveal { opacity: 1; translate: none; }

@media (hover: hover) {
  .button:hover { translate: 0 -0.16rem; background: var(--yellow-hover); border-color: var(--yellow-hover); }
  .button-outline:hover { background: var(--paper); border-color: var(--paper); color: var(--blue-dark); }
  .site-nav a:hover, .footer-contact a:hover { color: var(--yellow); }
  .participate-action:hover { padding-inline: 1rem; background: oklch(91% 0.15 94); }
  .participate-action:hover > svg { translate: 0.25rem 0; }
  .whatsapp-float:hover { scale: 1.06; }
}

@media (min-width: 40rem) {
  :root { --shell: min(100% - 4rem, 76rem); }
  .header-action { display: inline-flex; }
  .hero-actions { flex-direction: row; align-items: center; }
  .hero-actions .button { min-width: 11rem; }
  .section-heading { grid-template-columns: minmax(0, 1.4fr) minmax(16rem, 0.6fr); align-items: end; }
  .section-heading .section-kicker { grid-column: 1 / -1; }
  .section-heading > p:last-child { align-self: end; }
  .commitment { grid-template-columns: 3rem 4.5rem 1fr; gap: 1.5rem; padding: 2.2rem 0; }
  .commitment-icon { width: 4rem; height: 4rem; }
  .commitment-icon svg { width: 2.2rem; }
  .participate-action { grid-template-columns: 3rem 1fr 2rem; min-height: 9.5rem; gap: 1.5rem; }
  .footer-inner { grid-template-columns: 0.8fr 1.3fr; }
  .footer-contact { grid-column: 2; }
}

@media (min-width: 56rem) {
  .menu-toggle { display: none; }
  .site-nav {
    position: static;
    inset: auto;
    display: flex;
    flex-direction: row;
    gap: clamp(1.5rem, 3vw, 2.8rem);
    background: transparent;
    opacity: 1;
    visibility: visible;
    translate: none;
  }
  .site-nav a { font-size: 0.9rem; }
  .hero { min-height: 48rem; padding: calc(var(--header-height) + 3.5rem) 0 5rem; }
  .hero-grid { min-height: 38rem; grid-template-columns: minmax(28rem, 1fr) minmax(23rem, 0.78fr); gap: 0; }
  .hero h1 { font-size: clamp(5.4rem, 8.4vw, 7.5rem); }
  .hero-portrait { align-self: stretch; min-height: 38rem; margin: 0 -4rem -5rem -1rem; }
  .portrait-frame { inset: 0; border-radius: 52% 0 0; }
  .portrait-frame img { object-position: 50% 5%; }
  .portrait-halo { inset: -2% -20% -15% 2%; }
  .portrait-note { right: 7%; bottom: 12%; }
  .hero-swoop-yellow { right: -20rem; }
  .hero-swoop-green { right: -25rem; }
  .hero-scroll { display: flex; }
  .section-heading { grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.5fr); }
  .section-heading h2, .candidate-copy h2, .participate-heading h2 { line-height: 0.94; }
  .commitment { grid-template-columns: 3rem 5rem 19rem minmax(18rem, 1fr); align-items: center; }
  .commitment h3 { margin: 0; }
  .candidate-grid { grid-template-columns: minmax(20rem, 0.75fr) minmax(28rem, 1fr); gap: clamp(4rem, 8vw, 8rem); }
  .candidate-art { margin: 0; }
  .footer-inner { grid-template-columns: 0.8fr 1.2fr 1fr; align-items: start; }
  .footer-contact { grid-column: auto; }
}

@media (min-width: 75rem) {
  .hero-portrait { margin-right: -7rem; }
}

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