/* Base design system */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap");

:root {
  font-family: "Outfit", sans-serif;
  color: #f7f5ef;
  background: #0b0b0b;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --yellow: #f2c20b;
  --yellow-bright: #ffd21c;
  --ink: #0b0b0b;
  --panel: #151515;
  --line: rgba(255, 255, 255, 0.11);
  --muted: #96968f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 50% -20%, rgba(242, 194, 11, 0.08), transparent 34%),
    var(--ink);
}

button,
input {
  font: inherit;
}

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

.page {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: #0b0b0b;
}

.nav-shell {
  position: fixed;
  z-index: 100;
  top: 18px;
  left: 50%;
  width: min(1180px, calc(100% - 36px));
  transform: translateX(-50%);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 0 10px 0 24px;
  border: 1px solid rgba(242, 194, 11, 0.21);
  border-radius: 9px;
  background: rgba(15, 15, 15, 0.8);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  color: #f5f5f1;
  font-size: 1.12rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.07em;
  transform: skewX(-6deg);
}

.brand-venom {
  color: var(--yellow);
}

.brand-bet {
  color: #f5f5f1;
}

.brand-cut {
  position: absolute;
  width: 5px;
  height: 5px;
  top: 8px;
  left: 48%;
  border-radius: 50%;
  background: #0b0b0b;
  box-shadow: 0 0 0 2px rgba(242, 194, 11, 0.5);
}

.nav-links {
  display: flex;
  gap: 34px;
  color: #aeaea7;
  font-size: 0.83rem;
  font-weight: 500;
}

.nav-links a {
  transition: color 220ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #fff;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 17px;
  border-radius: 5px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  transition: background 220ms ease, transform 220ms ease;
}

.nav-cta:hover {
  background: #ffe064;
  transform: translateY(-2px);
}

