@font-face {
  font-family: "P20 Inter";
  src: url("assets/fonts/Inter-Variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #171716;
  --muted: #6f6b66;
  --line: #d9d3cb;
  --white: #ffffff;
  --ivory: #fffaf4;
  --ivory-deep: #f8efe4;
  --apricot: #efaa70;
  --apricot-soft: #ffd5ad;
  --red: #ef1734;
  --red-dark: #c90023;
  --orange: #ff8b00;
  --orange-text: #9b4300;
  --yellow: #ffe100;
  --container: 1380px;
  --gutter: clamp(22px, 4vw, 72px);
  --section: clamp(88px, 10vw, 164px);
  --shadow: 0 30px 90px rgba(74, 42, 16, .14);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: "P20 Inter", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  font-weight: 450;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .22em; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
svg { display: block; }
[hidden] { display: none !important; }

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 16px;
  background: var(--ink);
  color: var(--white);
  border-radius: 4px;
}
.skip-link:focus { transform: translateY(0); }

.preview-bar {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 6px var(--gutter);
  background: var(--ink);
  color: rgba(255,255,255,.8);
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: .02em;
  text-align: center;
}
.preview-bar span { color: var(--white); font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 78px;
  background: rgba(255,255,255,.93);
  border-bottom: 1px solid rgba(23,23,22,.08);
  backdrop-filter: blur(18px);
  transition: height .35s var(--ease), box-shadow .35s var(--ease);
}
.header-inner { height: 100%; display: flex; align-items: center; gap: 36px; }
.brand { width: 74px; display: inline-flex; flex-direction: column; align-items: flex-start; text-decoration: none; line-height: .82; }
.brand-riemann { font-size: 9px; font-weight: 850; letter-spacing: .02em; margin-left: 2px; margin-bottom: 3px; }
.brand-p20 { font-size: 45px; font-weight: 900; letter-spacing: -.12em; }
.brand-p20 span { display: inline-block; font-size: .62em; letter-spacing: -.08em; transform: translateY(.12em); }
.primary-nav { margin-left: auto; display: flex; align-items: center; gap: clamp(20px, 2.5vw, 46px); }
.primary-nav a { font-size: 14px; font-weight: 650; text-decoration: none; position: relative; }
.primary-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--red); transition: right .3s var(--ease); }
.primary-nav a:hover::after, .primary-nav a:focus-visible::after { right: 0; }
.primary-nav .mobile-nav-cta { display: none; }
.menu-toggle { display: none; }

.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 26px;
  border: 1px solid var(--red);
  border-radius: 5px;
  background: var(--red);
  color: var(--white);
  font-size: 14px;
  font-weight: 760;
  line-height: 1;
  text-decoration: none;
  box-shadow: none;
  cursor: pointer;
  transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.button svg, .text-link svg, .partner-links svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: transform .3s var(--ease); }
