:root {
  --color-yellow: #facc15;
  --color-dark: #0a0a0a;
  --color-gray: #1a1a1a;
  --color-red: #ef4444;
  --color-white: #ffffff;
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Outfit", var(--font-sans);
  --container: 1280px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--color-dark);
  color: var(--color-white);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::selection,
::selection {
  background: var(--color-yellow);
  color: var(--color-dark);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
figure {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0;
}

.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;
}

.section-container {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 64px 24px;
}

.text-yellow,
.section-heading h2 span {
  color: var(--color-yellow);
}

.text-glow-yellow {
  text-shadow: 0 0 20px rgba(250, 204, 21, 0.3);
}

.bg-grid-subtle {
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
  background-size: 40px 40px;
}

.bg-grid-strong {
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
}

.icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
}

.icon svg {
  width: var(--icon-size, 24px);
  height: var(--icon-size, 24px);
}

.icon--shift svg {
  transition: transform 300ms ease;
}

.button:hover .icon--shift svg {
  transform: translateX(8px);
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  border: 2px solid transparent;
  border-radius: 0;
  padding: 14px 28px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transition:
    transform 250ms ease,
    color 250ms ease,
    background-color 250ms ease,
    border-color 250ms ease,
    box-shadow 250ms ease,
    opacity 250ms ease;
}

.button:hover {
  transform: translateY(-4px) scale(1.02);
}

.button:active {
  transform: scale(0.98);
}

.button--large {
  padding: 18px 36px;
  font-size: 13px;
}

.button--yellow {
  background: var(--color-yellow);
  color: var(--color-dark);
}

.button--yellow:hover {
  background: var(--color-white);
  box-shadow: 0 0 40px rgba(250, 204, 21, 0.3);
}

.button--red {
  background: var(--color-red);
  color: var(--color-white);
}

.button--red:hover {
  background: var(--color-white);
  color: var(--color-red);
  box-shadow: 0 10px 30px rgba(239, 68, 68, 0.2);
}

.button--outline-light {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
}

.button--outline-light:hover {
  background: var(--color-white);
  border-color: var(--color-white);
  color: var(--color-dark);
}

.button--red-outline {
  border-color: var(--color-red);
  background: var(--color-red);
  color: var(--color-white);
  padding: 18px 36px;
  box-shadow: 0 20px 50px rgba(239, 68, 68, 0.2);
}

.button--red-outline:hover {
  background: var(--color-dark);
  color: var(--color-red);
}

.eyebrow,
.eyebrow-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.eyebrow--yellow {
  background: var(--color-yellow);
  color: var(--color-dark);
  padding: 7px 16px;
  box-shadow: 0 5px 15px rgba(250, 204, 21, 0.2);
}

.eyebrow--dark {
  background: var(--color-dark);
  color: var(--color-yellow);
  padding: 7px 16px;
}

.eyebrow--red {
  border: 1px solid rgba(239, 68, 68, 0.2);
  background: rgba(239, 68, 68, 0.1);
  color: var(--color-red);
  padding: 7px 16px;
  box-shadow: 0 5px 15px rgba(239, 68, 68, 0.1);
}

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

.eyebrow-text--muted {
  color: rgba(255, 255, 255, 0.4);
}

.section-heading {
  margin-bottom: 48px;
  text-align: center;
}

.section-heading h2 {
  margin-top: 16px;
  font-size: 2.5rem;
  font-style: italic;
  line-height: 0.95;
  text-transform: uppercase;
}

.section-heading--center {
  margin-inline: auto;
}

.section-heading__rule {
  display: block;
  width: 48px;
  height: 4px;
  margin: 0 auto 18px;
  background: var(--color-yellow);
  box-shadow: 0 0 15px rgba(250, 204, 21, 0.5);
}

.rich-text {
  display: grid;
  gap: 24px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
}

.rich-text strong {
  color: var(--color-white);
  font-weight: 900;
}

.rich-text--dark {
  color: rgba(10, 10, 10, 0.7);
}

.rich-text--dark strong {
  color: var(--color-dark);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 800ms var(--ease-out),
    transform 800ms var(--ease-out);
}

.reveal-left {
  transform: translateX(-32px);
}

.reveal-right {
  transform: translateX(32px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Navbar */
.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(24px);
  transition: transform 350ms var(--ease-out);
  will-change: transform;
}

.navbar--hidden {
  transform: translateY(-100%);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, var(--container));
  height: 80px;
  margin: 0 auto;
  padding: 0 24px;
}

.brand,
.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand__mark,
.footer__logo,
.mini-logo {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  overflow: hidden;
  text-align: center;
  transition:
    color 500ms ease,
    background-color 500ms ease;
}