.hero {
  position: relative;
  display: grid;
  min-height: 1000px;
  padding: 182px 24px 90px;
  overflow: hidden;
  place-items: start center;
  background:
    linear-gradient(180deg, rgba(11, 11, 11, 0.25), #0b0b0b 93%),
    radial-gradient(circle at 50% 47%, rgba(242, 194, 11, 0.09), transparent 38%);
}

.hero-noise,
.hero-noise::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.hero-noise {
  opacity: 0.13;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
}

.hero-noise::before {
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
}

.ambient {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.18;
}

.ambient-one {
  top: 5%;
  left: -15%;
  width: 520px;
  height: 520px;
  background: #644e00;
}

.ambient-two {
  right: -10%;
  top: 28%;
  width: 420px;
  height: 420px;
  background: #3d3100;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1280px, 100%);
  text-align: center;
}

.hero h1 {
  max-width: 1180px;
  margin: 0 auto;
  color: #f7f6f1;
  font-size: clamp(3.4rem, 7.8vw, 7.6rem);
  font-weight: 700;
  line-height: 0.91;
  letter-spacing: -0.065em;
}

.hero h1 span {
  display: block;
  color: var(--yellow);
}

.hero > .hero-inner > p {
  max-width: 680px;
  margin: 34px auto 0;
  color: #aaa9a2;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 0.93rem;
  font-weight: 700;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

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

.button-primary {
  background: var(--yellow);
  color: #0b0b0b;
}

.button-primary:hover {
  background: #ffe26d;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.button-secondary:hover {
  border-color: rgba(242, 194, 11, 0.45);
}

.ticket-stage {
  position: relative;
  width: min(740px, 86vw);
  height: 360px;
  margin: 62px auto 0;
  perspective: 1400px;
}

.ticket-glow {
  position: absolute;
  left: 50%;
  bottom: -42px;
  width: 70%;
  height: 100px;
  border-radius: 50%;
  background: rgba(242, 194, 11, 0.28);
  filter: blur(54px);
  transform: translateX(-50%);
}

.ticket-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 600px;
  max-width: 80vw;
  height: 268px;
  border-radius: 24px;
  transform-style: preserve-3d;
}

.ticket-card-back {
  display: grid;
  place-items: end;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, #222, #111);
  color: rgba(255,255,255,.05);
  font-size: 5rem;
  font-weight: 900;
  transform: translate(-45%, -44%) rotateZ(9deg);
}

.ticket-card-main {
  display: grid;
  grid-template-columns: 95px 1fr;
  overflow: hidden;
  border: 1px solid rgba(255, 226, 109, 0.54);
  background:
    radial-gradient(circle at 85% 15%, rgba(255,255,255,.2), transparent 24%),
    linear-gradient(125deg, #ffdd3e, #d39e00);
  box-shadow: 0 44px 100px rgba(0, 0, 0, 0.6);
  color: #111;
  transform: translate(-50%, -50%) rotateZ(-5deg);
}

.ticket-edge {
  display: grid;
  place-items: center;
  border-right: 1px dashed rgba(11, 11, 11, 0.4);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.ticket-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 32px 44px;
  text-align: left;
}

.ticket-card-main .brand-venom,
.ticket-card-main .brand-bet {
  color: #111;
}

.ticket-copy {
  margin-top: 27px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.ticket-content strong {
  font-size: 5rem;
  line-height: 0.98;
  letter-spacing: -0.08em;
}

.ticket-serial {
  margin-top: 13px;
  font-family: monospace;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
}

.ticket-cut {
  position: absolute;
  left: 74px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #0b0b0b;
}

.ticket-cut-top { top: -22px; }
.ticket-cut-bottom { bottom: -22px; }

.orbit {
  position: absolute;
  border: 1px solid rgba(242, 194, 11, 0.18);
  border-radius: 50%;
}

.orbit-one {
  inset: -12px 5%;
  transform: rotate(-9deg);
}

.orbit-two {
  inset: 30px -3%;
  border-color: rgba(255,255,255,.08);
  transform: rotate(8deg);
}

.marquee {
  overflow: hidden;
  border-top: 1px solid rgba(242, 194, 11, 0.25);
  border-bottom: 1px solid rgba(242, 194, 11, 0.25);
  background: var(--yellow);
  color: #0b0b0b;
  transform: rotate(-1.2deg) scale(1.02);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 24s linear infinite;
}

.marquee span {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 17px 28px;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.marquee span::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 22px;
  border-radius: 50%;
  background: #0b0b0b;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.chapter {
  position: relative;
  width: min(1180px, calc(100% - 42px));
  margin: 0 auto;
  padding: 180px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 70px;
}

.section-heading h2,
.process-sticky h2 {
  margin: 0;
  font-size: clamp(2.8rem, 6.3vw, 6.2rem);
  font-weight: 600;
  line-height: 0.93;
  letter-spacing: -0.06em;
}

.section-heading h2 span,
.process-sticky h2 span {
  color: var(--yellow);
}

.section-heading p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-flow: dense;
  grid-auto-rows: minmax(310px, auto);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--line);
}

.bento-card {
  position: relative;
  overflow: hidden;
  background: #151515;
}

.interactive-card::after {
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: inherit;
  content: "";
  pointer-events: none;
  transition: border-color 400ms ease, background 400ms ease;
}

.interactive-card:hover::after {
  border-color: rgba(242, 194, 11, 0.28);
  background: linear-gradient(135deg, rgba(242,194,11,.025), transparent 40%);
}

.calculator-card {
  grid-column: span 7;
  padding: 42px;
}

.pool-card {
  grid-column: span 5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
  background:
    radial-gradient(circle at 50% 48%, rgba(242,194,11,.18), transparent 40%),
    #111;
}

.rule-card {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 38px;
  background: var(--yellow);
  color: #101010;
}

.chance-card {
  grid-column: span 8;
  padding: 38px;
}

.card-heading,
.chance-copy {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.92rem;
  font-weight: 700;
}

.icon-box {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(242, 194, 11, 0.35);
  border-radius: 6px;
  background: rgba(242, 194, 11, 0.07);
  color: var(--yellow);
}

.input-wrap {
  margin-top: 35px;
}

.input-wrap label,
.chance-fields label span {
  display: block;
  margin-bottom: 9px;
  color: #84847e;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.currency-input {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.currency-input input {
  width: 100%;
  padding: 0 0 6px;
  border: 0;
  outline: none;
  background: transparent;
  color: #fff;
  font-size: clamp(2.7rem, 5vw, 5.4rem);
  font-weight: 500;
  letter-spacing: -0.06em;
}

.currency-input span {
  color: var(--yellow);
  font-size: 2.1rem;
  font-weight: 600;
}

.range-track {
  height: 4px;
  margin-top: -3px;
  overflow: hidden;
  background: rgba(255,255,255,.05);
}

.range-track span {
  display: block;
  height: 100%;
  background: var(--yellow);
  box-shadow: 0 0 22px rgba(242,194,11,.5);
  transition: width 400ms cubic-bezier(.2,.8,.2,1);
}

.calculation-result {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: 30px;
}

.calculation-result small,
.chance-results small,
.pool-orb small {
  display: block;
  color: #8c8c86;
  font-size: 0.76rem;
}

.calculation-result strong {
  display: block;
  color: var(--yellow);
  font-size: 4.7rem;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.result-ticket {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #dddcd5;
  font-size: 0.76rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.fine-print {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 24px 0 0;
  color: #777771;
  font-size: 0.75rem;
}

.pool-orb {
  position: relative;
  display: grid;
  width: 245px;
  height: 245px;
  margin: 0 auto;
  place-items: center;
  border: 1px solid rgba(242,194,11,.22);
  border-radius: 50%;
  text-align: center;
  transition: transform 700ms ease;
}

.pool-card:hover .pool-orb {
  transform: scale(1.05);
}

.pool-orb::before,
.pool-orb::after {
  position: absolute;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 50%;
  content: "";
}

.pool-orb::before { inset: 18px; }
.pool-orb::after { inset: 43px; border-style: dashed; }

.pool-orb strong {
  display: block;
  margin-top: 5px;
  color: var(--yellow);
  font-size: 2.25rem;
  letter-spacing: -0.05em;
}

.pool-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 25px;
}

.pool-meta span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 8px;
  border: 1px solid rgba(255,255,255,.08);
  color: #a7a69f;
  font-size: 0.7rem;
}

.rule-card > svg {
  padding: 7px;
  border: 1px solid rgba(11,11,11,.28);
  border-radius: 50%;
}

.rule-card strong {
  font-size: 2.45rem;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.rule-card p {
  margin: 19px 0 0;
  color: rgba(11,11,11,.65);
  font-size: 0.88rem;
  line-height: 1.45;
}

.chance-copy {
  align-items: flex-start;
}

.chance-copy h3 {
  margin: 0;
  font-size: 1.5rem;
}

.chance-copy p {
  max-width: 580px;
  margin: 8px 0 0;
  color: #85857f;
  font-size: 0.82rem;
  line-height: 1.5;
}

.chance-fields {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.chance-fields input {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 5px;
  outline: none;
  background: #0f0f0f;
  color: #efeee8;
  transition: border-color 220ms ease;
}

.chance-fields input:focus {
  border-color: rgba(242,194,11,.55);
}

.chance-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.09);
}

.chance-results strong {
  display: block;
  margin-top: 6px;
  color: var(--yellow);
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
  letter-spacing: -0.04em;
}

.tiers-section {
  width: min(1320px, calc(100% - 42px));
}

.section-heading-wide {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.tier-accordion {
  display: flex;
  height: 550px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #111;
}

.tier-panel {
  position: relative;
  display: flex;
  min-width: 72px;
  flex: 0.42;
  align-items: stretch;
  overflow: hidden;
  border: 0;
  border-right: 1px solid var(--line);
  background: #141414;
  color: #f7f6f1;
  cursor: pointer;
  transition: flex 700ms cubic-bezier(.16,1,.3,1), background 400ms ease;
}

.tier-panel:last-child { border-right: 0; }

.tier-panel.is-active {
  flex: 4;
  background:
    radial-gradient(circle at 80% 20%, rgba(242,194,11,.14), transparent 34%),
    #1a1a18;
}

.tier-panel:not(.is-active):hover {
  background: #1c1c1b;
}

.tier-vertical {
  display: flex;
  width: 72px;
  flex: 0 0 72px;
  align-items: center;
  justify-content: center;
  color: #8b8b84;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.tier-detail {
  display: flex;
  min-width: 400px;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 44px;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 300ms ease 120ms, transform 500ms ease 100ms;
}

.tier-panel.is-active .tier-detail {
  opacity: 1;
  transform: translateX(0);
}

.tier-index {
  position: absolute;
  top: 34px;
  right: 38px;
  color: rgba(255,255,255,.18);
  font-size: 5rem;
  font-weight: 700;
  letter-spacing: -0.08em;
}

.tier-value {
  font-size: 1rem;
  text-transform: uppercase;
}

.tier-value strong {
  display: block;
  color: var(--yellow);
  font-size: clamp(4.5rem, 8vw, 8rem);
  line-height: 0.85;
  letter-spacing: -0.08em;
}

.tier-note {
  margin: 22px 0 35px;
  color: #8e8e88;
  font-size: 0.9rem;
}

.tier-detail > svg {
  color: var(--yellow);
}

.philosophy-section {
  position: relative;
  padding: 210px 24px;
  overflow: hidden;
  background: #e8e5dc;
  color: #101010;
}

.philosophy-section::before {
  position: absolute;
  width: 600px;
  height: 600px;
  right: -250px;
  top: -260px;
  border: 1px solid rgba(11,11,11,.11);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 90px rgba(11,11,11,.025), 0 0 0 180px rgba(11,11,11,.02);
}

.philosophy-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.reveal-copy {
  max-width: 1110px;
  margin: 0;
  font-size: clamp(2.8rem, 5.8vw, 6rem);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.reveal-word {
  opacity: 0.1;
}

.inline-visual-copy {
  margin: 110px 0 0;
  font-size: clamp(2.3rem, 5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.inline-ticket-image {
  display: inline-block;
  width: clamp(100px, 13vw, 175px);
  height: clamp(44px, 5vw, 72px);
  margin: 0 12px;
  border-radius: 999px;
  background: url("./public/inline-ticket.svg") center / cover no-repeat;
  vertical-align: middle;
  box-shadow: 0 12px 30px rgba(11,11,11,.16);
}

.process-section {
  padding-bottom: 240px;
}

.process-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: 90px;
}

.process-sticky {
  position: sticky;
  top: 150px;
}

.process-sticky h2 {
  font-size: clamp(3rem, 5vw, 5.2rem);
}

.process-sticky > p {
  max-width: 380px;
  margin: 30px 0;
  color: #8f8f88;
  line-height: 1.6;
}

.draw-date {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 15px;
  border: 1px solid rgba(242,194,11,.2);
  color: #d1d0c9;
  font-size: 0.76rem;
}

.process-cards {
  display: flex;
  flex-direction: column;
  gap: 190px;
  padding-top: 50px;
}

.process-card {
  position: sticky;
  top: 135px;
  display: grid;
  min-height: 430px;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto 1fr;
  gap: 42px;
  align-items: start;
  padding: 46px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-top: 3px solid var(--accent);
  border-radius: 12px;
  background:
    radial-gradient(circle at 90% 5%, color-mix(in srgb, var(--accent) 16%, transparent), transparent 28%),
    #171717;
  box-shadow: 0 50px 90px rgba(0,0,0,.38);
}

.process-card:nth-child(2) { top: 155px; }
.process-card:nth-child(3) { top: 175px; }

.process-card > svg {
  color: var(--accent);
}

.process-number {
  position: absolute;
  right: 35px;
  top: 25px;
  color: rgba(255,255,255,.07);
  font-size: 7rem;
  font-weight: 800;
  letter-spacing: -0.08em;
}

.process-card > div:last-child {
  grid-column: 1 / -1;
  align-self: end;
}

.process-card h3 {
  max-width: 500px;
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3.6rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.process-card p {
  max-width: 520px;
  margin: 22px 0 0;
  color: #8d8d87;
  line-height: 1.65;
}

.cta-section {
  position: relative;
  display: flex;
  min-height: 720px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 24px;
  overflow: hidden;
  background: var(--yellow);
  color: #0b0b0b;
  text-align: center;
}

.cta-section > svg {
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
}

.cta-section h2 {
  position: relative;
  z-index: 2;
  max-width: 1050px;
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 7.2rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.cta-section p {
  position: relative;
  z-index: 2;
  max-width: 550px;
  margin: 30px auto;
  color: rgba(11,11,11,.64);
  font-size: 1.05rem;
}

.button-dark {
  position: relative;
  z-index: 2;
  background: #0b0b0b;
  color: #fff;
}

.button-dark:hover { background: #292929; }

.cta-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  border: 1px solid rgba(11,11,11,.1);
  border-radius: 50%;
  box-shadow: 0 0 0 100px rgba(11,11,11,.03), 0 0 0 200px rgba(11,11,11,.025), 0 0 0 300px rgba(11,11,11,.02);
}

.footer {
  display: grid;
  width: min(1180px, calc(100% - 42px));
  grid-template-columns: 0.5fr 1fr 0.7fr;
  gap: 50px;
  align-items: start;
  margin: 0 auto;
  padding: 90px 0 45px;
  color: #777771;
  font-size: 0.78rem;
}

.footer p {
  max-width: 380px;
  margin: 0;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  color: #aaa9a3;
}

.footer > span {
  grid-column: 1 / -1;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.07);
  text-align: center;
}

@media (max-width: 1050px) {
  .nav-links { display: none; }
  .hero { min-height: 920px; }
  .bento-grid { grid-auto-rows: auto; }
  .calculator-card,
  .pool-card,
  .rule-card,
  .chance-card { grid-column: span 12; }
  .calculator-card,
  .chance-card { min-height: 480px; }
  .pool-card,
  .rule-card { min-height: 390px; }
  .section-heading { grid-template-columns: 1fr; gap: 28px; }
  .section-heading p { max-width: 600px; }
  .tier-accordion { height: 680px; flex-direction: column; }
  .tier-panel { min-width: 100%; min-height: 52px; border-right: 0; border-bottom: 1px solid var(--line); }
  .tier-panel.is-active { flex: 5; }
  .tier-vertical { width: 100%; height: 52px; flex: 0 0 52px; writing-mode: initial; transform: none; }
  .tier-detail { min-width: 0; padding: 28px; }
  .tier-value strong { font-size: 5.5rem; }
  .process-layout { grid-template-columns: 1fr; }
  .process-sticky { position: relative; top: 0; }
  .process-cards { gap: 120px; }
}

@media (max-width: 680px) {
  .nav-shell { top: 10px; width: calc(100% - 20px); }
  .nav { min-height: 58px; padding-left: 17px; }
  .nav-cta { padding: 11px 13px; }
  .hero { min-height: 820px; padding: 138px 18px 70px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.8rem); line-height: .94; }
  .hero > .hero-inner > p { margin-top: 26px; font-size: .94rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .ticket-stage { height: 265px; margin-top: 54px; }
  .ticket-card { height: 190px; border-radius: 17px; }
  .ticket-card-main { grid-template-columns: 64px 1fr; }
  .ticket-content { padding: 20px 24px; }
  .ticket-content strong { font-size: 3.7rem; }
  .ticket-copy { margin-top: 18px; }
  .ticket-serial { display: none; }
  .ticket-cut { left: 47px; width: 30px; height: 30px; }
  .ticket-cut-top { top: -17px; }
  .ticket-cut-bottom { bottom: -17px; }
  .chapter { width: min(100% - 28px, 1180px); padding: 120px 0; }
  .section-heading { margin-bottom: 45px; }
  .section-heading h2,
  .process-sticky h2 { font-size: clamp(2.8rem, 14vw, 4.5rem); }
  .calculator-card,
  .pool-card,
  .rule-card,
  .chance-card { padding: 26px; min-height: 0; }
  .currency-input input { font-size: 3.7rem; }
  .chance-fields { grid-template-columns: 1fr; }
  .chance-results { grid-template-columns: 1fr; }
  .pool-orb { width: 220px; height: 220px; }
  .rule-card { gap: 80px; }
  .tiers-section { width: calc(100% - 28px); }
  .tier-accordion { height: 720px; }
  .tier-index { font-size: 3.8rem; }
  .philosophy-section { padding: 145px 20px; }
  .reveal-copy { font-size: 2.75rem; }
  .inline-visual-copy { margin-top: 80px; font-size: 2.8rem; }
  .inline-ticket-image { margin: 0 5px; }
  .process-layout { gap: 30px; }
  .process-cards { padding-top: 30px; gap: 90px; }
  .process-card { min-height: 400px; padding: 30px; }
  .process-number { font-size: 5rem; }
  .cta-section { min-height: 640px; }
  .footer { grid-template-columns: 1fr; gap: 26px; }
  .footer-links { justify-content: flex-start; flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal-word { opacity: 1 !important; }
}


/* Shared icon and utility styles */
.icon {
  width: 1.25em;
  height: 1.25em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.icon-lg {
  width: 34px;
  height: 34px;
}

.result-ticket .icon {
  width: 34px;
  height: 34px;
}

.process-card > .icon {
  color: var(--accent);
}

.cta-section > .icon {
  position: relative;
  z-index: 2;
  width: 74px;
  height: 74px;
  margin-bottom: 30px;
}

.tier-detail > .icon,
.draw-date .icon,
.fine-print .icon {
  flex: 0 0 auto;
}

.static-fallback {
  display: none;
}

@media (max-width: 680px) {
  .hero h1 {
    font-size: clamp(2.2rem, 10.5vw, 2.65rem);
    line-height: 0.96;
  }
}


/* Layer: compact */
/* Compact product-flow overrides */
.marquee,
.philosophy-section,
.pool-card,
.rule-card {
  display: none;
}

.nav-shell {
  top: 12px;
}

.nav {
  min-height: 60px;
}

.hero {
  min-height: 700px;
  padding: 132px 24px 42px;
}

.hero h1 {
  max-width: 980px;
  font-size: clamp(3.6rem, 6.5vw, 6.25rem);
}

.hero > .hero-inner > p {
  max-width: 620px;
  margin-top: 22px;
}

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

.ticket-stage {
  width: min(590px, 82vw);
  height: 225px;
  margin-top: 30px;
}

.ticket-card {
  width: 455px;
  height: 190px;
  border-radius: 18px;
}

.ticket-card-main {
  grid-template-columns: 68px 1fr;
}

.ticket-card-back {
  padding: 22px;
  font-size: 3.6rem;
}

.ticket-content {
  padding: 22px 32px;
}

.ticket-copy {
  margin-top: 16px;
}

.ticket-content strong {
  font-size: 3.9rem;
}

.ticket-serial {
  margin-top: 7px;
}

.ticket-cut {
  left: 52px;
  width: 30px;
  height: 30px;
}

.ticket-cut-top {
  top: -17px;
}

.ticket-cut-bottom {
  bottom: -17px;
}

.chapter {
  padding: 86px 0;
}

.section-heading {
  grid-template-columns: 1fr 0.72fr;
  gap: 54px;
  margin-bottom: 34px;
}

.section-heading h2,
.process-sticky h2 {
  font-size: clamp(2.7rem, 4.8vw, 4.8rem);
}

.bento-grid {
  grid-auto-rows: auto;
  gap: 1px;
}

.calculator-card,
.chance-card {
  grid-column: span 6;
  min-height: 445px;
  padding: 30px;
}

.input-wrap {
  margin-top: 25px;
}

.currency-input input {
  font-size: clamp(3rem, 4.5vw, 4.4rem);
}

.calculation-result {
  margin-top: 22px;
}

.calculation-result strong {
  font-size: 4rem;
}

.fine-print {
  margin-top: 18px;
}

.chance-copy p {
  max-width: 520px;
}

.chance-fields {
  margin-top: 22px;
}

.chance-results {
  margin-top: 22px;
  padding-top: 20px;
}

.tiers-section {
  width: min(1180px, calc(100% - 42px));
  padding-top: 76px;
  padding-bottom: 86px;
}

.tier-accordion {
  display: grid;
  height: auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.tier-panel,
.tier-panel.is-active {
  position: relative;
  display: block;
  min-width: 0;
  min-height: 172px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9px;
  background: #151515;
  color: #f7f6f1;
  text-align: left;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.tier-panel:hover,
.tier-panel:focus-visible {
  border-color: rgba(242, 194, 11, 0.48);
  background: #1b1b19;
  transform: translateY(-3px);
}

.tier-panel:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
}

.tier-panel.is-active {
  border-color: var(--yellow);
  background: var(--yellow);
  color: #101010;
}

.tier-vertical {
  position: absolute;
  left: 20px;
  top: 18px;
  display: block;
  width: auto;
  height: auto;
  color: #8b8b84;
  font-size: 0.72rem;
  letter-spacing: 0;
  writing-mode: initial;
  transform: none;
}

.tier-panel.is-active .tier-vertical,
.tier-panel.is-active .tier-note {
  color: rgba(16, 16, 16, 0.62);
}

.tier-detail,
.tier-panel.is-active .tier-detail {
  position: static;
  display: flex;
  min-width: 0;
  min-height: 172px;
  padding: 50px 20px 18px;
  opacity: 1;
  transform: none;
}

.tier-index,
.tier-detail > .icon {
  display: none;
}

.tier-value {
  margin-top: auto;
  font-size: 0.72rem;
}

.tier-value strong {
  font-size: clamp(3rem, 4.4vw, 4.3rem);
}

.tier-panel.is-active .tier-value strong {
  color: #101010;
}

.tier-note {
  margin: 9px 0 0;
  font-size: 0.75rem;
}

.process-section {
  padding-top: 82px;
  padding-bottom: 96px;
}

.process-layout {
  display: block;
}

.process-sticky {
  position: relative;
  top: auto;
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 54px;
  align-items: end;
}

.process-sticky > p {
  margin: 0;
}

.draw-date {
  grid-column: 2;
  margin-top: -18px;
  justify-self: start;
}

.process-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding-top: 34px;
}

.process-card,
.process-card:nth-child(2),
.process-card:nth-child(3) {
  position: relative;
  top: auto;
  min-height: 300px;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  gap: 24px;
  padding: 30px;
  box-shadow: none;
}

.process-card > div:last-child {
  align-self: end;
}

.process-card h3 {
  font-size: clamp(1.65rem, 2.3vw, 2.35rem);
}

.process-card p {
  margin-top: 14px;
  font-size: 0.86rem;
}

.process-number {
  right: 20px;
  top: 10px;
  font-size: 4.5rem;
}

.cta-section {
  min-height: 420px;
  padding: 70px 24px;
}

.cta-section > .icon {
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
}

.cta-section h2 {
  max-width: 850px;
  font-size: clamp(3rem, 5.6vw, 5.6rem);
}

.cta-section p {
  margin: 20px auto 24px;
}

.footer {
  padding-top: 58px;
}

@media (max-width: 920px) {
  .section-heading,
  .process-sticky {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .draw-date {
    grid-column: 1;
    margin-top: 0;
  }

  .calculator-card,
  .chance-card {
    grid-column: span 12;
    min-height: 0;
  }

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

  .process-cards {
    grid-template-columns: 1fr;
  }

  .process-card,
  .process-card:nth-child(2),
  .process-card:nth-child(3) {
    min-height: 230px;
  }
}

@media (max-width: 680px) {
  .nav-shell {
    top: 8px;
  }

  .hero {
    min-height: 650px;
    padding: 112px 14px 34px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 10.5vw, 2.65rem);
  }

  .hero > .hero-inner > p {
    margin-top: 18px;
    font-size: 0.88rem;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .ticket-stage {
    width: 100%;
    height: 196px;
    margin-top: 24px;
  }

  .ticket-card {
    width: min(345px, 86vw);
    height: 154px;
  }

  .ticket-card-main {
    grid-template-columns: 52px 1fr;
  }

  .ticket-content {
    padding: 16px 22px;
  }

  .ticket-content strong {
    font-size: 3rem;
  }

  .ticket-copy {
    margin-top: 11px;
  }

  .ticket-edge {
    font-size: 0.6rem;
  }

  .ticket-cut {
    left: 38px;
  }

  .chapter {
    padding: 66px 0;
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .section-heading h2,
  .process-sticky h2 {
    font-size: 2.75rem;
  }

  .calculator-card,
  .chance-card {
    padding: 24px;
  }

  .chance-fields {
    grid-template-columns: 1fr 1fr;
  }

  .chance-fields label:last-child {
    grid-column: 1 / -1;
  }

  .tiers-section {
    width: calc(100% - 28px);
    padding-top: 62px;
    padding-bottom: 68px;
  }

  .tier-accordion {
    display: flex;
    height: auto;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2px 2px 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .tier-panel,
  .tier-panel.is-active {
    min-width: 164px;
    min-height: 156px;
    scroll-snap-align: start;
  }

  .tier-detail,
  .tier-panel.is-active .tier-detail {
    min-height: 156px;
  }

  .process-section {
    padding-top: 64px;
    padding-bottom: 72px;
  }

  .process-cards {
    gap: 8px;
    padding-top: 26px;
  }

  .process-card,
  .process-card:nth-child(2),
  .process-card:nth-child(3) {
    min-height: 210px;
    padding: 24px;
  }

  .cta-section {
    min-height: 360px;
    padding: 58px 18px;
  }

  .cta-section h2 {
    font-size: 2.8rem;
  }
}

/* Final compression: summary, calculator, tiers */
.process-section,
.cta-section,
.hero-actions .button-secondary,
.nav-links a[href='#surec'] {
  display: none;
}

.hero {
  min-height: 620px;
  padding-bottom: 26px;
}

.ticket-stage {
  height: 190px;
  margin-top: 22px;
}

.chapter {
  padding-top: 64px;
  padding-bottom: 68px;
}

.tiers-section {
  padding-top: 62px;
  padding-bottom: 70px;
}

.footer {
  padding-top: 42px;
  padding-bottom: 28px;
}

@media (max-width: 680px) {
  .hero {
    min-height: 590px;
    padding-bottom: 24px;
  }
  .ticket-stage {
    height: 172px;
    margin-top: 18px;
  }
  .chapter {
    padding-top: 52px;
    padding-bottom: 56px;
  }
  .tiers-section {
    padding-top: 50px;
    padding-bottom: 54px;
  }
}


/* Layer: inputs */
.currency-input {
  position: relative;
  padding: 0.7rem 0.9rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.55rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent),
    #0e0e0e;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
  transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.currency-input:focus-within {
  border-color: rgba(242, 194, 11, 0.7);
  background: #11110f;
  box-shadow: 0 0 0 3px rgba(242, 194, 11, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.currency-input input {
  min-width: 0;
  padding: 0;
  border: 0;
  font-variant-numeric: tabular-nums;
}

.currency-input input::placeholder,
.chance-fields input::placeholder {
  color: #51514c;
  opacity: 1;
}

.currency-input span {
  padding-left: 0.4rem;
  font-size: 1.7rem;
}

.range-track {
  margin: 0.55rem 0.9rem 0;
  border-radius: 999px;
}

.chance-fields label {
  position: relative;
}

.chance-fields label > span {
  transition: color 180ms ease;
}

.chance-fields label:focus-within > span {
  color: var(--yellow);
}

.chance-fields input {
  padding: 0.9rem 0.95rem;
  border-radius: 0.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.022), transparent),
    #0d0d0d;
  font-size: 1rem;
  font-variant-numeric: tabular-nums;
  font-weight: 550;
  letter-spacing: -0.02em;
  transition: border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.chance-fields input:focus {
  border-color: rgba(242, 194, 11, 0.7);
  background: #11110f;
  box-shadow: 0 0 0 3px rgba(242, 194, 11, 0.08);
}

input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
}

@media (max-width: 680px) {
  .currency-input {
    padding: 0.65rem 0.8rem 0.5rem;
  }

  .currency-input span {
    font-size: 1.45rem;
  }
}


/* Layer: symbiote */
.hero {
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 82%, rgba(242, 194, 11, 0.1), transparent 27%),
    radial-gradient(circle at 16% 34%, rgba(122, 110, 64, 0.09), transparent 29%),
    #090a09;
}

.hero h1 {
  max-width: 960px;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.hero-noise {
  z-index: 1;
  opacity: 0.09;
  mix-blend-mode: soft-light;
}

.hero-noise::before {
  display: none;
}

.symbiote-canvas {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.86;
  filter: contrast(1.08) saturate(0.72);
  transform-origin: 50% 70%;
}

.symbiote-vignette {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 68%, transparent 24%, rgba(6, 7, 6, 0.12) 55%, rgba(6, 7, 6, 0.76) 100%),
    linear-gradient(180deg, rgba(8, 9, 8, 0.1), transparent 28%, rgba(8, 9, 8, 0.48));
}

.hero-inner {
  z-index: 2;
}

.ticket-stage {
  transform-style: preserve-3d;
}

.ticket-card-back {
  z-index: 1;
  background:
    radial-gradient(circle at 26% 20%, rgba(255, 255, 255, 0.07), transparent 20%),
    linear-gradient(145deg, #20211f, #0b0c0b 68%);
}

.ticket-card-main {
  z-index: 3;
  box-shadow: none;
}

.ticket-edge,
.ticket-content,
.ticket-cut {
  position: relative;
  z-index: 5;
}

.symbiote-skin {
  position: absolute;
  z-index: 6;
  inset: -2px;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(circle at 84% 35%, rgba(255, 255, 255, 0.14), transparent 6%),
    radial-gradient(circle at 76% 74%, rgba(242, 194, 11, 0.13), transparent 11%),
    linear-gradient(118deg, rgba(4, 5, 4, 0.98), rgba(21, 23, 20, 0.96) 62%, rgba(3, 4, 3, 0.99));
  clip-path: polygon(100% 0, 100% 100%, 79% 100%, 86% 85%, 78% 70%, 90% 53%, 80% 37%, 88% 18%, 74% 0);
  transition: clip-path 650ms cubic-bezier(0.16, 1, 0.3, 1), filter 650ms cubic-bezier(0.16, 1, 0.3, 1);
}

.symbiote-skin::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(105deg, transparent 58%, rgba(255, 255, 255, 0.12) 68%, transparent 76%);
  opacity: 0.65;
  transform: translateX(12%);
  animation: symbiote-sheen 4.8s ease-in-out infinite;
}

.symbiote-skin::after {
  position: absolute;
  width: 34%;
  height: 1px;
  right: 3%;
  top: 47%;
  content: "";
  background: rgba(255, 255, 255, 0.24);
  box-shadow: 0 5px 0 rgba(242, 194, 11, 0.1);
  transform: rotate(-18deg);
  transform-origin: right center;
}

.ticket-stage:hover .symbiote-skin {
  clip-path: polygon(100% 0, 100% 100%, 88% 100%, 93% 81%, 86% 67%, 95% 51%, 87% 34%, 94% 16%, 84% 0);
  filter: brightness(1.13);
}

.symbiote-tendrils {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: 455px;
  height: 190px;
  max-width: 80vw;
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(-5deg);
}

.symbiote-tendrils span {
  position: absolute;
  right: -9%;
  width: 38%;
  height: 12px;
  border-radius: 100% 0 100% 0;
  background: linear-gradient(90deg, #191b18, #030403 76%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform-origin: left center;
  transition: transform 650ms cubic-bezier(0.16, 1, 0.3, 1);
}

.symbiote-tendrils span:nth-child(1) {
  top: 12%;
  transform: rotate(-25deg) scaleX(1.2);
}

.symbiote-tendrils span:nth-child(2) {
  top: 43%;
  right: -16%;
  height: 8px;
  transform: rotate(7deg) scaleX(1.35);
}

.symbiote-tendrils span:nth-child(3) {
  top: 76%;
  transform: rotate(29deg) scaleX(1.05);
}

.symbiote-tendrils span:nth-child(4) {
  top: 91%;
  right: 1%;
  width: 25%;
  height: 6px;
  transform: rotate(48deg) scaleX(0.9);
}

.ticket-stage:hover .symbiote-tendrils span:nth-child(1) {
  transform: rotate(-31deg) scaleX(1.38);
}

.ticket-stage:hover .symbiote-tendrils span:nth-child(2) {
  transform: rotate(3deg) scaleX(1.54);
}

.ticket-stage:hover .symbiote-tendrils span:nth-child(3) {
  transform: rotate(35deg) scaleX(1.23);
}

.ticket-stage:hover .symbiote-tendrils span:nth-child(4) {
  transform: rotate(55deg) scaleX(1.08);
}

.calculator-section {
  position: relative;
}

.calculator-section::before {
  position: absolute;
  z-index: -1;
  width: min(42rem, 76vw);
  height: 8rem;
  left: 50%;
  top: -3.2rem;
  content: "";
  pointer-events: none;
  border-radius: 50%;
  background: rgba(8, 9, 8, 0.96);
  filter: blur(1.3rem);
  transform: translateX(-50%);
}

.button-primary {
  position: relative;
  overflow: hidden;
}

.button-primary::before {
  position: absolute;
  inset: 0;
  content: "";
  background: #11120f;
  clip-path: polygon(100% 0, 100% 100%, 84% 100%, 94% 74%, 87% 48%, 95% 21%, 87% 0);
  transition: clip-path 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.button-primary:hover::before {
  clip-path: polygon(100% 0, 100% 100%, 94% 100%, 98% 74%, 94% 48%, 98% 21%, 95% 0);
}

.button-primary > * {
  position: relative;
  z-index: 1;
}

input::placeholder {
  color: #92928a !important;
}

@keyframes symbiote-sheen {
  0%, 100% { transform: translateX(14%); opacity: 0.35; }
  50% { transform: translateX(-2%); opacity: 0.78; }
}

@media (max-width: 680px) {
  .symbiote-canvas {
    opacity: 0.58;
  }

  .symbiote-tendrils {
    width: min(345px, 86vw);
    height: 154px;
  }

  .symbiote-tendrils span {
    right: -3%;
  }

  .symbiote-tendrils span:nth-child(2) {
    right: -5%;
  }

  .symbiote-skin {
    clip-path: polygon(100% 0, 100% 100%, 82% 100%, 89% 82%, 81% 66%, 92% 48%, 83% 30%, 91% 14%, 80% 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .symbiote-skin::before {
    animation: none;
  }

  .symbiote-skin,
  .symbiote-tendrils span {
    transition: none;
  }
}

.ticket-card-back {
  backface-visibility: hidden;
  transform: translate(-45%, -44%) rotateZ(9deg) translateZ(-80px);
}

.ticket-card-main {
  backface-visibility: hidden;
}


/* Layer: venom-v2 */
/* Venom V2 — one dominant symbiote scene, restrained everywhere else */
.hero {
  min-height: 690px;
  padding: 118px 24px 44px;
  background:
    radial-gradient(ellipse at 75% 52%, rgba(255, 255, 255, 0.045), transparent 30%),
    radial-gradient(ellipse at 28% 42%, rgba(242, 194, 11, 0.075), transparent 34%),
    #050605;
}

.hero::after {
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  height: 34%;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent, #050605 82%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  align-items: center;
  gap: clamp(28px, 4vw, 74px);
  text-align: left;
}

.hero-copy {
  position: relative;
  z-index: 8;
  padding-left: clamp(0px, 2vw, 28px);
}

.hero-symbiote-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #f2c20b;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.hero-symbiote-label::before {
  width: 34px;
  height: 2px;
  content: "";
  background: #f2c20b;
  transform: skewX(-28deg);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3.7rem, 6.25vw, 5.85rem);
  line-height: 0.88;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.hero h1 span b {
  font: inherit;
}

.hero h1 span {
  margin-top: 0.12em;
  color: #f2c20b;
}

.hero > .hero-inner .hero-copy > p {
  max-width: 590px;
  margin: 26px 0 0;
  color: #c9c9c1;
  font-size: clamp(0.98rem, 1.25vw, 1.12rem);
  line-height: 1.62;
  text-wrap: pretty;
}

.hero-actions {
  justify-content: flex-start;
  margin-top: 28px;
}

.button-primary {
  min-height: 56px;
  padding-inline: 26px;
  border-radius: 3px;
  box-shadow: 7px 7px 0 rgba(242, 194, 11, 0.16);
}

.ticket-stage {
  z-index: 5;
  width: min(560px, 47vw);
  height: 450px;
  margin: 0;
  justify-self: center;
  perspective: 1500px;
  transform: translateX(-32px);
}

.symbiote-mask {
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  filter: drop-shadow(0 34px 42px rgba(0, 0, 0, 0.86));
}

.symbiote-mask::before {
  position: absolute;
  inset: 4% 0 2%;
  content: "";
  border-radius: 48% 52% 44% 56% / 42% 46% 54% 58%;
  background:
    radial-gradient(ellipse at 34% 22%, rgba(255, 255, 255, 0.18), transparent 7%),
    radial-gradient(ellipse at 68% 18%, rgba(255, 255, 255, 0.1), transparent 5%),
    radial-gradient(ellipse at 50% 72%, #151815 0, #070807 48%, #020302 78%);
  box-shadow:
    inset 18px 0 28px rgba(255, 255, 255, 0.035),
    inset -12px -20px 26px rgba(255, 255, 255, 0.025);
  transform: rotate(-2deg);
  animation: venom-breathe 5.2s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

.venom-eye {
  position: absolute;
  z-index: 4;
  top: 14%;
  width: 39%;
  height: 74px;
  background: #f5f5ec;
  box-shadow: 0 0 24px rgba(255, 255, 245, 0.12);
  transform-origin: center;
}

.venom-eye-left {
  left: 7%;
  clip-path: polygon(0 2%, 100% 44%, 72% 100%, 18% 70%);
  transform: rotate(9deg) skewX(8deg);
}

.venom-eye-right {
  right: 7%;
  clip-path: polygon(0 44%, 100% 2%, 82% 70%, 28% 100%);
  transform: rotate(-9deg) skewX(-8deg);
}

.venom-eye::after {
  position: absolute;
  inset: 16% 12%;
  content: "";
  background: linear-gradient(115deg, transparent, rgba(194, 194, 183, 0.72), transparent 74%);
  opacity: 0.55;
}

.venom-jaw {
  position: absolute;
  z-index: 5;
  left: 10%;
  display: flex;
  width: 80%;
  align-items: flex-start;
  justify-content: center;
  gap: 3px;
}

.venom-jaw-top { top: 38%; }
.venom-jaw-bottom { bottom: 5%; align-items: flex-end; }

.venom-jaw i {
  display: block;
  width: calc(100% / 9);
  height: 54px;
  background: linear-gradient(90deg, #d8d8cd, #fffef2 48%, #c8c8bd);
  filter: drop-shadow(0 5px 3px rgba(0, 0, 0, 0.42));
}

.venom-jaw-top i {
  clip-path: polygon(4% 0, 96% 0, 56% 100%);
  transform: rotate(calc((var(--i) - 4) * 1.6deg));
}

.venom-jaw-bottom i {
  clip-path: polygon(54% 0, 96% 100%, 4% 100%);
  transform: rotate(calc((4 - var(--i)) * 1.35deg));
}

.venom-jaw i:nth-child(2n) { width: calc(100% / 11); }
.venom-jaw i:nth-child(3n) { opacity: 0.9; }
.venom-jaw i:nth-child(3n + 1) { height: 68px; }
.venom-jaw i:nth-child(3n + 2) { height: 46px; }

.ticket-card {
  width: min(470px, 43vw);
  height: 196px;
  border-radius: 12px;
}

.ticket-card-main {
  z-index: 8;
  top: 59%;
  transform: translate(-50%, -50%) rotateZ(-4deg) rotateY(-4deg) translateZ(90px);
  box-shadow: 0 18px 0 rgba(0, 0, 0, 0.32);
}

.ticket-card-back {
  z-index: 2;
  top: 59%;
  transform: translate(-46%, -45%) rotateZ(8deg) translateZ(-80px);
}

.ticket-stage .symbiote-tendrils {
  z-index: 7;
  top: 60%;
  width: 530px;
  max-width: 47vw;
}

.ticket-stage .symbiote-tendrils span {
  background: linear-gradient(90deg, #2c302b, #030403 72%);
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.15);
}

.ticket-glow {
  z-index: 1;
  bottom: 36px;
  width: 80%;
  height: 88px;
  opacity: 0.7;
}

.orbit { opacity: 0.25; }

.symbiote-canvas {
  opacity: 1;
  filter: contrast(1.32) saturate(0.35) brightness(1.28);
}

.symbiote-vignette {
  background:
    linear-gradient(90deg, rgba(5, 6, 5, 0.22), transparent 38%, rgba(5, 6, 5, 0.08) 68%, rgba(5, 6, 5, 0.64)),
    linear-gradient(180deg, rgba(5, 6, 5, 0.06), transparent 64%, #050605 100%);
}

.ticket-stage:hover .venom-eye-left { transform: rotate(12deg) skewX(8deg) scaleX(1.04); }
.ticket-stage:hover .venom-eye-right { transform: rotate(-12deg) skewX(-8deg) scaleX(1.04); }
.venom-eye { transition: transform 620ms cubic-bezier(0.16, 1, 0.3, 1); }

@keyframes venom-breathe {
  0%, 100% { transform: rotate(-2deg) scale(0.985, 1); }
  50% { transform: rotate(-1deg) scale(1.015, 1.025); }
}

@media (max-width: 940px) {
  .hero {
    min-height: 820px;
    padding-top: 118px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
  }

  .hero-copy { padding-left: 0; }
  .hero-symbiote-label { margin-bottom: 14px; }
  .hero h1 { max-width: 820px; margin-inline: auto; }
  .hero > .hero-inner .hero-copy > p { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .ticket-stage { width: min(560px, 88vw); height: 330px; transform: none; }
  .ticket-stage .symbiote-tendrils { max-width: 84vw; }
  .ticket-card { width: min(460px, 76vw); }
  .symbiote-mask { inset: -28% 0 -5%; }
}

@media (max-width: 680px) {
  .hero {
    min-height: 735px;
    padding: 104px 18px 24px;
  }

  .hero-symbiote-label {
    font-size: 0.64rem;
    letter-spacing: 0.12em;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(3rem, 13.2vw, 3.65rem);
    line-height: 0.9;
  }

  .hero h1 span b {
    display: block;
  }

  .hero > .hero-inner .hero-copy > p {
    max-width: 34rem;
    margin-top: 20px;
    font-size: 0.93rem;
  }

  .hero-actions { margin-top: 22px; }
  .button-primary { width: min(100%, 280px); }

  .ticket-stage {
    width: min(410px, 100vw);
    height: 290px;
    margin-top: 4px;
  }

  .symbiote-mask { inset: -22% -2% -4%; }
  .venom-eye { top: 13%; height: 54px; }
  .venom-jaw-top { top: 39%; }
  .venom-jaw-bottom { bottom: 4%; }
  .venom-jaw i { height: 38px; }
  .venom-jaw i:nth-child(3n + 1) { height: 48px; }
  .venom-jaw i:nth-child(3n + 2) { height: 32px; }
  .ticket-card { width: min(350px, 86vw); height: 146px; }
  .ticket-card-main, .ticket-card-back { top: 60%; }
  .ticket-content { padding: 14px 22px; }
  .ticket-copy { margin-top: 9px; }
  .ticket-content strong { font-size: 3rem; }
  .ticket-serial { margin-top: 3px; font-size: 0.55rem; }
  .ticket-stage .symbiote-tendrils { top: 60%; width: 390px; max-width: 94vw; }
}

@media (prefers-reduced-motion: reduce) {
  .symbiote-mask::before { animation: none; }
  .venom-eye { transition: none; }
}


/* Layer: venom-refined */
/* Refined symbiote direction: material and motion, never a literal face. */
.symbiote-mask {
  display: none;
}

.hero {
  min-height: 650px;
  padding: 118px 24px 38px;
  background:
    radial-gradient(ellipse at 74% 48%, rgba(242, 194, 11, 0.055), transparent 31%),
    radial-gradient(ellipse at 24% 44%, rgba(255, 255, 255, 0.025), transparent 34%),
    #070807;
}

.hero-inner {
  grid-template-columns: minmax(0, 1.05fr) minmax(410px, 0.95fr);
  gap: clamp(32px, 5vw, 82px);
}

.hero-symbiote-label {
  margin-bottom: 16px;
  color: #d9ae0b;
  letter-spacing: 0.12em;
}

.hero-symbiote-label::before {
  width: 24px;
  height: 1px;
  background: #d9ae0b;
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(3.55rem, 5.9vw, 5.45rem);
  line-height: 0.92;
  letter-spacing: -0.035em;
}

.hero h1 span {
  margin-top: 0.15em;
  color: #f2c20b;
}

.hero > .hero-inner .hero-copy > p {
  max-width: 560px;
  color: #b9b9b2;
}

.button-primary {
  min-height: 54px;
  box-shadow: none;
}

.ticket-stage {
  width: min(540px, 45vw);
  height: 340px;
  transform: translateX(-12px);
}

.ticket-stage::before {
  position: absolute;
  z-index: 0;
  inset: 6% 0 1%;
  content: "";
  pointer-events: none;
  border-radius: 53% 47% 58% 42% / 44% 57% 43% 56%;
  background:
    radial-gradient(ellipse at 31% 23%, rgba(255, 255, 255, 0.16), transparent 5%),
    radial-gradient(ellipse at 63% 18%, rgba(255, 255, 255, 0.075), transparent 4%),
    radial-gradient(ellipse at 48% 54%, #171917, #080908 56%, #030403 79%);
  box-shadow:
    inset 15px 8px 20px rgba(255, 255, 255, 0.025),
    0 22px 0 rgba(0, 0, 0, 0.18);
  transform: rotate(-3deg) scale(0.96);
  animation: refined-surface 7s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

.ticket-stage::after {
  position: absolute;
  z-index: 1;
  right: -3%;
  bottom: 13%;
  width: 44%;
  height: 20%;
  content: "";
  pointer-events: none;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: rotate(13deg);
}

.ticket-card {
  width: min(470px, 42vw);
  height: 196px;
}

.ticket-card-main {
  top: 52%;
  transform: translate(-50%, -50%) rotateZ(-4deg) rotateY(-3deg) translateZ(54px);
  box-shadow: 0 10px 0 rgba(0, 0, 0, 0.28);
}

.ticket-card-back {
  top: 52%;
  opacity: 0.72;
}

.ticket-stage .symbiote-tendrils {
  top: 53%;
  width: 510px;
  opacity: 0.72;
}

.ticket-stage .symbiote-tendrils span {
  height: 7px;
  background: linear-gradient(90deg, #20231f, #030403 76%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.ticket-stage .symbiote-tendrils span:nth-child(2),
.ticket-stage .symbiote-tendrils span:nth-child(4) {
  height: 4px;
}

.orbit {
  opacity: 0.1;
}

.ticket-glow {
  bottom: 23px;
  width: 64%;
  height: 66px;
  opacity: 0.35;
  filter: blur(38px);
}

.symbiote-canvas {
  opacity: 0.78;
  filter: contrast(1.14) saturate(0.25) brightness(1.08);
}

.symbiote-vignette {
  background:
    linear-gradient(90deg, rgba(7, 8, 7, 0.1), transparent 52%, rgba(7, 8, 7, 0.32)),
    linear-gradient(180deg, transparent 58%, #070807 100%);
}

@keyframes refined-surface {
  0%, 100% { border-radius: 53% 47% 58% 42% / 44% 57% 43% 56%; transform: rotate(-3deg) scale(0.96); }
  50% { border-radius: 47% 53% 45% 55% / 51% 43% 57% 49%; transform: rotate(-2deg) scale(0.98); }
}

@media (max-width: 940px) {
  .hero {
    min-height: 750px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ticket-stage {
    width: min(520px, 88vw);
    height: 260px;
    transform: none;
  }

  .ticket-card {
    width: min(455px, 76vw);
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: 650px;
    padding: 102px 18px 22px;
  }

  .hero h1 {
    font-size: clamp(2.95rem, 12.8vw, 3.5rem);
    line-height: 0.93;
  }

  .hero > .hero-inner .hero-copy > p {
    margin-top: 18px;
  }

  .ticket-stage {
    width: min(400px, 100vw);
    height: 215px;
    margin-top: 8px;
    transform: translateX(24px);
  }

  .ticket-stage::before {
    inset: 0 2% -4%;
  }

  .ticket-card {
    width: min(350px, 86vw);
    height: 146px;
  }

  .ticket-card-main,
  .ticket-card-back {
    top: 51%;
  }

  .ticket-stage .symbiote-tendrils {
    top: 52%;
    width: 380px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticket-stage::before {
    animation: none;
  }
}


/* Layer: venom-official */
/* Official Venom art direction: cinematic presence, product-first hierarchy. */
.hero::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  pointer-events: none;
  background: #070807;
  opacity: 0.74;
  filter: brightness(1.16) contrast(1.06) saturate(0.72);
}

.hero::after {
  z-index: 1;
  height: 42%;
  background: linear-gradient(180deg, transparent, #070807 92%);
}

.symbiote-canvas {
  opacity: 0.12;
  filter: grayscale(1) contrast(1.08);
}

.symbiote-vignette {
  background:
    linear-gradient(90deg, #070807 0%, rgba(7, 8, 7, 0.96) 25%, rgba(7, 8, 7, 0.68) 42%, rgba(7, 8, 7, 0.08) 72%),
    linear-gradient(180deg, rgba(7, 8, 7, 0.28), transparent 38%, rgba(7, 8, 7, 0.78) 100%);
}

.hero-noise {
  opacity: 0.045;
}

.hero-copy {
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

.ticket-stage {
  height: 430px;
  transform: translate(8px, 18px);
}

.ticket-stage::before,
.ticket-stage::after,
.ticket-stage .symbiote-tendrils,
.ticket-stage .orbit {
  display: none;
}

.ticket-card {
  width: min(430px, 39vw);
  height: 178px;
}

.ticket-card-main,
.ticket-card-back {
  top: 73%;
}

.ticket-card-main {
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.54);
}

.ticket-card-back {
  opacity: 0.5;
}

.ticket-glow {
  bottom: -5px;
  opacity: 0.22;
}

@media (max-width: 940px) {
  .hero::before {
    background-position: 63% 38%;
    opacity: 0.58;
  }

  .symbiote-vignette {
    background:
      linear-gradient(90deg, rgba(7, 8, 7, 0.98) 0%, rgba(7, 8, 7, 0.82) 50%, rgba(7, 8, 7, 0.28) 100%),
      linear-gradient(180deg, rgba(7, 8, 7, 0.12), rgba(7, 8, 7, 0.72) 67%, #070807 100%);
  }

  .ticket-stage {
    height: 225px;
    transform: translateY(-2px);
  }

  .ticket-card {
    width: min(420px, 76vw);
    height: 174px;
  }

  .ticket-card-main,
  .ticket-card-back {
    top: 50%;
  }
}

@media (max-width: 680px) {
  .hero::before {
    background-position: 60% top;
    opacity: 0.46;
    filter: brightness(0.98) contrast(1.08) saturate(0.55);
  }

  .symbiote-vignette {
    background:
      linear-gradient(90deg, rgba(7, 8, 7, 0.97), rgba(7, 8, 7, 0.66) 68%, rgba(7, 8, 7, 0.34)),
      linear-gradient(180deg, rgba(7, 8, 7, 0.18), rgba(7, 8, 7, 0.82) 58%, #070807 92%);
  }

  .ticket-stage {
    height: 190px;
    margin-top: 10px;
    transform: translateX(18px);
  }

  .ticket-card {
    width: min(344px, 85vw);
    height: 144px;
  }

  .ticket-card-main,
  .ticket-card-back {
    top: 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before {
    filter: brightness(1.1) contrast(1.06) saturate(0.68);
  }
}


/* Layer: venom-bold */
/* Bolder campaign pass: one dominant character, one dominant product. */
.hero {
  min-height: 720px;
  padding-block: 118px 30px;
}

.hero::before {
  background-position: 54% 44%;
  opacity: 0.96;
  filter: brightness(1.22) contrast(1.1) saturate(0.86);
  transform: scale(1.075);
  transform-origin: 65% 42%;
  animation: venom-camera 11s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

.hero::after {
  height: 48%;
  background: linear-gradient(180deg, transparent, rgba(7, 8, 7, 0.44) 52%, #070807 100%);
}

.symbiote-vignette {
  background:
    linear-gradient(90deg, #070807 0%, rgba(7, 8, 7, 0.95) 21%, rgba(7, 8, 7, 0.58) 39%, rgba(7, 8, 7, 0.04) 68%),
    linear-gradient(180deg, rgba(7, 8, 7, 0.1), transparent 44%, rgba(7, 8, 7, 0.68) 100%);
}

.hero-inner {
  grid-template-columns: minmax(0, 0.94fr) minmax(500px, 1.06fr);
  gap: clamp(18px, 2vw, 38px);
}

.hero-copy {
  padding-left: clamp(0px, 1vw, 14px);
}

.hero h1 {
  max-width: 750px;
  font-size: clamp(4rem, 6.5vw, 6rem);
  line-height: 0.86;
}

.hero h1 span {
  margin-top: 0.18em;
  font-size: 1.04em;
}

.hero > .hero-inner .hero-copy > p {
  max-width: 540px;
  color: #d2d2ca;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
}

.ticket-stage {
  width: min(610px, 49vw);
  height: 500px;
  transform: translate(46px, 42px);
}

.ticket-card {
  width: min(510px, 43vw);
  height: 210px;
}

.ticket-card-main,
.ticket-card-back {
  top: 72%;
}

.ticket-card-main {
  transform: translate(-50%, -50%) rotateZ(-6deg) rotateY(-3deg) translateZ(54px);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.66);
}

.ticket-card-back {
  opacity: 0.62;
}

.ticket-glow {
  bottom: -8px;
  width: 82%;
  height: 110px;
  opacity: 0.64;
  filter: blur(58px);
}

.symbiote-canvas {
  opacity: 0.2;
}

@keyframes venom-camera {
  from { transform: scale(1.075) translate3d(0, 0, 0); }
  to { transform: scale(1.035) translate3d(-0.5%, 0.35%, 0); }
}

@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  }

  .hero h1 {
    font-size: clamp(3.8rem, 6.4vw, 5.15rem);
  }

  .ticket-card {
    width: min(460px, 43vw);
    height: 190px;
  }
}

@media (max-width: 940px) {
  .hero {
    min-height: 790px;
  }

  .hero::before {
    background-position: 62% 38%;
    opacity: 0.72;
    transform: scale(1.08);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .ticket-stage {
    width: min(560px, 88vw);
    height: 238px;
    transform: translate(18px, 0);
  }

  .ticket-card {
    width: min(460px, 78vw);
    height: 190px;
  }

  .ticket-card-main,
  .ticket-card-back {
    top: 50%;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: 690px;
    padding-block: 98px 18px;
  }

  .hero::before {
    background-position: 60% top;
    opacity: 0.58;
    filter: brightness(1.08) contrast(1.12) saturate(0.72);
    animation: none;
  }

  .symbiote-vignette {
    background:
      linear-gradient(90deg, rgba(7, 8, 7, 0.96), rgba(7, 8, 7, 0.56) 74%, rgba(7, 8, 7, 0.18)),
      linear-gradient(180deg, rgba(7, 8, 7, 0.1), rgba(7, 8, 7, 0.72) 56%, #070807 90%);
  }

  .hero h1 {
    font-size: clamp(3.15rem, 13.6vw, 3.72rem);
    line-height: 0.9;
  }

  .ticket-stage {
    width: min(420px, 104vw);
    height: 198px;
    margin-top: 8px;
    transform: translateX(22px);
  }

  .ticket-card {
    width: min(370px, 89vw);
    height: 153px;
  }

  .ticket-glow {
    width: 72%;
    height: 72px;
    opacity: 0.45;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before {
    animation: none;
  }
}


/* Layer: venom-generated */
/* Generated hero artwork: the ticket is part of the scene, so the CSS duplicate stays out. */
.hero::before {
  background-image: url("./public/venom-ticket-hero.jpg");
  background-size: clamp(1200px, 78vw, 1900px) auto;
  background-position: calc(100% + clamp(105px, 7.8vw, 160px)) top;
  background-repeat: no-repeat;
  opacity: 1;
  filter: brightness(1.07) contrast(1.08) saturate(0.96);
  transform: none;
  transform-origin: 72% 50%;
  animation: generated-hero-camera 12s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

.ticket-stage {
  display: none;
}

.hero-inner {
  grid-template-columns: minmax(0, 0.92fr) minmax(510px, 1.08fr);
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(4rem, 6.25vw, 5.8rem);
}

.symbiote-vignette {
  background:
    linear-gradient(90deg, #070807 0%, rgba(7, 8, 7, 0.96) 23%, rgba(7, 8, 7, 0.68) 38%, rgba(7, 8, 7, 0.16) 54%, transparent 72%),
    linear-gradient(180deg, rgba(7, 8, 7, 0.08), transparent 48%, rgba(7, 8, 7, 0.64) 100%);
}

@keyframes generated-hero-camera {
  from { transform: scale(1.01) translate3d(0, 0, 0); }
  to { transform: scale(1.035) translate3d(-0.3%, 0, 0); }
}

@media (max-width: 1100px) {
  .hero::before {
    background-position: calc(100% + 80px) center;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(400px, 0.9fr);
  }
}

@media (max-width: 940px) {
  .hero {
    min-height: 740px;
  }

  .hero::before {
    background-size: auto 78%;
    background-position: 68% bottom;
    opacity: 0.72;
    filter: brightness(0.9) contrast(1.1) saturate(0.84);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    align-content: start;
  }

  .symbiote-vignette {
    background:
      linear-gradient(180deg, #070807 0%, rgba(7, 8, 7, 0.92) 34%, rgba(7, 8, 7, 0.35) 61%, #070807 100%),
      linear-gradient(90deg, rgba(7, 8, 7, 0.76), rgba(7, 8, 7, 0.08));
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: 680px;
  }

  .hero::before {
    background-size: auto 58%;
    background-position: 68% bottom;
    opacity: 0.82;
    filter: brightness(0.94) contrast(1.12) saturate(0.9);
    animation: none;
  }

  .hero h1 {
    font-size: clamp(3.05rem, 13.2vw, 3.62rem);
  }

  .symbiote-vignette {
    background:
      linear-gradient(180deg, #070807 0%, rgba(7, 8, 7, 0.95) 44%, rgba(7, 8, 7, 0.18) 69%, #070807 100%),
      linear-gradient(90deg, rgba(7, 8, 7, 0.7), rgba(7, 8, 7, 0.06));
  }
}

@media (min-width: 1500px) {
  .hero::before {
    background-size: clamp(1200px, 68vw, 1640px) auto;
    background-position: right top;
  }

  .symbiote-vignette {
    background:
      linear-gradient(90deg, #070807 0%, rgba(7, 8, 7, 0.95) 17%, rgba(7, 8, 7, 0.72) 27%, rgba(7, 8, 7, 0.3) 36%, rgba(7, 8, 7, 0.06) 43%, transparent 49%),
      linear-gradient(180deg, rgba(7, 8, 7, 0.04), transparent 52%, rgba(7, 8, 7, 0.55) 100%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero::before {
    animation: none;
    transform: none;
  }
}

/* Extended narrative: a compact, asymmetric draw journey. */
.process-section {
  --process-space-sm: 12px;
  --process-space-md: 24px;
  --process-space-lg: 48px;
  --process-space-xl: 96px;
  position: relative;
  display: block;
  width: min(1180px, calc(100% - 42px));
  padding: clamp(88px, 8vw, 128px) 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.hero-actions .button-secondary,
.nav-links a[href="#surec"] {
  display: inline-flex;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(var(--process-space-lg), 6vw, var(--process-space-xl));
  align-items: start;
}

.process-sticky {
  position: sticky;
  top: 120px;
  display: block;
}

.process-sticky > p {
  max-width: 390px;
  margin: var(--process-space-md) 0 0;
  color: #a7a79f;
}

.draw-date {
  margin-top: var(--process-space-md);
}

.process-cards {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.process-card,
.process-card:nth-child(2),
.process-card:nth-child(3) {
  position: relative;
  top: auto;
  display: grid;
  min-height: 0;
  grid-template-columns: 52px minmax(0, 1fr);
  grid-template-rows: auto;
  gap: var(--process-space-md);
  align-items: start;
  padding: var(--process-space-lg) 0;
  overflow: visible;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.process-card:nth-child(2) {
  margin-left: clamp(0px, 3vw, 48px);
}

.process-card:nth-child(3) {
  margin-left: clamp(0px, 6vw, 96px);
}

.process-card > .icon {
  display: block;
  width: 28px;
  height: 28px;
  margin-top: 4px;
  color: var(--accent);
}

.process-card > div:last-child {
  grid-column: 2;
  align-self: start;
}

.process-card h3 {
  max-width: 560px;
  font-size: clamp(2rem, 3vw, 3.15rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  transition: color 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.process-card p {
  max-width: 560px;
  margin-top: 16px;
  color: #9c9c95;
  font-size: 0.94rem;
}

.process-card:hover h3 {
  color: #f2c20b;
}

.process-artwork {
  position: relative;
  width: 100vw;
  height: clamp(220px, 25.4vw, 503px);
  margin: 18px 0 0;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  background: transparent;
}

.process-artwork::after {
  display: none;
}

.process-artwork img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(1.08) drop-shadow(0 28px 34px rgba(0, 0, 0, 0.5));
  transform: scale(1.01);
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1), filter 500ms ease;
}

.process-artwork:hover img {
  filter: saturate(1.04) contrast(1.1) drop-shadow(0 32px 38px rgba(0, 0, 0, 0.58));
  transform: scale(1.025);
}

@media (max-width: 920px) {
  .process-layout {
    grid-template-columns: 1fr;
    gap: var(--process-space-lg);
  }

  .process-sticky {
    position: relative;
    top: auto;
  }

  .process-card:nth-child(2),
  .process-card:nth-child(3) {
    margin-left: 0;
  }
}

@media (max-width: 680px) {
  .process-section {
    width: calc(100% - 28px);
    padding: 72px 0 18px;
  }

  .process-layout {
    gap: 32px;
  }

  .process-card,
  .process-card:nth-child(2),
  .process-card:nth-child(3) {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
    padding: 32px 0;
  }

  .process-card h3 {
    font-size: clamp(1.75rem, 8vw, 2.2rem);
  }

  .process-artwork {
    width: 100vw;
    height: 220px;
    margin-top: 12px;
  }

  .process-artwork img {
    object-position: 46% center;
  }
}
/* Native ticket participation chapter */
.claim-section {
  position: relative;
  width: min(1180px, calc(100% - 42px));
  padding: clamp(48px, 5vw, 64px) 0 clamp(88px, 9vw, 136px);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}
.claim-section::before {
  content: "";
  position: absolute;
  width: min(680px, 65vw);
  aspect-ratio: 1;
  right: -24%;
  top: 7%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 194, 11, 0.105), transparent 66%);
  pointer-events: none;
}
.claim-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: end;
  margin-bottom: clamp(42px, 6vw, 72px);
}
.claim-kicker {
  display: block;
  margin-bottom: 18px;
  color: var(--yellow);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.claim-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.25rem, 6.2vw, 6.2rem);
  line-height: 0.9;
  letter-spacing: -0.065em;
}
.claim-heading h2 span { color: var(--yellow); }
.claim-heading-copy > p {
  max-width: 510px;
  margin: 0;
  color: #aaa9a2;
  font-size: 1rem;
  line-height: 1.7;
}
.claim-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 27px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.claim-trust span {
  min-height: 68px;
  display: flex;
  align-items: center;
  padding: 13px;
  background: #0c0d0c;
  color: #d1d0ca;
  font-size: 0.69rem;
  line-height: 1.35;
}
.claim-frame-shell {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: #080908;
  box-shadow: 0 42px 110px rgba(0, 0, 0, 0.36);
}
.claim-frame-bar {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 14px 10px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: #0c0d0c;
}
.claim-view-switch { display: flex; align-items: stretch; gap: 2px; }
.claim-view-switch button {
  min-height: 40px;
  border: 0;
  padding: 0 18px;
  background: transparent;
  color: #858981;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 760;
  cursor: pointer;
}
.claim-view-switch button:hover { color: #fff; }
.claim-view-switch button.is-active {
  background: var(--yellow);
  color: #090a09;
}
.claim-connection {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #8e928a;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.claim-connection i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #55d982;
  box-shadow: 0 0 15px rgba(85, 217, 130, 0.58);
}
#venom-ticket-frame {
  display: block;
  width: 100%;
  height: 540px;
  border: 0;
  background: #080908;
  transition: height 260ms cubic-bezier(0.16, 1, 0.3, 1);
}
.claim-noscript { margin: 0; padding: 28px; color: #bbb; }
@media (max-width: 900px) {
  .claim-heading { grid-template-columns: 1fr; gap: 30px; }
  .claim-heading-copy > p { max-width: 680px; }
}
@media (max-width: 680px) {
  .claim-section { width: calc(100% - 28px); padding: 76px 0 82px; }
  .claim-heading h2 { font-size: clamp(2.75rem, 13vw, 4rem); }
  .claim-trust { grid-template-columns: 1fr; }
  .claim-trust span { min-height: 48px; }
  .claim-frame-bar { align-items: stretch; flex-direction: column-reverse; padding: 12px; }
  .claim-view-switch { display: grid; grid-template-columns: 0.72fr 1.28fr; }
  .claim-view-switch button { padding: 0 10px; font-size: 0.68rem; }
  .claim-connection { padding-left: 4px; }
  #venom-ticket-frame { height: 720px; }
}

