:root {
  --red: #b81f13;
  --red-deep: #68110d;
  --sun: #ffcf2c;
  --orange: #ff6f2f;
  --teal: #02b8a6;
  --mint: #bdf7d8;
  --ink: #111111;
  --paper: #fff7dc;
  --cream: #fff1b8;
  --white: #ffffff;
  --line: rgba(17, 17, 17, 0.13);
  --shadow: 0 22px 55px rgba(75, 16, 9, 0.18);
  --display: "Hiragino Mincho ProN", "Songti SC", "STSong", serif;
  --headline: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --body: "PingFang SC", "Avenir Next", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  background:
    linear-gradient(135deg, rgba(255, 207, 44, 0.2) 0 1px, transparent 1px 24px),
    linear-gradient(180deg, #fff8df 0%, #ffe47f 42%, #fff8df 100%);
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.topbar {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 20;
  width: min(calc(100% - 28px), 1180px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 10px 12px;
  color: var(--white);
  background: rgba(17, 17, 17, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand,
.nav-links,
.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 9px;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: 0;
}

.brand-mark {
  width: 27px;
  height: 27px;
  background:
    radial-gradient(circle at 30% 30%, #fff 0 19%, transparent 20%),
    conic-gradient(from 30deg, var(--sun), var(--orange), var(--teal), var(--sun));
  border-radius: 8px;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.18);
}

.nav-links {
  justify-content: center;
  gap: 24px;
  font-size: 0.92rem;
}

.nav-links a,
.nav-cta {
  text-decoration: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.78);
}

.nav-cta {
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  color: var(--ink);
  background: var(--sun);
  border-radius: 8px;
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(255, 207, 44, 0.28);
}

.poster-hero {
  position: relative;
  min-height: 94vh;
  padding: 86px 20px 34px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.55), transparent 18%),
    linear-gradient(130deg, var(--red-deep), var(--red) 46%, var(--orange));
}

.hero-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(1.08) contrast(1.02);
}

.poster-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(64, 10, 8, 0.78), rgba(64, 10, 8, 0.18) 44%, rgba(255, 207, 44, 0.12)),
    linear-gradient(0deg, rgba(17, 17, 17, 0.42), transparent 34%);
}

.motion-layer,
.hero-copy,
.price-ticket {
  position: relative;
  z-index: 2;
}

.motion-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}

.confetti,
.light-trail {
  position: absolute;
  display: block;
}

.confetti {
  width: 18px;
  height: 18px;
  background: var(--teal);
  transform: rotate(18deg);
  animation: drift 7s ease-in-out infinite;
}

.confetti-a {
  top: 18%;
  left: 8%;
}

.confetti-b {
  right: 16%;
  top: 22%;
  width: 13px;
  height: 13px;
  background: var(--sun);
  animation-delay: -2s;
}

.confetti-c {
  right: 8%;
  bottom: 26%;
  background: var(--mint);
  animation-delay: -4s;
}

.light-trail {
  width: 36vw;
  height: 2px;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  opacity: 0.75;
  transform: rotate(-12deg);
  animation: streak 4.5s ease-in-out infinite;
}

.trail-a {
  left: 4%;
  bottom: 28%;
}

.trail-b {
  right: 2%;
  top: 40%;
  animation-delay: -2.1s;
}

.hero-copy {
  width: min(1120px, 100%);
  align-self: end;
  justify-self: center;
  margin-top: auto;
  padding-top: 28vh;
}

.kicker {
  margin: 0 0 13px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}

.hero-copy .kicker {
  color: var(--sun);
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1,
h2 {
  font-family: var(--display);
}

h1 {
  width: fit-content;
  max-width: min(560px, 100%);
  margin: 0;
  padding: 0.12em 0.18em 0.16em;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 247, 220, 0.84), rgba(255, 238, 150, 0.74)),
    radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.72), transparent 32%);
  border: 1px solid rgba(17, 17, 17, 0.34);
  border-radius: 12px;
  box-shadow:
    5px 6px 0 rgba(2, 184, 166, 0.46),
    0 18px 40px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(3px);
  font-size: clamp(2.9rem, 5.15vw, 4.85rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.92;
  transform: rotate(-0.65deg);
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.84),
    0 5px 16px rgba(104, 17, 13, 0.14);
}

