
:root {
  --purple: #42338b;
  --purple-dark: #2c245f;
  --gold: #e0c84e;
  --teal: #1e9493;
  --cyan: #5cc0cb;
  --magenta: #941d75;
  --ink: #211f2b;
  --muted: #686575;
  --paper: #fbfaf7;
  --white: #ffffff;
  --line: #e7e3ed;
  --shadow: 0 24px 70px rgba(34, 27, 66, 0.12);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }
img { display: block; max-width: 100%; }

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 6px;
  background: var(--gold);
  color: var(--purple-dark);
  font-weight: 800;
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 10px max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(66, 51, 139, 0.12);
  background: rgba(251, 250, 247, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 4px 16px 4px 4px;
  background: var(--purple);
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.brand strong,
.brand small { display: block; line-height: 1.25; }
.brand strong { color: var(--purple-dark); font-size: 15px; }
.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

nav { display: flex; align-items: center; gap: 28px; }
nav a {
  color: var(--purple-dark);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
nav a:not(.nav-cta):hover,
nav a:not(.nav-cta):focus-visible { color: var(--teal); }

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--purple);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(92, 192, 203, 0.2), transparent 26%),
    linear-gradient(125deg, #ffffff 0%, #f7f5fb 56%, #eee9f7 100%);
}

.hero::after {
  position: absolute;
  right: -70px;
  bottom: -120px;
  width: 480px;
  height: 480px;
  border: 86px solid rgba(66, 51, 139, 0.07);
  content: "";
  transform: rotate(45deg);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: calc(100vh - 76px);
  align-items: center;
  grid-template-columns: minmax(0, 1.4fr) minmax(330px, 0.6fr);
  gap: 80px;
  padding-block: 88px;
}

.hero-copy { max-width: 770px; }

