* {
  box-sizing: border-box;
}

@font-face {
  font-family: "Kallisto Light";
  src: url("/src/public/assets/fonts/fonnts.com-Kallisto_Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("/src/public/assets/fonts/SpaceGrotesk-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("/src/public/assets/fonts/SpaceGrotesk-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("/src/public/assets/fonts/SpaceGrotesk-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("/src/public/assets/fonts/SpaceGrotesk-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("/src/public/assets/fonts/SpaceGrotesk-Bold.ttf") format("truetype");
  font-weight: 700 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --bk-ink: #17120a;
  --bk-muted: #665941;
  --bk-cream: #f7f1e6;
  --bk-paper: #efe6d8;
  --bk-gold: #c89416;
  --bk-gold-2: #e8c66a;
  --bk-gold-3: #f7e8ad;
  --bk-dark: #080807;
  --bk-line: rgba(200, 148, 22, 0.32);
  --bk-glass: rgba(255, 255, 255, 0.48);
  --bk-glass-strong: rgba(255, 255, 255, 0.68);
  --bk-shadow: 0 30px 90px rgba(70, 53, 18, 0.18);
  --shell-gutter: clamp(12px, 3.2vw, 25px);
  --shell-width: 1180px;
  --shell-wide: 1540px;
  --shell-panel: 1220px;
}

html,
body {
  min-height: 100%;
  margin: 0;
  background: var(--bk-cream);
  color: var(--bk-ink);
  font-family: "Space Grotesk", Arial, sans-serif;
  letter-spacing: 0;
}

body {
  overflow-x: hidden;
}

a {
  color: inherit;
}

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

::placeholder {
  color: rgba(102, 89, 65, 0.46);
}

input[type="checkbox"] {
  accent-color: var(--bk-gold);
  width: 17px;
  height: 17px;
}

image-slot {
  --is-bg: rgba(255, 255, 255, 0.24);
}

@keyframes bkFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(var(--slot-rotate, 0deg));
  }
  50% {
    transform: translate3d(0, -18px, 0) rotate(var(--slot-rotate, 0deg));
  }
}

@keyframes bkSheen {
  0% {
    transform: translateX(-130%) rotate(10deg);
  }
  100% {
    transform: translateX(130%) rotate(10deg);
  }
}

@keyframes bkPrizeValueShimmer {
  0%,
  38% {
    background-position: 145% 145%, 0 0;
  }

  62%,
  100% {
    background-position: -45% -45%, 0 0;
  }
}

@keyframes bkShake {
  10%,
  90% {
    transform: translateX(-2px);
  }
  20%,
  80% {
    transform: translateX(4px);
  }
  30%,
  50%,
  70% {
    transform: translateX(-7px);
  }
  40%,
  60% {
    transform: translateX(7px);
  }
}

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

.campaign-page {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.82), rgba(247, 241, 230, 0.88) 42%, rgba(229, 215, 190, 0.96)),
    radial-gradient(circle at 18% 14%, rgba(232, 198, 106, 0.36), transparent 32%),
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.8), transparent 28%),
    var(--bk-paper);
}

.campaign-page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(200, 148, 22, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 148, 22, 0.12) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, #000, transparent 84%);
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 84%);
}

.campaign-page.dark {
  background:
    linear-gradient(140deg, rgba(23, 18, 10, 0.96), rgba(8, 8, 7, 0.98)),
    radial-gradient(circle at 20% 8%, rgba(200, 148, 22, 0.24), transparent 34%),
    var(--bk-dark);
  color: var(--bk-cream);
}

.shell {
  position: relative;
  z-index: 1;
  width: min(var(--shell-width), calc(100% - (var(--shell-gutter) * 2)));
  margin: 0 auto;
}

.hero {
  min-height: 100vh;
  min-height: 100dvh;
  padding: 28px 0 34px;
  display: flex;
  flex-direction: column;
}

.hero-reference.shell {
  width: min(var(--shell-wide), calc(100% - (var(--shell-gutter) * 2)));
}

.hero-reference::before,
.hero-reference::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}

.hero-reference::before {
  left: -260px;
  bottom: -290px;
  width: 560px;
  height: 560px;
  border: 2px solid rgba(200, 148, 22, 0.52);
  box-shadow: inset 0 0 0 18px rgba(255, 255, 255, 0.28);
}

.hero-reference::after {
  right: 19%;
  top: 122px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.7), transparent 68%);
}

.hero-nav,
.page-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
}