.brand__mark span,
.mini-logo {
  color: rgba(255, 255, 255, 0.3);
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.brand__mark img,
.footer__logo img,
.mini-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mini-logo {
  width: 120px;
  height: 120px;
}

.brand__copy {
  display: grid;
  gap: 2px;
}

.brand__copy strong,
.footer__brand strong {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.brand__copy strong span,
.footer__brand strong span {
  color: var(--color-yellow);
}

.brand:hover .brand__copy strong {
  color: var(--color-yellow);
}

.brand:hover .brand__copy strong span {
  color: var(--color-white);
}

.brand__copy small {
  color: rgba(255, 255, 255, 0.4);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.navbar__links {
  display: none;
  align-items: center;
  gap: 40px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.navbar__links > a {
  position: relative;
  padding: 12px 0;
  transition:
    color 300ms ease,
    transform 300ms ease;
}

.navbar__links > a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--color-yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms ease;
}

.navbar__links > a:hover {
  color: var(--color-yellow);
  transform: translateY(-2px);
}

.navbar__links > a:hover::after {
  transform: scaleX(1);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 24px;
}

.nav-button {
  padding: 13px 32px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition:
    transform 250ms ease,
    background-color 250ms ease,
    color 250ms ease,
    box-shadow 250ms ease;
}

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

.nav-button--yellow {
  background: var(--color-yellow);
  color: var(--color-dark);
}

.nav-button--yellow:hover {
  background: var(--color-white);
  box-shadow: 0 0 30px rgba(250, 204, 21, 0.4);
}

.nav-button--red {
  background: var(--color-red);
  color: var(--color-white);
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.2);
}

.nav-button--red:hover {
  background: var(--color-white);
  color: var(--color-red);
}

.navbar__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  color: var(--color-white);
}

.mobile-menu {
  display: grid;
  max-height: 0;
  gap: 24px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--color-dark);
  padding: 0 24px;
  opacity: 0;
  transition:
    max-height 350ms var(--ease-out),
    opacity 250ms ease,
    padding 250ms ease;
}

.mobile-menu.is-open {
  max-height: 430px;
  padding: 32px 24px;
  opacity: 1;
}

.mobile-menu > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.mobile-menu__actions {
  display: grid;
  gap: 12px;
  padding-top: 16px;
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: auto;
  overflow: hidden;
  padding-top: 80px;
}

.hero__background,
.hero__background > * {
  position: absolute;
  pointer-events: none;
}

.hero__background {
  inset: 0;
  z-index: 0;
}

.hero__glow {
  width: 500px;
  height: 500px;
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.1);
  filter: blur(150px);
  animation: softPulse 4s ease-in-out infinite;
}

.hero__glow--left {
  top: 25%;
  left: -80px;
}

.hero__glow--right {
  right: -80px;
  bottom: 25%;
  background: rgba(250, 204, 21, 0.05);
  animation-delay: 2s;
}

.hero__grid {
  inset: 0 0 auto auto;
  width: 100%;
  height: 100%;
  opacity: 0.1;
}

.hero__line {
  background: rgba(255, 255, 255, 0.05);
}

.hero__line--vertical {
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
}

.hero__line--horizontal {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column-reverse;
  gap: 32px;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 40px;
}

.hero-reveal {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 800ms var(--ease-out) forwards;
}

.hero-reveal--delay {
  animation-delay: 120ms;
}

.hero__text {
  width: 100%;
}

.hero__kicker {
  display: none;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.hero__name-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero__name {
  display: block;
  color: var(--color-yellow);
  font-family: var(--font-display);
  font-size: 36px;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.mini-logo {
  width: 58px;
  height: 58px;
  padding: 8px;
}

.hero__copy {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-height: 160px;
  overflow: hidden;
  text-align: center;
  transition: max-height 500ms ease;
}

.hero__copy.is-expanded {
  max-height: 640px;
}

.hero__copy h1 {
  margin-bottom: 24px;
  font-size: 2rem;
  font-style: italic;
  line-height: 1;
  text-transform: uppercase;
}

.hero__copy h1 .text-yellow {
  filter: drop-shadow(0 0 30px rgba(250, 204, 21, 0.2));
}

.desktop-break {
  display: none;
}

.hero__copy p {
  max-width: 540px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}

.hero__copy p strong {
  color: var(--color-white);
}

.hero__buttons {
  display: grid;
  width: 100%;
  gap: 16px;
  padding: 0 16px;
}

.hero__fade {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  height: 64px;
  background: linear-gradient(to top, var(--color-dark), transparent);
}

.hero__copy.is-expanded .hero__fade {
  opacity: 0;
}

.hero__more {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 16px;
  margin-top: 16px;
  border: 2px solid rgba(250, 204, 21, 0.3);
  background: transparent;
  color: var(--color-yellow);
  padding: 18px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition:
    background-color 300ms ease,
    transform 300ms ease;
}

.hero__more:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: scale(1.02);
}

.hero__more .icon {
  transition: transform 300ms ease;
}

.hero__more.is-expanded .icon {
  transform: rotate(180deg);
}

.hero__media {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.hero__ring {
  position: absolute;
  top: -20px;
  right: -20px;
  z-index: 0;
  width: 96px;
  height: 96px;
  border: 1px solid rgba(250, 204, 21, 0.2);
  border-radius: 999px;
  animation: spinSlow 18s linear infinite;
}

.portrait-card {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--color-gray);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45);
}

