@font-face {
  font-family: "Barlow";
  src: url("/assets/fonts/barlow-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Barlow";
  src: url("/assets/fonts/barlow-semibold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Barlow";
  src: url("/assets/fonts/barlow-extrabold.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

:root {
  color-scheme: light;
  --violet: #412c91;
  --violet-deep: #25175f;
  --violet-ink: #1b1242;
  --lavender: #9185c0;
  --lavender-soft: #eeeafd;
  --paper: #fbfaf7;
  --white: #fff;
  --ink: #111018;
  --muted: #5e5a6c;
  --line: rgba(65, 44, 145, 0.17);
  --line-light: rgba(255, 255, 255, 0.24);
  --shadow: 0 24px 70px rgba(30, 17, 78, 0.16);
  --radius-sm: 0.75rem;
  --radius: 1.25rem;
  --radius-lg: 2rem;
  --container: 76rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Barlow", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body.dialog-open {
  overflow: hidden;
}

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

.helvetia-head {
  height: auto;
}

a {
  color: inherit;
  text-underline-offset: 0.18em;
}

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

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

:focus-visible {
  outline: 3px solid #f3db5e;
  outline-offset: 3px;
}

::selection {
  background: #d9d0ff;
  color: var(--violet-ink);
}

.skip-link {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 1000;
  padding: 0.7rem 1rem;
  border-radius: 0.5rem;
  background: var(--white);
  color: var(--violet-ink);
  font-weight: 800;
  transform: translateY(-150%);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(100%, 49rem);
}

.section {
  padding-block: clamp(4.5rem, 8vw, 8rem);
}

.section--tight {
  padding-block: clamp(3.5rem, 6vw, 5.5rem);
}

.section--lavender {
  background: var(--lavender-soft);
}

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

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--violet);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #d9d2ff;
}

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

h1,
h2,
h3 {
  color: var(--violet-ink);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.98;
}

h1 {
  margin-bottom: 1rem;
  font-size: clamp(3.1rem, 8vw, 7.5rem);
}

h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(2.25rem, 5vw, 4.5rem);
}

h3 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  line-height: 1.08;
}

.lead {
  max-width: 45rem;
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.48;
}

.section-heading {
  display: grid;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: clamp(2.25rem, 5vw, 4rem);
}

.section-heading > :last-child {
  margin-bottom: 0;
}

.section-heading--single {
  display: block;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 3.15rem;
  padding: 0.8rem 1.2rem;
  border: 2px solid transparent;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: var(--violet);
  color: var(--white);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover {
  background: var(--violet-deep);
  transform: translateY(-2px);
}

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

.button--light:hover {
  background: #f1edff;
  color: var(--violet-deep);
}

.button--outline {
  border-color: currentColor;
  background: transparent;
  color: var(--violet);
}

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

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

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

.button--block {
  width: 100%;
}

.button[aria-disabled="true"] {
  opacity: 0.55;
  cursor: wait;
  pointer-events: none;
}

.external-mark {
  font-size: 1.05em;
  line-height: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(37, 23, 95, 0.96);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 4.9rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.campaign-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--white);
  text-decoration: none;
}

.campaign-lockup__head {
  width: 2.7rem;
  height: 2.58rem;
  flex: none;
  object-fit: cover;
}

.campaign-lockup__copy {
  display: grid;
  line-height: 1;
}

.campaign-lockup__copy strong {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.campaign-lockup__copy small {
  margin-top: 0.28rem;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 1.5vw, 1.35rem);
}