.nav-tour-button {
  min-height: 46px;
  padding-inline: 26px;
  color: #fff;
  background: linear-gradient(180deg, #c9922b, #a76805);
  box-shadow: 0 16px 34px rgba(122, 89, 11, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.brand-lockup.compact {
  justify-content: center;
}

.brand-bk {
  display: grid;
  place-items: center;
  width: 220px;
  min-height: 50px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.brand-bk img {
  width: 204px;
  height: auto;
}

.project-logos {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}

.project-logos img:first-child {
  width: 98px;
}

.project-logos img:last-child {
  width: 174px;
}

.brand-divider {
  width: 1px;
  height: 32px;
  background: rgba(23, 18, 10, 0.26);
}

.brand-lockup img {
  filter: brightness(0) saturate(100%);
  opacity: 0.84;
}

.dark .brand-lockup img {
  filter: brightness(0) invert(1);
  opacity: 0.86;
}

.dark .brand-divider {
  background: rgba(247, 241, 230, 0.34);
}

.campaign-mark {
  margin: clamp(26px, 5vw, 70px) auto clamp(8px, 2vw, 20px);
  color: rgba(116, 84, 10, 0.9);
  font-family: "Kallisto Light", "Space Grotesk", Arial, sans-serif;
  font-size: clamp(42px, 7vw, 88px);
  font-weight: 300;
  letter-spacing: 0.42em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  padding-left: 0.42em;
}

.page-mark {
  margin-top: clamp(26px, 4vw, 48px);
  margin-bottom: clamp(14px, 3vw, 28px);
  font-size: 1rem;
}

.home-mark {
  margin-top: clamp(30px, 3.8vw, 54px);
  margin-bottom: 0;
}

.home-mark + .hero-composition {
  padding-top: clamp(28px, 4vw, 58px);
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 10px 18px;
  border: 1px solid rgba(200, 148, 22, 0.42);
  border-radius: 999px;
  color: #77570b;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 12px 35px rgba(122, 89, 11, 0.1);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.hero-grid {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 34px;
  align-items: center;
  padding-top: 22px;
}

.hero-composition {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: minmax(380px, 0.95fr) minmax(390px, 1fr) minmax(400px, 0.8fr);
  gap: clamp(22px, 3vw, 54px);
  align-items: center;
  padding-top: clamp(42px, 6vw, 88px);
}

.hero-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.hero-badge {
  gap: 10px;
  padding: 9px 19px;
  color: #4a3a20;
  background: rgba(255, 255, 255, 0.52);
}

.hero-title {
  max-width: none;
  margin: 0;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: clamp(3.55rem, 4.15vw, 5.05rem);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-title span {
  display: block;
  white-space: nowrap;
}

.hero-title .title-soft {
  font-weight: 400;
}

.hero-title .title-strong {
  font-weight: 700;
}

.hero-title .title-medium {
  font-weight: 500;
}

.hero-title .gold {
  font-weight: 700;
  color: transparent;
  background: linear-gradient(180deg, #d19b2e 0%, #9f6404 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: 0.35px rgba(96, 66, 5, 0.16);
  filter: drop-shadow(0 5px 8px rgba(122, 89, 11, 0.14));
}

.hero-title .gold-light {
  background: linear-gradient(180deg, #e4bd68 0%, #c9952f 68%, #a36905 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-text {
  max-width: 42ch;
  margin: 0;
  color: var(--bk-muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

.hero-text strong,
.gold-inline {
  color: #8b650d;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-validity {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #76530a;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-validity span {
  position: relative;
  width: 15px;
  height: 15px;
  border: 1.7px solid currentColor;
  border-radius: 3px;
}

.hero-validity span::before,
.hero-validity span::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  border-top: 1.7px solid currentColor;
}

.hero-validity span::before {
  top: 4px;
}

.hero-validity span::after {
  top: 8px;
}

.hero-start-button {
  color: #fff;
  background: linear-gradient(180deg, #d1a045, #b67808 58%, #8d5504);
}

.hero-how-button {
  padding-inline: 24px;
  color: #9b6709;
  background: rgba(255, 255, 255, 0.38);
}

.hero-visual {
  position: relative;
  min-height: 600px;
}

.portal-shell {
  position: absolute;
  top: 0;
  right: 16px;
  width: min(360px, 82%);
  height: 570px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.portal-shell::before,
.portal-shell::after {
  display: none;
}

.portal-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: saturate(1.04) contrast(0.98);
}

.tour-stamp {
  position: absolute;
  top: 34px;
  right: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  color: #8d650d;
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 38px rgba(122, 89, 11, 0.14), inset 0 0 0 1px rgba(200, 148, 22, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.74);
  font-size: 0.55rem;
  font-weight: 700;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.52), rgba(255, 247, 226, 0.2)),
    rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(18px) saturate(1.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
  --slot-rotate: 3deg;
  animation: bkFloat 6.8s ease-in-out infinite;
}

.tour-stamp svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.tour-stamp text {
  fill: currentColor;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 8.15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tour-stamp .stamp-light {
  font-weight: 300;
}

.tour-stamp .stamp-bold {
  font-weight: 800;
}

.stamp-world {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tour-stamp path[id] {
  fill: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid rgba(200, 148, 22, 0.34);
  border-radius: 999px;
  text-decoration: none;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.button.primary {
  color: #211806;
  background: linear-gradient(180deg, #fff5c8, var(--bk-gold-2) 48%, var(--bk-gold));
  box-shadow: 0 18px 42px rgba(122, 89, 11, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.button.secondary {
  color: #77570b;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(14px);
}

.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(122, 89, 11, 0.22);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
.slider-knob:focus-visible {
  outline: 3px solid rgba(200, 148, 22, 0.48);
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 48px rgba(122, 89, 11, 0.22);
  }
}

.hero-media {
  position: relative;
  min-height: 760px;
}

.lottie-stage {
  position: absolute;
  inset: 44px 76px auto auto;
  width: 220px;
  height: 220px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.26)),
    linear-gradient(180deg, rgba(247, 232, 173, 0.28), rgba(200, 148, 22, 0.08));
  box-shadow: var(--bk-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(22px);
}

.prize-card::after {
  content: "";
  position: absolute;
  top: -40%;
  bottom: -40%;
  left: -42%;
  width: 44%;
  transform: rotate(10deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  pointer-events: none;
  animation: bkSheen 8s ease-in-out infinite;
}

.lottie-stage .bk-lottie,
.lottie-stage .bk-lottie svg {
  width: 194px;
  height: 194px;
}

.hero-lottie-stage {
  inset: 356px auto auto 38px;
  z-index: 1;
  width: 128px;
  height: 128px;
  border: 0;
  background: radial-gradient(circle, rgba(247, 232, 173, 0.48), transparent 68%);
  box-shadow: none;
  opacity: 0.44;
  backdrop-filter: none;
}

.hero-lottie-stage .bk-lottie,
.hero-lottie-stage .bk-lottie svg {
  width: 122px;
  height: 122px;
}

.float-slot,
image-slot[classname~="float-slot"] {
  position: absolute;
  z-index: 2;
  border: 0;
  background: transparent;
  box-shadow: none;
  animation: bkFloat 7s ease-in-out infinite;
}

.slot-ball,
#bk-ball {
  --slot-rotate: -8deg;
  top: 94px;
  left: 4px;
  width: 120px;
  height: 120px;
}

.slot-trophy,
#bk-trophy-home {
  --slot-rotate: 8deg;
  top: 224px;
  left: 142px;
  right: auto;
  width: 78px;
  height: 118px;
  animation-delay: 0.8s;
}

.slot-mascot,
#bk-mascot {
  --slot-rotate: -4deg;
  top: 96px;
  left: 148px;
  width: 96px;
  height: 126px;
  animation-delay: 0.35s;
}

.slot-jersey,
#bk-jersey {
  --slot-rotate: 7deg;
  right: 0;
  top: 126px;
  width: 118px;
  height: 118px;
  animation-delay: 1.1s;
}

#bk-jersey {
  display: none !important;
}

.hero-visual #bk-ball {
  --slot-rotate: -10deg;
  top: 232px;
  left: 18px;
  width: 112px;
  height: 112px;
  z-index: 4;
}

.hero-visual #bk-ball::part(frame) {
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.hero-visual #bk-ball::part(ring) {
  display: none;
}

.hero-trophy {
  position: absolute;
  top: 330px;
  left: 86px;
  width: 128px;
  height: 246px;
  object-fit: contain;
  object-position: center;
  z-index: 5;
  filter: drop-shadow(0 18px 22px rgba(74, 48, 10, 0.2));
}

.hero-mascot {
  position: absolute;
  top: 282px;
  left: 154px;
  z-index: 6;
  width: 96px;
  height: 126px;
  object-fit: contain;
  object-position: center;
  animation: bkFloat 7s ease-in-out infinite;
  filter: drop-shadow(0 14px 20px rgba(74, 48, 10, 0.16));
}

.prize-wrap {
  position: absolute;
  left: 34px;
  right: 52px;
  top: 350px;
  z-index: 3;
}

.hero-prize-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  min-width: 0;
  align-self: center;
}

.prize-card {
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
  border: 1px solid rgba(200, 148, 22, 0.46);
  border-radius: 8px;
  padding: 30px 28px 34px;
  color: var(--bk-ink);
  text-align: center;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.44)),
    linear-gradient(180deg, rgba(247, 232, 173, 0.3), rgba(200, 148, 22, 0.1));
  box-shadow: var(--bk-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(26px);
}

.prize-card > * {
  position: relative;
  z-index: 1;
}

.prize-card::after {
  z-index: 0;
}

.prize-eyebrow {
  margin: 0 0 8px;
  color: #75550a;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.prize-amount {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  max-width: 100%;
  overflow: visible;
  padding: 12px 4px 16px;
  line-height: 1.18;
  color: transparent;
  background: linear-gradient(180deg, #fff7cf 0%, var(--bk-gold-2) 32%, var(--bk-gold) 68%, #8b640d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 8px 12px rgba(122, 89, 11, 0.18));
}

.prize-currency,
.prize-main,
.prize-cents {
  display: inline-block;
  --prize-text-gradient: linear-gradient(180deg, #fff7cf 0%, var(--bk-gold-2) 32%, var(--bk-gold) 68%, #8b640d 100%);
  --prize-value-shimmer: linear-gradient(45deg, transparent 38%, rgba(255, 255, 255, 0.05) 44%, rgba(255, 255, 255, 0.62) 50%, rgba(255, 244, 188, 0.42) 55%, transparent 62%);
  color: transparent;
  background-image: var(--prize-value-shimmer), var(--prize-text-gradient);
  background-size: 230% 230%, 100% 100%;
  background-position: 145% 145%, 0 0;
  -webkit-background-clip: text;
  background-clip: text;
  animation: bkPrizeValueShimmer 5.2s ease-in-out infinite;
}

.prize-currency,
.prize-cents {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.15;
}

.prize-currency {
  margin-top: 24px;
  font-size: 2.8rem;
}

.prize-main {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 8.6rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.05;
}

.prize-cents {
  margin-top: 16px;
  font-size: 2.8rem;
}

.prize-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid rgba(247, 232, 173, 0.3);
  border-radius: 999px;
  color: var(--bk-gold-3);
  background: linear-gradient(180deg, rgba(23, 18, 10, 0.96), rgba(8, 8, 7, 0.92));
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.prize-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 100%;
  min-height: 64px;
  margin-top: 22px;
  padding: 0 24px 0 16px;
  border-radius: 999px;
  color: #f7e8ad;
  background: linear-gradient(180deg, rgba(24, 20, 12, 0.97), rgba(8, 8, 7, 0.94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 18px 34px rgba(8, 8, 7, 0.18);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-align: left;
  text-transform: uppercase;
}

.prize-note-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #f7e8ad;
  background: radial-gradient(circle at 35% 28%, rgba(232, 198, 106, 0.22), rgba(255, 255, 255, 0.04));
}

.prize-note-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.prize-card.hero-prize {
  width: 100%;
  max-width: 390px;
  min-height: 424px;
  padding: 44px 36px 36px;
  border-color: rgba(255, 255, 255, 0.68);
  border-radius: 16px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.42)),
    linear-gradient(180deg, rgba(247, 232, 173, 0.2), rgba(200, 148, 22, 0.06));
  box-shadow: 0 30px 82px rgba(70, 53, 18, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.prize-card.hero-prize::before {
  content: "✦";
  display: block;
  margin-bottom: 18px;
  color: #c89416;
  font-size: 1.25rem;
}

.prize-card.hero-prize .prize-eyebrow {
  margin-bottom: 18px;
  color: #4b3a21;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}

.prize-card.hero-prize .prize-amount {
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0 12px;
  color: #b77708;
  background: none;
  filter: none;
}

.prize-card.hero-prize .prize-currency {
  display: inline-block;
  margin-top: 14px;
  --prize-text-gradient: linear-gradient(180deg, #e6c46d 0%, #bd8420 54%, #82570c 100%);
  font-size: 1.25rem;
}

.prize-card.hero-prize .prize-main {
  --prize-text-gradient: linear-gradient(180deg, #e7c874 0%, #c99635 42%, #8a5a09 100%);
  font-size: 5.1rem;
  line-height: 0.96;
  filter: drop-shadow(0 9px 12px rgba(122, 89, 11, 0.16));
}

.prize-card.hero-prize .prize-cents {
  display: inline-block;
  margin-top: 14px;
  --prize-text-gradient: linear-gradient(180deg, #e6c46d 0%, #bd8420 54%, #82570c 100%);
  font-size: 1.25rem;
}

.prize-card.hero-prize .prize-label {
  min-height: auto;
  padding: 0;
  border: 0;
  color: var(--bk-ink);
  background: transparent;
  font-size: 0.78rem;
  letter-spacing: 0.13em;
}

.prize-card.hero-prize .prize-logos {
  margin-top: 24px;
  padding-top: 20px;
}

.prize-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(122, 89, 11, 0.18);
}

.prize-logos img:first-child {
  width: 102px;
}

.prize-logos img:last-child {
  width: 188px;
}

.prize-card.compact {
  padding: 22px 18px 24px;
}

.prize-card.compact .prize-main {
  font-size: 5rem;
}

.prize-card.compact .prize-currency,
.prize-card.compact .prize-cents {
  font-size: 2rem;
}

.hero-flow-panel {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: min(var(--shell-panel), calc(100% - (var(--shell-gutter) * 2)));
  margin: 28px auto 0;
  padding: 24px 32px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.38));
  box-shadow: 0 28px 82px rgba(70, 53, 18, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(22px);
}

.hero-flow-step {
  position: relative;
  display: grid;
  grid-template-columns: 60px auto;
  grid-template-areas:
    "icon number"
    "icon text";
  column-gap: 18px;
  align-items: center;
  min-height: 72px;
  padding: 0 22px;
}

.hero-flow-step::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 0;
  bottom: 12px;
  width: 1px;
  background: rgba(122, 89, 11, 0.22);
}

.hero-flow-step:last-child::after {
  display: none;
}

.hero-flow-icon {
  grid-area: icon;
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(200, 148, 22, 0.22);
  border-radius: 50%;
  color: #9a690a;
  background: radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.86), rgba(239, 230, 216, 0.78));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 12px 26px rgba(122, 89, 11, 0.1);
}

.hero-flow-icon svg {
  display: none;
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-flow-icon.tour .icon-tour,
.hero-flow-icon.search .icon-search,
.hero-flow-icon.form .icon-form,
.hero-flow-icon.gift .icon-gift {
  display: block;
}

.hero-flow-number {
  grid-area: number;
  color: #9a690a;
  font-weight: 800;
  font-size: 0.82rem;
}

.hero-flow-text {
  grid-area: text;
  max-width: 14ch;
  color: var(--bk-ink);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.25;
}

.hero-footnote {
  position: relative;
  z-index: 2;
  margin: 24px 0 0;
  color: rgba(23, 18, 10, 0.52);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-align: center;
  text-transform: uppercase;
}

.materials-section {
  position: relative;
  z-index: 2;
  padding: clamp(58px, 7vw, 96px) 0;
  background: linear-gradient(180deg, rgba(247, 241, 230, 0.12), rgba(225, 207, 174, 0.36));
}

.materials-shell {
  width: min(var(--shell-panel), calc(100% - (var(--shell-gutter) * 2)));
}

.materials-heading {
  display: grid;
  justify-items: center;
  gap: 18px;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.materials-title {
  margin: 0;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.materials-copy {
  max-width: 62ch;
  margin: 0;
  color: var(--bk-muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.material-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 148px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 14px;
  color: var(--bk-ink);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.38));
  box-shadow: 0 22px 58px rgba(70, 53, 18, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  text-decoration: none;
  backdrop-filter: blur(20px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.material-card-number {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(200, 148, 22, 0.34);
  border-radius: 50%;
  color: #805c0a;
  background: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  font-weight: 800;
}

.material-card-copy {
  display: grid;
  gap: 7px;
}

.material-card-title {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.25;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.material-card-status {
  color: #846a3c;
  font-size: 0.86rem;
}

.material-card-arrow {
  color: #9a690a;
  font-size: 1.35rem;
  transition: transform 180ms ease;
}

.material-card.is-disabled {
  cursor: not-allowed;
  opacity: 0.64;
}

.material-card:focus-visible {
  outline: 3px solid rgba(200, 148, 22, 0.34);
  outline-offset: 4px;
}

@media (hover: hover) and (pointer: fine) {
  .material-card:not(.is-disabled):hover {
    transform: translateY(-4px);
    border-color: rgba(200, 148, 22, 0.42);
    box-shadow: 0 28px 68px rgba(70, 53, 18, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  }

  .material-card:not(.is-disabled):hover .material-card-arrow {
    transform: translate(3px, -3px);
  }
}

@media (max-width: 1060px) {
  .materials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .materials-grid {
    grid-template-columns: 1fr;
  }

  .material-card {
    min-height: 126px;
    padding: 20px;
  }
}

.section-band {
  position: relative;
  z-index: 2;
  padding: 28px 0 78px;
}

.info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 22px;
  align-items: stretch;
}

.section-band .shell.info-grid {
  width: min(var(--shell-panel), calc(100% - (var(--shell-gutter) * 2)));
}

.info-grid > .glass-panel,
.info-stack {
  height: 100%;
}

.info-stack {
  display: grid;
  grid-template-rows: auto minmax(130px, 1fr);
  gap: 22px;
}

.glass-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.34));
  box-shadow: var(--bk-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(24px);
}

.glass-panel.dark-panel {
  color: var(--bk-cream);
  border-color: rgba(247, 232, 173, 0.24);
  background: linear-gradient(145deg, rgba(23, 18, 10, 0.9), rgba(8, 8, 7, 0.72));
  box-shadow: 0 30px 90px rgba(8, 8, 7, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.panel-pad {
  padding: 30px;
}

.section-title {
  margin: 0 0 20px;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.steps {
  display: grid;
  gap: 14px;
}

.step-item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.step-number {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(200, 148, 22, 0.42);
  border-radius: 8px;
  color: #6e5009;
  background: rgba(255, 255, 255, 0.42);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-weight: 700;
}

.step-title {
  margin: 0 0 4px;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.step-text {
  margin: 0;
  color: var(--bk-muted);
  line-height: 1.55;
}

.why-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.why-title {
  margin-bottom: 0;
}

.why-card p {
  margin: 0;
  color: var(--bk-muted);
  font-size: clamp(1.08rem, 1.4vw, 1.28rem);
  font-weight: 600;
  line-height: 1.35;
}

.step-link,
.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: #7a590d;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(122, 89, 13, 0.36);
}

.cta-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
}

.campaign-cta {
  justify-content: space-between;
  padding: 34px;
  background:
    radial-gradient(circle at 100% 0%, rgba(232, 198, 106, 0.28), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.36));
}

.campaign-cta::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -52px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(200, 148, 22, 0.24);
  border-radius: 50%;
  pointer-events: none;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid rgba(200, 148, 22, 0.34);
  border-radius: 999px;
  color: #75550a;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cta-badge svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-title {
  max-width: none;
  margin-bottom: 0;
  font-size: clamp(1.35rem, 1.7vw, 1.7rem);
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: none;
}

.cta-panel p {
  margin: 0;
  color: var(--bk-muted);
  line-height: 1.6;
}

.validity {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(200, 148, 22, 0.34);
  border-radius: 999px;
  color: #75550a;
  background: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  font-weight: 800;
}

.fine-print {
  font-size: 0.85rem;
  color: rgba(102, 89, 65, 0.86);
}

.site-footer {
  position: relative;
  z-index: 2;
  padding: 0 0 34px;
}

.site-footer.shell {
  width: min(var(--shell-panel), calc(100% - (var(--shell-gutter) * 2)));
}

.footer-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(220px, 0.55fr) minmax(max-content, 1fr);
  gap: clamp(16px, 1.7vw, 24px);
  align-items: center;
  padding: 26px 28px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.34));
  box-shadow: 0 24px 70px rgba(70, 53, 18, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(22px);
}

.footer-brand {
  display: grid;
  gap: 14px;
}

.footer-logo img {
  width: 196px;
  height: auto;
  filter: brightness(0) saturate(100%);
  opacity: 0.86;
}

.footer-brand p {
  max-width: 42ch;
  margin: 0;
  color: var(--bk-muted);
  line-height: 1.55;
}

.footer-contact {
  display: grid;
  gap: 7px;
  justify-self: start;
  margin-left: clamp(-42px, -3vw, -24px);
  color: #4a3a20;
  font-style: normal;
  font-weight: 600;
  line-height: 1.35;
}

.footer-contact a {
  color: #8b650d;
  text-decoration: none;
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-phone svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  justify-self: end;
  gap: 10px;
  min-width: max-content;
  white-space: nowrap;
}

.social-badge {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 8px;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(200, 148, 22, 0.3);
  border-radius: 999px;
  color: #75550a;
  background: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}

.social-badge svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-section {
  padding: 28px 0 72px;
}

.page-hero {
  display: grid;
  justify-items: center;
  gap: 22px;
  max-width: 820px;
  margin: 0 auto 32px;
  text-align: center;
}

.page-title {
  margin: 0;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: clamp(2.15rem, 4.4vw, 3.25rem);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.page-lead {
  margin: 0 auto;
  max-width: 68ch;
  color: var(--bk-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.mobile-break-title span,
.mobile-break-lead span {
  display: inline;
}

.mobile-break-title span + span::before,
.mobile-break-lead span + span::before {
  content: " ";
}

.tour-frame {
  overflow: hidden;
  border: 1px solid rgba(200, 148, 22, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--bk-shadow);
  backdrop-filter: blur(24px);
}

.tour-frame iframe {
  display: block;
  width: 100%;
  height: clamp(540px, 66vh, 760px);
  border: 0;
}

.deadline-page-section {
  min-height: calc(100vh - 220px);
  min-height: calc(100dvh - 220px);
}

.deadline-card {
  display: grid;
  justify-items: center;
  gap: 24px;
  max-width: 860px;
  margin: clamp(38px, 7vw, 90px) auto 0;
  padding: clamp(34px, 6vw, 72px);
  text-align: center;
}

.deadline-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 4px;
}

.tour-embed-card {
  background: #050505;
}

.theasys-tour-host {
  min-height: clamp(540px, 66vh, 760px);
}

.tour-launch-card {
  display: grid;
  place-items: center;
  min-height: clamp(360px, 58vh, 620px);
  padding: clamp(26px, 5vw, 54px);
  text-align: center;
}

.tour-launch-content {
  display: grid;
  justify-items: center;
  gap: 18px;
  max-width: 680px;
}

.tour-launch-icon {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(200, 148, 22, 0.32);
  border-radius: 50%;
  color: #8b650d;
  background: radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.9), rgba(239, 230, 216, 0.72));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 18px 38px rgba(122, 89, 11, 0.12);
}

.tour-launch-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tour-launch-title {
  margin: 0;
  font-size: clamp(1.45rem, 3.4vw, 2.4rem);
  line-height: 1.08;
  text-transform: uppercase;
}

.tour-launch-copy {
  max-width: 62ch;
  margin: 0;
  color: var(--bk-muted);
  line-height: 1.65;
}

.tour-page-section {
  --tour-button-gap: clamp(40px, 5vw, 72px);
  padding-bottom: var(--tour-button-gap);
}

.tour-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
  color: var(--bk-muted);
  text-align: center;
}

.tour-page-section .tour-bottom {
  margin-top: var(--tour-button-gap);
}

.tour-mobile-fallback {
  display: none;
}

@media (max-width: 1024px) {
  .tour-desktop-embed {
    display: none;
  }

  .tour-mobile-fallback {
    display: grid;
  }
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(410px, 0.42fr) minmax(0, 1fr);
  gap: 52px;
  align-items: start;
}

.form-layout > *,
.form-layout .sc-host {
  min-width: 0;
}

.form-layout > aside {
  display: grid;
  justify-items: center;
  width: 100%;
}

.signup-card {
  position: relative;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(200, 148, 22, 0.28);
  border-radius: 8px;
  padding: 30px;
  color: var(--bk-ink);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.38)),
    linear-gradient(180deg, rgba(247, 232, 173, 0.24), rgba(200, 148, 22, 0.08));
  box-shadow: var(--bk-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(22px);
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.form-head {
  display: grid;
  gap: 12px;
}

.form-title {
  margin: 0;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: clamp(1.55rem, 4.8vw, 2rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.form-copy {
  margin: 0;
  color: var(--bk-muted);
  line-height: 1.55;
}

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

.signup-card input:not([type="checkbox"]):not([type="radio"]) {
  border-color: rgba(200, 148, 22, 0.24) !important;
  color: var(--bk-ink) !important;
  background: rgba(255, 255, 255, 0.58) !important;
  font-size: 16px !important;
}

@media (hover: hover) and (pointer: fine) {
  .signup-card input:not([type="checkbox"]):not([type="radio"]):hover {
    border-color: rgba(200, 148, 22, 0.48) !important;
    background: rgba(255, 255, 255, 0.7) !important;
  }
}

.signup-card input:not([type="checkbox"]):not([type="radio"]):focus {
  border-color: rgba(200, 148, 22, 0.7) !important;
  background: rgba(255, 255, 255, 0.82) !important;
  box-shadow: 0 0 0 3px rgba(200, 148, 22, 0.14), 0 14px 32px rgba(122, 89, 11, 0.12) !important;
}

.profile-fieldset {
  display: grid;
  gap: 12px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.profile-fieldset legend,
.select-field > span {
  margin: 0 0 2px;
  color: var(--bk-gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.profile-fieldset legend span,
.select-field strong {
  color: #e0564f;
}

.profile-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.choice-card {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(200, 148, 22, 0.24);
  border-radius: 12px;
  color: var(--bk-ink);
  background: rgba(255, 255, 255, 0.58);
  cursor: pointer;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.choice-card:focus-within {
  border-color: rgba(200, 148, 22, 0.55);
  background: rgba(255, 255, 255, 0.76);
}

@media (hover: hover) and (pointer: fine) {
  .choice-card:hover {
    border-color: rgba(200, 148, 22, 0.55);
    background: rgba(255, 255, 255, 0.76);
  }
}

.choice-card:has(input:checked) {
  border-color: rgba(200, 148, 22, 0.78);
  box-shadow: 0 0 0 3px rgba(200, 148, 22, 0.12);
}

.choice-card.is-invalid {
  border-color: rgba(224, 86, 79, 0.75);
}

.choice-card input {
  width: 16px;
  height: 16px;
  accent-color: var(--bk-gold);
}

.choice-card span {
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.25;
}

.conditional-field[hidden] {
  display: none !important;
}

.select-field {
  display: grid;
  gap: 9px;
}

.select-field select {
  width: 100%;
  height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(200, 148, 22, 0.24);
  border-radius: 12px;
  outline: 0;
  color: var(--bk-ink);
  background: rgba(255, 255, 255, 0.58);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 1rem;
}

.select-field select:focus {
  border-color: rgba(200, 148, 22, 0.7);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 0 0 3px rgba(200, 148, 22, 0.14), 0 14px 32px rgba(122, 89, 11, 0.12);
}

.terms-row {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  min-width: 0;
  color: var(--bk-muted);
  cursor: pointer;
  font-size: 0.86rem;
  line-height: 1.55;
}

.terms-row a {
  color: var(--bk-gold-2);
  text-decoration: none;
  border-bottom: 1px solid rgba(232, 198, 106, 0.42);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.slider-track {
  position: relative;
  height: 62px;
  overflow: hidden;
  border: 1px solid rgba(200, 148, 22, 0.42);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.32));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  touch-action: none;
  user-select: none;
}

.slider-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 58px;
  background: linear-gradient(90deg, rgba(200, 148, 22, 0.44), rgba(232, 198, 106, 0.18));
  pointer-events: none;
}

.slider-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px 0 66px;
  color: rgba(91, 74, 42, 0.72);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: clamp(0.68rem, 2.8vw, 0.86rem);
  font-weight: 600;
  letter-spacing: clamp(0.04em, 0.6vw, 0.14em);
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  pointer-events: none;
}

.slider-knob {
  position: absolute;
  top: 5px;
  left: 5px;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  color: #241a06;
  cursor: grab;
  background: radial-gradient(120% 120% at 30% 25%, #fff5c8, var(--bk-gold-2) 45%, var(--bk-gold) 100%);
  box-shadow: 0 6px 18px rgba(200, 148, 22, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  will-change: transform;
}

.success-state {
  text-align: center;
  padding: 28px 0;
}

.success-icon {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin: 0 auto 24px;
  border-radius: 50%;
  color: #241a06;
  background: radial-gradient(120% 120% at 30% 25%, #fff5c8, var(--bk-gold-2) 45%, var(--bk-gold) 100%);
  box-shadow: 0 0 50px rgba(200, 148, 22, 0.42);
}

.success-title {
  margin: 0 0 12px;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 2rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.success-copy {
  max-width: 42ch;
  margin: 0 auto;
  color: var(--bk-muted);
  line-height: 1.55;
}

.terms-content,
.thanks-content {
  max-width: 960px;
  margin: 0 auto;
}

.terms-card {
  display: grid;
  gap: 22px;
  padding: clamp(24px, 4vw, 42px);
}

.terms-card h2,
.terms-card h3,
.terms-card p {
  margin: 0;
}

.terms-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 1.02;
  text-transform: uppercase;
}

.terms-card h3 {
  color: #7a590d;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.terms-card p,
.terms-card li {
  color: var(--bk-muted);
  line-height: 1.68;
}

.terms-card ol {
  display: grid;
  gap: 18px;
  margin: 0;
  padding-left: 22px;
}

.terms-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.thanks-page {
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
}

.thanks-page .page-section {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 28px 0;
}

.thanks-content {
  display: grid;
  justify-items: center;
  gap: 24px;
  text-align: center;
}

.thanks-icon {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  color: #241a06;
  background: radial-gradient(120% 120% at 30% 25%, #fff5c8, var(--bk-gold-2) 45%, var(--bk-gold) 100%);
  box-shadow: 0 0 54px rgba(200, 148, 22, 0.38);
}

.thanks-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.thanks-content .page-title {
  max-width: 760px;
}

.thanks-countdown {
  margin: 0;
  color: var(--bk-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.ghost-button {
  margin-top: 28px;
  min-height: 44px;
  padding: 0 24px;
  border: 1px solid rgba(200, 148, 22, 0.5);
  border-radius: 999px;
  color: var(--bk-gold-2);
  background: transparent;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

@media (max-width: 1180px) {
  .hero-reference.shell {
    width: min(100% - (var(--shell-gutter) * 2), 920px);
  }

  .hero-composition {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 44px;
  }

  .hero-copy {
    align-items: center;
    max-width: 660px;
    margin: 0 auto;
    text-align: center;
  }

  .hero-title {
    max-width: 12ch;
  }

  .hero-text {
    max-width: 56ch;
  }

  .hero-visual {
    width: min(620px, 100%);
    min-height: 620px;
    margin: 0 auto;
  }

  .portal-shell {
    left: 50%;
    right: auto;
    transform: translateX(-36%);
  }

  .tour-stamp {
    right: 88px;
  }

  .hero-prize-wrap {
    width: min(420px, 100%);
    margin: 0 auto;
  }

  .prize-card.hero-prize {
    margin: 0 auto;
  }

  .hero-flow-panel {
    width: 100%;
  }
}

@media (max-width: 1060px) {
  .hero-grid,
  .info-grid,
  .form-layout {
    grid-template-columns: 1fr;
  }

  .footer-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand,
  .footer-contact {
    justify-items: center;
  }

  .footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: 0;
    justify-self: center;
    width: 100%;
    text-align: center;
  }

  .footer-contact span,
  .footer-contact a {
    display: inline-flex;
    justify-content: center;
    width: auto;
    max-width: 100%;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .hero-copy {
    align-items: center;
    text-align: center;
  }

  .hero-title {
    max-width: 13ch;
    font-size: 3.8rem;
  }

  .hero-media {
    min-height: 690px;
  }

  .prize-wrap {
    left: 50%;
    right: auto;
    top: 308px;
    width: min(620px, 94%);
    transform: translateX(-50%);
  }

  .lottie-stage {
    inset: 28px auto auto 50%;
    width: 220px;
    height: 220px;
    transform: translateX(-50%);
  }

  .lottie-stage .bk-lottie,
  .lottie-stage .bk-lottie svg {
    width: 196px;
    height: 196px;
  }

  .hero-lottie-stage {
    inset: auto auto 54px 104px;
    width: 118px;
    height: 118px;
    transform: none;
  }

  .hero-lottie-stage .bk-lottie,
  .hero-lottie-stage .bk-lottie svg {
    width: 112px;
    height: 112px;
  }

  .slot-ball,
  #bk-ball {
    left: 4px;
    top: 86px;
  }

  .slot-trophy,
  #bk-trophy-home {
    left: auto;
    right: 4px;
    top: 112px;
  }

  .slot-mascot,
  #bk-mascot,
  .slot-jersey,
  #bk-jersey {
    display: none !important;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - (var(--shell-gutter) * 2), 1180px);
  }

  .hero-reference.shell {
    width: min(100% - (var(--shell-gutter) * 2), 560px);
  }

  .hero {
    padding-top: 18px;
  }

  .hero-nav,
  .page-nav {
    flex-direction: column;
  }

  .nav-tour-button {
    display: none;
  }

  .page-nav .button {
    width: fit-content;
    min-height: 38px;
    padding: 0 16px;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
  }

  .brand-lockup {
    flex-direction: column;
    width: 100%;
  }

  .brand-bk {
    width: min(220px, 80vw);
  }

  .brand-bk img {
    width: min(204px, 76vw);
  }

  .project-logos {
    justify-content: center;
    width: 100%;
  }

  .footer-social {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .footer-phone {
    justify-content: center;
  }

  .social-badge {
    width: min(100%, 280px);
    justify-content: center;
  }

  .hero-title,
  .page-title {
    font-size: clamp(2.1rem, 10vw, 2.85rem);
  }

  .mobile-break-title span,
  .mobile-break-lead span {
    display: block;
  }

  .page-title.mobile-break-title {
    font-size: clamp(1.82rem, 8.8vw, 2.55rem);
  }

  .mobile-break-title span + span::before,
  .mobile-break-lead span + span::before {
    content: "";
  }

  .mobile-break-lead {
    max-width: 34ch;
  }

  .hero-composition {
    padding-top: 30px;
  }

  .hero-actions {
    width: 100%;
    justify-content: center;
  }

  .hero-visual {
    min-height: 520px;
  }

  .portal-shell {
    width: min(300px, 86vw);
    height: 470px;
    left: 50%;
    transform: translateX(-50%);
  }

  .tour-stamp {
    top: 18px;
    right: 28px;
    width: 86px;
    height: 86px;
    font-size: 0.46rem;
  }

  .hero-lottie-stage {
    inset: auto auto 30px 16px;
  }

  .hero-trophy {
    top: 318px;
    left: 32px;
    width: 116px;
    height: 196px;
  }

  .hero-flow-panel {
    grid-template-columns: 1fr 1fr;
    padding: 18px 14px;
  }

  .hero-flow-step {
    grid-template-columns: 52px auto;
    min-height: 72px;
    padding: 10px 8px;
  }

  .hero-flow-step::after {
    display: none;
  }

  .hero-flow-icon {
    width: 50px;
    height: 50px;
  }

  .hero-footnote {
    letter-spacing: 0.22em;
  }

  .hero-media {
    min-height: 650px;
  }

  .float-slot,
  image-slot[classname~="float-slot"] {
    opacity: 0.75;
  }

  #bk-trophy-home {
    display: none !important;
  }

  .slot-ball,
  #bk-ball {
    width: 98px;
    height: 98px;
  }

  .hero-visual #bk-ball {
    display: block !important;
    top: 82px;
    left: max(12px, calc(50% - 176px));
    z-index: 7;
  }

  .slot-trophy,
  #bk-trophy-home {
    width: 96px;
    height: 150px;
  }

  .prize-card {
    padding: 24px 14px 26px;
  }

  .prize-amount {
    gap: 7px;
  }

  .prize-main {
    font-size: 5.4rem;
  }

  .prize-currency,
  .prize-cents {
    font-size: 2rem;
  }

  .prize-currency {
    margin-top: 18px;
  }

  .prize-cents {
    margin-top: 11px;
  }

  .prize-logos {
    flex-direction: column;
  }

  .panel-pad,
  .signup-card {
    padding: clamp(18px, 5.2vw, 22px);
  }

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

  .profile-options {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 430px) {
  .hero-title,
  .page-title {
    font-size: clamp(1.92rem, 10.2vw, 2.35rem);
  }

  .hero-title {
    max-width: 10.8ch;
  }

  .hero-flow-panel {
    grid-template-columns: 1fr;
  }

  .hero-flow-step {
    grid-template-columns: 58px auto;
  }

  .portal-shell {
    width: min(270px, 88vw);
    height: 430px;
  }

  .hero-visual {
    min-height: 510px;
  }

  .hero-trophy {
    top: 304px;
    left: 8px;
    width: 106px;
    height: 188px;
  }

  .hero-lottie-stage {
    display: none;
  }

  .tour-stamp {
    display: grid;
    top: 16px;
    right: 30px;
    width: 86px;
    height: 86px;
  }

  .badge-pill {
    width: 100%;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
  }

  .page-hero .badge-pill {
    width: fit-content;
    max-width: 100%;
    padding-inline: 14px;
    letter-spacing: 0.14em;
  }

  .button {
    width: 100%;
    padding-inline: 16px;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
  }

  .page-nav .button {
    width: fit-content;
  }

  .footer-panel {
    padding: 22px 18px;
  }

  .footer-logo img {
    width: min(188px, 72vw);
  }

  .social-badge {
    width: 100%;
    justify-content: center;
  }

  .hero-media {
    min-height: 590px;
  }

  .prize-wrap {
    top: 286px;
  }

  .prize-main {
    font-size: 3.55rem;
  }

  .prize-currency,
  .prize-cents {
    font-size: 1.28rem;
  }

  .prize-amount {
    gap: 5px;
    padding-inline: 0;
  }

  .prize-note {
    border-radius: 8px;
    padding: 10px 12px;
    line-height: 1.35;
  }

  .prize-label {
    width: 100%;
    font-size: 0.78rem;
  }

  .project-logos img:first-child {
    width: 82px;
  }

  .project-logos img:last-child {
    width: 142px;
  }
}

/* ─── Monochrome layout ───────────────────────────────────────────────── */

:root {
  --bk-ink: #f7f7f5;
  --bk-muted: #a7a7a3;
  --bk-cream: #050505;
  --bk-paper: #0a0a0a;
  --bk-gold: #ffffff;
  --bk-gold-2: #e8e8e5;
  --bk-gold-3: #ffffff;
  --bk-dark: #050505;
  --bk-line: rgba(255, 255, 255, 0.16);
  --bk-glass: rgba(255, 255, 255, 0.04);
  --bk-glass-strong: rgba(255, 255, 255, 0.07);
  --bk-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --shell-gutter: clamp(18px, 3.2vw, 48px);
  --shell-width: 1280px;
  --shell-wide: 1480px;
  --shell-panel: 1280px;
}

html,
body {
  background: #050505;
  color: var(--bk-ink);
  font-family: "Space Grotesk", "Satoshi", Arial, sans-serif;
}

::selection {
  color: #050505;
  background: #ffffff;
}

::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

input[type="checkbox"] {
  accent-color: #ffffff;
}

.campaign-page,
.campaign-page.dark {
  color: var(--bk-ink);
  background:
    radial-gradient(circle at 78% 12%, rgba(255, 255, 255, 0.07), transparent 24rem),
    radial-gradient(circle at 12% 38%, rgba(255, 255, 255, 0.035), transparent 28rem),
    #050505;
}

.campaign-page::before {
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 70%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 70%);
}

.hero {
  min-height: auto;
  padding: 18px 0 48px;
}

.hero-reference::before,
.hero-reference::after {
  display: none;
}

.hero-nav,
.page-nav {
  min-height: 78px;
  padding: 12px 0 18px;
  border-bottom: 1px solid var(--bk-line);
}

.brand-bk {
  width: 188px;
  min-height: 42px;
}

.brand-bk img {
  width: 176px;
}

.brand-lockup img,
.dark .brand-lockup img {
  filter: brightness(0) invert(1);
  opacity: 1;
}

.campaign-mark {
  width: 100%;
  margin: 30px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Space Grotesk", "Satoshi", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  line-height: 1;
  text-align: left;
}

.home-mark {
  margin-top: 26px;
}

.home-mark + .hero-composition {
  padding-top: clamp(36px, 5vw, 76px);
}

.badge-pill,
.cta-badge,
.validity {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #f7f7f5;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.badge-pill {
  min-height: 34px;
  padding: 8px 14px;
  font-size: 0.67rem;
  letter-spacing: 0.18em;
}

.hero-composition {
  grid-template-columns: minmax(350px, 1.12fr) minmax(280px, 0.72fr) minmax(350px, 0.9fr);
  gap: clamp(28px, 4vw, 68px);
  padding-top: clamp(36px, 5vw, 76px);
}

.hero-copy {
  gap: 20px;
}

.hero-badge {
  color: #d5d5d1;
  background: transparent;
}

.hero-title {
  max-width: 10ch;
  color: #ffffff;
  font-family: "Space Grotesk", "Satoshi", Arial, sans-serif;
  font-size: clamp(3.2rem, 4.6vw, 5.7rem);
  font-weight: 400;
  line-height: 0.91;
  letter-spacing: -0.055em;
}

.hero-title span {
  white-space: normal;
}

.hero-title .title-soft,
.hero-title .gold,
.hero-title .gold-light {
  color: #ffffff;
  background: none;
  -webkit-text-stroke: 0;
  filter: none;
}

.hero-title .title-soft {
  color: #8f8f8b;
  font-weight: 400;
}

.hero-title .gold,
.hero-title .gold-light {
  font-weight: 700;
}

.hero-text {
  max-width: 47ch;
  color: #b8b8b4;
  font-size: 1rem;
  line-height: 1.65;
}

.hero-validity {
  gap: 9px;
  color: #d7d7d3;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.button,
.nav-tour-button,
.hero-start-button,
.hero-how-button {
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 3px;
  box-shadow: none;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
}

.button.primary,
.nav-tour-button,
.hero-start-button {
  color: #050505;
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: none;
}

.button.secondary,
.hero-how-button {
  color: #ffffff;
  background: transparent;
  backdrop-filter: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
.slider-knob:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 4px;
}

@media (hover: hover) and (pointer: fine) {
  .button:hover {
    transform: translateY(-2px);
    box-shadow: none;
  }

  .button.primary:hover {
    color: #ffffff;
    background: #202020;
    border-color: #404040;
  }

  .button.secondary:hover {
    background: rgba(255, 255, 255, 0.08);
  }
}

.hero-visual {
  min-height: 570px;
  border-left: 1px solid var(--bk-line);
  border-right: 1px solid var(--bk-line);
}

.portal-shell {
  inset: 0;
  width: 100%;
  height: 570px;
  overflow: hidden;
}

.portal-image {
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) contrast(1.12) brightness(0.72);
}

.hero-visual::after {
  content: "AXIS ESSENZA";
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 4;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  writing-mode: vertical-rl;
}

.tour-stamp {
  top: 22px;
  right: 18px;
  width: 92px;
  height: 92px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(5, 5, 5, 0.56);
  box-shadow: none;
  animation: none;
  backdrop-filter: blur(12px);
}

.stamp-center {
  fill: currentColor;
}

.hero-prize-wrap {
  align-self: stretch;
  display: flex;
}

.prize-card,
.prize-card.hero-prize {
  color: #080808;
  border: 1px solid #ffffff;
  border-radius: 3px;
  background: #f4f4f0;
  box-shadow: none;
  backdrop-filter: none;
}

.prize-card.hero-prize {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: none;
  min-height: 570px;
  padding: clamp(28px, 3vw, 48px);
}

.prize-card.hero-prize::before {
  display: none;
}

.prize-card.hero-prize .prize-eyebrow,
.prize-eyebrow {
  color: #545450;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
}

.prize-card.hero-prize .prize-amount,
.prize-amount {
  gap: 7px;
  margin: 28px 0 18px;
  padding: 0;
  color: #050505;
  background: none;
  filter: none;
}

.prize-currency,
.prize-main,
.prize-cents,
.prize-card.hero-prize .prize-currency,
.prize-card.hero-prize .prize-main,
.prize-card.hero-prize .prize-cents {
  color: #050505;
  background: none;
  filter: none;
  animation: none;
}

.prize-card.hero-prize .prize-main {
  font-size: clamp(4.3rem, 6vw, 6.8rem);
  letter-spacing: -0.07em;
}

.prize-card.hero-prize .prize-currency,
.prize-card.hero-prize .prize-cents {
  margin-top: 10px;
  font-size: 1.1rem;
}

.prize-card.hero-prize .prize-label,
.prize-label {
  color: #050505;
  background: transparent;
  border: 0;
  letter-spacing: 0.12em;
}

.prize-note {
  width: 100%;
  min-height: 52px;
  margin-top: 24px;
  padding: 12px 16px;
  border: 1px solid rgba(5, 5, 5, 0.18);
  border-radius: 2px;
  color: #050505;
  background: transparent;
  box-shadow: none;
}

.prize-note-icon {
  color: #050505;
  background: transparent;
}

.prize-logos {
  border-top-color: rgba(5, 5, 5, 0.18);
}

.prize-logos img {
  filter: brightness(0);
}

.hero-flow-panel {
  width: 100%;
  margin-top: 30px;
  padding: 20px 0;
  border: 1px solid var(--bk-line);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.025);
  box-shadow: none;
  backdrop-filter: none;
}

.hero-flow-step {
  grid-template-columns: 52px auto;
  padding: 0 24px;
}

.hero-flow-step::after {
  background: var(--bk-line);
}

.hero-flow-icon {
  width: 48px;
  height: 48px;
  color: #050505;
  border: 1px solid #ffffff;
  background: #ffffff;
  box-shadow: none;
}

.hero-flow-icon svg {
  width: 22px;
  height: 22px;
}

.hero-flow-number {
  color: #858581;
  font-size: 0.7rem;
}

.hero-flow-text {
  color: #f4f4f0;
  font-size: 0.88rem;
  font-weight: 500;
}

.hero-footnote {
  color: rgba(255, 255, 255, 0.36);
  letter-spacing: 0.3em;
}

.materials-section {
  padding: clamp(76px, 9vw, 130px) 0;
  border-top: 1px solid var(--bk-line);
  background: #080808;
}

.materials-heading {
  justify-items: start;
  max-width: 860px;
  margin: 0;
  text-align: left;
}

.materials-title,
.page-title {
  color: #ffffff;
  font-family: "Space Grotesk", "Satoshi", Arial, sans-serif;
  font-weight: 500;
  letter-spacing: -0.045em;
  text-transform: none;
}

.materials-title {
  font-size: clamp(2.7rem, 5.7vw, 5.6rem);
  line-height: 0.98;
}

.materials-copy,
.page-lead,
.step-text,
.why-card p,
.cta-panel p,
.form-copy,
.success-copy {
  color: var(--bk-muted);
}

.materials-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--bk-line);
}

.material-card {
  min-height: 132px;
  padding: 24px 28px;
  border: 0;
  border-right: 1px solid var(--bk-line);
  border-bottom: 1px solid var(--bk-line);
  border-radius: 0;
  color: #ffffff;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.material-card:nth-child(2n) {
  border-right: 0;
}

.material-card-number,
.step-number {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: transparent;
}

.material-card-status {
  color: #777773;
}

.material-card-arrow {
  color: #ffffff;
}

.material-card.is-disabled {
  opacity: 0.52;
}

@media (hover: hover) and (pointer: fine) {
  .material-card:not(.is-disabled):hover {
    transform: none;
    border-color: var(--bk-line);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: none;
  }
}

.section-band {
  padding: clamp(68px, 8vw, 110px) 0;
  border-top: 1px solid var(--bk-line);
  background: #050505;
}

.info-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.54fr);
  gap: 16px;
}

.glass-panel,
.footer-panel,
.signup-card,
.tour-frame {
  color: #ffffff;
  border: 1px solid var(--bk-line);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: none;
  backdrop-filter: none;
}

.panel-pad {
  padding: clamp(24px, 3vw, 42px);
}

.section-title,
.form-title,
.success-title {
  color: #ffffff;
  font-family: "Space Grotesk", "Satoshi", Arial, sans-serif;
}

.step-number {
  border-radius: 2px;
}

.campaign-cta {
  background: #f4f4f0;
}

.campaign-cta::after {
  display: none;
}

.campaign-cta .cta-badge,
.campaign-cta .section-title,
.campaign-cta p {
  color: #080808;
}

.campaign-cta .cta-badge {
  border-color: rgba(5, 5, 5, 0.2);
  background: transparent;
}

.campaign-cta .button.primary {
  color: #ffffff;
  border-color: #050505;
  background: #050505;
}

.site-footer {
  padding: 0 0 28px;
  background: #050505;
}

.footer-panel {
  border-radius: 3px;
  background: #0a0a0a;
}

.footer-logo img {
  filter: brightness(0) invert(1);
  opacity: 1;
}

.footer-brand p,
.footer-contact {
  color: #999995;
}

.footer-contact a {
  color: #ffffff;
}

.social-badge {
  color: #ffffff;
  border: 1px solid var(--bk-line);
  border-radius: 2px;
  background: transparent;
}

.page-section {
  min-height: calc(100vh - 190px);
  padding: 18px 0 76px;
}

.page-hero {
  margin-top: clamp(48px, 7vw, 96px);
  margin-bottom: 40px;
}

.page-title {
  max-width: 14ch;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: 0.96;
}

.tour-frame {
  border-color: rgba(255, 255, 255, 0.22);
  background: #050505;
}

.tour-launch-icon {
  color: #050505;
  border: 0;
  background: #ffffff;
}

.tour-launch-title {
  color: #ffffff;
}

.deadline-card {
  background: #0a0a0a;
}

.signup-card {
  padding: clamp(28px, 4.5vw, 52px);
}

.signup-form input:not([type="checkbox"]):not([type="radio"]),
.signup-card input:not([type="checkbox"]):not([type="radio"]),
.signup-card select {
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 2px !important;
  background: #0b0b0b !important;
  box-shadow: none !important;
}

.signup-card input:not([type="checkbox"]):not([type="radio"]):focus,
.signup-card select:focus {
  border-color: #ffffff !important;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.12) !important;
}

.signup-card label,
.profile-fieldset legend,
.select-field > span {
  color: #d7d7d3 !important;
}

.choice-card,
.terms-row,
.slider-track {
  color: #d7d7d3;
  border-color: var(--bk-line);
  background: rgba(255, 255, 255, 0.035);
}

.slider-fill,
.slider-knob,
.success-icon {
  color: #050505;
  background: #ffffff;
}

.ghost-button {
  color: #ffffff;
  border-color: var(--bk-line);
  background: transparent;
}

.terms-card {
  padding: clamp(28px, 5vw, 64px);
}

.terms-card h2,
.terms-card h3 {
  color: #ffffff;
}

.terms-card p,
.terms-card li {
  color: #adada9;
}

.terms-card ol {
  border-color: var(--bk-line);
}

@media (max-width: 1180px) {
  .hero-composition {
    grid-template-columns: minmax(340px, 1fr) minmax(320px, 0.82fr);
  }

  .hero-visual {
    min-height: 520px;
  }

  .portal-shell {
    height: 520px;
  }

  .hero-prize-wrap {
    grid-column: 1 / -1;
  }

  .prize-card.hero-prize {
    display: grid;
    grid-template-columns: minmax(170px, 0.75fr) minmax(300px, 1fr);
    grid-template-areas:
      "eyebrow amount"
      "label amount"
      "note logos";
    align-items: center;
    min-height: auto;
    text-align: left;
  }

  .prize-card.hero-prize .prize-eyebrow {
    grid-area: eyebrow;
  }

  .prize-card.hero-prize .prize-amount {
    grid-area: amount;
    justify-content: flex-end;
    margin: 0;
  }

  .prize-card.hero-prize .prize-label {
    grid-area: label;
    justify-content: flex-start;
  }

  .prize-card.hero-prize .prize-note {
    grid-area: note;
  }

  .prize-card.hero-prize .prize-logos {
    grid-area: logos;
    justify-content: flex-end;
    margin-top: 24px;
  }
}

@media (max-width: 900px) {
  .hero-composition {
    grid-template-columns: 1fr;
  }

  .hero-title {
    max-width: 11ch;
  }

  .hero-visual {
    min-height: 620px;
    border: 1px solid var(--bk-line);
  }

  .portal-shell {
    height: 620px;
  }

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

  .hero-flow-step:nth-child(2)::after,
  .hero-flow-step:last-child::after {
    display: none;
  }

  .hero-flow-step:nth-child(-n + 2) {
    border-bottom: 1px solid var(--bk-line);
  }

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

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

  .footer-contact {
    margin-left: 0;
  }

  .footer-social {
    justify-self: start;
    flex-wrap: wrap;
    min-width: 0;
  }
}

@media (max-width: 680px) {
  :root {
    --shell-gutter: 18px;
  }

  .hero-nav,
  .page-nav {
    min-height: 66px;
  }

  .brand-bk,
  .brand-bk img {
    width: 146px;
  }

  .home-mark {
    margin-top: 22px;
  }

  .hero-title {
    max-width: 10ch;
    font-size: clamp(2.85rem, 15vw, 4.7rem);
  }

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

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

  .hero-visual {
    min-height: 490px;
  }

  .portal-shell {
    width: 100%;
    height: 490px;
  }

  .tour-stamp {
    right: 14px;
  }

  .prize-card.hero-prize {
    display: flex;
    min-height: auto;
    text-align: center;
  }

  .prize-card.hero-prize .prize-amount {
    justify-content: center;
    margin: 24px 0 14px;
  }

  .prize-card.hero-prize .prize-label {
    justify-content: center;
  }

  .prize-card.hero-prize .prize-logos {
    justify-content: center;
  }

  .hero-flow-panel {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .hero-flow-step {
    min-height: 86px;
    border-bottom: 1px solid var(--bk-line);
  }

  .hero-flow-step::after {
    display: none;
  }

  .materials-title {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

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

  .material-card,
  .material-card:nth-child(2n) {
    border-right: 0;
  }

  .page-title {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .page-nav .button {
    width: auto;
    min-height: 40px;
    padding-inline: 12px;
    font-size: 0.64rem;
  }

  .footer-social {
    width: 100%;
  }

  .social-badge {
    justify-content: center;
    width: 100%;
  }
}

/* ─── Hero redesign: cinematic architectural stage ────────────────────── */

.hero-composition {
  isolation: isolate;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.56fr);
  grid-template-rows: minmax(690px, auto);
  gap: 0;
  min-height: 690px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #050505;
}

.hero-composition::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.9) 28%, rgba(5, 5, 5, 0.18) 62%, rgba(5, 5, 5, 0.06) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.12) 56%, rgba(5, 5, 5, 0.72) 100%);
}

.hero-copy {
  grid-column: 1;
  grid-row: 1;
  z-index: 3;
  align-self: center;
  width: min(100%, 700px);
  padding: clamp(42px, 5vw, 76px);
  gap: 17px;
}

.hero-kicker {
  margin: 8px 0 -4px;
  color: #a2a29e;
  font-size: clamp(0.9rem, 1.15vw, 1.05rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-title {
  max-width: 9.2ch;
  font-size: clamp(3.85rem, 5.8vw, 7.1rem);
  line-height: 0.88;
}

.hero-title .title-soft {
  color: #a2a29e;
}

.hero-text {
  max-width: 49ch;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 0;
  border: 0;
}

.portal-shell {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.portal-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  filter: contrast(1.07) brightness(0.84);
}

.hero-visual::after {
  right: 16px;
  bottom: 24px;
  color: rgba(255, 255, 255, 0.48);
}

.tour-stamp {
  top: 26px;
  right: 26px;
  z-index: 4;
}

.hero-prize-wrap {
  grid-column: 2;
  grid-row: 1;
  z-index: 3;
  align-self: end;
  justify-self: end;
  display: block;
  width: min(100%, 430px);
  padding: 0 clamp(22px, 2.4vw, 38px) clamp(22px, 2.4vw, 38px) 0;
}

.prize-card.hero-prize {
  display: flex;
  width: 100%;
  min-height: 0;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  background: rgba(247, 247, 244, 0.95);
  text-align: left;
  backdrop-filter: blur(18px);
}

.prize-card.hero-prize .prize-eyebrow {
  margin: 0 0 6px;
}

.prize-card.hero-prize .prize-amount {
  justify-content: flex-start;
  margin: 14px 0 10px;
}

.prize-card.hero-prize .prize-main {
  font-size: clamp(4.3rem, 5vw, 5.8rem);
}

.prize-card.hero-prize .prize-label {
  justify-content: flex-start;
  text-align: left;
}

.prize-card.hero-prize .prize-note {
  min-height: 46px;
  margin-top: 18px;
  padding: 10px 12px;
}

.prize-card.hero-prize .prize-note-icon {
  width: 32px;
  height: 32px;
}

.prize-card.hero-prize .prize-note-icon svg {
  width: 18px;
  height: 18px;
}

.prize-card.hero-prize .prize-logos {
  justify-content: flex-start;
  margin-top: 18px;
  padding-top: 16px;
}

.hero-flow-panel {
  margin-top: 16px;
}

@media (max-width: 1180px) {
  .hero-composition {
    grid-template-columns: minmax(0, 1fr) 370px;
    grid-template-rows: minmax(650px, auto);
    min-height: 650px;
  }

  .hero-copy {
    padding: clamp(36px, 4vw, 52px);
  }

  .hero-title {
    font-size: clamp(3.6rem, 6.2vw, 5.8rem);
  }

  .hero-prize-wrap {
    grid-column: 2;
    width: 370px;
    padding: 0 24px 24px 0;
  }

  .prize-card.hero-prize {
    display: flex;
    grid-template-areas: none;
    padding: 24px;
    text-align: left;
  }

  .prize-card.hero-prize .prize-eyebrow,
  .prize-card.hero-prize .prize-amount,
  .prize-card.hero-prize .prize-label,
  .prize-card.hero-prize .prize-note,
  .prize-card.hero-prize .prize-logos {
    grid-area: auto;
  }

  .prize-card.hero-prize .prize-amount {
    justify-content: flex-start;
    margin: 12px 0 8px;
  }

  .prize-card.hero-prize .prize-label,
  .prize-card.hero-prize .prize-logos {
    justify-content: flex-start;
  }
}

@media (max-width: 980px) {
  .hero-composition {
    grid-template-columns: 1fr;
    grid-template-rows: 540px auto auto;
    min-height: 0;
    overflow: hidden;
  }

  .hero-composition::before {
    z-index: 1;
    bottom: auto;
    height: 540px;
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.02) 42%, rgba(5, 5, 5, 0.8) 100%),
      linear-gradient(90deg, rgba(5, 5, 5, 0.35), transparent 54%);
  }

  .hero-visual {
    position: relative;
    inset: auto;
    grid-column: 1;
    grid-row: 1;
    min-height: 540px;
    border: 0;
  }

  .portal-shell {
    height: 540px;
  }

  .portal-image {
    object-position: 68% center;
  }

  .hero-copy {
    grid-column: 1;
    grid-row: 2;
    align-self: auto;
    width: 100%;
    max-width: none;
    padding: 42px;
    background: #050505;
  }

  .hero-title {
    max-width: 10ch;
    font-size: clamp(3.6rem, 10vw, 5.8rem);
  }

  .hero-prize-wrap {
    grid-column: 1;
    grid-row: 3;
    justify-self: stretch;
    width: 100%;
    padding: 0 42px 42px;
    background: #050505;
  }

  .prize-card.hero-prize {
    max-width: none;
  }
}

@media (max-width: 680px) {
  .hero-composition {
    grid-template-rows: 430px auto auto;
  }

  .hero-composition::before {
    height: 430px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .portal-shell {
    height: 430px;
  }

  .portal-image {
    object-position: 72% center;
  }

  .hero-copy {
    padding: 30px 22px 34px;
  }

  .hero-kicker {
    margin-top: 6px;
    font-size: 0.78rem;
  }

  .hero-title {
    max-width: 9ch;
    font-size: clamp(3.1rem, 15.5vw, 4.7rem);
  }

  .hero-prize-wrap {
    padding: 0 22px 22px;
  }

  .prize-card.hero-prize {
    padding: 24px 20px;
    text-align: left;
  }

  .prize-card.hero-prize .prize-amount,
  .prize-card.hero-prize .prize-label,
  .prize-card.hero-prize .prize-logos {
    justify-content: flex-start;
  }

  .tour-stamp {
    top: 18px;
    right: 18px;
  }
}

/* ─── Campaign hero component ─────────────────────────────────────────── */

.campaign-hero-v3 {
  width: min(var(--shell-wide), calc(100% - (var(--shell-gutter) * 2)));
  padding: 18px 0 48px;
}

.hero-v3-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 12px 0 18px;
  border-bottom: 1px solid var(--bk-line);
}

.hero-v3-nav-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.hero-v3-nav-actions > span {
  color: #777773;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-v3-nav .button {
  min-height: 42px;
  padding-inline: 18px;
}

.hero-v3-frame {
  position: relative;
  display: grid;
  grid-template-columns: minmax(380px, 0.86fr) minmax(520px, 1.14fr);
  min-height: 720px;
  margin-top: 26px;
  margin-bottom: 96px;
}

.hero-v3-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-width: 0;
  padding: clamp(40px, 4vw, 58px);
  border: 1px solid var(--bk-line);
  border-right: 0;
  background: #050505;
}

.hero-v3-content::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, #ffffff, transparent 72%);
  opacity: 0.44;
}

.hero-v3-supra {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(44px, 5vw, 72px);
  color: #858581;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-v3-supra span:first-child {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
}

.hero-v3-kicker {
  margin: 0 0 13px;
  color: #8c8c88;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-v3-title {
  max-width: none;
  margin: 0;
  color: #ffffff;
  font-family: "Space Grotesk", "Satoshi", Arial, sans-serif;
  font-size: clamp(3.45rem, 4vw, 4.9rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.85;
  text-transform: uppercase;
}

.hero-v3-title span,
.hero-v3-title strong {
  display: block;
  white-space: nowrap;
}

.hero-v3-title span {
  color: #898985;
  font-weight: 300;
}

.hero-v3-title strong {
  font-weight: 700;
}

.hero-v3-copy {
  max-width: 47ch;
  margin: 30px 0 0;
  color: #a8a8a4;
  font-size: 0.94rem;
  line-height: 1.65;
}

.hero-v3-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
}

.hero-v3-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 0;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-v3-validity {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 26px 0 0;
  color: #777773;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-v3-validity > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffffff;
}

.hero-v3-figure {
  position: relative;
  min-width: 0;
  min-height: 720px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--bk-line);
  background: #0a0a0a;
}