.portrait-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, var(--color-dark), transparent 60%);
}

.portrait-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 67% center;
  transform: scaleX(-1);
  transition:
    transform 1000ms ease,
    rotate 1000ms ease;
}

.portrait-card:hover img {
  transform: scaleX(-1.1) scaleY(1.1) rotate(-1deg);
}

.portrait-card__info {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 10, 10, 0.4);
  padding: 16px;
  backdrop-filter: blur(24px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
  transition:
    border-color 500ms ease,
    transform 500ms ease;
}

.portrait-card__info:hover {
  border-color: rgba(250, 204, 21, 0.3);
  transform: translateY(-5px) scale(1.02);
}

.portrait-card__info span {
  display: grid;
  gap: 4px;
}

.portrait-card__info span:last-child {
  text-align: right;
}

.portrait-card__info small {
  color: var(--color-yellow);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.portrait-card__info strong {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  font-weight: 900;
}

.portrait-card__info i {
  width: 1px;
  height: 32px;
  margin: 0 8px;
  background: rgba(255, 255, 255, 0.1);
}

/* Stats */
.stats-bar {
  position: relative;
  z-index: 20;
  overflow: hidden;
  border-block: 2px solid var(--color-dark);
  background: var(--color-yellow);
  padding: 16px 0;
  box-shadow: 0 0 50px rgba(250, 204, 21, 0.2);
}

.stats-bar__track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}

.stats-group {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 16px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-dark);
  transition: transform 300ms ease;
}

.stat-item:hover {
  transform: scale(1.1);
}

.stat-item strong {
  font-family: var(--font-display);
  font-size: 28px;
  font-style: italic;
  font-weight: 900;
  transition: color 300ms ease;
}

.stat-item:hover strong {
  color: var(--color-white);
}

.stat-item span:last-child {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.2;
  opacity: 0.7;
  text-transform: uppercase;
}

/* Manifesto */
.manifesto {
  position: relative;
  overflow: hidden;
  background-color: var(--color-gray);
  padding: 48px 0;
}

.manifesto__word {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: rgba(255, 255, 255, 0.03);
  font-family: var(--font-display);
  font-size: 12rem;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
  text-transform: uppercase;
  transform: translate(-25%, -25%);
  animation: driftWord 10s ease-in-out infinite alternate;
  user-select: none;
}

.manifesto .section-container {
  position: relative;
  z-index: 1;
  padding-top: 0;
  padding-bottom: 0;
}

.manifesto__inner {
  max-width: 1024px;
  margin: 0 auto;
  text-align: center;
}

.manifesto blockquote {
  position: relative;
  margin: 0 auto 40px;
  padding: 0 16px;
  color: var(--color-white);
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.2;
}

.manifesto blockquote::before,
.manifesto blockquote::after {
  position: absolute;
  color: rgba(250, 204, 21, 0.1);
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
}

.manifesto blockquote::before {
  content: "\"";
  top: -48px;
  left: -8px;
}

.manifesto blockquote::after {
  content: "\"";
  right: -8px;
  bottom: -80px;
}

.manifesto blockquote strong {
  color: var(--color-yellow);
  font-style: normal;
  font-weight: 900;
  filter: drop-shadow(0 0 20px rgba(250, 204, 21, 0.2));
}

.manifesto cite {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.manifesto cite span {
  width: 32px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.manifesto cite strong {
  color: var(--color-yellow);
}

/* Support / Doação */
.support {
  position: relative;
  overflow: hidden;
  background-color: var(--color-dark);
}

.support .section-container {
  position: relative;
  z-index: 1;
}

.support__inner {
  max-width: 1024px;
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: 28px;
  text-align: center;
}

.support__tag {
  margin-bottom: 4px;
}

.support__title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-style: italic;
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
}

.support__text {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
}

.support__highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-yellow);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.support__cta {
  margin-top: 4px;
}

/* Bio */
.bio {
  overflow: hidden;
  background: var(--color-white);
  color: var(--color-dark);
}

.bio__grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

.bio__image {
  position: relative;
}

.bio__image > span {
  position: absolute;
  top: -24px;
  left: -24px;
  z-index: 0;
  width: 100%;
  height: 100%;
  border: 8px solid var(--color-yellow);
  box-shadow: 0 0 30px rgba(250, 204, 21, 0.2);
  transition: transform 700ms ease;
}

.bio__image:hover > span {
  transform: translate(12px, 12px);
}

