:root {
  --blue: #0c1c76;
  --blue-deep: #071457;
  --blue-institutional: #242e66;
  --orange: #e75621;
  --orange-dark: #c83e10;
  --sky: #9dc5ea;
  --white: #ffffff;
  --off-white: #f7f7f2;
  --ink: #111a38;
  --muted: #5b6380;
  --border: rgba(12, 28, 118, 0.14);
  --shadow: 0 24px 70px rgba(7, 20, 87, 0.16);
  --wrap: 1180px;
  --header-height: 76px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--off-white);
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
summary {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

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

img {
  height: auto;
}

[hidden] {
  display: none !important;
}

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

h1,
h2,
h3 {
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.wrap {
  width: min(calc(100% - 48px), var(--wrap));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 112px 0;
  overflow: clip;
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--blue);
  background: var(--white);
  border: 3px solid var(--orange);
  border-radius: 8px;
  font-weight: 800;
  transform: translateY(-160%);
}

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

:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  background: rgba(12, 28, 118, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 8px 32px rgba(7, 20, 87, 0.14);
  backdrop-filter: blur(16px) saturate(140%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100%;
}

.header-brand {
  position: relative;
  z-index: 2;
  width: 188px;
}

.header-brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav > a:not(.button) {
  position: relative;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.91rem;
  font-weight: 800;
}

.main-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav > a:not(.button):hover::after,
.main-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  border-radius: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 2px solid transparent;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding: 10px 18px;
}

.button-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 14px 30px rgba(231, 86, 33, 0.3);
}

.button-primary:hover {
  background: #f3632e;
}

.button-light {
  color: var(--blue);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(7, 20, 87, 0.14);
}

.button-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.64);
  background: transparent;
}

.button-outline:hover,
.button-transparent:hover {
  color: var(--blue);
  background: var(--white);
}

.button-dark {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 14px 30px rgba(7, 20, 87, 0.24);
}

.button-dark:hover {
  background: var(--blue-deep);
}

.button-transparent {
  color: var(--blue);
  border-color: rgba(12, 28, 118, 0.45);
  background: transparent;
}