h1 span {
  display: block;
}

.hero-copy p:not(.kicker) {
  width: min(610px, 100%);
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
  line-height: 1.75;
}

.hero-track-pills {
  width: min(650px, 100%);
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.hero-track-pills span {
  padding: 8px 11px;
  color: var(--ink);
  background: rgba(255, 247, 220, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
  font-size: 0.9rem;
  font-weight: 950;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  min-height: 48px;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.button:hover,
.nav-cta:hover,
.post-card:hover,
.market-card:hover,
.text-button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--ink);
  background: var(--sun);
  box-shadow: 0 18px 40px rgba(255, 207, 44, 0.34);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.button-icon {
  width: 25px;
  height: 25px;
  display: inline-grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
}

.price-ticket {
  position: absolute;
  right: max(18px, calc((100vw - 1120px) / 2));
  bottom: 40px;
  width: 220px;
  padding: 18px;
  color: var(--ink);
  background: var(--sun);
  border: 2px solid rgba(17, 17, 17, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
  animation: ticketFloat 5s ease-in-out infinite;
}

.price-ticket span {
  font-weight: 900;
}

.price-ticket strong {
  display: block;
  margin-top: 8px;
  font-size: 2.35rem;
  line-height: 1;
}

.price-ticket strong::before {
  content: "";
}

.price-ticket p {
  margin: 10px 0 0;
  font-weight: 800;
  line-height: 1.45;
}

.ticker-band {
  overflow: hidden;
  padding: 15px 0;
  color: var(--paper);
  background: var(--ink);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 34px;
  align-items: center;
  animation: marquee 24s linear infinite;
}

.ticker-track span {
  font-size: 1.04rem;
  font-weight: 900;
  white-space: nowrap;
}

.ticker-track span::before {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  margin-right: 32px;
  background: var(--teal);
  border-radius: 50%;
  vertical-align: middle;
}

.market-section,
.guide-section,
.inspiration-section,
.lead-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  scroll-margin-top: 96px;
}

.market-section {
  padding: 74px 0 58px;
}

.section-head {
  width: min(760px, 100%);
}

.section-head h2,
.guide-copy h2,
.lead-panel h2 {
  margin: 0;
  font-weight: 760;
  letter-spacing: -0.055em;
  font-size: clamp(2.05rem, 4vw, 3.75rem);
  line-height: 1.04;
}

.inspiration-section .section-head h2 {
  font-size: clamp(2.25rem, 4vw, 3.85rem);
}

.lead-panel h2 {
  font-size: clamp(2.25rem, 4.25vw, 4rem);
}

.section-head p,
.guide-copy p,
.lead-panel p {
  margin: 15px 0 0;
  color: rgba(17, 17, 17, 0.72);
  font-size: 1rem;
  line-height: 1.75;
}

.market-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.process-board {
  margin: 30px 0 0;
  padding: 0;
  overflow: hidden;
  background: var(--red);
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.process-board img {
  display: block;
  width: 100%;
  height: auto;
}

.market-grid--compact {
  margin-top: 16px;
}

.track-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.track-card {
  position: relative;
  min-height: 210px;
  padding: 20px;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 255, 255, 0.72), transparent 26%),
    linear-gradient(135deg, rgba(255, 247, 220, 0.96), rgba(255, 207, 44, 0.82));
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.track-card:nth-child(2) {
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 255, 255, 0.72), transparent 26%),
    linear-gradient(135deg, rgba(220, 255, 247, 0.98), rgba(2, 184, 166, 0.52));
}

.track-card:nth-child(3) {
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 255, 255, 0.72), transparent 26%),
    linear-gradient(135deg, rgba(255, 239, 90, 0.94), rgba(255, 111, 47, 0.62));
}

