:root {
  --ink: #08090b;
  --charcoal: #111318;
  --steel: #c9d0d5;
  --paper: #f6f1e8;
  --ivory: #fffaf0;
  --gold: #c89b45;
  --gold-light: #f0d18a;
  --wine: #6c1f2e;
  --green: #4d6758;
  --muted: #aeb3b8;
  --line: rgba(255, 250, 240, 0.16);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--ivory);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(8, 9, 11, 0.72);
  border-bottom: 1px solid var(--line);
  display: flex;
  height: 72px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(18px, 5vw, 64px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 0.95rem;
  font-weight: 900;
  gap: 10px;
  text-transform: uppercase;
}

.brand-logo {
  aspect-ratio: 1;
  border-radius: 50%;
  height: 32px;
  object-fit: cover;
}

.nav-links {
  display: flex;
  gap: clamp(16px, 3vw, 32px);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links a {
  color: rgba(255, 250, 240, 0.72);
}

.nav-links a:hover {
  color: var(--ivory);
}

.hero {
  min-height: 92vh;
  overflow: hidden;
  position: relative;
}

.hero-media,
.hero-overlay {
  inset: 0;
  position: absolute;
}

.hero-media {
  background-image: url("assets/crown-watch-hero-web.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 9, 11, 0.97) 0%, rgba(8, 9, 11, 0.86) 33%, rgba(8, 9, 11, 0.34) 64%, rgba(8, 9, 11, 0.18) 100%),
    linear-gradient(180deg, rgba(8, 9, 11, 0.46) 0%, rgba(8, 9, 11, 0.08) 46%, var(--ink) 100%);
}

.hero-content {
  display: grid;
  min-height: 92vh;
  padding: 148px clamp(20px, 6vw, 76px) 64px;
  place-content: center start;
  position: relative;
  width: min(760px, 100%);
  z-index: 2;
}

.eyebrow {
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 800;
  margin: 0 0 14px;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(3.4rem, 8vw, 7.4rem);
  line-height: 0.92;
  margin-bottom: 24px;
  max-width: 720px;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.1rem, 4.2vw, 4.35rem);
  line-height: 1;
  margin-bottom: 0;
}

h3 {
  font-size: 1rem;
  margin-bottom: 12px;
}

.hero-copy {
  color: rgba(255, 250, 240, 0.78);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.65;
  max-width: 590px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 36px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
  white-space: nowrap;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--gold);
  color: var(--ink);
}

.button-secondary {
  background: rgba(255, 250, 240, 0.08);
  border-color: rgba(255, 250, 240, 0.22);
  color: var(--ivory);
}

.hero-stats {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 620px;
  padding-top: 24px;
}

.hero-stats strong {
  display: block;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1;
}

.hero-stats span {
  color: var(--muted);
  display: block;
  font-size: 0.82rem;
  margin-top: 7px;
}

.notice-bar {
  align-items: center;
  background: var(--paper);
  color: var(--ink);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.82rem;
  font-weight: 800;
  gap: 10px 24px;
  justify-content: center;
  padding: 14px 20px;
  text-align: center;
  text-transform: uppercase;
}

.notice-bar span {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
}

.mobile-title {
  display: none;
}

.section {
  padding: clamp(72px, 10vw, 132px) clamp(20px, 6vw, 76px);
}

.giveaway-hero {
  background:
    radial-gradient(circle at 78% 24%, rgba(27, 99, 255, 0.2), transparent 26%),
    linear-gradient(135deg, #050608 0%, #101116 58%, #050506 100%);
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 76px);
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.78fr);
  min-height: 92vh;
  padding: 132px clamp(20px, 6vw, 76px) 64px;
}

.giveaway-copy {
  max-width: 760px;
}

.giveaway-copy h1 {
  margin-bottom: 22px;
}

.hero-watch {
  margin: 0;
  min-width: 0;
}

.hero-watch img {
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: block;
  height: auto;
  max-height: 72vh;
  object-fit: contain;
  width: 100%;
}

