:root {
  --navy-950: #031225;
  --navy-900: #061a33;
  --navy-800: #0a284d;
  --navy-700: #123c69;
  --red-600: #df2039;
  --red-500: #f43f53;
  --blue-300: #89d9eb;
  --blue-100: #dff6fb;
  --white: #ffffff;
  --paper: #f5f8fb;
  --ink: #102033;
  --muted: #607086;
  --line: #dce5ed;
  --shadow: 0 24px 70px rgb(3 18 37 / 14%);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --shell: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--white);
  color: var(--navy-900);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.section-pad {
  padding-block: 112px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  width: 100%;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
  background: rgb(3 18 37 / 86%);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  width: var(--shell);
  min-height: 74px;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

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

.brand-mark {
  position: relative;
  display: block;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 13%);
  border-radius: 50%;
  background: #000;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 0.96rem;
  letter-spacing: 0.01em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--blue-300);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.82rem;
  font-weight: 700;
}

.primary-nav a {
  position: relative;
  color: rgb(255 255 255 / 82%);
  transition: color 180ms ease;
}

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

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--white);
}

.primary-nav a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid var(--red-500);
  border-radius: 999px;
  background: var(--red-600);
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 74px;
  background:
    radial-gradient(circle at 74% 30%, rgb(137 217 235 / 12%), transparent 28%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900) 62%, #0a2b51);
  color: var(--white);
}

.hero::before {
  position: absolute;
  top: 74px;
  right: 9%;
  width: 1px;
  height: 78%;
  background: linear-gradient(transparent, rgb(255 255 255 / 22%), transparent);
  content: "";
}

