/* Public campaign landing page */
.landing-page {
  min-height: 100vh;
  display: block;
  background: #0d1117;
}

.landing-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(13,71,161,.92) 0%, rgba(21,101,192,.78) 45%, rgba(26,122,74,.9) 100%),
    radial-gradient(circle at 20% 80%, rgba(212,160,23,.25), transparent 40%);
  min-height: 72vh;
  background-color: #0d3d7a;
}

.landing-brand { font-size: 1.05rem; letter-spacing: .02em; }
.landing-supporter-count {
  text-align: center;
  margin: 0;
  line-height: 1.25;
}
.landing-supporter-heading {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: .04em;
}
.landing-supporter-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: .35rem .5rem;
  line-height: 1.15;
}
.landing-supporter-num {
  letter-spacing: .01em;
  line-height: 1.2;
}
.landing-supporter-suffix {
  font-size: 1.15rem;
  font-weight: 700;
  opacity: .92;
}
.landing-eyebrow { letter-spacing: .14em; font-size: .75rem; opacity: .85; }
.landing-slogan {
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  font-weight: 800;
  letter-spacing: .06em;
  color: var(--mw-gold, #d4a017);
  text-shadow: 0 2px 12px rgba(0, 0, 0, .35);
}
.landing-highlight { color: var(--mw-gold, #d4a017); }
.landing-lead { opacity: .92; max-width: 36rem; }

.candidate-hero-card { max-width: 360px; }

.candidate-portrait-frame {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  max-height: min(380px, 46vh);
  margin: 0 auto 1.25rem;
  padding: 0.75rem 1rem 0;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .25);
}

.candidate-portrait-img {
  display: block;
  max-height: min(360px, 44vh);
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center center;
}

.candidate-name {
  font-size: 1.75rem;
  letter-spacing: .01em;
}

.candidate-slogan {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--mw-gold, #d4a017);
}

.candidate-title {
  font-size: .95rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .85;
}

.vision-card {
  background: rgba(255,255,255,.97);
  border-radius: 20px;
  padding: 2rem;
  border-left: 5px solid var(--mw-gold, #d4a017);
}
.vision-card-label { color: #1565C0; letter-spacing: .1em; }
.vision-card-title {
  font-size: 2rem;
  font-weight: 800;
  color: #1a7a4a;
  line-height: 1.2;
  margin-bottom: .75rem;
}
.vision-card-text { color: #495057; }

.mission-block { background: #fff; }

.landing-manifesto-section {
  background: #000;
}

/* Manifesto grid — matches campaign framework layout */
.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 720px;
  border: 2px solid #fff;
}

.manifesto-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  min-height: 110px;
  padding: 1.25rem 1rem;
  border: 1px solid #fff;
  color: #fff;
  text-align: center;
  transition: background .2s;
}

.manifesto-cell:hover { background: rgba(255,255,255,.06); }

.manifesto-cell-wide {
  grid-column: 1 / -1;
  min-height: 90px;
}

.manifesto-icon { font-size: 1.35rem; opacity: .9; }
.manifesto-label {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.manifesto-sub {
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .75;
}

.pillar-detail {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 1.25rem;
}

.pillar-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(212,160,23,.2);
  color: var(--mw-gold, #d4a017);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.landing-footer {
  background: #000;
  border-top: 1px solid rgba(255,255,255,.1);
}

.landing-footer-slogan {
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--mw-gold, #d4a017) !important;
}

.resource-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
  border: 1px solid rgba(0, 0, 0, .06);
}

.resource-thumb {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.resource-video,
.resource-video-file {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
  background: #000;
}

.resource-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.resource-doc {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  color: var(--mw-primary, #1565C0);
  font-size: 3rem;
}

.resource-body {
  padding: 1rem 1.1rem 1.2rem;
}

@media (max-width: 576px) {
  .landing-hero { min-height: auto; padding-bottom: 2rem; }
  .candidate-hero-card { max-width: 280px; }
  .candidate-portrait-frame { max-height: 300px; padding: 0.5rem; }
  .candidate-portrait-img { max-height: 280px; }
  .candidate-name { font-size: 1.45rem; }
  .vision-card-title { font-size: 1.6rem; }
  .manifesto-label { font-size: .9rem; }
}