.hero-watch figcaption {
  color: rgba(255, 250, 240, 0.64);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.45;
  margin-top: 12px;
  text-transform: uppercase;
}

.details-section {
  background:
    linear-gradient(180deg, rgba(8, 9, 11, 0.98), rgba(15, 16, 20, 0.98)),
    var(--ink);
}

.specs-section {
  background: #050506;
  padding-bottom: clamp(36px, 7vw, 72px);
  padding-top: clamp(36px, 7vw, 72px);
}

.specs-section img {
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: block;
  height: auto;
  margin: 0 auto;
  max-width: min(900px, 100%);
  width: 100%;
}

.detail-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 36px;
}

.detail-grid article {
  background: rgba(255, 250, 240, 0.055);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 210px;
  padding: 24px;
}

.detail-grid p,
.close-section p,
.about-copy p {
  color: rgba(255, 250, 240, 0.7);
  line-height: 1.65;
}

.close-section {
  align-items: start;
  background: var(--paper);
  color: var(--ink);
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
}

.close-section .eyebrow {
  color: var(--wine);
}

.close-section p {
  color: rgba(8, 9, 11, 0.68);
  font-size: 1.08rem;
  margin: 0;
}

.about-hero {
  min-height: 92vh;
  overflow: hidden;
  position: relative;
}

.about-hero-media,
.about-hero-overlay {
  inset: 0;
  position: absolute;
}