.track-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -42px;
  width: 130px;
  height: 130px;
  background: rgba(17, 17, 17, 0.08);
  border-radius: 50%;
}

.track-card span {
  width: fit-content;
  padding: 6px 9px;
  color: var(--white);
  background: var(--ink);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 950;
}

.track-card h3 {
  margin: 44px 0 10px;
  font-family: var(--headline);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.track-card p {
  margin: 0;
  color: rgba(17, 17, 17, 0.72);
  line-height: 1.65;
}

.market-card,
.guide-step,
.post-card,
.track-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.market-card {
  position: relative;
  min-height: 220px;
  padding: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #fff;
}

.market-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 24%, rgba(255, 255, 255, 0.76), transparent 22%),
    linear-gradient(145deg, rgba(255, 207, 44, 0.88), rgba(255, 111, 47, 0.86));
}

.market-card::after {
  content: attr(data-step);
  position: absolute;
  top: 24px;
  left: 22px;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  color: rgba(17, 17, 17, 0.82);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  font-size: 2.1rem;
  font-weight: 950;
  transform: rotate(-4deg);
  opacity: 0.5;
}

.card-game::before {
  background: linear-gradient(145deg, #022f5f, #00a3ff);
}

.card-comic::before {
  background: linear-gradient(145deg, #ffef5a, #ff7a35 58%, #d51622);
}

.card-motion::before {
  background: linear-gradient(145deg, #08bba7, #ffe56c);
}

.card-label,
.market-card h3,
.market-card p {
  position: relative;
  z-index: 1;
}

.card-label {
  width: fit-content;
  padding: 6px 9px;
  color: var(--ink);
  background: var(--white);
  border-radius: 6px;
  font-weight: 900;
  font-size: 0.8rem;
}

.market-card h3 {
  margin: 16px 0 8px;
  color: var(--white);
  font-family: var(--headline);
  font-size: clamp(1.5rem, 2.05vw, 1.95rem);
  font-weight: 950;
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.market-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.62;
}

.guide-section {
  padding: 62px 0;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: center;
}

.guide-copy {
  position: sticky;
  top: 92px;
}

.guide-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.guide-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.guide-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(75, 16, 9, 0.12);
}

.guide-link-primary {
  background: var(--ink);
  color: var(--white);
}

.guide-rail {
  display: grid;
  gap: 14px;
}

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

.guide-step {
  padding: 22px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
}

.guide-step-link {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: inherit;
  text-decoration: none;
}

.guide-step-link:nth-child(1) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 245, 196, 0.9)),
    radial-gradient(circle at 72% 22%, rgba(255, 111, 47, 0.28), transparent 28%);
}

.guide-step-link:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(222, 255, 246, 0.9)),
    radial-gradient(circle at 72% 22%, rgba(2, 184, 166, 0.26), transparent 28%);
}

.guide-step span {
  color: var(--orange);
  font-weight: 900;
}

.guide-step h3 {
  margin: 8px 0;
  font-family: var(--headline);
  font-size: clamp(1.28rem, 1.75vw, 1.58rem);
  font-weight: 950;
  letter-spacing: -0.025em;
}

.guide-step p {
  margin: 0;
  color: rgba(17, 17, 17, 0.72);
  line-height: 1.7;
}

.inspiration-section {
  padding: 64px 0;
}

.inspiration-wall {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.case-board {
  margin: 30px 0 0;
  padding: 0;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  background: var(--ink);
}

.case-board img {
  display: block;
  width: 100%;
  height: auto;
}

.post-card {
  position: relative;
  min-height: 286px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  text-decoration: none;
  background:
    linear-gradient(180deg, transparent 0 35%, rgba(17, 17, 17, 0.68) 100%),
    linear-gradient(135deg, #ffffff, #ffd22e 35%, #ff6834 68%, #0d1117);
  color: var(--white);
  transform: rotate(-1.5deg);
}

.post-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  pointer-events: none;
}

.post-card::after {
  content: "打开小红书";
  position: absolute;
  top: 16px;
  right: -30px;
  width: 120px;
  padding: 6px 0;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.8);
  font-size: 0.72rem;
  font-weight: 950;
  text-align: center;
  transform: rotate(28deg);
  box-shadow: 0 10px 22px rgba(17, 17, 17, 0.14);
}

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