.desktop-nav > a:not(.button) {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.desktop-nav > a:not(.button):hover {
  color: var(--white);
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.language-switcher a {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  place-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: none;
}

.language-switcher a:hover,
.language-switcher a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.menu-button {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  place-items: center;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-button span {
  margin-block: 0.25rem;
}

.menu-button[aria-expanded="true"] span {
  opacity: 0;
}

.menu-button[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-button[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--violet);
  color: var(--white);
}

.hero-grid {
  position: relative;
  display: grid;
  min-height: min(50rem, calc(100svh - 4.9rem));
  padding-block: clamp(3rem, 6vw, 5.5rem);
  grid-template-columns: minmax(19rem, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(2.5rem, 8vw, 8rem);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 41rem;
}

.hero-dove {
  display: block;
  width: clamp(5.5rem, 8vw, 8.5rem);
  height: auto;
  margin: 0 0 0.55rem auto;
}

.hero-lockup {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}

.hero-lockup .helvetia-head {
  width: clamp(15rem, 28vw, 26rem);
  margin-bottom: -0.35rem;
}

.hero-lockup h1 {
  max-width: 7.2ch;
  margin: 0;
  color: var(--white);
  font-size: clamp(3.45rem, 7vw, 6.9rem);
  letter-spacing: -0.045em;
  line-height: 0.79;
}

.hero-title-sub {
  max-width: 16ch;
  margin: 0 0 1.3rem;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.95;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 43rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.15rem, 2vw, 1.42rem);
  line-height: 1.48;
}

.hero-promise {
  margin: -0.3rem 0 1.7rem;
  color: #d9d2ff;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

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

.trust-item {
  display: grid;
  min-height: 7.2rem;
  padding: 1.25rem clamp(1rem, 3vw, 2.5rem);
  align-content: center;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  color: var(--violet);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.2;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.9rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.argument-card {
  min-height: 21rem;
  padding: clamp(1.5rem, 3vw, 2.35rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.argument-card__number {
  display: grid;
  width: 3rem;
  height: 3rem;
  margin-bottom: clamp(3rem, 7vw, 6rem);
  border-radius: 50%;
  place-items: center;
  background: var(--lavender-soft);
  color: var(--violet);
  font-size: 0.85rem;
  font-weight: 800;
}

.argument-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.changes-layout {
  display: grid;
  grid-template-columns: minmax(15rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2.5rem, 7vw, 7rem);
}

.changes-heading {
  position: sticky;
  top: 7rem;
  align-self: start;
}

.change-list {
  display: grid;
  gap: 1rem;
}

.change-card {
  display: grid;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border: 1px solid rgba(65, 44, 145, 0.12);
  border-radius: var(--radius);
  grid-template-columns: 3.4rem 1fr;
  gap: 1rem;
  background: var(--white);
}

.change-card__number {
  color: var(--violet);
  font-size: 1.05rem;
  font-weight: 800;
}

.change-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.source-list {
  display: flex;
  margin: 0.9rem 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
}

.source-list a,
.source-link {
  color: var(--violet);
  font-size: 0.84rem;
  font-weight: 600;
}

.action-band {
  position: relative;
  overflow: hidden;
  background: var(--violet-ink);
  color: var(--white);
}

.action-band::after {
  position: absolute;
  top: -9rem;
  right: -5rem;
  width: 27rem;
  aspect-ratio: 1;
  border: 5rem solid rgba(145, 133, 192, 0.15);
  border-radius: 50%;
  content: "";
}

.action-band-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
}

.action-band h2 {
  max-width: 13ch;
  margin-bottom: 1rem;
  color: var(--white);
}

.action-band p {
  max-width: 40rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.action-buttons {
  display: grid;
  min-width: min(100%, 19rem);
  gap: 0.7rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.product-card {
  display: flex;
  overflow: hidden;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  flex-direction: column;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(38, 22, 90, 0.05);
}

.product-card__visual {
  display: grid;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1 / 1;
  flex: none;
  place-items: center;
  background: #f3f0fb;
}

.product-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-card__visual picture {
  display: block;
  width: 100%;
  height: 100%;
}

.product-card__body {
  display: flex;
  height: 100%;
  padding: 1.35rem;
  flex-direction: column;
}

.product-card__body p {
  margin-bottom: 1.4rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.product-card__body .button {
  margin-top: auto;
}

.shop-note {
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.generator-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(22rem, 1.16fr);
  align-items: start;
  column-gap: clamp(2.5rem, 7vw, 6rem);
  row-gap: 1.5rem;
}

.generator-heading,
.generator-form {
  grid-column: 1;
}

.generator-heading {
  grid-row: 1;
}

.generator-form {
  display: grid;
  grid-row: 2;
  gap: 1.15rem;
}

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field label {
  color: var(--violet-ink);
  font-weight: 800;
}

.form-field textarea,
.form-field input {
  width: 100%;
  border: 2px solid rgba(65, 44, 145, 0.2);
  border-radius: 0.8rem;
  background: var(--white);
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.form-field textarea {
  min-height: 8.7rem;
  padding: 0.9rem 1rem;
  resize: vertical;
}

.form-field input {
  min-height: 3.4rem;
  padding: 0.75rem 1rem;
}

.name-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.photo-field input[type="file"] {
  min-height: 3.7rem;
  padding: 0.45rem;
  cursor: pointer;
}

.photo-field input[type="file"]::file-selector-button {
  min-height: 2.7rem;
  margin-right: 0.75rem;
  padding: 0.55rem 0.9rem;
  border: 0;
  border-radius: 999px;
  background: var(--lavender-soft);
  color: var(--violet);
  font-weight: 800;
  cursor: pointer;
}

.field-help {
  color: var(--muted);
  font-size: 0.84rem;
}

.form-field textarea:focus,
.form-field input:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 4px rgba(65, 44, 145, 0.1);
}

.field-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.generator-notes {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.87rem;
}

.generator-notes p {
  margin: 0;
}

.privacy-note {
  padding-left: 1.5rem;
  position: relative;
}

.privacy-note::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: var(--violet);
  font-weight: 800;
}

.canvas-card {
  position: sticky;
  top: 7rem;
  width: min(100%, 30rem);
  justify-self: center;
  grid-column: 2;
  grid-row: 1 / span 2;
  padding: clamp(1rem, 2.5vw, 1.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.canvas-card__label {
  margin: 0 0 0.7rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.canvas-wrap {
  overflow: hidden;
  border-radius: 0.9rem;
  background: var(--violet);
}

.canvas-wrap canvas {
  width: 100%;
  height: auto;
}

.canvas-actions {
  display: grid;
  margin-top: 1rem;
  grid-template-columns: 1fr auto;
  gap: 0.7rem;
}

.icon-button {
  display: grid;
  width: 3.15rem;
  height: 3.15rem;
  padding: 0;
  border: 2px solid var(--violet);
  border-radius: 50%;
  place-items: center;
  background: transparent;
  color: var(--violet);
  font-weight: 800;
  cursor: pointer;
}

.donation-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.5rem, 6vw, 5rem);
  background: var(--violet);
  color: var(--white);
}

.donation-section::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 50%, rgba(255,255,255,0.18), transparent 24rem);
  content: "";
  pointer-events: none;
}

.donation-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(17rem, 0.72fr) minmax(24rem, 1.28fr);
  align-items: start;
  gap: clamp(2rem, 7vw, 6rem);
}

.donation-copy {
  position: static;
}

.donation-section h2 {
  max-width: 14ch;
  color: var(--white);
}

.donation-section .lead {
  color: rgba(255, 255, 255, 0.82);
}

.donation-box {
  min-width: 0;
  display: grid;
  min-height: 18rem;
  padding: clamp(2rem, 5vw, 3.5rem);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-lg);
  place-items: center;
  align-content: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  text-align: center;
}

.donation-box__mark {
  display: grid;
  width: 4.3rem;
  height: 4.3rem;
  border-radius: 50%;
  place-items: center;
  background: var(--white);
  color: var(--violet);
  font-size: 1.7rem;
  box-shadow: 0 1rem 2.5rem rgba(24, 13, 70, 0.22);
}

.donation-box__prompt {
  max-width: 29rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.donation-open {
  width: min(100%, 24rem);
}

.donation-dialog {
  width: min(66rem, calc(100% - 2rem));
  height: min(92dvh, 58rem);
  max-width: none;
  max-height: none;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 1.25rem;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 2rem 7rem rgba(16, 8, 48, 0.42);
}

.donation-dialog::backdrop {
  background: rgba(16, 8, 48, 0.78);
  backdrop-filter: blur(6px);
}

.donation-dialog__surface {
  display: grid;
  height: 100%;
  grid-template-rows: auto minmax(0, 1fr);
}

.donation-dialog__header {
  display: flex;
  min-height: 5.3rem;
  padding: 1rem 1.25rem 1rem 1.5rem;
  border-bottom: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--white);
}

.donation-section .donation-dialog__title {
  margin: 0;
  color: var(--violet-ink);
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.05;
}

.donation-dialog__close {
  display: grid;
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
  padding: 0;
  border: 2px solid var(--violet);
  border-radius: 50%;
  place-items: center;
  background: var(--white);
  color: var(--violet);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.payrexx-frame-shell {
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: var(--white);
  -webkit-overflow-scrolling: touch;
}

.payrexx-frame {
  display: block;
  width: 100%;
  height: 134rem;
  border: 0;
  background: var(--white);
}

.payment-fallback {
  margin: 0.9rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  text-align: center;
}

.payment-fallback a {
  font-weight: 600;
}

.external-notice {
  margin: 0.9rem 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: grid;
  padding: 1.35rem 3rem 1.35rem 0;
  align-items: center;
  grid-template-columns: 2.75rem 1fr;
  gap: 0.8rem;
  color: var(--violet-ink);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 800;
  line-height: 1.2;
  list-style: none;
  cursor: pointer;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  right: 0.2rem;
  content: "+";
  color: var(--violet);
  font-size: 2rem;
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-number {
  color: var(--violet);
  font-size: 0.84rem;
}

.faq-answer {
  display: grid;
  padding: 0 0 2rem 3.55rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.fact-box,
.position-box {
  padding: 1.25rem;
  border-radius: 0.9rem;
}

.fact-box {
  border: 1px solid var(--line);
  background: var(--white);
}

.position-box {
  background: var(--lavender-soft);
}

.answer-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--violet);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-answer p {
  margin-bottom: 0;
  font-size: 0.96rem;
}

.faq-answer .source-list {
  grid-column: 1 / -1;
}

.transparency-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.transparency-card {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.transparency-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.checked-note {
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.official-sources {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 0.75rem;
  list-style: none;
}

.official-sources a {
  display: flex;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--white);
  color: var(--violet);
  font-weight: 600;
  text-decoration: none;
}

.official-sources a:hover {
  border-color: var(--violet);
}

.final-cta {
  background: var(--violet);
  color: var(--white);
  text-align: center;
}

.final-mark {
  width: 8.5rem;
  margin: -1rem auto 1rem;
}

.final-cta h2 {
  max-width: 14ch;
  margin-inline: auto;
  color: var(--white);
  line-height: 0.9;
}

.final-cta p {
  max-width: 44rem;
  margin: 0 auto 1.5rem;
  color: rgba(255, 255, 255, 0.77);
}

.final-cta .button-row {
  justify-content: center;
}

.site-footer {
  padding-block: 2.4rem 1.6rem;
  background: #100a2d;
  color: rgba(255, 255, 255, 0.72);
}

.footer-signoff {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.4rem 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.footer-brand img {
  width: 4.4rem;
  height: 4.2rem;
  object-fit: cover;
}

.footer-brand h2 {
  margin-bottom: 0.3rem;
  color: var(--white);
  font-size: 1.35rem;
}

.footer-brand p,
.footer-owner {
  margin: 0;
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  list-style: none;
  font-size: 0.88rem;
}

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

.footer-bottom {
  display: flex;
  margin-top: 1.7rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
}

.legal-hero {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: linear-gradient(145deg, var(--violet-deep), var(--violet));
  color: var(--white);
}

.legal-hero h1 {
  max-width: 14ch;
  color: var(--white);
  font-size: clamp(2.7rem, 7vw, 6rem);
}

.legal-hero p {
  max-width: 44rem;
  color: rgba(255, 255, 255, 0.76);
}

.legal-content {
  padding-block: clamp(3.5rem, 7vw, 6rem);
}

.legal-prose {
  max-width: 52rem;
}

.legal-prose h2 {
  margin-top: 2.5rem;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.legal-prose h3 {
  margin-top: 1.7rem;
  font-size: 1.2rem;
}

.legal-prose p,
.legal-prose li {
  color: var(--muted);
}

.legal-prose address {
  margin-block: 1rem;
  font-style: normal;
}

.legal-prose a {
  color: var(--violet);
}

.legal-callout {
  margin-block: 1.5rem;
  padding: 1.25rem;
  border-left: 4px solid var(--violet);
  background: var(--lavender-soft);
}

.status-message {
  min-height: 1.5rem;
  margin: 0.6rem 0 0;
  color: var(--violet);
  font-size: 0.86rem;
  font-weight: 600;
}

@media (min-width: 52rem) {
  .section-heading {
    grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 0.65fr);
  }
}

@media (max-width: 70rem) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .mobile-nav {
    position: fixed;
    inset: 4.9rem 0 auto;
    max-height: calc(100svh - 4.9rem);
    overflow-y: auto;
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    background: var(--violet-deep);
  }

  .mobile-nav[data-open="true"] {
    display: grid;
    gap: 0.25rem;
  }

  .mobile-nav > a:not(.button) {
    padding: 0.8rem;
    border-radius: 0.5rem;
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
  }

  .mobile-nav > a:not(.button):hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .mobile-nav .language-switcher {
    margin-block: 0.5rem;
  }

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

@media (max-width: 54rem) {
  html {
    scroll-padding-top: 4.8rem;
  }

  .hero-grid,
  .changes-layout,
  .generator-layout,
  .donation-layout {
    grid-template-columns: 1fr;
  }

  .donation-copy {
    position: static;
  }

  .payrexx-frame {
    height: 136rem;
  }

  .hero-grid {
    min-height: 0;
    padding-block: 3rem 4rem;
    gap: 2.4rem;
  }

  .hero-copy {
    order: 1;
    width: 100%;
    min-width: 0;
    max-width: 42rem;
    margin-inline: auto;
    text-align: center;
  }

  .hero-dove {
    width: clamp(5rem, 16vw, 7rem);
    margin-inline: auto;
  }

  .hero-lockup .helvetia-head {
    width: min(52vw, 19rem);
  }

  .hero-title-sub,
  .hero-lead {
    margin-inline: auto;
  }

  .hero-title-sub {
    width: 100%;
    max-width: 100%;
    font-size: clamp(1.6rem, 8vw, 3.2rem);
    text-align: center;
  }

  .hero .button-row {
    justify-content: center;
  }

  .changes-heading {
    position: static;
  }

  .action-band-grid {
    grid-template-columns: 1fr;
  }

  .action-buttons {
    min-width: 0;
  }

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

  .argument-card {
    min-height: auto;
  }

  .argument-card__number {
    margin-bottom: 2rem;
  }

  .generator-layout {
    row-gap: 2rem;
  }

  .generator-heading {
    grid-row: 1;
  }

  .canvas-card {
    position: static;
    grid-column: 1;
    grid-row: 2;
  }

  .generator-form {
    grid-column: 1;
    grid-row: 3;
  }

  .name-fields {
    grid-template-columns: 1fr;
  }

  .canvas-card {
    width: min(100%, 30rem);
    margin-inline: auto;
  }
}

@media (max-width: 40rem) {
  body {
    font-size: 1rem;
  }

  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .donation-box {
    min-height: 16rem;
    padding: 1.5rem 1rem;
  }

  .donation-dialog {
    width: 100%;
    height: 100dvh;
    border-radius: 0;
  }

  .donation-dialog__header {
    min-height: 4.8rem;
    padding: 0.8rem 0.75rem 0.8rem 1rem;
  }

  .campaign-lockup {
    gap: 0.4rem;
  }

  .campaign-lockup__head {
    width: 2.3rem;
    height: 2.18rem;
  }

  .campaign-lockup__copy strong {
    font-size: 0.76rem;
  }

  .campaign-lockup__copy small {
    font-size: 0.56rem;
  }

  .hero-grid {
    min-height: 0;
  }

  .hero .button-row .button {
    width: 100%;
  }

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

  .product-grid,
  .transparency-grid,
  .faq-answer {
    grid-template-columns: 1fr;
  }

  .product-card__visual {
    aspect-ratio: 1 / 1;
  }

  .faq-item summary {
    padding-right: 2.2rem;
    grid-template-columns: 2rem 1fr;
  }

  .faq-answer {
    padding-left: 0;
  }

  .canvas-actions {
    grid-template-columns: 1fr;
  }

  .icon-button {
    width: 100%;
    border-radius: 999px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-signoff {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

@media print {
  .site-header,
  .button,
  .generator-layout,
  .site-footer {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .section,
  .legal-content {
    padding-block: 1.5rem;
  }
}


/* 2026-08-06 persuasion and localisation release */
.hero-slogan {
  max-width: 9ch;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.7rem, 5.2vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.82;
  text-transform: uppercase;
}
.hero-copy h1 {
  max-width: 15ch;
  margin: 0 0 1.3rem;
  color: var(--white);
  font-size: clamp(2.35rem, 4.6vw, 4.75rem);
  letter-spacing: -0.04em;
  line-height: 0.94;
}
.hero-actions { margin-top: 0.25rem; }
a.trust-item { color: inherit; text-decoration: none; transition: background 150ms ease; }
a.trust-item:hover { background: var(--lavender-soft); }
.form-label { color: var(--violet-ink); font-weight: 800; }
.file-picker {
  display: flex;
  min-height: 3.7rem;
  padding: 0.45rem;
  border: 2px solid rgba(65, 44, 145, 0.2);
  border-radius: 0.8rem;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  cursor: pointer;
}
.file-picker__button {
  flex: 0 0 auto;
  padding: 0.62rem 0.9rem;
  border-radius: 999px;
  background: var(--lavender-soft);
  color: var(--violet);
  font-weight: 800;
}
.file-picker__status { min-width: 0; overflow: hidden; color: var(--muted); font-weight: 600; text-overflow: ellipsis; white-space: nowrap; }
.photo-field input.sr-only { width: 1px; min-height: 0; padding: 0; border: 0; }
.photo-field input:focus + .file-picker { border-color: var(--violet); box-shadow: 0 0 0 4px rgba(65,44,145,0.1); }
@media (max-width: 48rem) {
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { min-height: 5.4rem; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .hero-copy h1 { font-size: clamp(2.25rem, 11vw, 3.4rem); }
  .hero-slogan { font-size: clamp(2.35rem, 12vw, 3.8rem); }
  .file-picker { align-items: stretch; flex-direction: column; }
  .file-picker__status { padding-inline: 0.25rem; }
}


/* 2026-08-07 campaign ownership, participation and stand actions */
.desktop-nav > a:not(.button) {
  display: inline-flex;
  min-height: 2rem;
  padding-block: 0.2rem;
  align-items: center;
}

.participate-section {
  background: var(--lavender-soft);
}

.participate-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
}

.participate-intro {
  display: grid;
  width: 100%;
  max-width: 70rem;
  margin-inline: auto;
  padding: clamp(1.5rem, 4vw, 3.25rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2rem);
  background: var(--white);
  text-align: center;
  box-shadow: 0 20px 55px rgba(38, 22, 90, 0.08);
}

.participate-copy {
  display: grid;
  width: min(100%, 52rem);
  justify-items: center;
}

.participate-intro h2 {
  max-width: 20ch;
}

.participate-intro .lead {
  max-width: 44rem;
  margin-bottom: 1.6rem;
}

.participate-dove {
  width: clamp(5.75rem, 8vw, 7.5rem);
  height: clamp(5.75rem, 8vw, 7.5rem);
  margin-inline: auto;
  padding: clamp(0.85rem, 1.4vw, 1.15rem);
  border-radius: 50%;
  object-fit: contain;
  background: var(--violet);
  box-shadow: 0 12px 30px rgba(70, 43, 157, 0.18);
}

.participate-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.stand-actions > h3 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.stand-actions > p:not(.eyebrow):not(.stand-sources) {
  max-width: 45rem;
  color: var(--muted);
}

.stand-list {
  display: grid;
  margin: 1.75rem 0 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  list-style: none;
}

.stand-card {
  height: 100%;
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.stand-card .stand-date {
  display: grid;
  margin-bottom: 1rem;
  gap: 0.18rem;
  color: var(--violet);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.3;
}

.stand-card h4 {
  margin: 0 0 0.35rem;
  color: var(--violet-ink);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.stand-card > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.stand-sources {
  margin: 1.15rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.stand-sources a {
  color: var(--violet);
  font-weight: 600;
}

.final-mark .peace-dove {
  width: 100%;
  height: auto;
}

.footer-owner-block {
  display: grid;
  align-items: start;
  gap: 0.35rem;
}

.footer-owner-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-owner-logo {
  display: block;
  width: min(14rem, 64vw);
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.footer-owner-logo img {
  width: 100%;
  height: auto;
}

.footer-owner-block .footer-owner {
  margin: 0.15rem 0 0;
}

/* Keep the native file input clickable. Safari can fail to forward a click
   from a proxy label to a 1px clipped file input. */
.photo-field input[type="file"]::-webkit-file-upload-button {
  min-height: 2.7rem;
  margin-right: 0.75rem;
  padding: 0.55rem 0.9rem;
  border: 0;
  border-radius: 999px;
  background: var(--lavender-soft);
  color: var(--violet);
  font-weight: 800;
  cursor: pointer;
}

.file-picker__status--native {
  overflow: visible;
  padding-inline: 0.15rem;
  font-size: 0.84rem;
  white-space: normal;
}

@media (max-width: 64rem) {
  .stand-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 48rem) {
  .participate-intro {
    padding: clamp(1.5rem, 7vw, 2.25rem);
  }

  .participate-dove {
    width: 5.75rem;
    height: 5.75rem;
  }

  .stand-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 32rem) {
  .participate-actions .button {
    width: 100%;
  }
}