.button:hover, .button:focus-visible { transform: translateY(-2px); background: var(--red-dark); border-color: var(--red-dark); box-shadow: 0 14px 32px rgba(239,23,52,.2); }
.button:disabled { cursor: not-allowed; opacity: .42; transform: none; box-shadow: none; }
.button:hover svg, .button:focus-visible svg, .partner-links a:hover svg { transform: translateX(4px); }
.button-small { min-height: 44px; padding: 10px 18px; font-size: 12px; }
.button-dark { background: var(--ink); border-color: var(--ink); }
.button-dark:hover, .button-dark:focus-visible { background: #2c2c2a; border-color: #2c2c2a; box-shadow: 0 14px 32px rgba(0,0,0,.18); }

.eyebrow {
  margin: 0 0 24px;
  color: var(--orange-text);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .19em;
  text-transform: uppercase;
}

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { letter-spacing: -.045em; line-height: .98; }
h2 { margin-bottom: 30px; font-size: clamp(44px, 5.4vw, 84px); font-weight: 820; }
h3 { font-size: clamp(25px, 2.5vw, 38px); font-weight: 780; }
em { font-style: normal; color: var(--red); }

.campaign-ended {
  position: relative;
  padding-block: clamp(18px, 2vw, 28px);
  background: linear-gradient(180deg, #fff8f0 0%, #fff 100%);
  overflow: hidden;
}
.campaign-ended::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 0%, rgba(255,139,0,.12), transparent 36%), radial-gradient(circle at 90% 100%, rgba(239,23,52,.08), transparent 34%);
  pointer-events: none;
}
.campaign-ended-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(420px, .85fr);
  gap: clamp(30px, 4vw, 56px);
  align-items: center;
  width: min(1180px, calc(100% - (var(--gutter) * 2)));
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid #ecdccf;
  border-radius: 20px;
  background: linear-gradient(135deg, #fff 0%, #fffaf4 58%, #fff3e8 100%);
  color: var(--ink);
  box-shadow: 0 18px 50px rgba(85,55,30,.11);
  overflow: hidden;
}
.campaign-ended-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(180deg, var(--red) 0 33.33%, var(--orange) 33.33% 66.66%, var(--yellow) 66.66%);
}
.campaign-ended-card::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -150px;
  top: -180px;
  border: 38px solid rgba(239,23,52,.035);
  border-radius: 50%;
  pointer-events: none;
}
.campaign-ended-kicker {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
  color: var(--red-dark);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.campaign-ended-kicker span { width: 28px; height: 2px; background: linear-gradient(90deg, var(--red), var(--orange)); }
.campaign-ended h2 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(32px, 3.2vw, 46px);
  line-height: .98;
  letter-spacing: -.045em;
  overflow-wrap: anywhere;
}
.campaign-ended-copy, .campaign-ended-details { min-width: 0; }
.campaign-ended-copy > p:last-child { max-width: 680px; margin-bottom: 0; color: var(--muted); font-size: clamp(15px, 1.1vw, 18px); line-height: 1.5; }
.campaign-ended-details { display: grid; gap: 10px; }
.campaign-ended-details > p:not(.campaign-ended-note) {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 13px;
  align-items: center;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid #ead8ca;
  border-radius: 12px;
  background: rgba(255,255,255,.78);
  line-height: 1.38;
}
.campaign-ended-details strong { color: var(--ink); font-weight: 780; }
.campaign-ended-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: #fff0df; color: var(--orange); }
.campaign-ended-icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.campaign-ended-note { margin: 2px 0 0; padding-left: 4px; color: var(--muted); font-size: 13px; }

.hero {
  min-height: calc(100svh - 116px);
  position: relative;
  display: grid;
  align-items: center;
  background: #f7c08d;
  isolation: isolate;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(255,222,187,.98) 0%, rgba(255,222,187,.9) 37%, rgba(255,222,187,0) 59%);
  pointer-events: none;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 70% 58%; }