.about-hero-media {
  background-image: url("assets/daytona-style-about-bg-web.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.about-hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 9, 11, 0.98) 0%, rgba(8, 9, 11, 0.82) 38%, rgba(8, 9, 11, 0.2) 78%),
    linear-gradient(180deg, rgba(8, 9, 11, 0.28) 0%, var(--ink) 100%);
}

.about-copy {
  display: grid;
  min-height: 92vh;
  padding: 148px clamp(20px, 6vw, 76px) 72px;
  place-content: center start;
  position: relative;
  width: min(820px, 100%);
  z-index: 2;
}

.about-copy p {
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  max-width: 660px;
}

.simple-page {
  background:
    linear-gradient(135deg, rgba(8, 9, 11, 0.96), rgba(15, 16, 20, 0.98)),
    var(--ink);
  display: grid;
  min-height: 78vh;
  padding: 148px clamp(20px, 6vw, 76px) 84px;
  place-content: center start;
}

.enter-page {
  background:
    linear-gradient(90deg, rgba(8, 9, 11, 0.98) 0%, rgba(8, 9, 11, 0.86) 46%, rgba(8, 9, 11, 0.38) 100%),
    url("assets/omega-seamaster-poster-hero-lite.jpg") right center / cover no-repeat,
    var(--ink);
  display: grid;
  min-height: 92vh;
  padding: 132px clamp(20px, 6vw, 76px) 72px;
  place-content: center start;
}

.enter-card {
  max-width: 720px;
  width: min(720px, 100%);
}

.enter-card h1 {
  margin-bottom: 22px;
}

.enter-card > p {
  color: rgba(255, 250, 240, 0.72);
  font-size: 1.08rem;
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 620px;
}

.enter-card .signup-form {
  max-width: 640px;
  width: 100%;
}

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

.entry-form-grid label {
  margin: 0;
}

.entry-form-grid input {
  display: block;
  margin-top: 10px;
  width: 100%;
}

.entry-order {
  align-items: center;
  border-bottom: 1px solid rgba(8, 9, 11, 0.16);
  border-top: 1px solid rgba(8, 9, 11, 0.16);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin: 20px 0;
  padding: 18px 0;
}

.entry-order strong,
.entry-order span {
  display: block;
}

.entry-order span {
  color: rgba(8, 9, 11, 0.62);
  font-size: 0.84rem;
  margin-top: 4px;
}

.signup-form .terms-check {
  align-items: flex-start;
  display: flex;
  font-size: 0.8rem;
  font-weight: 700;
  gap: 10px;
  line-height: 1.45;
  margin: 0 0 18px;
  text-transform: none;
}

input[type="checkbox"] {
  accent-color: var(--gold);
  flex: 0 0 auto;
  min-height: 18px;
  width: 18px;
}

.entry-submit {
  width: 100%;
}

.launch-cta {
  align-items: center;
  background: var(--paper);
  color: var(--ink);
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
}

.launch-cta .eyebrow {
  color: var(--wine);
}

.launch-cta-action p {
  color: rgba(8, 9, 11, 0.68);
  line-height: 1.65;
  margin-bottom: 22px;
}

.rules-cta {
  background:
    linear-gradient(135deg, rgba(8, 9, 11, 0.98), rgba(18, 18, 22, 0.98)),
    var(--ink);
  text-align: center;
}

.rules-cta h2 {
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
}

.rules-cta p {
  color: rgba(255, 250, 240, 0.7);
  line-height: 1.65;
  margin: 22px auto 26px;
  max-width: 720px;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.simple-page h1 {
  margin-bottom: 22px;
  max-width: 760px;
}

.simple-page p {
  color: rgba(255, 250, 240, 0.72);
  font-size: 1.08rem;
  line-height: 1.65;
  max-width: 760px;
}

.simple-page .button {
  margin-top: 18px;
  width: fit-content;
}

.legal-callout {
  border-left: 3px solid var(--gold);
  padding-left: 18px;
}

.draft-notice {
  background: rgba(199, 160, 86, 0.12);
  border: 1px solid rgba(199, 160, 86, 0.46);
  border-radius: 6px;
  color: rgba(255, 250, 240, 0.88) !important;
  padding: 16px 18px;
}

.rules-page {
  margin: 0 auto;
  max-width: 920px;
  padding: clamp(112px, 14vw, 164px) clamp(20px, 6vw, 76px) 80px;
}

.rules-heading {
  border-bottom: 1px solid var(--line);
  margin-bottom: 42px;
  padding-bottom: 34px;
}

.rules-heading h1 {
  margin-bottom: 24px;
}

.rules-page section {
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
}

.rules-page h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 14px;
}

.rules-page h3 {
  color: var(--gold);
  font-size: 0.9rem;
  margin: 22px 0 8px;
  text-transform: uppercase;
}

.rules-page p {
  color: rgba(255, 250, 240, 0.72);
  line-height: 1.72;
  margin: 0 0 12px;
}

.rules-page p:last-child {
  margin-bottom: 0;
}

.notice-bar a,
.site-footer a {
  color: inherit;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.featured-drop {
  align-items: center;
  background:
    radial-gradient(circle at 82% 30%, rgba(27, 99, 255, 0.28), transparent 28%),
    linear-gradient(135deg, #07080a 0%, #101014 58%, #050506 100%);
  display: grid;
  gap: clamp(28px, 6vw, 78px);
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
}

.featured-image img {
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: block;
  height: auto;
  object-fit: contain;
  width: 100%;
}

.featured-copy {
  max-width: 680px;
}

.featured-copy h2 {
  margin-bottom: 22px;
}

.featured-copy p {
  color: rgba(255, 250, 240, 0.7);
  font-size: 1.08rem;
  line-height: 1.65;
  margin-bottom: 26px;
}

.spec-list {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0;
  margin: 0;
}

.spec-list div {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(110px, 0.45fr) minmax(0, 1fr);
  padding: 16px 0;
}

.spec-list div:last-child {
  border-bottom: 0;
}

.spec-list dt {
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.spec-list dd {
  color: var(--ivory);
  font-weight: 800;
  margin: 0;
}

.split {
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.drop-steps {
  display: grid;
  gap: 16px;
}

.step-card,
.trust-grid article,
.signup-form {
  background: rgba(255, 250, 240, 0.055);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.step-card {
  min-height: 164px;
  padding: 26px;
  position: relative;
}

.step-number {
  color: var(--gold);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
}

.step-card h3,
.trust-grid h3 {
  color: var(--ivory);
  margin-top: 16px;
}

.step-card p,
.trust-grid p,
.watch-band p,
.entry-copy p,
.site-footer p {
  color: rgba(255, 250, 240, 0.68);
  line-height: 1.65;
  margin-bottom: 0;
}

.watch-band {
  background:
    linear-gradient(135deg, rgba(5, 5, 5, 0.86), rgba(27, 99, 255, 0.26)),
    url("assets/social-time-earned-portrait-web.jpg") right center / contain no-repeat,
    var(--charcoal);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.watch-band-inner {
  max-width: 920px;
}

.watch-band h2 {
  margin-bottom: 24px;
}

.watch-band p {
  font-size: 1.08rem;
  max-width: 720px;
}

.section-heading {
  max-width: 780px;
}

.trust-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-grid .section-heading {
  grid-column: 1 / -1;
  margin-bottom: 20px;
}

.trust-grid article {
  min-height: 214px;
  padding: 24px;
}

.entry-section {
  align-items: start;
  background: var(--paper);
  color: var(--ink);
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.75fr);
}

.entry-section .eyebrow {
  color: var(--wine);
}

.entry-copy p {
  color: rgba(8, 9, 11, 0.68);
  font-size: 1.05rem;
  margin-top: 22px;
  max-width: 620px;
}

.signup-form {
  background: var(--ivory);
  border-color: rgba(8, 9, 11, 0.12);
  color: var(--ink);
  padding: 28px;
}

.hidden-field,
.signup-form .hidden-field {
  display: none;
}

.signup-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.form-row {
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) auto;
}

input {
  background: #fffdf8;
  border: 1px solid rgba(8, 9, 11, 0.22);
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  min-height: 48px;
  min-width: 0;
  padding: 0 14px;
}

input:focus {
  border-color: var(--gold);
  outline: 3px solid rgba(200, 155, 69, 0.24);
}

.form-note,
.form-status {
  color: rgba(8, 9, 11, 0.62);
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 14px 0 0;
}

.form-status {
  color: var(--green);
  font-weight: 800;
  min-height: 1.35em;
}

.mail-in-card h2 {
  color: var(--ink);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.mail-in-card ul {
  color: rgba(8, 9, 11, 0.72);
  line-height: 1.7;
  margin: 0;
  padding-left: 20px;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 28px clamp(20px, 6vw, 76px);
}

.site-footer p {
  font-size: 0.82rem;
  max-width: 760px;
}

@media (max-width: 960px) {
  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 9, 11, 0.96) 0%, rgba(8, 9, 11, 0.76) 56%, rgba(8, 9, 11, 0.28) 100%),
      linear-gradient(180deg, rgba(8, 9, 11, 0.38) 0%, var(--ink) 100%);
  }

  .split,
  .featured-drop,
  .giveaway-hero,
  .close-section,
  .launch-cta,
  .entry-section {
    grid-template-columns: 1fr;
  }

  .featured-image {
    max-width: 520px;
  }

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

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

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

@media (max-width: 680px) {
  .site-header {
    height: 64px;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .hero-content {
    min-height: 88vh;
  }

  .giveaway-hero {
    background:
      radial-gradient(circle at 82% 18%, rgba(27, 99, 255, 0.22), transparent 30%),
      linear-gradient(180deg, #050608 0%, #101116 56%, var(--ink) 100%);
    min-height: 88vh;
    padding: 104px 18px 44px;
  }

  .hero-watch {
    order: -1;
  }

  .hero-watch figcaption {
    font-size: 0.68rem;
  }

  .hero-media {
    background-position: 63% center;
  }

  .hero-content {
    padding-top: 124px;
  }

  h1 {
    font-size: clamp(2.72rem, 11.7vw, 3.35rem);
    line-height: 0.98;
    max-width: 7ch;
  }

  h2 {
    font-size: clamp(2.35rem, 10.4vw, 3.05rem);
    max-width: 10ch;
    overflow-wrap: break-word;
  }

  .desktop-title {
    display: none;
  }

  .mobile-title {
    display: inline;
  }

  .hero-copy {
    max-width: 31ch;
  }

  .hero-stats,
  .detail-grid,
  .trust-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .about-hero,
  .about-copy {
    min-height: 88vh;
  }

  .about-hero-media {
    background-position: 62% center;
  }

  .about-copy {
    padding-top: 124px;
  }

  .about-copy h1 {
    font-size: clamp(2.35rem, 10.4vw, 3.05rem);
    max-width: 10ch;
    overflow-wrap: break-word;
  }

  .about-copy p {
    max-width: 31ch;
  }

  .enter-page {
    padding-top: 112px;
  }

  .enter-card {
    max-width: calc(100vw - 58px);
    min-width: 0;
    width: 304px;
  }

  .enter-card .signup-form {
    max-width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }

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

  .enter-card > p {
    max-width: 31ch;
  }

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

  .notice-bar {
    align-items: stretch;
    display: grid;
    flex-direction: column;
    font-size: 0.66rem;
    justify-items: center;
    line-height: 1.35;
  }

  .notice-bar span {
    align-self: center;
    max-width: 100%;
    white-space: normal;
    width: 100%;
    word-break: break-word;
  }

  .section {
    padding-left: 18px;
    padding-right: 18px;
  }
}

.mobile-entry-strip,
.mobile-checkout-bar {
  display: none;
}

.checkout-page {
  align-items: start;
  background:
    radial-gradient(circle at 26% 18%, rgba(27, 99, 255, 0.2), transparent 26%),
    linear-gradient(135deg, #050608 0%, #101116 58%, #050506 100%),
    var(--ink);
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.62fr);
  min-height: 100vh;
  padding: 132px clamp(20px, 6vw, 76px) 88px;
}

.checkout-product {
  max-width: 760px;
  min-width: 0;
}

.checkout-product h1 {
  margin-bottom: 22px;
}

.checkout-product > p {
  color: rgba(255, 250, 240, 0.76);
  font-size: clamp(1rem, 1.45vw, 1.16rem);
  line-height: 1.65;
  max-width: 650px;
}

.checkout-watch {
  margin: 32px 0 0;
  max-width: 640px;
}

.checkout-watch img {
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: block;
  height: auto;
  object-fit: contain;
  width: 100%;
}

.checkout-watch figcaption {
  color: rgba(255, 250, 240, 0.68);
  font-size: 0.86rem;
  line-height: 1.45;
  margin-top: 12px;
}

.checkout-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.checkout-links a {
  background: rgba(255, 250, 240, 0.08);
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 999px;
  color: rgba(255, 250, 240, 0.86);
  font-size: 0.78rem;
  font-weight: 900;
  padding: 10px 13px;
  text-transform: uppercase;
}

.entry-card {
  min-width: 0;
  position: sticky;
  top: 96px;
}

.entry-card-heading {
  background: rgba(255, 250, 240, 0.055);
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  padding: 22px 24px 0;
}

.entry-card-heading h2 {
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  margin-bottom: 18px;
  max-width: none;
}

.entry-card .signup-form {
  border-radius: 0 0 8px 8px;
  box-shadow: var(--shadow);
}

.entry-packages {
  border: 0;
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  padding: 0;
}

.entry-packages legend {
  color: rgba(8, 9, 11, 0.72);
  font-size: 0.82rem;
  font-weight: 900;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.entry-package {
  align-items: center;
  background: #fffdf8;
  border: 1px solid rgba(8, 9, 11, 0.16);
  border-radius: 8px;
  cursor: pointer;
  display: grid !important;
  gap: 12px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  margin: 0 !important;
  padding: 14px;
  text-transform: none !important;
}

.entry-package.is-selected {
  background: rgba(200, 155, 69, 0.14);
  border-color: rgba(200, 155, 69, 0.8);
}

.entry-package input {
  accent-color: var(--gold);
  min-height: 18px;
  width: 18px;
}

.entry-package strong,
.entry-package small,
.entry-package b {
  display: block;
}

.entry-package small {
  color: rgba(8, 9, 11, 0.56);
  font-size: 0.78rem;
  margin-top: 3px;
}

.entry-package b {
  font-size: 1.05rem;
}

@media (max-width: 960px) {
  .checkout-page {
    grid-template-columns: 1fr;
  }

  .entry-card {
    position: static;
  }
}

@media (max-width: 680px) {
  .giveaway-hero {
    min-height: 84vh;
    padding: 104px 18px 42px;
    place-content: end start;
  }

  h1 {
    max-width: 9ch;
  }

  .hero-stats {
    gap: 10px;
  }

  .hero-stats div {
    align-items: baseline;
    display: flex;
    gap: 10px;
  }

  .hero-actions {
    margin-bottom: 24px;
  }

  .hero-actions .button {
    min-height: 52px;
  }

  .mobile-entry-strip {
    align-items: center;
    background: var(--paper);
    border-bottom: 1px solid rgba(8, 9, 11, 0.12);
    bottom: 0;
    color: var(--ink);
    display: flex;
    gap: 12px;
    justify-content: space-between;
    left: 0;
    padding: 10px 12px max(10px, env(safe-area-inset-bottom));
    position: sticky;
    right: 0;
    z-index: 18;
  }

  .mobile-entry-strip strong,
  .mobile-entry-strip span {
    display: block;
  }

  .mobile-entry-strip span {
    color: rgba(8, 9, 11, 0.62);
    font-size: 0.78rem;
    margin-top: 2px;
  }

  .mobile-entry-strip .button {
    min-height: 44px;
    padding: 0 22px;
  }

  .checkout-page {
    background:
      radial-gradient(circle at 80% 16%, rgba(27, 99, 255, 0.22), transparent 28%),
      linear-gradient(180deg, #050608 0%, #101116 56%, var(--ink) 100%),
      var(--ink);
    gap: 22px;
    padding: 96px 14px 92px;
  }

  .checkout-product {
    padding: 0 4px;
  }

  .checkout-product h1 {
    font-size: clamp(2.48rem, 11vw, 3.1rem);
    max-width: 10ch;
  }

  .checkout-product > p {
    max-width: 32ch;
  }

  .checkout-watch {
    margin-top: 22px;
  }

  .checkout-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .checkout-links a {
    border-radius: 6px;
    font-size: 0.68rem;
    padding: 10px 6px;
    text-align: center;
  }

  .entry-card-heading {
    padding: 20px 18px 0;
  }

  .entry-card .signup-form {
    padding: 18px;
  }

  .entry-package {
    gap: 10px;
    padding: 13px 12px;
  }

  .entry-package small {
    font-size: 0.72rem;
  }

  .mobile-checkout-bar {
    align-items: center;
    background: rgba(8, 9, 11, 0.92);
    backdrop-filter: blur(18px);
    border-top: 1px solid var(--line);
    bottom: 0;
    color: var(--ivory);
    display: flex;
    gap: 12px;
    justify-content: space-between;
    left: 0;
    padding: 10px 12px max(10px, env(safe-area-inset-bottom));
    position: fixed;
    right: 0;
    z-index: 25;
  }

  .mobile-checkout-bar strong,
  .mobile-checkout-bar span {
    display: block;
  }

  .mobile-checkout-bar span {
    color: var(--gold-light);
    font-size: 0.85rem;
    font-weight: 900;
  }

  .mobile-checkout-bar .button {
    min-height: 44px;
    padding: 0 18px;
  }
}

@media (max-width: 680px) {
  .giveaway-hero {
    display: block;
    min-height: auto;
    padding: 84px 14px 34px;
  }

  .hero-watch {
    margin: 0 0 24px;
  }

  .hero-watch img {
    border-radius: 6px;
    max-height: none;
    width: 100%;
  }

  .hero-watch figcaption {
    display: none;
  }

  .giveaway-copy h1 {
    font-size: clamp(2.38rem, 10vw, 3rem);
    max-width: 10ch;
  }

  .hero-copy {
    max-width: 34ch;
  }

  .hero-stats {
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-stats div {
    display: block;
  }
}
