/* Gaviom v2 — mobile & touch optimizations */

:root {
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --nav-h: 60px;
  --sticky-h: 72px;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  overflow-x: clip;
  padding-left: var(--safe-left);
  padding-right: var(--safe-right);
}

body.nav-open {
  overflow: hidden;
  touch-action: none;
}

body.nav-open .nav {
  z-index: 220;
}

.wrap {
  padding-left: max(16px, calc(16px + var(--safe-left)));
  padding-right: max(16px, calc(16px + var(--safe-right)));
}

/* ——— Mobile navigation (injected by app.js) ——— */
.nav-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0 -8px 0 auto;
  padding: 0;
  border: 1px solid color-mix(in oklab, var(--gold) 38%, transparent);
  border-radius: var(--r-sm);
  background: color-mix(in oklab, var(--navy) 50%, transparent);
  color: var(--gold-light);
  cursor: pointer;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}

.nav-menu-btn {
  position: relative;
}

.nav-menu-icon {
  display: block;
  position: relative;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: background 0.2s;
}

.nav-menu-icon::before,
.nav-menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.2s, top 0.2s;
}

.nav-menu-icon::before {
  top: -7px;
}

.nav-menu-icon::after {
  top: 7px;
}

body.nav-open .nav-menu-icon {
  background: transparent;
}

body.nav-open .nav-menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}

body.nav-open .nav-menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-mobile-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: color-mix(in oklab, var(--ink) 45%, transparent);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s;
}

.nav-mobile-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 210;
  width: min(100%, 320px);
  max-width: 100%;
  background-color: var(--navy-deep);
  background-image: var(--bg-night);
  border-left: 1px solid color-mix(in oklab, var(--gold) 18%, var(--navy));
  box-shadow: var(--sh-3);
  display: flex;
  flex-direction: column;
  padding: calc(12px + var(--safe-top)) 0 calc(16px + var(--safe-bottom));
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
  visibility: hidden;
  pointer-events: none;
}

.nav-mobile-panel.is-visible {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.nav-mobile-close {
  align-self: flex-end;
  margin: 0 12px 8px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: var(--r-sm);
  background: color-mix(in oklab, var(--gold) 12%, var(--navy));
  font-size: 28px;
  line-height: 1;
  color: var(--gold-light);
  cursor: pointer;
}

.nav-mobile-panel__inner {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 8px 20px 24px;
}

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-mobile-links a {
  position: relative;
  display: block;
  padding: 14px 12px 16px;
  font-size: 17px;
  font-weight: 500;
  color: color-mix(in oklab, var(--gold-light) 75%, var(--paper));
  border-radius: var(--r-sm);
  min-height: 48px;
  line-height: 1.3;
}

.nav-mobile-links a:hover,
.nav-mobile-links a.active {
  background: color-mix(in oklab, var(--gold) 12%, var(--navy));
  color: var(--gold-light);
}

.nav-mobile-links a.active::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  box-shadow: 0 0 8px color-mix(in oklab, var(--gold) 35%, transparent);
}

.nav-mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid color-mix(in oklab, var(--gold) 22%, var(--navy));
}

.nav-mobile-actions .btn {
  width: 100%;
  min-height: 48px;
}

.nav-mobile-actions .nav-signin {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--gold-light);
  text-decoration: none;
  border: 1px solid color-mix(in oklab, var(--gold) 38%, transparent);
  border-radius: var(--r-sm);
  background: color-mix(in oklab, var(--navy) 50%, transparent);
}

.nav-mobile-actions .nav-signin:hover {
  color: var(--paper);
  border-color: color-mix(in oklab, var(--gold-light) 55%, transparent);
}

