@font-face {
  font-family: 'GT Walsheim Wero';
  src: url('/static/font/GT-Walsheim-Wero-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'GT Walsheim Wero';
  src: url('/static/font/GT-Walsheim-Wero-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'GT Walsheim Wero';
  src: url('/static/font/GT-Walsheim-Wero-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'GT Walsheim Wero';
  src: url('/static/font/GT-Walsheim-Wero-900.woff2') format('woff2');
  font-weight: 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'GT Walsheim Wero Condensed';
  src: url('/static/font/GT-Walsheim-Wero-Condensed-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}

:root {
  --wero-yellow: #FFF48D;
  --ink: #1D1C1C;
  --pink: #E6427A;
  --white: #FFFFFF;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }

body {
  font-family: 'GT Walsheim Wero', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--wero-yellow);
  color: var(--ink);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 20px 32px;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.card {
  position: relative;
  max-width: 640px;
  width: 100%;
  text-align: center;
  padding: 32px 32px;
  margin: auto 0;
}

/* --- Language picker (top right) --- */
.lang-picker {
  position: absolute;
  top: 20px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  padding: 4px 8px 4px 14px;
  transition: background 0.15s ease;
}
.lang-picker:hover { background: rgba(255, 255, 255, 0.8); }
.lang-picker select {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: none;
  outline: none;
  font-family: 'GT Walsheim Wero', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0;
  color: var(--ink);
  padding: 4px 4px 4px 0;
  cursor: pointer;
}
.lang-picker .lang-chevron {
  width: 16px;
  height: 16px;
  color: var(--ink);
  pointer-events: none;
}

/* --- Lockup pinned to the top of the page --- */
.lockup {
  width: 100%;
  max-width: 360px;
  margin: 0 auto 0;
}
.lockup img {
  width: 100%;
  height: auto;
  display: block;
}

/* Impact Headline — Black 900, -4% tracking, 95% line-height */
h1.impact {
  font-family: 'GT Walsheim Wero', sans-serif;
  font-weight: 900;
  font-size: 56px;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--ink);
  margin-bottom: 24px;
  text-transform: uppercase;
}

/* Body Copy — Regular 400, -2% tracking, 130% line-height */
p.body {
  font-family: 'GT Walsheim Wero', sans-serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--ink);
  margin: 0 auto 36px;
  max-width: 480px;
}

/* First body paragraph after the CTA gets extra top spacing */
p.body.after-cta { margin-top: 32px; }
p.body .heart {
  color: #FF5C5C;
  margin-left: 2px;
}

/* Footer: learn-more, made-in, copyright — pinned to bottom of page */
.page-footer {
  margin-top: auto;
  padding-top: 48px;
  width: 100%;
  text-align: center;
}
.page-footer p { margin: 0 auto; }
.page-footer .made-in {
  margin-bottom: 32px;
  font-weight: 400;
  color: var(--ink);
}
.page-footer .learn-more { margin-bottom: 20px; }
.page-footer .learn-more a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.page-footer .copyright {
  margin-top: 0;
  font-family: 'GT Walsheim Wero', sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--ink);
  opacity: 1;
}
.page-footer .copyright a {
  color: inherit;
  text-decoration: none;
}
.page-footer .copyright a:hover { text-decoration: underline; }
.page-footer .copyright .sep {
  margin: 0 4px;
  opacity: 0.6;
}

/* Footnote — Condensed Regular, 0% tracking, 120% line-height */
p.footnote {
  font-family: 'GT Walsheim Wero Condensed', sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0;
  line-height: 1.2;
  color: var(--ink);
  opacity: 0.7;
  margin-top: 24px;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  background: var(--ink);
  color: var(--wero-yellow);
  padding: 18px 36px;
  border-radius: 999px;
  text-decoration: none;
  font-family: 'GT Walsheim Wero', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.cta:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(29,28,28,0.18); }
.cta:active { transform: translateY(0); }
.cta svg { width: 18px; height: 18px; }

@media (max-width: 560px) {
  .card { padding: 40px 16px; }
  .lockup { margin-bottom: 36px; max-width: 360px; }
  h1.impact { font-size: 38px; }
  p.body { font-size: 16px; }
  .cta { padding: 16px 28px; font-size: 16px; }
}