.hero-v3-figure::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 55%, rgba(5, 5, 5, 0.54) 100%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.16), transparent 28%);
}

.hero-v3-slides {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-v3-figure img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 720px;
  opacity: 0;
  object-fit: cover;
  object-position: 67% center;
  filter: grayscale(1) contrast(1.08) brightness(0.9);
  animation: hero-v3-slide-fade 35s linear infinite;
  will-change: opacity;
}

.hero-v3-slide:nth-child(2) {
  animation-delay: -30s;
}

.hero-v3-slide:nth-child(3) {
  animation-delay: -25s;
}

.hero-v3-slide:nth-child(4) {
  animation-delay: -20s;
}

.hero-v3-slide:nth-child(5) {
  animation-delay: -15s;
}

.hero-v3-slide:nth-child(6) {
  animation-delay: -10s;
}

.hero-v3-slide:nth-child(7) {
  animation-delay: -5s;
}

@keyframes hero-v3-slide-fade {
  0%,
  11.4286% {
    opacity: 1;
  }

  14.2857%,
  97.1429% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-v3-slide {
    animation: none;
    opacity: 0;
  }

  .hero-v3-slide:first-child {
    opacity: 1;
  }
}

.hero-v3-image-tagline {
  position: absolute;
  top: 28px;
  right: 28px;
  left: 28px;
  z-index: 2;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-align: right;
  text-transform: uppercase;
}