/* ——— Tablet & below (≤980px) ——— */
@media (max-width: 980px) {
  html {
    scroll-padding-top: calc(var(--nav-h) + 40px + var(--safe-top));
  }

  .nav-menu-btn {
    display: flex;
  }

  .nav {
    padding-top: var(--safe-top);
    height: calc(var(--nav-h) + var(--safe-top));
  }

  .nav-inner {
    height: var(--nav-h);
  }

  .nav {
    height: var(--nav-h);
  }

  .nav > .wrap.nav-inner {
    padding-left: max(22px, calc(22px + var(--safe-left)));
    padding-right: max(14px, calc(14px + var(--safe-right)));
    justify-content: flex-start;
    gap: 10px;
  }

  .nav-inner {
    gap: 10px;
  }

  .nav a.brand,
  .nav .brand {
    flex: 0 1 auto;
    min-width: 0;
    margin-right: auto;
    padding-left: 6px;
    font-size: 18px;
  }

  .brand-logo {
    height: 32px;
    max-width: 120px;
    margin-left: 2px;
    object-position: left center;
  }

  .nav-menu-btn {
    margin: 0;
    flex-shrink: 0;
  }

  .brand-logo--footer {
    height: 38px;
    max-width: 140px;
  }

  .corp-brand {
    flex: 0 1 auto;
    min-width: 0;
    max-width: min(58vw, 220px);
    gap: 6px;
  }

  .brand-logo--corp {
    height: clamp(24px, 6.5vw, 32px);
    max-width: min(34vw, 96px);
  }

  .corp-brand__suffix {
    font-size: clamp(12px, 3.2vw, 16px);
  }

  .corp-footer .brand-logo--corp {
    height: 32px;
    max-width: 108px;
  }

  .brand-mark {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .nav-right {
    gap: 8px;
    flex-shrink: 0;
  }

  .nav-right .nav-signin {
    display: none;
  }

  .nav-right .btn-ghost {
    display: none;
  }

  .nav-right .btn-primary {
    height: 40px;
    padding: 0 14px;
    font-size: 13px;
    white-space: nowrap;
  }

  .topbar {
    height: auto;
    min-height: 32px;
    padding: 6px 0;
  }

  .topbar-inner {
    flex-wrap: wrap;
    gap: 6px 10px;
    font-size: 10px;
    line-height: 1.4;
  }

  .topbar-left {
    flex: 1 1 100%;
    min-width: 0;
  }

  .topbar-left > span {
    display: block;
    overflow: visible;
    text-overflow: unset;
    white-space: normal;
    line-height: 1.35;
  }

  .topbar-left [data-topbar-label],
  .topbar-left [data-cd] {
    display: inline;
  }

  .topbar-left [data-cd] {
    white-space: nowrap;
  }

  .topbar > .wrap > div:last-child {
    flex: 1 1 auto;
    white-space: nowrap;
  }

  .topbar .extra {
    display: none;
  }

  .breadcrumbs {
    font-size: 12px;
    padding: 12px 0 4px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .breadcrumbs::-webkit-scrollbar {
    display: none;
  }

  .section {
    padding: 64px 0;
  }

  .section-sm {
    padding: 48px 0;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
  }

  .pd-hero {
    padding: 0 0 64px;
  }

  .pd-section {
    padding: 56px 0;
  }

  .pd-grid {
    gap: 28px;
  }

  .pd-gallery-badges {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 6px;
    top: 12px;
    left: 12px;
    right: 12px;
  }

  .pd-gallery-badges .badge {
    font-size: 10px;
    height: auto;
    min-height: 22px;
    padding: 4px 8px;
    line-height: 1.3;
  }

  .pd-thumbs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 8px;
    margin-top: 10px;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .pd-thumbs::-webkit-scrollbar {
    display: none;
  }

  .pd-thumb {
    flex: 0 0 72px;
    width: 72px;
    scroll-snap-align: start;
  }

  .pd-gallery-video {
    object-fit: cover;
  }

  .pd-full-bleed-video {
    min-height: 240px;
  }

  .photo-caption {
    font-size: 11px;
    margin-top: 8px;
  }

  .pd-title {
    font-size: clamp(28px, 8vw, 40px);
  }

  .pd-sub,
  .hero-concrete {
    max-width: none !important;
  }

  .bundle-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .bundle-grid {
    gap: 8px;
  }

  .bundle-opt {
    padding: 14px 10px;
    min-height: 52px;
  }

  .btn-prize-cta {
    height: 56px;
    font-size: 16px;
  }

  .cta-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .pay-logos {
    width: 100%;
    justify-content: flex-start;
  }

  .grand-banner-body {
    padding: 24px 20px;
  }

  /* Home hero — align with desktop (video + gradient, no cream card) */
  .hero-home--video .hero-home__copy {
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }

  .hero-home--video .hero-overlay {
    background:
      linear-gradient(
        180deg,
        color-mix(in oklab, var(--paper) 52%, transparent) 0%,
        color-mix(in oklab, var(--paper) 28%, transparent) 65%,
        transparent 100%
      );
  }

  /* Home mobile: static responsive background image (no video) */
  .hero-home--video {
    background:
      linear-gradient(
        180deg,
        color-mix(in oklab, var(--paper) 10%, transparent) 0%,
        color-mix(in oklab, var(--paper) 20%, transparent) 62%,
        color-mix(in oklab, var(--paper) 30%, transparent) 100%
      ),
      url("/images/cruise-mobile-hero.webp?v=20260527b") center 36% / cover no-repeat,
      var(--navy-deep);
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center 36% !important;
  }

  .hero-home--video .hero-home__video {
    display: none !important;
  }

  .hero-title,
  .h-hero,
  .h-section,
  .h-cta,
  .pd-title,
  .sweep-hero__title,
  .sweep-panel__title,
  .sweep-panel--grand .sweep-panel__title,
  .sweep-outro__quote,
  .how-hero-title,
  .corp-hero .h-hero {
    max-width: 100% !important;
    overflow: visible;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
  }

  .hero-home--video .hero-title {
    overflow-wrap: normal;
    word-wrap: normal;
    hyphens: none;
  }

  .page-hero .h-hero,
  .page-hero-split .h-hero {
    max-width: 100%;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
    min-height: 48px;
  }

  .launch-countdown {
    max-width: none;
    width: 100%;
    padding: 16px 18px;
  }

  .launch-countdown__timer {
    font-size: clamp(14px, 4vw, 18px);
    word-break: break-word;
  }

  .spotlight-foot {
    flex-wrap: wrap;
  }

  .spotlight-foot .btn {
    flex: 1 1 100%;
    min-height: 48px;
  }

  .final-cta {
    padding: 56px 0 calc(56px + var(--safe-bottom));
  }

  .final-ctas {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .final-ctas .btn {
    width: 100%;
    min-height: 52px;
  }

  .full-bleed-quote {
    min-height: 280px;
  }

  .full-bleed-quote__text {
    font-size: clamp(24px, 6vw, 36px);
    padding: 0 8px;
  }

  .full-bleed-quote__overlay {
    padding: 32px 16px;
  }

  .full-bleed-quote .btn {
    width: 100%;
    max-width: 320px;
  }

  .stat-bar {
    padding: 28px 0;
  }

  .stat-bar .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .trust-poetic {
    font-size: 14px;
    margin-top: 20px !important;
  }

  .page-hero {
    padding-top: 24px !important;
  }

  .page-hero-split {
    gap: 24px;
  }

  .page-hero-split__media {
    max-height: 260px;
  }

  .launch-countdown--hero {
    margin-top: 16px;
  }

  .step-row {
    gap: 20px;
    padding: 32px 0;
  }

  .step-num {
    font-size: clamp(48px, 12vw, 72px);
  }

  .story-body {
    padding: 24px 20px;
  }

  .winner-spotlight-info {
    padding: 24px 20px;
  }

  .footer {
    margin-top: 48px;
    padding-top: 48px;
  }

  .footer-grid {
    gap: 28px;
  }

  .footer-legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .footer-signature {
    padding: 0 16px 24px;
    text-align: center;
    font-size: 11px;
  }

  .sticky-cta {
    padding: 10px 0 calc(10px + var(--safe-bottom));
  }

  .sticky-cta .row {
    gap: 12px;
  }

  .sticky-cta .info {
    flex-shrink: 0;
    min-width: 0;
  }

  .sticky-cta .lbl {
    display: block;
    font-size: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
  }

  .sticky-cta .val {
    font-size: 15px;
  }

  .sticky-cta .btn {
    flex: 1;
    min-height: 48px;
    min-width: 0;
    padding-left: 16px;
    padding-right: 16px;
    font-size: 14px;
    white-space: nowrap;
  }

  body.has-sticky-cta {
    padding-bottom: calc(var(--sticky-h) + var(--safe-bottom));
  }

  .checkout-grid {
    gap: 24px;
  }

  .field-grid-2,
  .field-grid-3 {
    gap: 12px;
  }

  .plan-card {
    padding: 24px 20px;
  }

  .mem-hero-grid {
    gap: 24px;
  }

  .corp-hero-grid {
    gap: 24px;
  }

  .corp-cta-band__inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .corp-cta-band__inner .btn {
    width: 100%;
  }
}

/* ——— Phone (≤640px) ——— */
@media (max-width: 640px) {
  .h-hero {
    font-size: clamp(32px, 9vw, 44px);
  }

  .h-section {
    font-size: clamp(26px, 7vw, 34px);
  }

  .h-cta {
    font-size: clamp(32px, 9vw, 48px);
  }

  .lede,
  .lede-lg {
    font-size: 16px;
  }

  .grid-3,
  .grid-4 {
    gap: 16px;
  }

  .stat-bar .grid-4 {
    grid-template-columns: 1fr;
  }

  .trust-cell {
    padding: 16px 0;
    border-left: none !important;
    border-top: 1px solid var(--line);
  }

  .stat-bar .trust-cell {
    border-top-color: oklch(0.32 0.03 250);
  }

  .trust-cell:first-child {
    border-top: none;
    padding-top: 0;
  }

  .trust-cell strong {
    font-size: 22px;
  }

  .prize-card-body {
    padding: 14px 16px 18px;
  }

  .prize-card-title {
    font-size: 17px;
  }

  .pd-stat .v {
    font-size: 22px;
  }

  .pd-stat {
    padding: 14px 10px;
  }

  .pd-h2 {
    font-size: clamp(24px, 6.5vw, 32px);
  }

  .pd-h3 {
    font-size: 20px;
  }

  .specs-card {
    padding: 20px 18px;
  }

  .pd-pills {
    gap: 6px;
  }

  .pd-pill {
    font-size: 10px;
    padding: 6px 10px;
  }

  .faq summary {
    font-size: 15px;
    padding: 16px 0;
  }

  .pull-quote .quote {
    font-size: clamp(22px, 5.5vw, 28px);
  }

  .how-band,
  .how-band--page {
    padding: 56px 0;
  }

  .how-band .grid-2 {
    gap: 32px;
  }

  .how-band-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .how-band-ctas .btn {
    width: 100%;
    min-height: 48px;
  }

  .how-step {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 0;
  }

  .how-step-num {
    margin-bottom: 4px;
  }

  .step-row {
    grid-template-columns: 1fr !important;
    text-align: left;
  }

  .step-visual {
    min-height: 200px;
  }

  .co-submit-cta,
  .co-prize-showcase .btn-xl {
    width: 100%;
    min-height: 52px;
  }

  .summary-prize {
    flex-direction: column;
    align-items: flex-start;
  }

  .summary-thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 16/10;
  }

  .winners-hero-photo {
    max-height: 280px;
    object-fit: cover;
  }

  .launch-card__body {
    padding: 16px;
  }

  .review-card {
    padding: 18px 16px;
  }
}

/* ——— Small phones (≤400px) ——— */
@media (max-width: 400px) {
  .bundle-grid {
    grid-template-columns: 1fr;
  }

  .bundle-opt {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    text-align: left;
    gap: 2px 12px;
    align-items: center;
    padding: 14px 16px;
  }

  .bundle-opt .tk {
    grid-row: 1 / 3;
    font-size: 28px;
  }

  .bundle-opt .lb {
    grid-column: 2;
    text-align: left;
  }

  .bundle-opt .pr {
    grid-column: 3;
    grid-row: 1 / 3;
    font-size: 20px;
    align-self: center;
  }

  .bundle-opt .save {
    grid-column: 2;
    text-align: left;
    margin-top: 0;
  }

  .bundle-opt .ribbon {
    top: 8px;
    right: 8px;
    left: auto;
    transform: none;
  }

  .nav-right .btn-primary {
    padding: 0 10px;
    font-size: 12px;
  }

  .topbar > .wrap > div:last-child {
    display: none;
  }

  .pay-logo {
    font-size: 10px;
    padding: 0 6px;
    height: 20px;
  }

  .prizes-top {
    top: 56px;
    padding: 16px 0 14px;
  }
  .prizes-top-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .prizes-top-filters {
    width: 100%;
    justify-content: space-between;
  }
  .prizes-compact-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .prize-card--compact {
    grid-template-columns: 110px 1fr;
  }
  .prize-card--compact .prize-card-title {
    font-size: 15px;
  }

  .sweep-dots {
    display: none;
  }

  /* ——— Prizes page: magazine layout (mobile only, desktop unchanged) ——— */
  body.prizes-page .sweep-scroll {
    scroll-snap-type: none !important;
  }

  body.prizes-page .sweep-hero {
    padding: 16px 0 0;
    scroll-snap-align: none;
  }

  body.prizes-page .sweep-hero__stats {
    box-shadow: 0 1px 0 color-mix(in oklab, var(--paper) 65%, transparent);
  }

  body.prizes-page .sweep-filters {
    margin-top: 2px;
    padding: 16px 16px 18px;
    border-top: 1px solid var(--sweep-warm-line);
    border-radius: var(--r-md) var(--r-md) 0 0;
    box-shadow: 0 -1px 0 color-mix(in oklab, var(--sweep-warm-line) 40%, transparent);
  }

  body.prizes-page .sweep-hero .wrap {
    max-width: none;
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  body.prizes-page .sweep-hero__top {
    gap: 0;
    padding-bottom: 20px;
  }

  body.prizes-page .sweep-hero__copy {
    display: block;
    width: 100%;
    max-width: none;
    min-width: 0;
    margin-bottom: 18px;
  }

  body.prizes-page .sweep-hero__title {
    display: block;
    width: 100% !important;
    max-width: none !important;
    font-size: clamp(34px, 11vw, 52px) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.035em;
    margin: 10px 0 12px !important;
    overflow-wrap: break-word;
    hyphens: none;
  }

  body.prizes-page .sweep-hero__lede {
    display: block;
    width: 100%;
    max-width: none !important;
    font-size: 15px;
    line-height: 1.45;
    margin: 0;
    color: var(--ink-2);
  }

  body.prizes-page .sweep-hero__stats > div {
    min-width: 0;
    padding: 12px 6px;
  }

  body.prizes-page .sweep-hero__stats dt {
    font-size: 8px;
    letter-spacing: 0.1em;
    line-height: 1.3;
  }

  body.prizes-page .sweep-hero__stats dd {
    font-size: 13px;
    font-weight: 600;
    margin: 0;
  }

  body.prizes-page .sweep-filters {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  body.prizes-page .sweep-filters__row {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    width: 100%;
  }

  body.prizes-page .sweep-filters__row--sort {
    flex-direction: row;
    align-items: center;
    margin-left: 0;
    gap: 10px;
  }

  body.prizes-page .sweep-filters .chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 8px;
    padding-bottom: 4px;
  }

  body.prizes-page .sweep-filters .chips::-webkit-scrollbar {
    display: none;
  }

  body.prizes-page .sweep-filters .chip {
    flex-shrink: 0;
    height: 40px;
    padding: 0 16px;
    font-size: 13px;
  }

  body.prizes-page .sweep-filters .sort-select {
    flex: 1;
    min-height: 44px;
    font-size: 14px;
  }

  /* Ambient divider between full-bleed panels */
  body.prizes-page .sweep-bridge {
    display: block;
    height: clamp(36px, 5.5vh, 52px);
    min-height: 36px;
  }

  body.prizes-page .sweep-panel-wrap:first-child .sweep-bridge {
    display: block;
    height: clamp(32px, 4.5vh, 44px);
    min-height: 32px;
  }

  body.prizes-page .sweep-bridge::after {
    top: 12%;
    bottom: 12%;
    backdrop-filter: blur(10px) saturate(1.1);
    -webkit-backdrop-filter: blur(10px) saturate(1.1);
    opacity: 0.38;
  }

  body.prizes-page .sweep-panel-wrap {
    scroll-snap-align: none;
    scroll-margin-top: 0;
    margin: 0;
    padding: 0;
  }

  body.prizes-page .sweep-stack {
    background: var(--ink);
  }

  body.prizes-page .sweep-panel-wrap {
    background: var(--ink);
  }

  body.prizes-page .sweep-panel-wrap {
    position: relative;
    z-index: 1;
  }

  body.prizes-page .sweep-panel-wrap + .sweep-panel-wrap {
    margin-top: 0;
  }

  body.prizes-page .sweep-panel {
    position: relative;
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-end !important;
    justify-content: flex-end !important;
    height: 100svh !important;
    min-height: 100svh !important;
    max-height: 100svh !important;
    overflow: hidden !important;
  }

  body.prizes-page .sweep-panel__media {
    position: absolute !important;
    inset: 0 !important;
    z-index: 0;
    height: auto !important;
    min-height: 0 !important;
    opacity: 1 !important;
  }

  body.prizes-page .sweep-panel__media picture {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  body.prizes-page .sweep-panel__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.08) contrast(1.06);
    transform: none;
  }

  body.prizes-page .sweep-panel--grand .sweep-panel__media img {
    object-position: center 38%;
  }

  body.prizes-page .sweep-panel__veil,
  body.prizes-page .sweep-panel__veil--grand {
    display: block !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 1;
    background: linear-gradient(
      to top,
      color-mix(in oklab, var(--ink) 94%, transparent) 0%,
      color-mix(in oklab, var(--ink) 50%, transparent) 22%,
      color-mix(in oklab, var(--ink) 12%, transparent) 42%,
      transparent 62%
    ) !important;
  }

  body.prizes-page .sweep-panel__content.wrap {
    position: relative;
    z-index: 12;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 16px calc(28px + var(--safe-bottom)) !important;
    background: transparent !important;
    border: none !important;
    pointer-events: auto;
  }

  body.prizes-page .sweep-panel__title,
  body.prizes-page .sweep-panel--grand .sweep-panel__title {
    width: 100% !important;
    max-width: none !important;
    font-size: clamp(30px, 9vw, 44px) !important;
    line-height: 1.05 !important;
    color: var(--paper) !important;
    text-shadow: 0 2px 32px color-mix(in oklab, var(--ink) 55%, transparent) !important;
    margin-bottom: 12px !important;
  }

  body.prizes-page .sweep-panel__desc,
  body.prizes-page .sweep-panel__sense {
    width: 100%;
    max-width: none !important;
    font-size: 15px;
    line-height: 1.5;
    color: color-mix(in oklab, var(--paper) 88%, transparent) !important;
    margin-bottom: 18px !important;
  }

  body.prizes-page .sweep-panel__index {
    color: color-mix(in oklab, var(--paper) 60%, var(--ochre)) !important;
    margin-bottom: 12px;
  }

  body.prizes-page .sweep-panel__meta dt {
    color: color-mix(in oklab, var(--paper) 55%, transparent) !important;
  }

  body.prizes-page .sweep-panel__meta dd {
    color: var(--paper) !important;
  }

  body.prizes-page .sweep-panel__spots {
    max-width: 100%;
    margin-bottom: 16px;
    background: color-mix(in oklab, var(--ink) 50%, transparent);
    border-color: color-mix(in oklab, var(--paper) 15%, transparent);
  }

  body.prizes-page .sweep-panel__spots-label,
  body.prizes-page .sweep-panel__spots-val {
    color: var(--paper);
  }

  body.prizes-page .sweep-panel__spots-of {
    color: color-mix(in oklab, var(--paper) 65%, transparent);
  }

  body.prizes-page .sweep-panel__spots-bar {
    background: color-mix(in oklab, var(--paper) 20%, transparent);
  }

  body.prizes-page .sweep-panel__actions {
    align-items: flex-start;
    width: auto;
  }

  body.prizes-page .sweep-panel__cta {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 200px;
    min-height: 48px;
    position: relative;
    z-index: 15;
    visibility: visible;
    opacity: 1;
  }

  body.prizes-page .sweep-outro {
    min-height: 50vh;
    padding: 48px 16px;
  }

  body.prizes-page .sweep-outro__actions .btn {
    width: 100%;
  }
}

/* Prizes — free tactile scroll, no snap (phone only) */
@media (max-width: 768px) {
  html:has(body.prizes-page) {
    scroll-behavior: auto;
    scroll-snap-type: none !important;
    scroll-padding-top: 0;
    overscroll-behavior-y: auto;
  }

  body.prizes-page {
    touch-action: pan-y;
  }

  body.prizes-page .sweep-scroll {
    background: var(--ink);
  }

  body.prizes-page .sweep-stack {
    background: var(--ink);
    gap: 0;
    margin-top: 0;
  }

  body.prizes-page .sweep-panel-wrap + .sweep-panel-wrap {
    margin-top: 0;
  }

  body.prizes-page .sweep-hero,
  body.prizes-page .sweep-outro {
    scroll-snap-align: none;
    scroll-snap-stop: normal;
  }

  body.prizes-page .sweep-panel-wrap {
    scroll-snap-align: none;
    scroll-margin-top: 0;
    scroll-margin-bottom: 0;
  }

  /* Portrait mobile art for scuba + Vegas panels */
  body.prizes-page [data-sweep-wrap="01"] .sweep-panel__media img {
    object-position: center 38%;
  }

  body.prizes-page [data-sweep-wrap="04"] .sweep-panel__media img {
    object-position: center 38%;
  }
}

@media (max-width: 480px) {
  .prize-card--compact {
    grid-template-columns: 1fr;
  }
  .prize-card--compact .prize-card-img {
    aspect-ratio: 16 / 9;
    min-height: 140px;
  }

  body.prizes-page .sweep-hero__stats dt {
    font-size: 7px;
  }

  body.prizes-page .sweep-hero__stats dd {
    font-size: 12px;
  }

  body.prizes-page .sweep-panel__title,
  body.prizes-page .sweep-panel--grand .sweep-panel__title {
    font-size: clamp(26px, 8.5vw, 36px) !important;
  }
}

/* Touch: tactile feedback (replaces desktop hover on coarse pointers) */
@media (hover: none) and (pointer: coarse) {
  .btn:hover,
  .prize-card:hover,
  .spotlight:hover,
  .grand-banner:hover,
  .bundle-opt:hover,
  .launch-card:hover,
  .pd-thumb:hover {
    transform: none;
    box-shadow: inherit;
    border-color: inherit;
  }

  .spotlight:hover .prize-photo,
  .prize-card:hover .prize-photo,
  .pd-gallery-main:hover .prize-photo {
    transform: scale(1.02);
  }

  .prize-card.is-pressed,
  .prize-card:active {
    transform: scale(0.985);
    box-shadow: var(--sh-2);
    border-color: color-mix(in oklab, var(--gold) 32%, var(--line));
  }

  .prize-card.is-pressed .prize-photo,
  .prize-card:active .prize-photo {
    transform: scale(1.05);
    transition: transform 0.35s ease;
  }

  a.spotlight.is-pressed,
  a.spotlight:active {
    transform: scale(0.992);
    box-shadow: var(--sh-dream), 0 0 0 1px color-mix(in oklab, var(--gold) 24%, transparent);
  }

  a.spotlight.is-pressed .prize-photo,
  a.spotlight:active .prize-photo {
    transform: scale(1.05);
    transition: transform 0.35s ease;
  }

  .grand-banner.is-pressed,
  .grand-banner:active,
  .launch-card.is-pressed,
  .launch-card:active {
    transform: scale(0.99);
    box-shadow: var(--sh-2);
  }

  .bundle-opt.is-pressed,
  .bundle-opt:active {
    transform: scale(0.98);
    border-color: color-mix(in oklab, var(--gold) 28%, var(--line));
  }

  .pd-thumb.is-pressed,
  .pd-thumb:active {
    transform: scale(0.96);
    border-color: var(--gold);
  }

  .chip.is-pressed,
  .chip:active {
    border-color: color-mix(in oklab, var(--gold) 42%, var(--line));
    background: var(--paper-2);
  }

  a.btn-primary.is-pressed,
  a.btn-primary:active,
  button.btn-primary.is-pressed,
  button.btn-primary:active {
    transform: scale(0.97);
    filter: brightness(0.96);
  }

  a.btn-ghost.is-pressed,
  a.btn-ghost:active,
  button.btn-ghost.is-pressed,
  button.btn-ghost:active {
    transform: scale(0.98);
    border-color: color-mix(in oklab, var(--gold) 38%, var(--line-2));
  }

  .nav-mobile-links a:active {
    transform: scale(0.99);
  }

  .mem-card-scene {
    touch-action: none;
    -webkit-user-select: none;
    user-select: none;
  }

  .mem-card-scene.is-pressed .mem-pass--front {
    box-shadow:
      0 1px 0 color-mix(in oklab, var(--gold-light) 35%, transparent) inset,
      0 36px 64px -16px color-mix(in oklab, var(--gold) 38%, transparent),
      0 2px 0 rgba(255, 255, 255, 0.08) inset;
  }

  body.prizes-page .sweep-panel__cta:active,
  body.prizes-page .sweep-panel__cta.is-pressed {
    transform: scale(0.97);
  }
}