.bio__image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 43% center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  transition: transform 1000ms ease;
}

.bio__image:hover img {
  transform: scale(1.04) rotate(1deg);
}

.bio__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.bio__copy h2 {
  margin: 32px 0 24px;
  font-size: 2.5rem;
  font-style: italic;
  line-height: 0.95;
  text-transform: uppercase;
}

.bio__copy h2 span {
  color: var(--color-yellow);
  filter: drop-shadow(0 0 15px rgba(250, 204, 21, 0.3));
}

.quote-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 8px;
}

.quote-box span {
  display: block;
  width: 48px;
  height: 4px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: var(--color-yellow);
  box-shadow: 0 0 15px rgba(250, 204, 21, 0.4);
}

.quote-box p {
  max-width: 448px;
  color: var(--color-dark);
  font-size: 22px;
  font-style: italic;
  font-weight: 900;
  line-height: 1.15;
}

/* Pillars */
.pillars {
  overflow: hidden;
}

.pillars__grid {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.05);
}

.pillar-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  background: var(--color-dark);
  padding: 32px;
  transition:
    background-color 500ms ease,
    transform 500ms ease;
}

.pillar-card:hover {
  background: var(--color-gray);
  transform: translateY(-5px);
}

.pillar-card::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: auto;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--color-yellow);
  box-shadow: 0 0 15px rgba(250, 204, 21, 0.5);
  transition: height 500ms ease;
}

.pillar-card:hover::before {
  height: 100%;
}

.pillar-card__number {
  position: absolute;
  top: 16px;
  right: 24px;
  color: rgba(255, 255, 255, 0.05);
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 900;
  transition: color 500ms ease;
}

.pillar-card:hover .pillar-card__number {
  color: rgba(250, 204, 21, 0.1);
}

.pillar-card__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 40px;
  color: var(--color-yellow);
  transition:
    transform 500ms ease,
    color 500ms ease;
}

.pillar-card:hover .pillar-card__icon {
  transform: translateY(-8px) scale(1.1);
}

.pillar-card h3,
.proposal-card h3,
.video-card h3 {
  position: relative;
  z-index: 1;
  font-size: 24px;
  font-style: italic;
  line-height: 1;
  text-transform: uppercase;
  transition: color 300ms ease;
}

.pillar-card h3 {
  margin-bottom: 24px;
}

.pillar-card:hover h3,
.video-card:hover h3 {
  color: var(--color-yellow);
}

.pillar-card p,
.proposal-card p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  transition: color 300ms ease;
}

.pillar-card:hover p,
.proposal-card:hover p {
  color: rgba(255, 255, 255, 0.7);
}

/* Proposals */
.proposals {
  overflow: hidden;
  background: var(--color-gray);
  padding: 48px 0;
}

.proposals .section-container {
  padding-top: 0;
  padding-bottom: 0;
}

.proposals__grid {
  display: grid;
  gap: 24px;
}

.proposal-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--color-dark);
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  transition:
    border-color 500ms ease,
    opacity 300ms ease,
    transform 500ms ease;
}

.proposal-card.is-hidden {
  display: none;
}

.proposal-card:hover {
  border-color: var(--color-yellow);
  transform: translateY(-4px);
}

.proposal-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 96px;
  height: 96px;
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.05);
  transform: translate(50%, -50%);
  transition: transform 700ms ease;
}

.proposal-card:hover::before {
  transform: translate(50%, -50%) scale(1.5);
}

.proposal-card__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  background: rgba(250, 204, 21, 0.1);
  color: var(--color-yellow);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transition:
    color 500ms ease,
    background-color 500ms ease,
    transform 500ms ease;
}

.proposal-card:hover .proposal-card__icon {
  background: var(--color-yellow);
  color: var(--color-dark);
}

.proposal-card h3 {
  margin-bottom: 16px;
  font-size: 20px;
}

.proposal-card p {
  font-size: 13px;
}

.proposals__more-wrap {
  margin-top: 48px;
  padding: 0 16px;
}

.proposals__more {
  width: 100%;
  padding-block: 20px;
  font-size: 11px;
}

.proposals__more .icon {
  transition: transform 300ms ease;
}

.proposals__more.is-expanded .icon {
  transform: rotate(180deg);
}

/* Videos */
.videos {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--color-dark);
  padding: 48px 0;
}

.videos__grid {
  display: grid;
  gap: 40px;
  margin-bottom: 48px;
}

.video-card {
  display: block;
  color: inherit;
  cursor: pointer;
  transition: transform 500ms ease;
}

.video-card:hover {
  transform: translateY(-12px);
}

.video-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  margin-bottom: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--color-gray);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.video-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.video-card:hover .video-card__media img {
  transform: scale(1.1);
}

.video-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.4);
  transition: background-color 500ms ease;
}

.video-card:hover .video-card__media::after {
  background: transparent;
}