.hero-v3-figure figcaption {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero-v3-figure figcaption span:last-child {
  color: rgba(255, 255, 255, 0.54);
}

.hero-v3-location {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-v3-location svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-v3-prize {
  position: absolute;
  right: clamp(26px, 3.2vw, 52px);
  bottom: -72px;
  z-index: 4;
  width: min(440px, calc(100% - 52px));
}

.prize-card.hero-v3-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "eyebrow eyebrow"
    "amount amount"
    "label label"
    "note logos";
  gap: 0 18px;
  min-height: 0;
  padding: 26px 28px 24px;
  border: 1px solid #ffffff;
  border-radius: 0;
  color: #050505;
  background: rgba(247, 247, 244, 0.97);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  text-align: left;
  backdrop-filter: blur(16px);
}

.prize-card.hero-v3-card::before,
.prize-card.hero-v3-card::after {
  display: none;
}

.prize-card.hero-v3-card .prize-eyebrow {
  grid-area: eyebrow;
  margin: 0;
  color: #5a5a56;
  font-size: 0.63rem;
}

.prize-card.hero-v3-card .prize-amount {
  grid-area: amount;
  justify-content: flex-start;
  gap: 6px;
  margin: 13px 0 7px;
  padding: 0;
  color: #050505;
  background: none;
  filter: none;
}

.prize-card.hero-v3-card .prize-currency,
.prize-card.hero-v3-card .prize-main,
.prize-card.hero-v3-card .prize-cents {
  color: #050505;
  background: none;
  filter: none;
  animation: none;
}

.prize-card.hero-v3-card .prize-main {
  font-size: clamp(4.2rem, 5vw, 5.6rem);
  letter-spacing: -0.075em;
  line-height: 0.92;
}

.prize-card.hero-v3-card .prize-currency,
.prize-card.hero-v3-card .prize-cents {
  margin-top: 8px;
  font-size: 1rem;
}

.prize-card.hero-v3-card .prize-label {
  grid-area: label;
  justify-content: flex-start;
  min-height: 0;
  padding: 0;
  color: #050505;
  border: 0;
  background: transparent;
  font-size: 0.65rem;
  letter-spacing: 0.13em;
}

.prize-card.hero-v3-card .prize-note {
  grid-area: note;
  align-self: end;
  justify-content: flex-start;
  min-height: 44px;
  margin-top: 17px;
  padding: 8px 10px;
  color: #050505;
  border: 1px solid rgba(5, 5, 5, 0.16);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-size: 0.56rem;
}

.prize-card.hero-v3-card .prize-note-icon {
  width: 28px;
  height: 28px;
  color: #050505;
  background: transparent;
}

.prize-card.hero-v3-card .prize-note-icon svg {
  width: 16px;
  height: 16px;
}

.prize-card.hero-v3-card .prize-logos {
  grid-area: logos;
  align-self: end;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 17px;
  padding: 10px 0 0;
  border-top: 1px solid rgba(5, 5, 5, 0.16);
}

.prize-card.hero-v3-card .prize-logos img:first-child {
  width: 62px;
}

.prize-card.hero-v3-card .prize-logos img:last-child {
  width: 112px;
}

.hero-v3-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--bk-line);
  background: rgba(255, 255, 255, 0.025);
}