.hero {
  position: relative;
  min-height: min(900px, 100svh);
  padding-top: var(--header-height);
  color: var(--white);
  background:
    radial-gradient(circle at 78% 42%, rgba(157, 197, 234, 0.25), transparent 30%),
    linear-gradient(118deg, var(--blue-deep) 0%, var(--blue) 52%, #102c92 100%);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  right: -12vw;
  bottom: -32vw;
  width: 72vw;
  aspect-ratio: 1;
  background: var(--orange);
  border-radius: 50%;
  content: "";
  opacity: 0.96;
}

.hero-pattern {
  position: absolute;
  inset: var(--header-height) 0 0 0;
  background-image: url("assets/campanha/padrao-azul.webp");
  background-position: center;
  background-size: 760px auto;
  mix-blend-mode: screen;
  opacity: 0.13;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: calc(min(900px, 100svh) - var(--header-height));
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  align-items: center;
  gap: 30px;
}

.hero-copy {
  position: relative;
  z-index: 4;
  min-width: 0;
  padding: 42px 0 62px;
}

.campaign-label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.campaign-label span {
  padding: 7px 10px;
  color: var(--white);
  background: var(--orange);
  border-radius: 4px;
}

.hero-logo {
  width: min(292px, 70%);
  height: auto;
  margin-bottom: 20px;
}

.hero-mobile-visual {
  display: none;
}

.hero-eyebrow {
  margin-bottom: 5px;
  color: var(--sky);
  font-size: clamp(0.92rem, 1.4vw, 1.08rem);
  font-weight: 800;
}

.hero h1 {
  max-width: 670px;
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 3.55vw, 3.35rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-transform: uppercase;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  color: var(--orange);
  font-style: normal;
}

@media (min-width: 901px) {
  .hero .campaign-label,
  .hero .hero-branding {
    display: none;
  }

  .hero h1 em {
    text-shadow:
      0 0 10px rgba(255, 255, 255, 0.15),
      0 6px 24px rgba(255, 255, 255, 0.08);
  }
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.65;
}

.hero-actions,
.join-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.party-signature {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.party-signature strong {
  color: var(--orange);
  font-size: 1.55rem;
  letter-spacing: -0.04em;
}

.hero-visual {
  position: relative;
  min-width: 0;
  align-self: end;
  height: calc(min(900px, 100svh) - var(--header-height));
  min-height: 690px;
}

.hero-photo-backdrop {
  position: absolute;
  right: 7%;
  bottom: 7%;
  width: 72%;
  aspect-ratio: 1;
  background: var(--sky);
  border: 14px solid rgba(255, 255, 255, 0.1);
  border-radius: 48% 52% 24% 76% / 56% 31% 69% 44%;
  transform: rotate(-6deg);
}

.hero-photo {
  position: absolute;
  z-index: 2;
  right: -2%;
  bottom: 0;
  width: min(840px, 136%);
  max-height: 100%;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 24px 30px rgba(4, 11, 58, 0.27));
}

.hero-stamp {
  position: absolute;
  z-index: 3;
  top: 11%;
  right: -4%;
  width: 165px;
  height: auto;
  animation: stamp-float 6s ease-in-out infinite;
}

.hero-region {
  position: absolute;
  z-index: 4;
  right: 1%;
  bottom: 7%;
  margin: 0;
  padding: 12px 15px;
  color: var(--blue);
  background: var(--white);
  border-left: 6px solid var(--orange);
  border-radius: 5px;
  box-shadow: 0 12px 30px rgba(7, 20, 87, 0.22);
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero-scroll {
  position: absolute;
  z-index: 5;
  bottom: 20px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-shadow:
    0 2px 8px rgba(7, 20, 87, 0.78),
    0 5px 16px rgba(7, 20, 87, 0.48);
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero-scroll span {
  color: var(--white);
  font-size: 1.2rem;
}

@keyframes stamp-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
}

.section-kicker {
  margin-bottom: 17px;
  color: var(--orange-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-kicker::before {
  display: inline-block;
  width: 24px;
  height: 4px;
  margin-right: 9px;
  vertical-align: 2px;
  background: currentColor;
  border-radius: 2px;
  content: "";
}

.about {
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: clamp(54px, 8vw, 106px);
}

.about-photo-wrap {
  position: relative;
  min-height: 630px;
  isolation: isolate;
}

.about-photo-wrap::before {
  position: absolute;
  z-index: -1;
  inset: 8% 2% 2% 8%;
  background: var(--blue);
  border-radius: 160px 18px 18px 18px;
  content: "";
}

.about-photo-wrap::after {
  position: absolute;
  z-index: 3;
  top: 7%;
  right: -24px;
  width: 78px;
  height: 78px;
  background: var(--orange);
  border: 12px solid var(--off-white);
  border-radius: 50%;
  content: "";
}

.about-pattern {
  position: absolute;
  z-index: -2;
  top: -5%;
  left: -8%;
  width: 72%;
  opacity: 0.72;
}

.about-photo {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 50%;
  width: auto;
  height: 620px;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom;
  transform: translateX(-50%);
  filter: drop-shadow(0 22px 25px rgba(7, 20, 87, 0.2));
}

.about-photo-caption {
  position: absolute;
  z-index: 4;
  right: -18px;
  bottom: 34px;
  display: grid;
  min-width: 190px;
  padding: 17px 20px;
  color: var(--white);
  background: var(--orange);
  border-radius: 8px;
  box-shadow: var(--shadow);
  line-height: 1.25;
}

.about-photo-caption strong {
  font-size: 1.08rem;
}

.about-photo-caption span {
  margin-top: 4px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.about-copy h2,
.section-heading h2,
.faq-intro h2,
.join-copy h2 {
  margin-bottom: 28px;
  color: var(--blue);
  font-size: clamp(2.55rem, 5vw, 4.8rem);
}

.about-copy > p:not(.section-kicker) {
  max-width: 680px;
  margin-bottom: 17px;
  color: var(--muted);
}

.about-copy .about-intro {
  color: var(--ink) !important;
  font-size: 1.12rem;
  font-weight: 700;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.about-tags li {
  padding: 8px 12px;
  color: var(--blue);
  background: rgba(157, 197, 234, 0.3);
  border: 1px solid rgba(12, 28, 118, 0.12);
  border-radius: 999px;
  font-size: 0.77rem;
  font-weight: 800;
}

.about-copy blockquote {
  margin: 32px 0 0;
  padding: 8px 0 8px 24px;
  color: var(--blue);
  border-left: 7px solid var(--orange);
}

.about-copy blockquote p {
  margin: 0;
  font-size: clamp(1.25rem, 2.1vw, 1.7rem);
  font-weight: 900;
  line-height: 1.25;
}

.proposals {
  color: var(--white);
  background: var(--blue);
}

.proposals::before {
  position: absolute;
  top: -12vw;
  right: -14vw;
  width: 40vw;
  min-width: 450px;
  aspect-ratio: 1;
  background: var(--orange);
  border-radius: 50%;
  content: "";
}

.proposals-pattern {
  position: absolute;
  inset: 0;
  background-image: url("assets/campanha/padrao-azul.webp");
  background-position: top right;
  background-size: 800px auto;
  mix-blend-mode: screen;
  opacity: 0.08;
}

.proposals .wrap {
  position: relative;
  z-index: 2;
}

.section-heading {
  max-width: 770px;
  margin-bottom: 54px;
}

.section-heading-light h2,
.section-heading-light .section-kicker {
  color: var(--white);
}

.section-heading > p:last-child {
  max-width: 660px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
}

.proposal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.proposal-card {
  position: relative;
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.proposal-card:hover {
  z-index: 2;
  box-shadow: 0 30px 70px rgba(5, 13, 63, 0.35);
  transform: translateY(-5px);
}

.proposal-card::after {
  position: absolute;
  right: -35px;
  bottom: -75px;
  width: 220px;
  aspect-ratio: 1;
  border: 25px solid currentColor;
  border-radius: 50%;
  content: "";
  opacity: 0.08;
}

.proposal-card-orange {
  color: var(--white);
  background: var(--orange);
}

.proposal-card-sky {
  color: var(--blue);
  background: var(--sky);
}

.proposal-card-white {
  color: var(--blue);
  background: var(--white);
}

.proposal-card-blue {
  color: var(--white);
  background: var(--blue-institutional);
  box-shadow: inset 0 0 0 1px rgba(157, 197, 234, 0.22);
}

.proposal-number {
  position: absolute;
  top: 26px;
  right: 28px;
  font-size: 3.8rem;
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
  opacity: 0.18;
}

.proposal-short {
  margin: 55px 0 0;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proposal-card h3 {
  margin: 0 0 18px;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.proposal-card > p:not(.proposal-short) {
  max-width: 480px;
  margin-bottom: 28px;
  opacity: 0.84;
}

.proposal-theme {
  width: max-content;
  max-width: 100%;
  margin-top: auto;
  padding-top: 13px;
  border-top: 3px solid currentColor;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proposal-note {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.85rem;
  text-align: right;
}

.faq {
  background: var(--white);
}

.faq::before {
  position: absolute;
  top: -120px;
  left: -150px;
  width: 360px;
  aspect-ratio: 1;
  border: 58px solid var(--sky);
  border-radius: 50%;
  content: "";
  opacity: 0.25;
}

.faq-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(48px, 8vw, 110px);
}

.faq-intro {
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 36px);
}

.faq-intro h2 {
  font-size: clamp(2.5rem, 4.5vw, 4.25rem);
}

.faq-intro > p:not(.section-kicker) {
  color: var(--muted);
}

.faq-intro img {
  width: 174px;
  margin-top: 44px;
}

.faq-list {
  border-top: 2px solid var(--blue);
}

.faq-list details {
  border-bottom: 1px solid var(--border);
}

.faq-list summary {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr 28px;
  align-items: center;
  gap: 14px;
  padding: 25px 0;
  color: var(--blue);
  font-size: 1.06rem;
  font-weight: 900;
  line-height: 1.3;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--orange-dark);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}

.faq-list summary::after {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  content: "+";
  font-size: 1.15rem;
  line-height: 1;
  transition: transform 180ms ease, background-color 180ms ease;
}

.faq-list details[open] summary::after {
  background: var(--orange);
  content: "−";
  transform: rotate(180deg);
}

.faq-list details > p {
  margin: 0 42px 24px 56px;
  color: var(--muted);
}

.join {
  color: var(--blue);
  background: var(--orange);
}

.join::before {
  position: absolute;
  z-index: 0;
  top: -40%;
  right: -16%;
  width: 58%;
  aspect-ratio: 1;
  border: 90px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.join-pattern {
  position: absolute;
  inset: 0;
  background-image: url("assets/campanha/padrao-claro.webp");
  background-position: center;
  background-size: 800px auto;
  opacity: 0.08;
}

.join-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(350px, 0.75fr);
  align-items: center;
  gap: clamp(45px, 8vw, 100px);
}

.join-copy .section-kicker,
.join-copy h2 {
  color: var(--white);
}

.join-copy h2 {
  max-width: 700px;
  font-size: clamp(3rem, 5.4vw, 5.7rem);
}

.join-copy > p:not(.section-kicker) {
  max-width: 640px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
}

.share-card {
  position: relative;
  min-height: 390px;
  padding: 38px;
  color: var(--white);
  background: var(--blue);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  box-shadow: 0 32px 80px rgba(83, 18, 2, 0.26);
  overflow: hidden;
}

.share-card::after {
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 230px;
  aspect-ratio: 1;
  background: var(--sky);
  border-radius: 46% 54% 76% 24%;
  content: "";
  opacity: 0.22;
}

.share-mark {
  display: block;
  margin-bottom: 36px;
  color: var(--orange);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.share-card h3 {
  position: relative;
  z-index: 2;
  max-width: 390px;
  margin-bottom: 17px;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.share-card > p:not(.share-feedback) {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.76);
}

.share-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px 18px;
  margin-top: 28px;
}

.text-link,
.text-link-button {
  padding: 3px 0;
  color: var(--white);
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.share-feedback {
  position: relative;
  z-index: 2;
  min-height: 1.5em;
  margin: 12px 0 0;
  color: var(--sky);
  font-size: 0.78rem;
  font-weight: 800;
}

.site-footer {
  padding: 76px 0 28px;
  color: rgba(255, 255, 255, 0.74);
  background: #061044;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.72fr 1fr 0.9fr;
  gap: 48px;
  padding-bottom: 54px;
}

.footer-brand img {
  width: 230px;
  height: auto;
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 0.86rem;
}

.footer-party {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.footer-party strong {
  color: var(--orange);
  font-size: 1.35rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}

.footer-column h2,
.privacy-content h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-column a {
  max-width: 100%;
  font-size: 0.84rem;
  overflow-wrap: anywhere;
}

.footer-column a:hover,
.footer-bottom a:hover,
.privacy a:hover {
  color: var(--white);
  text-decoration: underline;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 9px;
}

.social-links .social-icon {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  color: var(--blue);
  background: var(--white);
  border-radius: 50%;
  transition: color 160ms ease, background-color 160ms ease;
}

.social-links .social-icon svg {
  display: block;
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.social-links a:hover .social-icon,
.social-links a:focus-visible .social-icon {
  color: var(--white);
  background: var(--orange);
}

.legal-bar {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.legal-bar p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  text-align: center;
}

.legal-bar strong {
  color: var(--white);
}

.privacy {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.privacy summary {
  width: max-content;
  max-width: 100%;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.privacy-content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  padding-top: 30px;
}

.privacy-content p {
  margin-bottom: 12px;
  font-size: 0.78rem;
}

.privacy-button {
  padding: 8px 0;
  color: var(--sky);
  background: transparent;
  border-bottom: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  font-size: 0.74rem;
}

.cookie-banner {
  position: fixed;
  z-index: 5000;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: grid;
  width: min(calc(100% - 40px), 1120px);
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.72fr);
  align-items: center;
  gap: 36px;
  margin-inline: auto;
  padding: 26px 28px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(12, 28, 118, 0.18);
  border-radius: 16px;
  box-shadow: 0 24px 90px rgba(5, 13, 63, 0.35);
  backdrop-filter: blur(14px);
}

.cookie-kicker {
  margin-bottom: 5px;
  color: var(--orange);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cookie-copy h2 {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 1.35rem;
  line-height: 1.12;
}

.cookie-copy > p:not(.cookie-kicker) {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.45;
}

.cookie-copy a {
  color: var(--blue);
  border-bottom: 1px solid currentColor;
  font-size: 0.76rem;
  font-weight: 800;
}

.cookie-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.cookie-button {
  min-height: 54px;
  padding: 12px 14px;
  border: 2px solid var(--blue);
  border-radius: 9px;
  font-size: 0.79rem;
  font-weight: 900;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.cookie-button:hover {
  transform: translateY(-2px);
}

.cookie-accept,
.cookie-reject {
  color: var(--blue);
  background: var(--white);
}

.cookie-accept:hover,
.cookie-reject:hover {
  color: var(--white);
  background: var(--blue);
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(400px, 1.05fr);
  }

  .hero-visual {
    min-height: 650px;
  }

  .hero-stamp {
    right: -2%;
    width: 138px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.75fr 1fr;
  }

  .footer-grid > :last-child {
    grid-column: 2 / -1;
  }

  .social-links {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 70px;
  }

  .section {
    padding: 88px 0;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: block;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 18px 24px 24px;
    background: var(--blue);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 28px 40px rgba(7, 20, 87, 0.25);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav > a:not(.button) {
    padding: 15px 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .main-nav .button {
    min-height: 44px;
    margin-top: 15px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-copy {
    padding: 64px 0 10px;
  }

  .hero-branding {
    display: grid;
    max-width: 680px;
    grid-template-columns: minmax(260px, 1fr) minmax(220px, 0.72fr);
    align-items: end;
    gap: 20px;
    margin-bottom: 20px;
  }

  .hero-logo {
    width: min(340px, 100%);
    margin-bottom: 0;
  }

  .hero-mobile-visual {
    position: relative;
    display: block;
    height: 260px;
    overflow: hidden;
  }

  .hero-mobile-photo {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: none;
    filter: drop-shadow(0 18px 24px rgba(4, 11, 58, 0.25));
  }

  .hero-mobile-stamp {
    position: absolute;
    z-index: 2;
    bottom: 2%;
    left: -24px;
    width: 76px;
  }

  .hero h1 {
    max-width: 680px;
  }

  .hero-lead {
    max-width: 680px;
  }

  .hero-visual {
    display: none;
  }

  .hero-scroll {
    display: none;
  }

  .text-link,
  .text-link-button,
  .footer-column a,
  .social-links a,
  .privacy-button,
  .footer-bottom a,
  .cookie-copy a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }

  .privacy summary {
    min-height: 44px;
    padding: 10px 0;
  }

  .about-grid,
  .faq-grid,
  .join-grid {
    grid-template-columns: 1fr;
  }

  .about-photo-wrap {
    width: min(520px, 100%);
    margin-inline: auto;
  }

  .faq-intro {
    position: static;
  }

  .faq-intro img {
    width: 140px;
    margin-top: 28px;
  }

  .join-copy {
    max-width: 720px;
  }

  .share-card {
    min-height: 0;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 700px) {
  .wrap {
    width: min(calc(100% - 34px), var(--wrap));
  }

  .section {
    padding: 74px 0;
  }

  .header-brand {
    width: 164px;
  }

  .hero-copy {
    padding-top: 48px;
  }

  .hero-branding {
    display: flex;
    width: min(420px, 100%);
    max-width: none;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 0 auto 22px;
  }

  .hero-logo {
    order: 2;
    width: min(340px, 88%);
  }

  .hero-mobile-visual {
    order: 1;
    width: 100%;
    height: auto;
    aspect-ratio: 480 / 434;
    overflow: visible;
  }

  .hero-mobile-photo {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .hero-mobile-stamp {
    top: 4%;
    right: -4px;
    bottom: auto;
    left: auto;
    width: 78px;
  }

  .hero h1 {
    font-size: clamp(2rem, 8.4vw, 3.35rem);
  }

  .about-photo-wrap {
    min-height: 560px;
  }

  .about-photo {
    width: auto;
    height: 550px;
    max-width: 100%;
  }

  .about-photo-wrap::after {
    right: -8px;
    width: 62px;
    height: 62px;
    border-width: 9px;
  }

  .about-photo-caption {
    right: -4px;
    bottom: 24px;
  }

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

  .proposal-card {
    min-height: 330px;
  }

  .proposal-card h3 {
    font-size: clamp(3rem, 14vw, 4.35rem);
  }

  .proposal-note {
    text-align: left;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 24px;
  }

  .footer-grid > :last-child {
    grid-column: auto;
  }

  .social-links {
    flex-direction: column;
  }

  .privacy-content {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .cookie-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: calc(100% - 20px);
    max-height: calc(100svh - 20px);
    padding: 20px;
    overflow-y: auto;
  }
}

@media (max-width: 520px) {
  .campaign-label {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-actions,
  .join-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button,
  .join-actions .button {
    width: 100%;
  }

  .party-signature {
    margin-top: 28px;
  }

  .hero-branding {
    width: 100%;
  }

  .hero-mobile-visual {
    height: auto;
    aspect-ratio: 480 / 434;
  }

  .hero-mobile-photo {
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .hero-mobile-stamp {
    top: 4%;
    right: -2px;
    bottom: auto;
    left: auto;
    width: 70px;
  }

  .about-photo-wrap {
    min-height: 128vw;
    max-height: 540px;
  }

  .about-photo-wrap::before {
    border-radius: 100px 14px 14px 14px;
  }

  .about-photo {
    width: auto;
    height: min(124vw, 540px);
    max-width: 100%;
  }

  .about-photo-caption {
    min-width: 165px;
    padding: 13px 15px;
  }

  .about-copy h2,
  .section-heading h2,
  .faq-intro h2 {
    font-size: clamp(2.55rem, 12vw, 3.7rem);
  }

  .proposal-card {
    min-height: 340px;
    padding: 28px 24px;
  }

  .faq-list summary {
    grid-template-columns: 32px 1fr 28px;
    gap: 9px;
    padding: 22px 0;
    font-size: 0.98rem;
  }

  .faq-list details > p {
    margin-right: 10px;
    margin-left: 41px;
  }

  .join-copy h2 {
    font-size: clamp(3rem, 14vw, 4.7rem);
  }

  .share-card {
    padding: 30px 24px;
  }

  .share-actions {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-bar p {
    line-height: 1.75;
  }

  .legal-bar span {
    display: block;
    height: 0;
    opacity: 0;
  }

  .cookie-actions {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .hero-scroll,
  .cookie-banner,
  .join-actions,
  .share-actions,
  .privacy-button {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding-top: 0;
  }

  .section {
    break-inside: avoid;
  }
}