.video-card__play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  color: var(--color-dark);
  opacity: 0;
  transform: scale(0.9);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

.video-card:hover .video-card__play {
  opacity: 1;
  transform: scale(1);
}

.video-card__play span {
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  border-radius: 999px;
  background: var(--color-yellow);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.video-card__duration {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 10, 10, 0.9);
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.video-card h3 {
  font-size: 20px;
  line-height: 1.15;
  min-height: 46px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.videos__cta {
  display: flex;
  justify-content: center;
}

.videos__status {
  max-width: 720px;
  margin: -20px auto 40px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
}

.videos__status[hidden] {
  display: none;
}

/* Social */
.social-section {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--color-dark);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 16px;
}

.social-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  padding: 20px;
  text-align: center;
  transition:
    transform 500ms ease,
    box-shadow 500ms ease;
}

.social-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: background-color 500ms ease;
}

.social-card:hover {
  transform: translateY(-8px) scale(1.02) rotate(1deg);
}

.social-card:hover::before {
  background: rgba(255, 255, 255, 0.05);
}

.social-card--instagram {
  background: #e1306c;
}

.social-card--x,
.social-card--tiktok {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #000000;
}

.social-card--youtube {
  background: #ff0000;
}

.social-card--facebook {
  background: #1877f2;
}

.social-card--whatsapp {
  background: #25d366;
}

.social-card--instagram:hover {
  box-shadow: 0 0 30px rgba(225, 48, 108, 0.4);
}

.social-card--youtube:hover {
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.4);
}

.social-card--facebook:hover {
  box-shadow: 0 0 30px rgba(24, 119, 242, 0.4);
}

.social-card--whatsapp:hover {
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.4);
}

.social-card__icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  transition:
    background-color 500ms ease,
    transform 500ms ease;
}

.social-card:hover .social-card__icon {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.social-card__copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 4px;
}

.social-card__copy small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 300ms ease;
}

.social-card:hover .social-card__copy small {
  color: rgba(255, 255, 255, 0.85);
}

.social-card__copy strong {
  font-size: 14px;
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
}

/* Action center */
.action-center {
  position: relative;
  overflow: hidden;
  color: var(--color-dark);
  background: var(--color-yellow);
  transition:
    background-color 700ms ease,
    color 700ms ease;
}

.action-center--denuncia {
  color: var(--color-white);
  background: var(--color-dark);
}

.action-center__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  pointer-events: none;
  background-image: radial-gradient(#000 1px, transparent 1px);
  background-size: 20px 20px;
}

.action-center--denuncia .action-center__pattern {
  background-image: radial-gradient(#fff 1px, transparent 1px);
}

.action-center__inner {
  position: relative;
  z-index: 1;
  max-width: 896px;
  margin: 0 auto;
}

.action-center__heading {
  margin-bottom: 48px;
  text-align: center;
}

.action-center__heading h2 {
  margin-bottom: 24px;
  font-size: 2.5rem;
  font-style: italic;
  line-height: 0.95;
  text-transform: uppercase;
}

.action-center__heading h2 span {
  display: inline-block;
  background: var(--color-dark);
  color: var(--color-white);
  padding: 0 12px;
}

.action-center--denuncia .action-center__heading h2 span {
  background: var(--color-red);
}

.action-center__heading p {
  max-width: 680px;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.5;
  text-transform: uppercase;
}

.action-tabs {
  display: grid;
  gap: 16px;
  margin-bottom: 32px;
}

.action-tabs__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.45);
  padding: 20px 16px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    background-color 300ms ease,
    border-color 300ms ease,
    color 300ms ease,
    transform 300ms ease,
    box-shadow 300ms ease;
}

.action-tabs__button.is-active {
  transform: scale(1.02);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
}

.action-tabs__button[data-main-tab="mobilizacao"].is-active {
  border-color: var(--color-dark);
  background: var(--color-dark);
  color: var(--color-yellow);
}

.action-tabs__button[data-main-tab="denuncia"] {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
}

.action-tabs__button[data-main-tab="denuncia"].is-active {
  border-color: var(--color-red);
  background: var(--color-red);
  color: var(--color-white);
}

.action-card {
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  transition:
    background-color 500ms ease,
    border-color 500ms ease;
}

.action-center--denuncia .action-card {
  border-color: rgba(255, 255, 255, 0.05);
  background: var(--color-gray);
}

.subtabs {
  display: flex;
  border-bottom: 1px solid #f3f4f6;
}

.subtabs:empty {
  display: none;
}

.action-center--denuncia .subtabs {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.subtabs button {
  position: relative;
  flex: 1;
  border: 0;
  background: rgba(249, 250, 251, 0.5);
  color: #d1d5db;
  padding: 20px 12px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition:
    color 300ms ease,
    background-color 300ms ease;
}

.subtabs button:hover {
  color: #6b7280;
}

.subtabs button.is-active {
  color: var(--color-dark);
  background: var(--color-white);
}

.subtabs button.is-active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 6px;
  background: var(--color-yellow);
}