.hero-grid { min-height: inherit; display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); align-items: center; }
.hero-copy { max-width: 690px; padding-block: clamp(70px, 9vh, 120px); }
.hero h1 { margin-bottom: 30px; font-size: clamp(43px, 4.4vw, 72px); font-weight: 820; letter-spacing: -.057em; }
.hero h1 em { display: block; }
.hero-lead { max-width: 620px; margin-bottom: 34px; font-size: clamp(17px, 1.25vw, 21px); line-height: 1.55; }
.hero-lead a { font-weight: 760; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 20px 24px; }
.text-link { display: inline-flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 720; text-decoration: underline; text-decoration-color: rgba(23,23,22,.35); }
.text-link svg { width: 16px; }
.hero-scroll { position: absolute; right: var(--gutter); bottom: 28px; display: flex; align-items: center; gap: 10px; font-size: 10px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.hero-scroll span { width: 44px; height: 1px; background: currentColor; }

.campaign-strip { background: var(--white); border-bottom: 1px solid var(--line); }
.campaign-facts { min-height: 172px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: stretch; }
.fact { position: relative; display: flex; flex-direction: column; justify-content: center; padding: 34px clamp(20px, 3vw, 48px); }
.fact:first-child { padding-left: 0; }
.fact + .fact::before { content: ""; position: absolute; top: 35px; bottom: 35px; left: 0; width: 1px; background: var(--line); }
.fact-top { display: flex; align-items: center; gap: 14px; }
.fact strong { font-size: clamp(25px, 2.4vw, 36px); line-height: 1; letter-spacing: -.04em; }
.fact-label { margin-top: 12px; color: var(--muted); font-size: 13px; }
.fact-icon { flex: 0 0 42px; width: 42px; height: 42px; display: grid; place-items: center; color: var(--orange); opacity: 0; transform: translateY(8px) scale(.8); }
.fact-icon svg { width: 100%; height: 100%; overflow: visible; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.fact:nth-child(2) .fact-icon { color: var(--red); }
.fact:nth-child(3) .fact-icon { color: #dd9b1f; }
.fact:nth-child(4) .fact-icon { color: #66a8c9; }
.fact.is-visible .fact-icon { animation: fact-icon-in .65s var(--ease) .12s both; }
.fact.is-visible .fact-icon svg { animation: sea-bob 4s ease-in-out .8s infinite; }
.fact.is-visible strong { animation: fact-number-in .7s var(--ease) .2s both; }

@keyframes fact-icon-in {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes fact-number-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes sea-bob {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-3px) rotate(2deg); }
}

.campaign-copy { background: var(--ivory); }
.campaign-copy-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(56px, 8vw, 130px); align-items: start; }
.campaign-copy-heading { position: sticky; top: 120px; }
.campaign-copy-heading h2 { max-width: 650px; }
.campaign-checks { margin: 48px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.campaign-checks li { position: relative; padding: 18px 0 18px 34px; border-bottom: 1px solid var(--line); font-weight: 680; }
.campaign-checks li::before { content: "✓"; position: absolute; left: 0; color: var(--red); font-weight: 900; }
.campaign-legal-copy { padding-top: 34px; font-size: clamp(16px, 1.25vw, 19px); line-height: 1.72; }
.campaign-legal-copy p { margin-bottom: 28px; }
.campaign-legal-copy a { color: var(--red-dark); font-weight: 720; }

.products { background: var(--white); }
.product-statement {
  position: relative;
  overflow: hidden;
  padding: clamp(44px, 7vw, 96px) 0 clamp(34px, 5vw, 70px);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}
.product-statement::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(110px, 13vw, 190px);
  height: 8px;
  background: linear-gradient(90deg, var(--red) 0 34%, var(--orange) 34% 68%, #ffe100 68%);
}
.product-statement-label {
  display: block;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.product-statement h2 {
  max-width: 1180px;
  margin: 0;
  font-size: clamp(56px, 8vw, 124px);
  line-height: .88;
  letter-spacing: -.065em;
}
.product-statement h2 span { color: var(--red); }
.product-statement h2 strong {
  position: relative;
  z-index: 0;
  font-weight: 850;
  white-space: nowrap;
}
.product-statement h2 strong::after {
  content: "";
  position: absolute;
  left: -.02em;
  right: -.02em;
  bottom: .02em;
  z-index: -1;
  height: .16em;
  background: #ffe100;
}
.product-statement > p:last-child { margin: 34px 0 0; color: var(--muted); font-size: 18px; }

.sensitive { background: var(--ivory); }
.sensitive-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: clamp(58px, 8vw, 130px); align-items: center; }
.sensitive-media { margin: 0; }
.sensitive-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; box-shadow: var(--shadow); }
.sensitive-copy { max-width: 640px; }
.section-intro { max-width: 560px; color: var(--muted); font-size: 19px; }
.benefit-list { margin: 54px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.benefit-list li { display: grid; grid-template-columns: 9px 1fr; gap: 16px; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--line); font-size: 15px; font-weight: 690; }
.benefit-list li span { width: 7px; height: 7px; border-radius: 50%; background: var(--red); }

.how { background: var(--white); }
.section-heading { max-width: 850px; margin-bottom: clamp(54px, 7vw, 98px); }
.section-heading > p:last-child { max-width: 700px; color: var(--muted); font-size: 18px; }
.steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.step { display: grid; grid-template-columns: minmax(110px, .35fr) 1fr; align-items: center; min-height: 205px; border-bottom: 1px solid var(--line); }
.step-number { color: var(--orange); font-size: clamp(70px, 9vw, 142px); font-weight: 270; line-height: 1; letter-spacing: -.08em; }
.step > div { display: grid; grid-template-columns: minmax(180px, .5fr) minmax(280px, 1fr); gap: clamp(30px, 6vw, 100px); align-items: baseline; }
.step h3 { margin: 0; }
.step p { max-width: 630px; margin: 0; color: var(--muted); font-size: 18px; }
.important-note { margin: 55px 0 0 26%; display: grid; grid-template-columns: 100px 1fr; gap: 30px; padding: 26px 0; border-top: 2px solid var(--ink); border-bottom: 1px solid var(--line); }
.important-note strong { text-transform: uppercase; font-size: 11px; letter-spacing: .16em; }
.important-note strong,
.footer-label { color: var(--orange-text); }
.important-note p { max-width: 780px; margin: 0; color: var(--muted); }

.prize { background: var(--apricot-soft); position: relative; overflow: hidden; }
.prize::after { content: ""; position: absolute; width: 560px; height: 560px; right: -280px; top: -180px; border-radius: 50%; border: 70px solid var(--red); box-shadow: inset 0 0 0 60px var(--orange), inset 0 0 0 120px var(--yellow); opacity: .95; }
.prize-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(50px, 8vw, 130px); align-items: center; }
.prize-copy { max-width: 700px; }
.prize-lockup { display: flex; align-items: flex-end; gap: 24px; margin-bottom: 26px; }
.prize-lockup > span { font-size: clamp(150px, 18vw, 280px); font-weight: 760; line-height: .64; letter-spacing: -.11em; }
.prize-lockup h2 { margin: 0 0 -4px; font-size: clamp(58px, 7vw, 112px); text-transform: uppercase; }
.prize-lead { margin-bottom: 30px; font-size: clamp(31px, 3.4vw, 52px); line-height: 1.12; letter-spacing: -.045em; }
.prize-copy > p:not(.eyebrow) { max-width: 640px; }
.muted { color: rgba(23,23,22,.66); font-size: 14px; }
.prize-media { position: relative; width: min(100%, 380px); margin: 0; justify-self: center; overflow: hidden; }
.prize-media img { display: block; width: 100%; height: 480px; object-fit: cover; object-position: center 68%; box-shadow: none; }
.prize-media::after { content: ""; position: absolute; inset: -1px; background: linear-gradient(to right, var(--apricot-soft) 0, transparent 15%, transparent 85%, var(--apricot-soft) 100%), linear-gradient(to bottom, var(--apricot-soft) 0, transparent 15%, transparent 84%, var(--apricot-soft) 100%); pointer-events: none; }

.partners { background: var(--white); }
.partners-head { max-width: 950px; margin-bottom: 70px; }
.partners-head h2 { max-width: 1050px; margin-bottom: 20px; font-size: clamp(36px, 4.2vw, 64px); line-height: 1.02; }
.partners-accent-red { color: var(--red); }
.partners-head > p:last-child { max-width: 700px; margin: 0; color: var(--muted); font-size: 18px; }
.partner-links { display: grid; grid-template-columns: repeat(5, 1fr); gap: 32px; }
.partner-links a { display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 0 0 15px; border-bottom: 1px solid var(--ink); font-size: clamp(18px, 1.7vw, 27px); font-weight: 600; text-decoration: none; transition: color .25s var(--ease), border-color .25s var(--ease); }
.partner-links a:hover, .partner-links a:focus-visible { color: var(--red-dark); border-color: var(--red); }
.partner-arrow { flex: 0 0 auto; font-size: 1.05em; line-height: 1; transition: transform .3s var(--ease); }
.partner-links a:hover .partner-arrow, .partner-links a:focus-visible .partner-arrow { transform: translateX(4px); }

.registration { background: var(--ivory); }
.registration-grid { display: grid; grid-template-columns: minmax(300px, .72fr) minmax(560px, 1.28fr); gap: clamp(50px, 7vw, 110px); align-items: start; }
.registration-aside { position: sticky; top: 110px; overflow: hidden; padding-bottom: 18px; }
.registration-aside h2 { max-width: 520px; font-size: clamp(44px, 4.6vw, 72px); }
.registration-aside > p:not(.eyebrow) { max-width: 440px; font-size: 18px; }
.registration-art {
  position: relative;
  width: min(66%, 360px);
  height: 420px;
  margin: 48px auto 0;
  overflow: hidden;
}
.registration-art img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center 68%; }
.registration-art::after { content: ""; position: absolute; inset: -1px; background: linear-gradient(to right, var(--ivory) 0, transparent 17%, transparent 83%, var(--ivory) 100%), linear-gradient(to bottom, var(--ivory) 0, transparent 17%, transparent 82%, var(--ivory) 100%); pointer-events: none; }
.brand-rule { width: 118px; height: 9px; display: grid; grid-template-columns: repeat(3, 1fr); margin: 40px 0; overflow: hidden; }
.brand-rule i:nth-child(1) { background: var(--red); }
.brand-rule i:nth-child(2) { background: var(--orange); }
.brand-rule i:nth-child(3) { background: var(--yellow); }
.form-shell { min-height: 720px; padding: clamp(30px, 4vw, 60px); background: var(--white); box-shadow: 0 24px 80px rgba(78, 48, 21, .08); }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 24px; }
.field { display: flex; flex-direction: column; gap: 9px; }
.field-wide { grid-column: 1 / -1; }
.field label, .field legend { color: #2a2927; font-size: 13px; font-weight: 690; }
.field label span, .field legend span { color: var(--red); }
.field input:not([type="radio"]) {
  width: 100%;
  min-height: 54px;
  padding: 13px 15px;
  border: 1px solid #cfc9c2;
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  font-size: 15px;
  outline: none;
  transition: border .2s ease, box-shadow .2s ease, background .2s ease;
}
.field input::placeholder { color: #99948e; }
.field input:hover { border-color: #9f9992; }
.field input:focus { border-color: var(--ink); box-shadow: 0 0 0 3px rgba(23,23,22,.08); }
.field input[aria-invalid="true"] { border-color: var(--red); background: #fff8f8; }
.document-type { margin: 0; padding: 0; border: 0; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
.document-type legend { grid-column: 1 / -1; margin-bottom: 1px; }
.document-type label { position: relative; min-height: 54px; display: flex; align-items: center; justify-content: center; padding: 12px; border: 1px solid #cfc9c2; border-radius: 4px; cursor: pointer; }
.document-type input { position: absolute; opacity: 0; }
.document-type label:has(input:checked) { border-color: var(--ink); background: var(--ink); color: var(--white); }
.document-type label:focus-within { outline: 3px solid rgba(23,23,22,.12); }
.consents { display: grid; gap: 16px; margin: 34px 0; }
.check-row { position: relative; display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start; cursor: pointer; color: #4c4945; font-size: 13px; line-height: 1.5; }
.check-row input { position: absolute; opacity: 0; pointer-events: none; }
.checkmark { width: 21px; height: 21px; display: grid; place-items: center; border: 1px solid #9f9992; border-radius: 3px; background: var(--white); }
.check-row input:checked + .checkmark { background: var(--ink); border-color: var(--ink); }
.check-row input:checked + .checkmark::after { content: ""; width: 7px; height: 11px; border: solid white; border-width: 0 2px 2px 0; transform: translateY(-1px) rotate(45deg); }
.check-row input:focus-visible + .checkmark { outline: 3px solid rgba(23,23,22,.12); }
.check-row a { font-weight: 680; }
.submit-button { min-width: min(100%, 330px); }
.form-meta { margin: 16px 0 0; color: var(--muted); font-size: 11px; }
.form-error { margin: 0 0 16px; padding: 12px 14px; border-left: 3px solid var(--red); background: #fff2f3; color: #970017; font-size: 13px; }
.form-status-closed, .success-panel { min-height: 530px; display: flex; flex-direction: column; justify-content: center; }
.success-panel h3, .form-status-closed h3 { max-width: 600px; font-size: clamp(42px, 5vw, 72px); }
.success-panel p { max-width: 620px; }
.registration-number { margin-top: 24px; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.preview-success-note { color: var(--red-dark); font-size: 13px; font-weight: 650; }

.legal { background: var(--white); }
.legal-container { max-width: 1180px; }
.legal-disclosure { border-top: 1px solid var(--ink); }
.legal-disclosure:last-child { border-bottom: 1px solid var(--ink); }
.legal-disclosure summary { min-height: 110px; display: flex; align-items: center; justify-content: space-between; gap: 30px; list-style: none; cursor: pointer; font-size: clamp(21px, 2.5vw, 36px); font-weight: 720; letter-spacing: -.035em; }
.legal-disclosure summary::-webkit-details-marker { display: none; }
.legal-disclosure summary svg { flex: 0 0 28px; width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.5; transition: transform .35s var(--ease); }
.legal-disclosure[open] summary svg { transform: rotate(180deg); }
.legal-copy { max-width: 850px; padding: 10px 0 80px; font-size: 15px; line-height: 1.72; }
.legal-copy h3 { margin: 42px 0 18px; font-size: 24px; line-height: 1.22; letter-spacing: -.025em; }
.legal-copy h3:first-child { margin-top: 0; }
.legal-copy p { margin-bottom: 15px; }
.legal-copy ul { margin: -4px 0 20px; padding-left: 22px; }
.legal-copy a { color: var(--red-dark); font-weight: 650; overflow-wrap: anywhere; }

.final-cta { position: relative; overflow: hidden; background: var(--apricot); }
.final-grid { min-height: 660px; display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; }
.final-copy { position: relative; z-index: 2; max-width: 600px; padding-block: 80px; }
.final-copy h2 { font-size: clamp(58px, 7vw, 104px); }
.final-copy p:not(.eyebrow) { max-width: 520px; margin-bottom: 34px; font-size: 19px; }
.final-media { position: absolute; inset: 0 0 0 42%; margin: 0; }
.final-media img { width: 100%; height: 100%; object-fit: cover; object-position: 59% center; }
.final-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--apricot), rgba(239,170,112,0) 35%); }

.site-footer { padding: 82px 0 30px; background: var(--ivory); border-top: 1px solid rgba(23,23,22,.12); }
.footer-grid { display: grid; grid-template-columns: 1fr .8fr 1fr; gap: 60px; }
.footer-brand p, .footer-grid > div:nth-child(2) p, .footer-grid > div:nth-child(2) a { font-size: 13px; }
.footer-brand .brand { margin-bottom: 35px; }
.footer-label { margin-bottom: 12px; font-size: 10px !important; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.footer-links { display: grid; }
.footer-links a { display: flex; justify-content: space-between; align-items: center; padding: 17px 0; border-bottom: 1px solid var(--line); font-size: 13px; font-weight: 650; text-decoration: none; }
.footer-bottom { margin-top: 60px; padding-top: 24px; display: flex; justify-content: space-between; gap: 30px; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; }
.footer-bottom p { max-width: 700px; margin: 0; }
.footer-bottom .footer-disclaimer { max-width: 980px; color: var(--ink); font-size: 17px; font-weight: 620; line-height: 1.55; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  :root { --gutter: clamp(22px, 4vw, 46px); }
  .campaign-ended-card { grid-template-columns: 1fr; gap: 30px; }
  .campaign-ended-details { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .campaign-ended-note { grid-column: 1 / -1; }
  .header-cta { display: none; }
  .hero::after { background: linear-gradient(90deg, rgba(255,222,187,.98) 0%, rgba(255,222,187,.92) 48%, rgba(255,222,187,.12) 76%); }
  .hero-grid { grid-template-columns: 1.05fr .95fr; }
  .hero h1 { font-size: clamp(43px, 5.8vw, 64px); }
  .sensitive-grid, .prize-grid { gap: 56px; }
  .partner-links { grid-template-columns: repeat(3, 1fr); row-gap: 46px; }
  .registration-grid { grid-template-columns: .65fr 1.35fr; gap: 44px; }
  .registration-art { width: min(85%, 330px); }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 88px; }
  body { font-size: 16px; }
  .site-header, .site-header.is-scrolled { height: 70px; }
  .brand { width: 58px; }
  .brand-p20 { font-size: 37px; }
  .menu-toggle { order: 3; margin-left: auto; width: 44px; height: 44px; display: grid; align-content: center; gap: 7px; padding: 10px; border: 0; background: transparent; }
  .menu-toggle span:not(.sr-only) { width: 24px; height: 2px; background: var(--ink); transition: transform .3s var(--ease); }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }
  .primary-nav { position: absolute; top: 100%; left: 0; right: 0; margin: 0; display: none; gap: 0; padding: 10px var(--gutter) 26px; background: var(--white); border-bottom: 1px solid var(--line); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .3s var(--ease); }
  .primary-nav.is-open { display: grid; opacity: 1; visibility: visible; transform: none; }
  .primary-nav a { padding: 13px 0; border-bottom: 1px solid var(--line); }
  .primary-nav a::after { display: none; }
  .primary-nav .mobile-nav-link { display: block; }
  .primary-nav .mobile-nav-cta {
    width: 100%;
    min-height: 54px;
    display: inline-flex;
    margin-top: 18px;
    padding: 14px 20px;
    border: 1px solid var(--red);
    color: var(--white);
  }
  .hero { min-height: auto; padding-bottom: 0; display: flex; flex-direction: column; align-items: stretch; }
  .hero::after { display: none; }
  .hero-grid { order: 1; width: 100%; display: block; min-height: 0; }
  .hero-copy { padding: 76px 0 48px; }
  .hero h1 { font-size: clamp(46px, 12vw, 72px); }
  .hero-media { order: 2; position: relative; z-index: 0; width: 100%; height: 62vw; min-height: 390px; max-height: 650px; }
  .hero-media img { object-position: center 58%; }
  .hero-scroll { display: none; }
  .campaign-facts { min-height: 0; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fact { min-width: 0; min-height: 140px; padding: 28px; border-bottom: 1px solid var(--line); }
  .fact:first-child { padding-left: 28px; }
  .fact + .fact::before { top: 22px; bottom: 22px; }
  .fact:nth-child(3)::before { display: none; }
  .campaign-copy-grid, .sensitive-grid, .prize-grid, .registration-grid { grid-template-columns: 1fr; }
  .campaign-copy-heading { position: relative; top: auto; }
  .sensitive-media { max-width: 610px; }
  .sensitive-copy { max-width: none; }
  .step { grid-template-columns: 100px 1fr; padding: 28px 0; }
  .step-number { font-size: 74px; }
  .step > div { grid-template-columns: 1fr; gap: 14px; }
  .important-note { margin-left: 0; }
  .prize::after { width: 340px; height: 340px; right: -200px; border-width: 45px; box-shadow: inset 0 0 0 40px var(--orange), inset 0 0 0 80px var(--yellow); }
  .prize-media { width: min(100%, 340px); }
  .prize-media img { height: 430px; }
  .registration-aside { position: relative; top: auto; }
  .registration-art { display: none; }
  .form-shell { padding: clamp(24px, 6vw, 48px); }
  .final-grid { grid-template-columns: 1fr; min-height: 760px; align-items: start; }
  .final-copy { padding-top: 80px; }
  .final-media { inset: 39% 0 0 0; }
  .final-media::after { background: linear-gradient(180deg, var(--apricot), rgba(239,170,112,0) 30%); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  :root { --gutter: 20px; --section: 58px; }
  .preview-bar { min-height: 42px; flex-wrap: wrap; gap: 4px 8px; }
  .campaign-ended { padding-block: 12px; }
  .campaign-ended-card { width: calc(100% - 24px); padding: 22px 18px 20px 24px; border-radius: 16px; }
  .campaign-ended h2 { font-size: clamp(27px, 7.4vw, 32px); line-height: 1.02; }
  .campaign-ended-details { grid-template-columns: 1fr; }
  .campaign-ended-note { grid-column: auto; padding-left: 0; }
  .header-inner { gap: 18px; }
  .hero-copy { padding-top: 58px; }
  .hero h1 { font-size: clamp(42px, 12vw, 58px); }
  .hero h1 em { display: inline; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-media { height: 78vw; min-height: 330px; }
  .campaign-facts { padding-inline: 0; }
  .fact { padding: 24px 18px; }
  .fact:first-child { padding-left: 18px; }
  .fact-top { align-items: flex-start; flex-direction: column; gap: 10px; }
  .fact-icon { width: 36px; height: 36px; flex-basis: 36px; }
  .fact strong { font-size: 25px; }
  .fact-label { font-size: 11px; }
  h2 { font-size: clamp(40px, 12vw, 58px); }
  .sensitive-grid { gap: 48px; }
  .step { grid-template-columns: 72px 1fr; }
  .step-number { font-size: 56px; }
  .step p { font-size: 15px; }
  .important-note { grid-template-columns: 1fr; gap: 10px; }
  .prize-lockup { display: block; }
  .prize-lockup > span { font-size: 160px; }
  .prize-lockup h2 { margin-top: 24px; }
  .prize-lead { font-size: 31px; }
  .partner-links { grid-template-columns: 1fr; gap: 28px; }
  .partner-links a { font-size: 22px; }
  .partners-head h2 { font-size: clamp(34px, 9.5vw, 44px); line-height: 1.04; }
  .products { padding-bottom: 24px; }
  .product-statement { padding: 36px 0 32px; }
  .product-statement-label { margin-bottom: 18px; }
  .product-statement h2 { font-size: clamp(42px, 12vw, 64px); line-height: .94; }
  .product-statement > p:last-child { margin-top: 24px; font-size: 16px; }
  .how { padding-top: 38px; }
  .section-heading { margin-bottom: 38px; }
  .registration-grid { gap: 26px; }
  .registration-aside { padding-bottom: 0; }
  .registration-aside .brand-rule { margin-block: 26px; }
  .form-shell { min-height: 0; margin-inline: -8px; padding: 30px 20px; }
  .form-status-closed { min-height: 0; justify-content: flex-start; }
  .success-panel { min-height: 230px; justify-content: flex-start; }
  .form-status-closed h3, .success-panel h3 { margin: 0; font-size: clamp(38px, 11vw, 54px); }
  .form-grid { grid-template-columns: 1fr; }
  .field { grid-column: 1; }
  .document-type { grid-template-columns: 1fr; }
  .document-type legend { grid-column: 1; }
  .submit-button { width: 100%; }
  .legal-disclosure summary { min-height: 92px; font-size: 20px; }
  .legal-copy { font-size: 14px; }
  .final-grid { min-height: 640px; }
  .final-copy h2 { font-size: clamp(51px, 15vw, 72px); }
  .final-media { top: 45%; }
  .footer-grid { grid-template-columns: 1fr; gap: 42px; }
  .site-footer { padding: 54px 0 24px; }
  .footer-brand .brand { margin-bottom: 20px; }
  .footer-links { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  .fact-icon, .fact-icon svg, .fact strong { animation: none !important; opacity: 1; transform: none; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