.post-card:nth-child(2) {
  background:
    linear-gradient(180deg, transparent 0 35%, rgba(17, 17, 17, 0.68) 100%),
    linear-gradient(135deg, #d6fff3, #04baab 42%, #034d67);
  transform: rotate(1.3deg);
}

.post-card:nth-child(3) {
  background:
    linear-gradient(180deg, transparent 0 35%, rgba(17, 17, 17, 0.68) 100%),
    linear-gradient(135deg, #fff5b8, #ff8d2c 42%, #c31318);
  transform: rotate(-0.7deg);
}

.post-card:nth-child(4) {
  background:
    linear-gradient(180deg, transparent 0 35%, rgba(17, 17, 17, 0.68) 100%),
    linear-gradient(135deg, #fefefe, #70d9ff 44%, #141414);
  transform: rotate(1.8deg);
}

.post-card:nth-child(5) {
  background:
    linear-gradient(180deg, transparent 0 35%, rgba(17, 17, 17, 0.68) 100%),
    linear-gradient(135deg, #f3ffe1, #00bf84 42%, #101820);
  transform: rotate(-1.1deg);
}

.post-card:nth-child(6) {
  background:
    linear-gradient(180deg, transparent 0 35%, rgba(17, 17, 17, 0.68) 100%),
    linear-gradient(135deg, #fff7dc, #ffcf2c 38%, #b81f13 75%);
  transform: rotate(1.2deg);
}

.post-card .post-badge {
  width: fit-content;
  padding: 6px 9px;
  color: var(--white);
  background: rgba(184, 31, 19, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 6px;
  font-weight: 950;
  font-size: 0.76rem;
  box-shadow: 0 8px 20px rgba(17, 17, 17, 0.18);
}

.post-card strong {
  margin-top: 14px;
  font-family: var(--headline);
  font-size: clamp(1.08rem, 1.55vw, 1.36rem);
  font-weight: 950;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.post-card em {
  margin-top: 7px;
  font-style: normal;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.post-chips {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
}

.post-chips b,
.post-chips i {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 0.75rem;
  line-height: 1;
}

.post-chips b {
  color: var(--ink);
  background: var(--sun);
  font-weight: 950;
}

.post-chips i {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-style: normal;
  font-weight: 850;
}

.post-card small {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  line-height: 1.4;
}

.lead-section {
  padding: 56px 0 82px;
}

.lead-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 34px;
  align-items: center;
  padding: 30px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(17, 17, 17, 0.86), rgba(104, 17, 13, 0.92)),
    radial-gradient(circle at 90% 15%, rgba(255, 207, 44, 0.32), transparent 28%);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lead-panel .kicker,
.lead-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.judge-tags {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.judge-tags span {
  padding: 8px 10px;
  color: var(--ink);
  background: var(--sun);
  border-radius: 8px;
  font-weight: 900;
  font-size: 0.88rem;
}

.support-note {
  margin-top: 15px;
  padding: 13px 14px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(2, 184, 166, 0.18);
  border: 1px solid rgba(189, 247, 216, 0.32);
  border-radius: 8px;
  line-height: 1.65;
}

.lead-copy {
  min-width: 0;
}

.lead-steps {
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
  counter-reset: lead-step;
}

.lead-steps li {
  position: relative;
  min-height: 42px;
  padding: 10px 12px 10px 50px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  line-height: 1.55;
}

.lead-steps li::before {
  counter-increment: lead-step;
  content: counter(lead-step);
  position: absolute;
  left: 12px;
  top: 10px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--sun);
  border-radius: 50%;
  font-weight: 950;
}

.lead-buttons {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.text-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.qr-card {
  position: relative;
  padding: 18px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 247, 220, 0.98), rgba(255, 207, 44, 0.9)),
    radial-gradient(circle at 82% 20%, rgba(2, 184, 166, 0.34), transparent 30%);
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.qr-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(17, 17, 17, 0.22);
  border-radius: 8px;
  pointer-events: none;
}

.qr-card-head {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
}

.qr-card-head span {
  width: fit-content;
  padding: 5px 8px;
  color: var(--white);
  background: var(--red);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 950;
}

.qr-card-head strong {
  font-family: var(--display);
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.qr-frame {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  padding: 12px;
  background: var(--white);
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 8px;
  box-shadow: inset 0 0 0 6px rgba(255, 207, 44, 0.18);
}

.qr-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.qr-caption {
  position: relative;
  z-index: 1;
  margin: 13px 0 0;
  color: rgba(17, 17, 17, 0.78) !important;
  font-weight: 850;
  line-height: 1.5;
}

.qr-meta {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.qr-meta span {
  padding: 7px 9px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(18deg);
  }
  50% {
    transform: translate3d(12px, -18px, 0) rotate(54deg);
  }
}

@keyframes streak {
  0%,
  100% {
    opacity: 0;
    transform: translateX(-30px) rotate(-12deg);
  }
  45%,
  60% {
    opacity: 0.75;
  }
  80% {
    transform: translateX(60px) rotate(-12deg);
  }
}

@keyframes ticketFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}

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

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

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: auto auto;
  }

  .nav-links {
    display: none;
  }

  .poster-hero {
    min-height: 88vh;
  }

  .hero-copy {
    padding-top: 34vh;
  }

  .price-ticket {
    position: relative;
    right: auto;
    bottom: auto;
    justify-self: start;
    width: min(260px, 100%);
    margin-top: 18px;
  }

  .market-grid,
  .track-grid,
  .inspiration-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guide-section,
  .lead-panel {
    grid-template-columns: 1fr;
  }

  .guide-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  .topbar {
    top: 10px;
    width: calc(100% - 20px);
    gap: 10px;
  }

  .brand span:last-child {
    display: none;
  }

  .nav-cta {
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.88rem;
  }

  .poster-hero {
    min-height: 92vh;
    padding: 70px 14px 26px;
  }

  .hero-poster {
    height: calc(100% + 44px);
    object-position: 58% center;
    transform: translateY(18px);
  }

  .poster-hero::after {
    background:
      linear-gradient(0deg, rgba(64, 10, 8, 0.86), rgba(64, 10, 8, 0.08) 65%),
      linear-gradient(90deg, rgba(64, 10, 8, 0.42), transparent);
  }

  .hero-copy {
    padding-top: 43vh;
  }

  h1 {
    font-size: 2.9rem;
    letter-spacing: -0.055em;
    box-shadow:
      6px 6px 0 rgba(2, 184, 166, 0.72),
      0 18px 38px rgba(0, 0, 0, 0.32);
  }

  .section-head h2,
  .guide-copy h2,
  .lead-panel h2,
  .inspiration-section .section-head h2 {
    font-size: clamp(2.15rem, 10vw, 2.9rem);
    line-height: 1.03;
  }

  .post-card strong {
    font-size: 1.2rem;
  }

  .hero-copy p:not(.kicker) {
    font-size: 1rem;
  }

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

  .lead-buttons {
    align-items: stretch;
  }

  .market-section,
  .guide-section,
  .inspiration-section,
  .lead-section {
    width: min(100% - 24px, 1180px);
  }

  .market-grid,
  .guide-rail--simple,
  .track-grid,
  .inspiration-wall {
    grid-template-columns: 1fr;
  }

  .case-board {
    margin-top: 22px;
  }

  .market-card {
    min-height: 250px;
  }

  .lead-panel {
    padding: 20px;
  }
}