.action-card__body {
  padding: 24px;
}

.action-form {
  display: grid;
  gap: 24px;
  animation: formSwitch 360ms var(--ease-out) both;
}

@keyframes formSwitch {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.99);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.form-grid {
  display: grid;
  gap: 24px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-feedback {
  margin: 0;
  padding: 12px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 12px;
}

.form-feedback.is-error {
  color: #fecaca;
  background: rgba(239, 68, 68, 0.14);
  border: 1px solid rgba(239, 68, 68, 0.4);
}

.form-feedback.is-info {
  color: var(--color-dark);
  background: rgba(250, 204, 21, 0.18);
  border: 1px solid rgba(250, 204, 21, 0.4);
}

.action-success {
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
  padding: 28px 8px;
  color: var(--color-dark);
  animation: formSwitch 360ms var(--ease-out) both;
}

.action-center--denuncia .action-success {
  color: var(--color-white);
}

.action-success__icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  color: var(--color-dark);
  background: var(--color-yellow);
  border-radius: 50%;
}

.action-center--denuncia .action-success__icon {
  color: var(--color-white);
  background: var(--color-red);
}

.action-success h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.action-success p {
  margin: 0;
  max-width: 420px;
  opacity: 0.8;
}

.field {
  display: grid;
  gap: 10px;
}

.field--wide {
  grid-column: 1 / -1;
}

.field label {
  color: #9ca3af;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: color 300ms ease;
}

.action-center--denuncia .field label {
  color: rgba(255, 255, 255, 0.4);
}

.action-center--denuncia .field:focus-within label {
  color: var(--color-red);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #f3f4f6;
  border-radius: 8px;
  outline: none;
  background: #f9fafb;
  color: var(--color-dark);
  padding: 16px;
  font-size: 16px;
  font-weight: 800;
  transition:
    border-color 300ms ease,
    background-color 300ms ease;
}

.field textarea {
  min-height: 128px;
  resize: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--color-yellow);
}

.action-center--denuncia .field input,
.action-center--denuncia .field select,
.action-center--denuncia .field textarea {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-white);
}

.action-center--denuncia .field input:focus,
.action-center--denuncia .field select:focus,
.action-center--denuncia .field textarea:focus {
  border-color: var(--color-red);
  background: rgba(255, 255, 255, 0.1);
}

.field select {
  appearance: none;
  cursor: pointer;
}

.select-wrap {
  position: relative;
}

.select-wrap .icon {
  position: absolute;
  top: 50%;
  right: 24px;
  color: #d1d5db;
  pointer-events: none;
  transform: translateY(-50%) rotate(90deg);
}

.action-center--denuncia .select-wrap .icon {
  color: rgba(255, 255, 255, 0.2);
}

.action-center--denuncia option {
  background: var(--color-dark);
}

.terms-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-top: 16px;
}

.checkbox-control {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  padding-top: 4px;
}

.checkbox-control input {
  position: absolute;
  z-index: 2;
  width: 24px;
  height: 24px;
  margin: 0;
  cursor: pointer;
  opacity: 0;
}

.checkbox-control__box {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 2px solid #e5e7eb;
  border-radius: 6px;
  background: #f9fafb;
  color: var(--color-dark);
  transition:
    border-color 300ms ease,
    background-color 300ms ease,
    color 300ms ease;
}

.checkbox-control.is-checked .checkbox-control__box {
  border-color: var(--color-yellow);
  background: var(--color-yellow);
}

.action-center--denuncia .checkbox-control__box {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-white);
}

.action-center--denuncia .checkbox-control.is-checked .checkbox-control__box {
  border-color: var(--color-red);
  background: var(--color-red);
}

.terms-row label {
  color: #9ca3af;
  font-size: 13px;
  line-height: 1.65;
  user-select: none;
}

.terms-row label a {
  color: var(--color-dark);
  font-weight: 900;
  text-decoration: underline;
  transition: color 300ms ease;
}

.terms-row label a:hover {
  color: var(--color-yellow);
}

.action-center--denuncia .terms-row label {
  color: rgba(255, 255, 255, 0.3);
}

.action-center--denuncia .terms-row label a {
  color: var(--color-white);
}

.action-center--denuncia .terms-row label a:hover {
  color: var(--color-red);
}

.submit-button {
  width: 100%;
  border: 0;
  border-radius: 8px;
  padding: 24px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition:
    transform 300ms ease,
    background-color 300ms ease,
    color 300ms ease,
    opacity 300ms ease,
    box-shadow 300ms ease;
}

.submit-button:not(:disabled):hover {
  transform: translateY(-4px) scale(1.02);
}

.submit-button:disabled {
  cursor: not-allowed;
}