.hero-shape {
  position: absolute;
  border: 1px solid rgb(137 217 235 / 15%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-shape-one {
  top: 16%;
  right: -8vw;
  width: 38vw;
  height: 38vw;
}

.hero-shape-two {
  bottom: -22vw;
  left: -16vw;
  width: 46vw;
  height: 46vw;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 740px;
  padding-block: 96px 76px;
  align-items: center;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 84px;
}

.eyebrow,
.kicker {
  margin: 0 0 20px;
  color: var(--navy-700);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-300);
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: var(--red-500);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(4rem, 7.4vw, 7.2rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.89;
}

.hero h1 em {
  display: block;
  color: var(--blue-300);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero-intro {
  max-width: 650px;
  margin: 30px 0 0;
  color: rgb(255 255 255 / 74%);
  font-size: 1.08rem;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--red-600);
  box-shadow: 0 14px 30px rgb(231 36 61 / 24%);
  color: var(--white);
}

.button-primary:hover {
  background: var(--red-500);
  box-shadow: 0 18px 34px rgb(231 36 61 / 32%);
}

.button-ghost {
  border-color: rgb(255 255 255 / 28%);
  background: rgb(255 255 255 / 4%);
  color: var(--white);
}

.button-light {
  background: var(--white);
  color: var(--navy-900);
}

.candidate-line {
  display: flex;
  margin-top: 44px;
  align-items: center;
  gap: 13px;
}

.candidate-avatar {
  display: block;
  width: 46px;
  height: 46px;
  border: 2px solid rgb(255 255 255 / 34%);
  border-radius: 50%;
  object-fit: cover;
}

.candidate-line > span:last-child {
  display: grid;
  line-height: 1.25;
}

.candidate-line small {
  margin-top: 4px;
  color: rgb(255 255 255 / 60%);
}

.hero-visual {
  position: relative;
  max-width: 430px;
  margin-left: auto;
}

.poster-card {
  position: relative;
  padding: 24px;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: var(--radius-lg);
  background: rgb(255 255 255 / 7%);
  box-shadow: 0 40px 100px rgb(0 0 0 / 34%);
  transform: rotate(2.5deg);
}

.poster-topline {
  display: flex;
  margin-bottom: 16px;
  justify-content: space-between;
  color: var(--blue-300);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.poster-window {
  display: grid;
  height: 325px;
  padding: 16px;
  overflow: hidden;
  border-radius: 20px;
  background: #000;
  place-items: center;
}

.poster-window img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.poster-caption {
  display: grid;
  padding: 22px 8px 5px;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  column-gap: 9px;
  line-height: 1;
}

.poster-caption span {
  color: var(--red-500);
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.poster-caption strong {
  font-size: 2.5rem;
  letter-spacing: -0.05em;
}

.poster-caption small {
  margin-top: 12px;
  color: rgb(255 255 255 / 60%);
  grid-column: 1 / -1;
}

.election-stamp {
  position: absolute;
  right: -48px;
  bottom: 82px;
  display: grid;
  width: 116px;
  height: 116px;
  padding: 16px;
  border: 5px solid var(--paper);
  border-radius: 50%;
  background: var(--red-600);
  box-shadow: 0 16px 35px rgb(0 0 0 / 28%);
  color: var(--white);
  line-height: 1;
  place-content: center;
  text-align: center;
  transform: rotate(-8deg);
}

.election-stamp small,
.election-stamp span {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.election-stamp strong {
  margin-block: 5px;
  font-size: 1.45rem;
}

.priority-strip {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 74px;
  border-top: 1px solid rgb(255 255 255 / 12%);
  align-items: center;
  grid-template-columns: 1.4fr repeat(4, 1fr);
}

.priority-strip span,
.priority-strip a {
  padding-inline: 22px;
}

.priority-strip span {
  padding-left: 0;
  color: var(--blue-300);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.priority-strip a {
  display: flex;
  height: 34px;
  border-left: 1px solid rgb(255 255 255 / 12%);
  align-items: center;
  color: rgb(255 255 255 / 70%);
  font-size: 0.82rem;
  font-weight: 700;
  transition: color 180ms ease;
}

.priority-strip a:hover {
  color: var(--white);
}

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

.section-heading h2,
.identity-copy h2,
.involved-copy h2,
.leader-card h2,
.poster-feature-copy h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.split-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 1.08fr 0.72fr;
  gap: 80px;
}

.split-heading > p {
  max-width: 520px;
  margin: 0 0 4px;
  color: var(--muted);
}

.policy-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.policy-preview {
  display: flex;
  min-height: 330px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  flex-direction: column;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.policy-preview:hover {
  border-color: var(--blue-300);
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.policy-number {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 54px;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--navy-800);
  font-size: 0.75rem;
  font-weight: 900;
  place-items: center;
}

.policy-preview:nth-child(2) .policy-number,
.policy-preview:nth-child(4) .policy-number {
  background: #ffe8eb;
  color: var(--red-600);
}

.policy-preview h3 {
  margin: 0 0 12px;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.policy-preview p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.text-link {
  margin-top: auto;
  padding-top: 24px;
  color: var(--navy-700);
  font-size: 0.8rem;
  font-weight: 850;
}

.campaign-poster {
  overflow: hidden;
  background:
    linear-gradient(112deg, rgb(6 26 51 / 97%), rgb(6 26 51 / 78%)),
    repeating-linear-gradient(120deg, transparent 0 42px, rgb(255 255 255 / 3%) 42px 43px);
  color: var(--white);
}

.poster-feature {
  display: grid;
  align-items: center;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
}

.kicker-light {
  color: var(--blue-300);
}

.poster-feature-copy p:not(.kicker) {
  max-width: 490px;
  margin: 28px 0 34px;
  color: rgb(255 255 255 / 68%);
}

.poster-feature-art {
  margin: 0;
}

.poster-feature-image {
  display: grid;
  height: 520px;
  padding: 22px;
  overflow: hidden;
  border: 10px solid var(--white);
  border-radius: 6px;
  background: #000;
  box-shadow: 0 40px 90px rgb(0 0 0 / 32%);
  place-items: center;
  transform: rotate(1.6deg);
}

.poster-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.poster-feature-art figcaption {
  margin-top: 18px;
  color: rgb(255 255 255 / 48%);
  font-size: 0.75rem;
  text-align: center;
}

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

.platform-heading {
  max-width: 720px;
}

.platform-heading p:last-child {
  margin: 20px 0 0;
  color: var(--muted);
  font-weight: 650;
}

.policy-detail {
  display: grid;
  padding-block: 64px;
  border-top: 1px solid var(--line);
  grid-template-columns: 0.45fr 1fr;
  gap: 80px;
}

.policy-label {
  position: sticky;
  top: 112px;
  height: max-content;
}

.policy-label span {
  display: inline-block;
  min-width: 46px;
  margin-bottom: 18px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--navy-900);
  color: var(--blue-300);
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
}

.policy-label h3 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.policy-content p {
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  line-height: 1.85;
}

.policy-list {
  display: grid;
  margin: 28px 0 30px;
  padding: 0;
  list-style: none;
  gap: 12px;
}

.policy-list li {
  position: relative;
  padding: 15px 18px 15px 50px;
  border-radius: 12px;
  background: var(--paper);
}

.policy-list li::before {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--red-600);
  color: var(--white);
  content: "✓";
  font-size: 0.7rem;
  font-weight: 900;
  place-items: center;
}

.spectrum {
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 10%, rgb(137 217 235 / 10%), transparent 25%),
    var(--navy-950);
  color: var(--white);
}

.spectrum-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.spectrum-figure {
  margin: 0;
  padding: 14px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 35px 90px rgb(0 0 0 / 30%);
}

.spectrum-figure img {
  width: 100%;
  border-radius: 14px;
}

.spectrum-figure figcaption {
  padding: 12px 10px 2px;
  color: var(--muted);
  font-size: 0.74rem;
  text-align: center;
}

.spectrum-copy {
  display: grid;
  max-width: 970px;
  margin: 60px auto 0;
  grid-template-columns: auto 1fr;
  gap: 22px;
}

.drop-cap {
  color: var(--red-500);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5.2rem;
  line-height: 0.9;
}

.spectrum-copy p {
  margin: 0;
  color: rgb(255 255 255 / 76%);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
  line-height: 1.9;
}

.identity {
  background: var(--blue-100);
}

.identity-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}

.identity-visual {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: var(--navy-950);
  box-shadow: var(--shadow);
  text-align: center;
}

.identity-logo {
  height: 300px;
  overflow: hidden;
  border-radius: 22px;
  background: #000;
}

.identity-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.identity-visual p {
  margin: 24px 0 0;
  color: var(--blue-300);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  font-style: italic;
}

.identity-copy > p:not(.kicker) {
  max-width: 660px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.colour-key {
  display: grid;
  margin-top: 42px;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.colour-key > div {
  display: grid;
  padding: 18px;
  border: 1px solid rgb(6 26 51 / 10%);
  border-radius: 16px;
  background: rgb(255 255 255 / 52%);
}

.swatch {
  width: 32px;
  height: 10px;
  margin-bottom: 14px;
  border-radius: 999px;
}

.swatch-navy {
  background: var(--navy-900);
}

.swatch-black {
  background: #050505;
}

.swatch-red {
  background: var(--red-600);
}

.colour-key strong {
  font-size: 0.9rem;
}

.colour-key small {
  margin-top: 4px;
  color: var(--muted);
}

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

.leader-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 80px;
}

.leader-card {
  position: sticky;
  top: 112px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--navy-900);
  box-shadow: var(--shadow);
  color: var(--white);
}

.leader-portrait {
  height: 390px;
  overflow: hidden;
  background: var(--navy-950);
}

.leader-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.leader-card-copy {
  padding: 34px;
}

.leader-card-copy p {
  margin: 0 0 12px;
  color: var(--blue-300);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.leader-card h2 {
  font-size: clamp(3rem, 5vw, 4.8rem);
}

.leader-card-copy > span {
  display: inline-block;
  margin-top: 22px;
  color: rgb(255 255 255 / 62%);
}

.leader-profile h3 {
  margin: 0 0 20px;
  font-size: 2rem;
  letter-spacing: -0.035em;
}

.leader-profile > p:not(.kicker) {
  margin: 0;
  color: #405267;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.9;
}

.leader-facts {
  display: grid;
  margin: 42px 0 0;
  border-top: 1px solid var(--line);
}

.leader-facts > div {
  display: grid;
  padding-block: 18px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 0.4fr 1fr;
  gap: 24px;
}

.leader-facts dt {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.leader-facts dd {
  margin: 0;
  font-weight: 650;
}

.leadership-notes {
  display: grid;
  margin-top: 84px;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.leadership-note {
  padding: 40px;
  border-radius: var(--radius-md);
  background: var(--paper);
}

.leadership-note > span {
  color: var(--navy-700);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.leadership-note h3 {
  margin: 20px 0;
  font-size: 2.1rem;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.leadership-note p {
  margin: 20px 0 0;
}

.leadership-note-red {
  background: var(--red-600);
  color: var(--white);
}

.leadership-note-red > span {
  color: rgb(255 255 255 / 72%);
}

.trading-card-feature {
  display: grid;
  margin: 84px 0 0;
  padding: 54px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 18% 18%, rgb(137 217 235 / 12%), transparent 28%),
    var(--navy-950);
  box-shadow: var(--shadow);
  color: var(--white);
  grid-template-columns: 0.58fr 1fr;
  align-items: start;
  gap: 56px;
}

.trading-card-copy {
  position: sticky;
  top: 112px;
  padding-top: 18px;
}

.trading-card-copy h3 {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 4rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.trading-card-copy > p:not(.kicker) {
  max-width: 360px;
  margin: 24px 0 30px;
  color: rgb(255 255 255 / 66%);
}

.trading-card-art {
  display: block;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 24px;
  box-shadow: 0 30px 70px rgb(0 0 0 / 35%);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.trading-card-art:hover {
  box-shadow: 0 36px 80px rgb(0 0 0 / 44%);
  transform: translateY(-4px);
}

.trading-card-art img {
  width: 100%;
  height: auto;
}

.media {
  background: var(--paper);
}

.media-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 20px;
}

.video-placeholder {
  display: grid;
  min-height: 470px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgb(3 18 37 / 76%), rgb(10 40 77 / 94%)),
    repeating-linear-gradient(45deg, transparent 0 38px, rgb(255 255 255 / 4%) 38px 39px);
  color: var(--white);
  place-content: center;
  text-align: center;
}

.play-mark {
  display: grid;
  width: 78px;
  height: 78px;
  margin: 0 auto 24px;
  padding-left: 5px;
  border: 1px solid rgb(255 255 255 / 26%);
  border-radius: 50%;
  background: rgb(255 255 255 / 8%);
  color: var(--red-500);
  place-items: center;
}

.video-placeholder p {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 800;
}

.video-placeholder small {
  margin-top: 5px;
  color: rgb(255 255 255 / 54%);
}

.transcript-placeholder {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.transcript-placeholder > span {
  color: var(--red-600);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.transcript-placeholder h3 {
  margin: 22px 0 50px;
  font-size: 1.7rem;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.placeholder-line {
  width: 100%;
  height: 9px;
  margin-top: 14px;
  border-radius: 999px;
  background: var(--line);
}

.placeholder-line.short {
  width: 62%;
}

.involved {
  background:
    radial-gradient(circle at 16% 80%, rgb(137 217 235 / 11%), transparent 25%),
    var(--navy-900);
  color: var(--white);
}

.involved-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}

.involved-copy {
  position: sticky;
  top: 112px;
}

.involved-copy > p:not(.kicker) {
  max-width: 470px;
  margin: 26px 0 0;
  color: rgb(255 255 255 / 66%);
}

.involved-actions {
  display: flex;
  margin-top: 36px;
  flex-wrap: wrap;
  gap: 9px;
}

.involved-actions span {
  padding: 7px 12px;
  border: 1px solid rgb(255 255 255 / 15%);
  border-radius: 999px;
  color: var(--blue-300);
  font-size: 0.7rem;
  font-weight: 750;
}

.campaign-form {
  display: grid;
  padding: 38px;
  border: 1px solid rgb(255 255 255 / 13%);
  border-radius: var(--radius-lg);
  background: rgb(255 255 255 / 7%);
  box-shadow: 0 35px 80px rgb(0 0 0 / 20%);
  gap: 22px;
}

.form-note {
  display: flex;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgb(137 217 235 / 10%);
  align-items: center;
  gap: 10px;
}

.form-note > span {
  display: grid;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue-300);
  color: var(--navy-900);
  font-family: Georgia, serif;
  font-weight: 900;
  place-items: center;
}

.form-note p {
  margin: 0;
  color: rgb(255 255 255 / 68%);
  font-size: 0.74rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.campaign-form label {
  display: grid;
  gap: 8px;
}

.campaign-form label > span {
  color: rgb(255 255 255 / 68%);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.campaign-form input,
.campaign-form select,
.campaign-form textarea {
  width: 100%;
  border: 1px solid rgb(255 255 255 / 15%);
  border-radius: 12px;
  background: rgb(3 18 37 / 65%);
  color: var(--white);
}

.campaign-form input,
.campaign-form select {
  height: 50px;
  padding-inline: 14px;
}

.campaign-form textarea {
  padding: 14px;
  resize: vertical;
}

.campaign-form select option {
  background: var(--navy-900);
}

.form-submit {
  width: max-content;
  margin-top: 4px;
  cursor: pointer;
}

.form-success {
  min-height: 24px;
  margin: -8px 0 0;
  color: var(--blue-300);
  font-size: 0.82rem;
  font-weight: 700;
}

.site-footer {
  background: var(--navy-950);
  color: var(--white);
}

.footer-grid {
  display: grid;
  padding-block: 66px 52px;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 70px;
}

.footer-brand {
  align-self: start;
}

.footer-brand > div {
  display: grid;
}

.footer-brand span:not(.brand-mark) {
  margin-top: 4px;
  color: var(--blue-300);
  font-family: Georgia, serif;
  font-size: 0.86rem;
  font-style: italic;
}

.footer-title {
  margin: 0 0 15px !important;
  color: var(--blue-300) !important;
  font-size: 0.68rem !important;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid p,
.footer-nav a {
  display: block;
  margin: 5px 0;
  color: rgb(255 255 255 / 58%);
  font-size: 0.82rem;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  min-height: 72px;
  border-top: 1px solid rgb(255 255 255 / 10%);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: rgb(255 255 255 / 45%);
  font-size: 0.72rem;
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.has-js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .primary-nav {
    gap: 16px;
    font-size: 0.74rem;
  }

  .hero-grid {
    gap: 46px;
  }

  .election-stamp {
    right: -12px;
  }

  .policy-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .poster-feature,
  .identity-grid,
  .leader-grid,
  .involved-grid {
    gap: 54px;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: min(100% - 32px, 720px);
  }

  .section-pad {
    padding-block: 82px;
  }

  .has-js .nav-toggle {
    display: block;
  }

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

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

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

  .has-js .primary-nav {
    position: fixed;
    top: 74px;
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    overflow: hidden;
    background: var(--navy-950);
    opacity: 0;
    transition: max-height 260ms ease, opacity 180ms ease;
  }

  .has-js .primary-nav.is-open {
    max-height: calc(100dvh - 74px);
    padding: 20px 16px 28px;
    border-top: 1px solid rgb(255 255 255 / 10%);
    opacity: 1;
  }

  .has-js .primary-nav a {
    width: min(100%, 720px);
    margin-inline: auto;
    padding: 13px 4px;
    font-size: 1rem;
  }

  .has-js .primary-nav a:not(.nav-cta)::after {
    display: none;
  }

  .has-js .nav-cta {
    padding-inline: 16px !important;
    text-align: center;
  }

  html:not(.has-js) .site-header {
    position: relative;
  }

  html:not(.has-js) .nav-shell {
    padding-block: 12px;
    flex-wrap: wrap;
  }

  html:not(.has-js) .primary-nav {
    width: 100%;
    padding-block: 6px 12px;
    flex-wrap: wrap;
  }

  html:not(.has-js) .hero {
    padding-top: 0;
  }

  .hero-grid,
  .poster-feature,
  .split-heading,
  .identity-grid,
  .leader-grid,
  .media-layout,
  .involved-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-block: 76px 64px;
  }

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

  .hero-visual {
    width: min(92%, 470px);
    margin: 24px auto 0;
  }

  .priority-strip {
    padding-block: 20px;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 12px;
  }

  .priority-strip span {
    grid-column: 1 / -1;
  }

  .priority-strip a:nth-of-type(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .split-heading {
    gap: 24px;
  }

  .poster-feature-copy {
    max-width: 650px;
  }

  .policy-detail {
    grid-template-columns: 0.36fr 1fr;
    gap: 36px;
  }

  .identity-visual {
    width: min(100%, 520px);
    margin-inline: auto;
  }

  .leader-card,
  .involved-copy {
    position: relative;
    top: auto;
  }

  .leader-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
  }

  .leader-portrait {
    height: 100%;
    min-height: 380px;
  }

  .leader-profile {
    margin-top: 20px;
  }

  .trading-card-feature {
    padding: 36px;
    gap: 36px;
  }

  .involved-copy {
    max-width: 660px;
  }

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

  .footer-nav {
    grid-column: 2;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100% - 24px);
  }

  .section-pad {
    padding-block: 68px;
  }

  .brand-copy small {
    display: none;
  }

  .hero-grid {
    min-height: auto;
    padding-block: 64px 52px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 16vw, 5rem);
  }

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

  .hero-visual {
    width: calc(100% - 24px);
  }

  .poster-card {
    padding: 16px;
  }

  .poster-window {
    height: 285px;
  }

  .election-stamp {
    right: -16px;
    bottom: 70px;
    width: 102px;
    height: 102px;
  }

  .priority-strip {
    grid-template-columns: 1fr 1fr;
  }

  .policy-preview-grid,
  .colour-key,
  .leadership-notes,
  .field-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .policy-preview {
    min-height: 280px;
  }

  .policy-number {
    margin-bottom: 36px;
  }

  .poster-feature {
    gap: 52px;
  }

  .poster-feature-image {
    height: 380px;
    border-width: 7px;
  }

  .policy-detail {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .policy-label {
    position: static;
  }

  .policy-detail {
    padding-block: 50px;
  }

  .policy-content p,
  .spectrum-copy p,
  .leader-profile > p:not(.kicker) {
    font-size: 1.02rem;
    line-height: 1.8;
  }

  .policy-list li {
    padding-left: 46px;
    font-size: 0.92rem;
  }

  .spectrum-figure {
    padding: 7px;
    overflow-x: auto;
  }

  .spectrum-figure img {
    width: 900px;
    max-width: none;
  }

  .spectrum-figure figcaption {
    position: sticky;
    left: 0;
    width: calc(100vw - 38px);
  }

  .spectrum-copy {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .drop-cap {
    font-size: 4rem;
  }

  .identity-visual,
  .campaign-form,
  .leadership-note,
  .transcript-placeholder {
    padding: 26px;
  }

  .identity-logo {
    height: 240px;
  }

  .leader-card {
    grid-template-columns: 1fr;
  }

  .leader-portrait {
    min-height: 330px;
  }

  .leader-facts > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .trading-card-feature {
    padding: 24px;
    grid-template-columns: 1fr;
  }

  .trading-card-copy {
    position: static;
    padding-top: 0;
  }

  .video-placeholder {
    min-height: 340px;
  }

  .form-submit {
    width: 100%;
  }

  .footer-grid {
    gap: 34px;
  }

  .footer-nav {
    grid-column: 1;
  }

  .footer-bottom {
    padding-block: 20px;
    align-items: flex-start;
    flex-direction: column;
  }
}

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

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

  .has-js .reveal {
    opacity: 1;
    transform: none;
  }
}
