:root {
  --blue-950: #031a4b;
  --blue-900: #052b71;
  --blue-800: #083d92;
  --blue-700: #0a56b5;
  --green-500: #00c874;
  --green-400: #13e68c;
  --ink: #071c40;
  --paper: #f4f7fb;
  --white: #ffffff;
  --muted: #5e6c82;
  --border: rgba(6, 43, 113, 0.12);
  --shadow: 0 22px 60px rgba(2, 18, 58, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--white);
  color: var(--blue-950);
  font-weight: 800;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.campaign-mark {
  display: grid;
  width: max-content;
  color: var(--white);
  line-height: 0.82;
  text-decoration: none;
}

.campaign-mark span {
  justify-self: center;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 0.74rem;
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.campaign-mark strong {
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 2.45rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.campaign-mark small {
  justify-self: end;
  color: var(--green-400);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 0.82rem;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.party-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.party-mark strong {
  color: var(--green-400);
}

.party-symbol {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 4px 10px 4px 10px;
  background: linear-gradient(135deg, var(--green-400) 50%, #1270d3 50%);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 820px;
  overflow: hidden;
  background:
    linear-gradient(125deg, rgba(3, 26, 75, 0.99), rgba(5, 43, 113, 0.95) 55%, rgba(8, 61, 146, 0.92)),
    radial-gradient(circle at 82% 45%, rgba(19, 230, 140, 0.22), transparent 38%);
  color: var(--white);
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: -10%;
  bottom: -260px;
  left: -10%;
  height: 380px;
  border-radius: 50% 50% 0 0;
  background: var(--paper);
  content: "";
}

.hero-glow {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.hero-glow-one {
  top: 120px;
  right: -260px;
  width: 680px;
  height: 680px;
  box-shadow: inset 0 0 0 70px rgba(19, 230, 140, 0.025), inset 0 0 0 140px rgba(255, 255, 255, 0.015);
}

.hero-glow-two {
  bottom: 90px;
  left: -180px;
  width: 420px;
  height: 420px;
  box-shadow: inset 0 0 0 50px rgba(255, 255, 255, 0.018);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 72px;
  align-items: center;
  padding-top: 150px;
  padding-bottom: 116px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 60px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-400);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: "Arial Narrow", Arial, sans-serif;
  line-height: 0.94;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(4.2rem, 7.2vw, 7.15rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

h1 em {
  color: var(--green-400);
  font-style: normal;
}

.hero-intro {
  max-width: 650px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.7vw, 1.16rem);
  line-height: 1.7;
}

.vote-lockup {
  display: flex;
  align-items: flex-end;
  gap: 13px;
  width: max-content;
  margin: 0 0 30px;
  padding: 12px 22px 10px;
  border-left: 4px solid var(--green-400);
  background: rgba(255, 255, 255, 0.08);
}

.vote-lockup span {
  margin-bottom: 8px;
  color: var(--green-400);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.vote-lockup strong {
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: clamp(4rem, 6vw, 5.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.78;
}

.instagram-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 14px 22px;
  border: 2px solid transparent;
  border-radius: 12px;
  background: var(--green-400);
  box-shadow: 0 14px 30px rgba(0, 200, 116, 0.22);
  color: var(--blue-950);
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.instagram-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.instagram-button .instagram-dot {
  fill: currentColor;
  stroke: none;
}

.instagram-button:hover {
  background: var(--white);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

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

.campaign-id {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.campaign-portrait {
  position: relative;
  z-index: 2;
  margin: 0;
  transform: rotate(1.5deg);
}

.portrait-frame {
  position: relative;
  overflow: hidden;
  border: 7px solid var(--white);
  border-radius: 24px 24px 58px 24px;
  box-shadow: var(--shadow);
  background: var(--blue-900);
}

.portrait-frame::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.portrait-frame img {
  width: 100%;
  height: auto;
}

.campaign-portrait figcaption {
  position: absolute;
  right: -18px;
  bottom: 34px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--green-400);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  color: var(--blue-950);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.commitments {
  padding: 72px 0 112px;
}

.section-heading {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  align-items: end;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.section-heading .eyebrow {
  margin-bottom: 6px;
  color: var(--blue-700);
}

.section-heading h2,
.final-cta h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--border);
}

.commitment-card {
  position: relative;
  min-height: 270px;
  padding: 34px 26px 38px;
  border-right: 1px solid var(--border);
}

.commitment-card:first-child {
  border-left: 1px solid var(--border);
}

.card-number {
  display: block;
  margin-bottom: 54px;
  color: var(--green-500);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.commitment-card h3 {
  margin-bottom: 13px;
  color: var(--blue-900);
  font-size: 1.65rem;
  font-weight: 900;
  text-transform: uppercase;
}

.commitment-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 76px 0;
  background: var(--green-500);
  color: var(--blue-950);
}

.final-cta::after {
  position: absolute;
  top: -190px;
  right: -100px;
  width: 420px;
  height: 420px;
  border: 90px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  content: "";
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
}

.final-cta .eyebrow {
  color: var(--blue-900);
}

.final-cta h2 {
  max-width: 780px;
  font-size: clamp(2.8rem, 4.5vw, 4.6rem);
}

.instagram-button-light {
  background: var(--blue-950);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(2, 18, 58, 0.25);
}

.instagram-button-light:hover {
  background: var(--white);
  color: var(--blue-950);
}

.site-footer {
  padding: 42px 0;
  background: var(--blue-950);
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.footer-brand,
.footer-legal {
  display: grid;
  gap: 5px;
  font-size: 0.76rem;
  line-height: 1.6;
}

.footer-brand strong,
.footer-legal strong {
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-legal {
  justify-items: end;
  text-align: right;
}

@media (max-width: 940px) {
  .hero {
    min-height: 0;
  }

  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 36px;
    padding-bottom: 140px;
  }

  h1 {
    font-size: clamp(3.8rem, 8vw, 6rem);
  }

  .commitment-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .commitment-card:nth-child(2) {
    border-right: 1px solid var(--border);
  }

  .commitment-card:nth-child(3) {
    border-left: 1px solid var(--border);
    border-top: 1px solid var(--border);
  }

  .commitment-card:nth-child(4) {
    border-top: 1px solid var(--border);
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 640px);
  }

  .header-inner {
    min-height: 82px;
  }

  .campaign-mark strong {
    font-size: 1.9rem;
  }

  .campaign-mark span {
    font-size: 0.58rem;
  }

  .campaign-mark small {
    font-size: 0.65rem;
  }

  .party-mark {
    gap: 7px;
    padding: 8px 10px;
    font-size: 0.66rem;
  }

  .party-symbol {
    width: 15px;
    height: 15px;
  }

  .hero::after {
    bottom: -310px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 126px;
    padding-bottom: 138px;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  h1 {
    font-size: clamp(3.55rem, 17vw, 5.5rem);
  }

  .hero-intro {
    font-size: 0.98rem;
  }

  .vote-lockup strong {
    font-size: clamp(4rem, 20vw, 5.5rem);
  }

  .instagram-button {
    width: 100%;
  }

  .campaign-portrait {
    order: -1;
    grid-row: 1;
    width: min(100%, 430px);
    margin-inline: auto;
    transform: none;
  }

  .hero-copy {
    grid-row: 2;
  }

  .campaign-portrait figcaption {
    right: 10px;
  }

  .commitments {
    padding-top: 42px;
    padding-bottom: 74px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .section-heading h2,
  .final-cta h2 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

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

  .commitment-card,
  .commitment-card:first-child,
  .commitment-card:nth-child(2),
  .commitment-card:nth-child(3),
  .commitment-card:nth-child(4) {
    min-height: 0;
    padding: 28px 24px 30px;
    border-top: 0;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    border-left: 1px solid var(--border);
  }

  .card-number {
    margin-bottom: 22px;
  }

  .final-cta {
    padding: 62px 0;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-legal {
    justify-items: start;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