.eyebrow {
  margin: 0 0 18px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-light { color: var(--gold); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  color: var(--purple-dark);
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.08;
}
h1 {
  max-width: 820px;
  margin-bottom: 30px;
  font-size: clamp(3.5rem, 7vw, 6.7rem);
}
h2 { margin-bottom: 28px; font-size: clamp(2.4rem, 4.6vw, 4.6rem); }
h3 { font-size: 1.55rem; line-height: 1.25; }

.hero-lead {
  max-width: 680px;
  margin-bottom: 34px;
  color: #4e4a5a;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.55;
}

.hero-actions,
.cta-actions,
.about-links { display: flex; flex-wrap: wrap; gap: 14px; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible { transform: translateY(-2px); }
.button-primary {
  background: var(--purple);
  box-shadow: 0 12px 30px rgba(66, 51, 139, 0.22);
  color: var(--white);
}
.button-primary:hover,
.button-primary:focus-visible {
  background: var(--purple-dark);
  box-shadow: 0 16px 34px rgba(66, 51, 139, 0.3);
}
.button-secondary {
  border-color: rgba(66, 51, 139, 0.28);
  background: rgba(255, 255, 255, 0.64);
  color: var(--purple);
}
.button-secondary:hover,
.button-secondary:focus-visible { border-color: var(--purple); background: var(--white); }

.election-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px 52px 10px 10px;
  background: var(--purple-dark);
  box-shadow: var(--shadow);
  color: var(--white);
}

.card-label {
  margin-bottom: 26px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.election-card dl,
.election-card dd { margin: 0; }
.election-card dl > div { padding: 19px 0; border-top: 1px solid rgba(255, 255, 255, 0.15); }
.election-card dt {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.election-card dd { font-size: 15px; font-weight: 650; line-height: 1.5; }
.election-card-accent {
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 100px;
  height: 100px;
  border: 22px solid var(--gold);
  transform: rotate(45deg);
}

.hero-shape {
  position: absolute;
  width: 22px;
  height: 160px;
  opacity: 0.92;
  transform: rotate(39deg);
}
.hero-shape-one { top: 8%; right: 31%; background: var(--gold); }
.hero-shape-two { top: 3%; right: 28.5%; background: var(--teal); }

.section { padding-block: 112px; }

.video-section {
  scroll-margin-top: 76px;
  background: var(--purple-dark);
  color: rgba(255, 255, 255, 0.82);
}
.video-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
}
.video-stage {
  position: relative;
  display: grid;
  min-height: 390px;
  place-items: center;
  overflow: hidden;
  padding: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px 44px 8px 8px;
  background:
    linear-gradient(rgba(24, 18, 57, 0.74), rgba(24, 18, 57, 0.84)),
    url("assets/bastian-papen.jpg") center 28% / cover;
  text-align: center;
}
.video-stage::before {
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(224, 200, 78, 0.42);
  content: "";
}
.video-stage > * { position: relative; z-index: 1; }
.play-button {
  display: grid;
  width: 86px;
  height: 86px;
  margin-bottom: -22px;
  place-items: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: rgba(66, 51, 139, 0.72);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
}
.play-button span {
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 19px solid var(--gold);
}
.video-stage p { margin: 0; color: var(--white); font-size: 18px; font-weight: 750; }
.video-stage a {
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.video-copy h2,
.final-cta h2 { color: var(--white); }
.video-copy > p:not(.eyebrow) { font-size: 18px; }
.availability-note {
  padding-left: 18px;
  border-left: 3px solid var(--gold);
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px !important;
}

.motivation { background: var(--white); }
.narrative-grid { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 110px; }
.rich-copy { max-width: 730px; }
.rich-copy p,
.about-copy > p { color: #504d5a; }
.large-copy {
  color: var(--purple-dark) !important;
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  font-weight: 650;
  line-height: 1.48;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--purple);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 3px;
  text-underline-offset: 7px;
  text-transform: uppercase;
}

.priorities { background: #f1eef7; }
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 56px;
  margin-bottom: 54px;
}
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { max-width: 380px; margin-bottom: 8px; color: var(--muted); }
.priority-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.priority-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  padding: 42px 34px;
  border-radius: 8px 38px 8px 8px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(46, 38, 86, 0.08);
}
.priority-card::after {
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 94px;
  height: 94px;
  border: 20px solid currentColor;
  content: "";
  opacity: 0.28;
  transform: rotate(45deg);
}
.priority-card.purple { color: var(--purple); }
.priority-card.teal { color: var(--teal); }
.priority-card.gold { color: #aa941e; }
.priority-number {
  display: block;
  margin-bottom: 64px;
  color: currentColor;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}
.priority-card h3 { color: var(--purple-dark); }
.priority-card p { margin-bottom: 0; color: #5c5864; font-size: 15px; }

.about { background: var(--white); }
.about-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(320px, 0.74fr) minmax(0, 1.26fr);
  gap: 94px;
}
.portrait-wrap { position: sticky; top: 112px; margin: 0; }
.portrait-wrap::before {
  position: absolute;
  z-index: 1;
  top: -18px;
  right: -18px;
  width: 120px;
  height: 120px;
  border-top: 18px solid var(--gold);
  border-right: 18px solid var(--gold);
  content: "";
}
.portrait-wrap img {
  width: 100%;
  max-height: 650px;
  border-radius: 8px 46px 8px 8px;
  object-fit: cover;
  object-position: center top;
}
.portrait-wrap figcaption {
  display: flex;
  flex-direction: column;
  padding: 20px 22px;
  background: var(--purple-dark);
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}
.portrait-wrap figcaption span { color: var(--white); font-size: 18px; font-weight: 750; }
.about-copy { max-width: 700px; }
.fact-row {
  display: grid;
  margin: 38px 0;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
}
.fact-row div {
  display: flex;
  flex-direction: column;
  padding: 22px 18px;
  border-right: 1px solid var(--line);
}
.fact-row div:last-child { border-right: 0; }
.fact-row strong { color: var(--purple); font-size: 2rem; line-height: 1; }
.fact-row span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.about-links { align-items: center; }
.cornexion-signature {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  margin-top: 42px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}
.cornexion-signature img { width: 180px; height: auto; }

.final-cta {
  position: relative;
  overflow: hidden;
  background: var(--purple);
  color: rgba(255, 255, 255, 0.82);
}
.cta-pattern {
  position: absolute;
  top: -130px;
  right: -100px;
  width: 430px;
  height: 430px;
  border: 76px solid rgba(224, 200, 78, 0.18);
  transform: rotate(45deg);
}
.cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 86px;
}
.cta-lead { color: var(--white); font-size: 21px; font-weight: 650; }
.vote-panel {
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px 42px 8px 8px;
  background: rgba(36, 28, 80, 0.44);
}
.vote-date {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  font-weight: 780;
  letter-spacing: -0.03em;
}
.button-gold { background: var(--gold); color: var(--purple-dark); }
.button-outline-light { border-color: rgba(255, 255, 255, 0.55); color: var(--white); }
.vote-panel small {
  display: block;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.5;
}

.site-footer {
  padding-block: 42px 30px;
  background: #1d1932;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.site-footer strong { color: var(--white); font-size: 16px; }
.site-footer p { margin: 4px 0 0; }
.footer-links { display: flex; flex-wrap: wrap; gap: 24px; }
.footer-links a { color: rgba(255, 255, 255, 0.82); }
.disclaimer {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
}

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

@media (max-width: 980px) {
  nav a:not(.nav-cta) { display: none; }
  .hero-grid,
  .video-grid,
  .narrative-grid,
  .about-grid,
  .cta-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 48px; }
  .election-card { max-width: 580px; }
  .video-grid,
  .about-grid,
  .cta-grid { gap: 54px; }
  .narrative-grid { gap: 12px; }
  .priority-grid { grid-template-columns: 1fr; }
  .priority-card { min-height: auto; }
  .priority-number { margin-bottom: 34px; }
  .portrait-wrap { position: relative; top: 0; max-width: 560px; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .container { width: min(100% - 32px, 1180px); }
  .site-header { min-height: 68px; padding-inline: 16px; }
  .brand-mark { width: 40px; height: 40px; }
  .brand strong { font-size: 14px; }
  .brand small { display: none; }
  .nav-cta { padding: 9px 14px; font-size: 12px; }
  .hero,
  .hero-grid { min-height: auto; }
  .hero-grid { padding-block: 72px; }
  h1 { font-size: clamp(3.1rem, 14vw, 4.5rem); }
  .hero-actions,
  .cta-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .election-card,
  .vote-panel { padding: 28px 24px; }
  .section { padding-block: 82px; }
  .video-stage { min-height: 330px; padding: 34px 26px; }
  .section-heading { align-items: start; flex-direction: column; gap: 18px; }
  .priority-card { padding: 34px 28px; }
  .fact-row { grid-template-columns: 1fr; }
  .fact-row div { border-right: 0; border-bottom: 1px solid var(--line); }
  .fact-row div:last-child { border-bottom: 0; }
  .about-links { align-items: flex-start; flex-direction: column; }
  .cornexion-signature { align-items: flex-start; flex-direction: column; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
  .footer-links { flex-direction: column; gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
