:root {
  --blue-900: #063b70;
  --blue-700: #075da5;
  --blue-500: #0792c9;
  --yellow: #ffd21a;
  --green: #07984d;
  --white: #ffffff;
  --ink: #102033;
  --muted: #5f6f7f;
  --line: #dce7ef;
  --shadow: 0 24px 70px rgba(3, 43, 78, 0.18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: #eef6fb;
  font-family: "Segoe UI", Arial, sans-serif;
}

a { color: inherit; }

.campaign { min-height: 100vh; }

.hero {
  min-height: 100vh;
  padding: clamp(24px, 4vw, 64px);
  overflow: hidden;
  background:
    linear-gradient(118deg, rgba(7, 93, 165, 0.98) 0 35%, rgba(7, 146, 201, 0.94) 35% 53%, rgba(255, 255, 255, 0.96) 53%),
    var(--blue-700);
  position: relative;
}

.hero::before {
  content: "22122";
  position: absolute;
  top: -0.22em;
  left: -0.04em;
  color: rgba(255, 255, 255, 0.07);
  font-size: clamp(9rem, 23vw, 26rem);
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 1;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: 8%;
  width: 250px;
  height: 42px;
  background: var(--green);
  transform: rotate(-43deg);
}

.hero__content {
  width: min(1320px, 100%);
  min-height: calc(100vh - clamp(120px, 14vw, 190px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 0.82fr) minmax(320px, 0.86fr);
  align-items: center;
  gap: clamp(24px, 3vw, 52px);
  position: relative;
  z-index: 1;
}

.identity { color: var(--white); }

.eyebrow,
.transparency__label {
  margin: 0 0 16px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow { color: var(--yellow); }

h1 {
  margin: 0;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(4.5rem, 8vw, 8.5rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.75;
  text-transform: uppercase;
}

h1 span {
  display: block;
  color: var(--yellow);
  font-size: 0.74em;
}

.full-name {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
}

.candidacy {
  margin: 34px 0;
  padding: 20px 0;
  border-block: 1px solid rgba(255, 255, 255, 0.24);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.candidacy p { margin: 0; }

.candidacy > p:first-child {
  max-width: 8ch;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.05;
}

.ticket {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.ticket span {
  color: var(--yellow);
  font-weight: 900;
}

.ticket strong {
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 1;
}

.links { display: flex; flex-wrap: wrap; gap: 10px; }

.button {
  min-height: 46px;
  padding: 13px 17px;
  border: 2px solid var(--yellow);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease;
}

.button:hover { transform: translateY(-2px); }
.button:focus-visible { outline: 3px solid var(--white); outline-offset: 3px; }
.button--primary { color: var(--blue-900); background: var(--yellow); }
.button--secondary { color: var(--white); }

.portrait {
  align-self: end;
  height: min(78vh, 850px);
  margin: 0;
  overflow: hidden;
  border-bottom: 9px solid var(--yellow);
  border-radius: 140px 140px 4px 4px;
  box-shadow: var(--shadow);
  background: var(--white);
}

.portrait img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 41%;
}

.transparency {
  padding: clamp(24px, 3vw, 42px);
  border-top: 8px solid var(--yellow);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow);
}

.transparency__label { color: var(--blue-700); }

h2 {
  margin: 0 0 26px;
  max-width: 16ch;
  color: var(--blue-900);
  font-size: clamp(1.6rem, 2.3vw, 2.35rem);
  line-height: 1.05;
}

dl { margin: 0; }

dl div {
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 0.94rem;
  font-weight: 700;
}

dd a:hover { color: var(--blue-700); }
dd a:focus-visible, footer a:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }

.transparency__note {
  margin: 22px 0 0;
  padding: 16px;
  border-left: 4px solid var(--green);
  color: var(--muted);
  background: #f2f8f5;
  font-size: 0.78rem;
  line-height: 1.5;
}

footer {
  width: min(1320px, 100%);
  margin: 26px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.38);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 700;
}

footer a { color: var(--blue-900); }

@media (max-width: 1050px) {
  .hero { background: linear-gradient(160deg, var(--blue-700) 0 47%, #eef7fb 47%); }
  .hero__content { grid-template-columns: 1fr 1fr; }
  .transparency { grid-column: 1 / -1; }
  .portrait { height: 620px; }
  footer a { color: var(--blue-900); }
}

@media (max-width: 700px) {
  .hero { padding: 28px 18px; background: linear-gradient(170deg, var(--blue-700) 0 49%, #eef7fb 49%); }
  .hero::before { top: 0; font-size: 8rem; }
  .hero::after { display: none; }
  .hero__content { display: flex; flex-direction: column; align-items: stretch; gap: 26px; }
  .identity { padding-top: 22px; }
  h1 { font-size: clamp(4.2rem, 24vw, 6.7rem); }
  .portrait { order: 2; height: min(125vw, 620px); border-radius: 90px 90px 4px 4px; }
  .transparency { order: 3; padding: 24px 20px; }
  .links { flex-direction: column; }
  .button { width: 100%; }
  footer { flex-direction: column; color: var(--blue-900); }
}

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