:root {
  --background: #0b1020;
  --surface: rgba(255, 255, 255, 0.08);
  --surface-strong: rgba(255, 255, 255, 0.14);
  --text: #f7f7fb;
  --muted: #b8bfd6;
  --accent: #7dd3fc;
  --accent-strong: #38bdf8;
  --warm: #fbbf24;
  --border: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.26), transparent 34rem),
    radial-gradient(circle at top right, rgba(251, 191, 36, 0.16), transparent 28rem),
    linear-gradient(135deg, #080b16 0%, #11172c 55%, #0b1020 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(8, 11, 22, 0.72);
  border-bottom: 1px solid var(--border);
}

.nav {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 800;
  letter-spacing: -0.03em;
}

.nav-links {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--text);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 12px;
  padding: 8px 12px;
  font-size: 1.2rem;
}

main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 40px;
  align-items: start;
  padding: 36px 0 80px;
}

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

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

h1 {
  max-width: 760px;
  font-size: clamp(3rem, 8vw, 6.7rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
  margin-bottom: 24px;
}

h1 span {
  color: var(--warm);
}



h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
  letter-spacing: -0.055em;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.hero-text,
.lead {
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.primary {
  background: var(--text);
  color: #0b1020;
}

.secondary {
  background: var(--surface);
  color: var(--text);
}

.hero-card {
  position: relative;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: rgba(125, 211, 252, 0.22);
  border-radius: 50%;
  top: -80px;
  right: -80px;
  filter: blur(4px);
}

.card-stat {
  position: relative;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.card-stat:last-child {
  border-bottom: 0;
}

.card-stat strong {
  display: block;
  font-size: 2rem;
  letter-spacing: -0.05em;
  margin-bottom: 6px;
}

.card-stat span {
  color: var(--muted);
  line-height: 1.5;
}

.section {
  padding: 92px 0;
}

.section-heading {
  max-width: 780px;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.manifesto-card,
.text-panel,
.vote-section {
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.manifesto-card {
  padding: 28px;
  min-height: 250px;
}

.number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: 14px;
  background: var(--surface-strong);
  color: var(--accent);
  font-weight: 800;
}

.manifesto-card p,
.text-panel p,
.vote-section p {
  color: var(--muted);
  line-height: 1.65;
}

/*.vote {*/
/*  display: none;*/
/*  visibility: hidden;*/
/*}*/

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.text-panel {
  padding: 32px;
}

.vote-section {
  margin: 64px 0 96px;
  padding: 56px 32px;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(125, 211, 252, 0.18), transparent 24rem),
    var(--surface);
}

.vote-section p {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.vote-button {
  margin-top: 22px;
  background: var(--accent-strong);
  color: #07101c;
  border: 0;
}

.vote-button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  filter: grayscale(0.35);
}

.small-note {
  margin-top: 18px;
  font-size: 0.9rem;
}

.smaller-note {
  margin-top: 16px;
  font-size: 0.7rem;
}

code {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.15rem 0.35rem;
  border-radius: 0.35rem;
  color: var(--text);
}

.footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 40px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.footer a {
  color: var(--text);
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(8, 11, 22, 0.96);
  }

  .nav-links.open {
    display: flex;
  }

  .hero,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 64px 0 40px;
  }

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

  .section {
    padding: 64px 0;
  }

  .footer {
    flex-direction: column;
  }
}


/* Campaign photography */
.hero-media {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-photo {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: center;
  display: block;
  border: 1px solid var(--border);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.hero-card-floating {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  backdrop-filter: blur(18px);
}

.photo-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 18px;
  align-items: stretch;
  padding-top: 28px;
}

.feature-image {
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 32px;
  background: var(--surface);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.feature-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
}

.feature-image-large img {
  object-position: 50% 45%;
}

.feature-image-wide img {
  object-position: 45% 45%;
}

.feature-image figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(8, 11, 22, 0.72);
  backdrop-filter: blur(14px);
  color: var(--text);
  font-weight: 800;
  line-height: 1.35;
}

@media (max-width: 860px) {
  .hero-photo {
    height: min(92vw, 640px);
  }

  .photo-feature {
    grid-template-columns: 1fr;
  }

  .feature-image {
    min-height: 360px;
  }
}

.hero-photo {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: bottom center;
}

.contact {
}

.social-links img {
  width: 10%;
  padding: 5px;

}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal.show {
  display: flex;
}

.modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  background: white;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.poster-image {
  display: block;
  max-width: 100%;
  max-height: 85vh;
  border-radius: 8px;
}

.modal-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 999px;
  background: #111;
  color: white;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.modal-close:hover {
  background: #333;
}