.action-center--mobilizacao .submit-button {
  background: var(--color-dark);
  color: var(--color-yellow);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.action-center--mobilizacao .submit-button:disabled {
  background: #f3f4f6;
  color: #d1d5db;
  box-shadow: none;
}

.action-center--denuncia .submit-button {
  background: var(--color-red);
  color: var(--color-white);
  box-shadow: 0 20px 40px rgba(239, 68, 68, 0.2);
}

.action-center--denuncia .submit-button:hover {
  background: #b91c1c;
}

.action-center--denuncia .submit-button:disabled {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--color-dark);
  padding: 24px 0;
}

.footer .section-container {
  padding-top: 0;
  padding-bottom: 0;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer__logo {
  width: 32px;
  height: 32px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 4px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.footer__brand strong {
  font-style: italic;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__social a {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  transition:
    transform 300ms ease,
    border-color 300ms ease,
    color 300ms ease;
}

.footer__social a:hover {
  border-color: var(--color-yellow);
  color: var(--color-yellow);
  transform: translateY(-4px) scale(1.1);
}

.footer__credits {
  display: grid;
  gap: 4px;
  color: rgba(255, 255, 255, 0.2);
  text-align: center;
}

.footer__credits p {
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer__credits a {
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.footer__credits span {
  color: rgba(255, 255, 255, 0.4);
  transition: color 300ms ease;
}

.footer__credits span:hover,
.footer__credits a:hover span {
  color: var(--color-yellow);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes softPulse {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

@keyframes spinSlow {
  to {
    transform: rotate(360deg);
  }
}

@keyframes driftWord {
  from {
    transform: translate(-25%, -25%);
  }

  to {
    transform: translate(-20%, -20%);
  }
}

@media (min-width: 640px) {
  .hero__buttons,
  .action-tabs {
    display: flex;
  }

  .hero__buttons {
    justify-content: center;
  }

  .action-tabs__button {
    flex: 1;
    padding-block: 24px;
  }
}

@media (min-width: 768px) {
  .section-container {
    padding-top: 128px;
    padding-bottom: 128px;
  }

  .section-heading {
    margin-bottom: 80px;
  }

  .section-heading h2 {
    font-size: 4.5rem;
  }

  .support__title {
    font-size: 3.5rem;
  }

  .hero {
    min-height: 100vh;
    padding-top: 64px;
  }

  .hero__content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 64px;
    padding-top: 128px;
    padding-bottom: 128px;
  }

  .hero__kicker {
    display: flex;
  }

  .hero__copy {
    align-items: flex-start;
    max-height: none;
    overflow: visible;
    text-align: left;
  }

  .hero__copy h1 {
    margin-bottom: 40px;
    font-size: 4.5rem;
    line-height: 0.85;
  }

  .desktop-break {
    display: block;
  }

  .hero__copy p {
    margin-bottom: 48px;
    font-size: 20px;
  }

  .hero__buttons {
    width: auto;
    justify-content: flex-start;
    padding: 0;
  }

  .hero__fade,
  .hero__more {
    display: none;
  }

  .hero__media {
    max-width: none;
  }

  .hero__ring {
    top: -40px;
    right: -40px;
    width: 128px;
    height: 128px;
  }

  .portrait-card__info {
    right: 40px;
    bottom: 40px;
    left: 40px;
    padding: 24px;
  }

  .portrait-card__info small {
    font-size: 10px;
  }

  .portrait-card__info strong {
    font-size: 24px;
  }

  .portrait-card__info i {
    height: 48px;
    margin-inline: 16px;
  }

  .stats-bar {
    border-block-width: 4px;
    padding: 32px 0;
  }

  .stats-group {
    gap: 64px;
    padding-inline: 32px;
  }

  .stat-item {
    gap: 16px;
  }

  .stat-item strong {
    font-size: 40px;
  }

  .stat-item span:last-child {
    font-size: 10px;
    letter-spacing: 0.2em;
  }

  .manifesto {
    padding: 160px 0;
  }

  .manifesto .section-container {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .manifesto__word {
    font-size: 20rem;
  }

  .manifesto blockquote {
    margin-bottom: 64px;
    padding-inline: 0;
    font-size: 3.75rem;
    line-height: 1.1;
  }

  .manifesto blockquote::before,
  .manifesto blockquote::after {
    font-size: 12rem;
  }

  .manifesto blockquote::before {
    top: -72px;
    left: -40px;
  }

  .manifesto blockquote::after {
    right: -40px;
    bottom: -120px;
  }

  .manifesto cite {
    gap: 24px;
    font-size: 30px;
  }

  .manifesto cite span {
    width: 48px;
  }

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

  .bio__copy {
    align-items: flex-start;
    text-align: left;
  }

  .bio__copy h2 {
    margin-bottom: 40px;
    font-size: 4rem;
    line-height: 0.9;
  }

  .rich-text {
    gap: 32px;
    font-size: 18px;
  }

  .quote-box {
    align-items: flex-start;
    border-left: 4px solid var(--color-yellow);
    padding-left: 24px;
  }

  .quote-box span {
    display: none;
  }

  .quote-box p {
    margin: 0;
    font-size: 24px;
  }

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

  .pillar-card {
    padding: 48px;
  }

  .proposals {
    padding: 128px 0;
  }

  .proposals .section-container {
    padding-top: 80px;
    padding-bottom: 80px;
  }

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

  .proposal-card {
    display: block !important;
    padding: 48px;
  }

  .proposal-card__icon {
    width: 64px;
    height: 64px;
    margin-bottom: 32px;
  }

  .proposal-card h3 {
    margin-bottom: 24px;
    font-size: 24px;
  }

  .proposal-card p {
    font-size: 14px;
  }

  .proposals__more-wrap {
    display: none;
  }

  .videos {
    padding: 128px 0;
  }

  .social-grid {
    gap: 24px;
    padding: 0;
  }

  .social-card {
    flex-direction: row;
    gap: 24px;
    padding: 32px;
    text-align: left;
  }

  .social-card__icon {
    width: 56px;
    height: 56px;
  }

  .social-card__copy small {
    font-size: 10px;
    letter-spacing: 0.3em;
  }

  .social-card__copy strong {
    font-size: 20px;
  }

  .action-card__body {
    padding: 64px;
  }

  .action-center__heading h2 {
    font-size: 4.5rem;
  }

  .subtabs button {
    padding-block: 32px;
    font-size: 12px;
  }

  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 40px;
    row-gap: 32px;
  }

  .field {
    gap: 12px;
  }

  .field input,
  .field select,
  .field textarea {
    padding: 24px;
    font-size: 18px;
  }

  .field textarea {
    min-height: 160px;
  }

  .terms-row label {
    font-size: 14px;
  }

  .submit-button {
    padding-block: 30px;
    font-size: 20px;
  }

  .footer {
    padding: 40px 0;
  }

  .footer .section-container {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .footer__inner {
    flex-direction: row;
    gap: 32px;
  }

  .footer__logo {
    width: 58px;
    height: 58px;
  }
  .footer__social a {
    width: 40px;
    height: 40px;
  }

  .footer__logo {
    font-size: 5px;
  }

  .footer__credits {
    text-align: right;
  }

  .footer__credits p {
    font-size: 9px;
    letter-spacing: 0.3em;
  }
}

@media (min-width: 1024px) {
  .navbar__links {
    display: flex;
  }

  .navbar__toggle {
    display: none;
  }

  .mobile-menu {
    display: none;
  }

  .hero__copy h1 {
    font-size: 6rem;
  }

  .bio__copy h2 {
    font-size: 4.5rem;
  }

  .pillars__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .proposals__grid,
  .videos__grid,
  .social-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .section-container {
    padding-inline: 20px;
  }

  .brand__copy strong {
    font-size: 16px;
  }

  .button {
    width: 100%;
    padding-inline: 18px;
  }

  .hero__copy h1,
  .section-heading h2,
  .bio__copy h2,
  .action-center__heading h2 {
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .social-grid {
    padding-inline: 0;
  }
}

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 250ms ease, visibility 250ms ease;
}

.legal-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.legal-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
}

.legal-modal__dialog {
  position: relative;
  width: min(720px, 100%);
  max-height: 85vh;
  overflow-y: auto;
  padding: 40px clamp(20px, 4vw, 44px);
  background: var(--color-gray);
  border: 1px solid rgba(250, 204, 21, 0.18);
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  transform: translateY(16px) scale(0.98);
  transition: transform 250ms var(--ease-out);
  outline: none;
}

.legal-modal.is-open .legal-modal__dialog {
  transform: translateY(0) scale(1);
}

.legal-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}

.legal-modal__close:hover {
  color: var(--color-dark);
  background: var(--color-yellow);
  border-color: var(--color-yellow);
}

.legal-modal__content {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.65;
}

.legal-modal__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 48px 20px 0;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-modal__tab {
  padding: 9px 16px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}

.legal-modal__tab:hover {
  color: var(--color-white);
  border-color: rgba(250, 204, 21, 0.5);
}

.legal-modal__tab.is-active {
  color: var(--color-dark);
  background: var(--color-yellow);
  border-color: var(--color-yellow);
}

.legal-modal__body > :first-child {
  margin-top: 0;
}

.legal-modal__content h3 {
  margin: 26px 0 6px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--color-yellow);
}

.legal-modal__content p {
  margin: 8px 0;
}

.legal-modal__content ul {
  margin: 8px 0;
  padding-left: 22px;
}

.legal-modal__content li {
  margin: 4px 0;
}

body.legal-modal-open {
  overflow: hidden;
}

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