.hero-v3-flow .hero-flow-step {
  min-height: 96px;
  padding: 12px 24px;
}

.hero-v3-flow .hero-flow-icon {
  width: 46px;
  height: 46px;
}

.hero-v3-flow .hero-flow-icon svg {
  width: 21px;
  height: 21px;
}

.hero-v3-footnote {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .hero-v3-frame {
    grid-template-columns: minmax(360px, 0.9fr) minmax(460px, 1.1fr);
  }

  .hero-v3-content {
    padding: 42px;
  }

  .hero-v3-title {
    font-size: clamp(3.5rem, 5.3vw, 5.2rem);
  }

  .hero-v3-flow .hero-flow-step {
    padding-inline: 16px;
  }
}

@media (max-width: 1180px) {
  .hero-v3-frame {
    display: flex;
    flex-direction: column;
    min-height: 0;
    margin-bottom: 28px;
  }

  .hero-v3-figure {
    order: 1;
    min-height: 540px;
  }

  .hero-v3-figure img {
    min-height: 540px;
    object-position: 68% center;
  }

  .hero-v3-prize {
    position: relative;
    right: auto;
    bottom: auto;
    order: 2;
    align-self: flex-end;
    width: min(440px, calc(100% - 44px));
    margin: -84px 22px 0;
  }

  .hero-v3-content {
    order: 3;
    padding: 54px 42px 46px;
    border-top: 0;
    border-right: 1px solid var(--bk-line);
  }

  .hero-v3-supra {
    margin-bottom: 42px;
  }

  .hero-v3-title {
    max-width: none;
    font-size: clamp(3.6rem, 7vw, 5.5rem);
  }

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

  .hero-v3-flow .hero-flow-step:nth-child(-n + 2) {
    border-bottom: 1px solid var(--bk-line);
  }

  .hero-v3-flow .hero-flow-step:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 620px) {
  .campaign-hero-v3 {
    padding-top: 12px;
  }

  .hero-v3-nav {
    min-height: 66px;
  }

  .hero-v3-nav-actions > span {
    display: none;
  }

  .hero-v3-nav .button {
    min-height: 38px;
    padding-inline: 11px;
    font-size: 0.6rem;
  }

  .hero-v3-frame {
    margin-top: 18px;
  }

  .hero-v3-figure,
  .hero-v3-figure img {
    min-height: 420px;
  }

  .hero-v3-figure figcaption {
    right: 18px;
    bottom: 18px;
    left: 18px;
    font-size: 0.54rem;
  }

  .hero-v3-image-tagline {
    top: 18px;
    right: 18px;
    left: 18px;
    font-size: 0.54rem;
  }

  .hero-v3-prize {
    width: calc(100% - 28px);
    margin: -52px 14px 0;
  }

  .prize-card.hero-v3-card {
    display: flex;
    padding: 22px 20px;
  }

  .prize-card.hero-v3-card .prize-main {
    font-size: clamp(3.55rem, 17vw, 4.3rem);
  }

  .prize-card.hero-v3-card .prize-currency,
  .prize-card.hero-v3-card .prize-cents {
    font-size: 0.82rem;
  }

  .prize-card.hero-v3-card .prize-amount,
  .prize-card.hero-v3-card .prize-label,
  .prize-card.hero-v3-card .prize-logos {
    justify-content: flex-start;
  }

  .prize-card.hero-v3-card .prize-note {
    width: 100%;
  }

  .hero-v3-content {
    padding: 44px 22px 36px;
  }

  .hero-v3-supra {
    margin-bottom: 34px;
  }

  .hero-v3-title {
    max-width: 9ch;
    font-size: clamp(3.15rem, 15.5vw, 4.7rem);
  }

  .hero-v3-title span,
  .hero-v3-title strong {
    white-space: normal;
  }

  .hero-v3-copy {
    margin-top: 24px;
  }

  .hero-v3-actions {
    width: 100%;
  }

  .hero-v3-actions .button,
  .hero-v3-text-link {
    width: 100%;
    justify-content: center;
  }

  .hero-v3-flow {
    grid-template-columns: 1fr;
  }

  .hero-v3-flow .hero-flow-step {
    border-bottom: 1px solid var(--bk-line);
  }

  .hero-v3-flow .hero-flow-step::after {
    display: none;
  }
}
