/* hcworkshop page styles v2. Tokens live in tokens.css. */

@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../assets/fonts/plus-jakarta-sans-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ============ Base ============ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img, video, iframe { max-width: 100%; display: block; }
img { height: auto; }
[hidden] { display: none !important; }
h1, h2, h3, p, ul, figure, blockquote { margin: 0; }
button { font: inherit; color: inherit; }
::selection { background: var(--gold); color: var(--text-on-gold); }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.narrow { width: 100%; max-width: var(--narrow); margin-inline: auto; }
@media (min-width: 768px) { .container { padding-inline: var(--space-5); } }
/* One left edge for the whole page: prose, card and lists hang off the container's left edge like the hero copy. */
@media (min-width: 800px) { .narrow { margin-inline: 0; } }

.section { padding-block: var(--space-7); position: relative; }
.section + .section { border-top: 1px solid var(--line); }
.band { background: var(--bg-elevated); }
@media (min-width: 1024px) { .section { padding-block: var(--space-8); } }

/* ============ Type ============ */
h1, h2 { font-family: var(--font-display); font-weight: var(--fw-extrabold); line-height: var(--lh-heading); letter-spacing: var(--track-display); text-wrap: balance; color: var(--gold-text); }
h2 { font-size: var(--fs-h2); }
.prose p, .list li, .caption strong, .card__quote p { text-wrap: pretty; }
.prose { display: grid; gap: var(--space-3); }

/* Section heading with a drawn gold rule. The rule is the only decoration in the system. */
.rule-heading { position: relative; padding-bottom: var(--space-3); margin-bottom: var(--space-5); }
.rule-heading::after { content: ""; position: absolute; left: 0; bottom: 0; width: 72px; height: 2px; background: var(--gold); transform-origin: left; }
.rule-heading--center::after { left: 50%; translate: -50% 0; transform-origin: center; }
.js .rule-heading.reveal::after { transform: scaleX(0); transition: transform var(--dur-slow) var(--ease-out) 200ms; }
.js .rule-heading.reveal.in::after { transform: scaleX(1); }

/* ============ Placeholder badge (staging only) ============ */
mark.ph { background: transparent; color: inherit; }
html[data-env="staging"] mark.ph { outline: 1px dashed #e0a92a; outline-offset: 3px; border-radius: 2px; }
html[data-env="staging"] mark.ph::before {
  content: "PLACEHOLDER"; display: inline-block; vertical-align: 2px; margin-right: 8px; padding: 1px 6px; border-radius: 2px;
  background: #e0a92a; color: #000; font-size: 10px; font-weight: var(--fw-bold); letter-spacing: 0.1em; line-height: 1.5;
}

/* ============ Header / offer rail ============ */
.top { position: fixed; top: 0; left: 0; right: 0; z-index: var(--z-sticky); padding-block: 12px; display: flex; align-items: center; background: rgba(5, 5, 5, 0.92); border-bottom: 1px solid var(--line); backdrop-filter: blur(10px); transform: translateY(-100%); transition: transform var(--dur) var(--ease-out); }
.top__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); }
.top__logo { width: 48px; height: 48px; flex: none; }
.top__ticket { display: none; }
.top.is-fixed { transform: none; }
@media (min-width: 800px) {
  .top__ticket { display: flex; gap: var(--space-3); margin: 0; font-weight: var(--fw-bold); color: var(--gold-text); font-size: var(--fs-small); white-space: nowrap; opacity: 0; transform: translateY(-6px); transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out); }
  .btn--rail { display: inline-flex; width: auto; min-height: 44px; padding: 10px 24px; opacity: 0; transform: translateY(-6px); transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out), box-shadow var(--dur-fast) var(--ease-soft); }
  .btn--rail .btn__label { font-size: 1rem; }
  .top.is-fixed .top__ticket, .top.is-fixed .btn--rail { opacity: 1; transform: none; }
}
@media (max-width: 1023px) { .top__ticket { display: none; } }
@media (max-width: 799px) { .top .btn--rail { display: none; } .top { overflow: hidden; } }

/* ============ Hero ============ */
.hero {
  position: relative;
  padding-block: var(--space-4) var(--space-8);
  background:
    radial-gradient(70% 45% at 50% 0%, rgba(201, 162, 74, 0.10) 0%, transparent 70%),
    radial-gradient(80% 60% at 50% 10%, #131210 0%, transparent 60%),
    var(--bg);
  overflow: clip;
}
.hero__top { display: grid; justify-items: center; text-align: center; gap: 12px; margin-bottom: var(--space-5); }
.hero__top > * { min-width: 0; max-width: 100%; }
.hero__logo { width: 44px; height: 44px; }
.hero__grid { display: grid; gap: var(--space-6); align-items: start; }
.hero__copy { display: grid; gap: var(--space-4); text-align: center; justify-items: center; }
.hero__copy > * { min-width: 0; max-width: 100%; }
.hero__media { display: grid; justify-items: center; min-width: 0; gap: var(--space-4); }
.hero__media > * { min-width: 0; max-width: 100%; }
@media (min-width: 800px) {
  .hero { padding-block: var(--space-3) var(--space-8); }
  .hero__top { margin-bottom: var(--space-4); }
  .hero__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: var(--space-7); align-items: start; }
  .hero__copy { text-align: left; justify-items: start; gap: 18px; }
  .hero .sub { line-height: 1.5; }
}
@media (min-width: 1200px) { .hero__grid { gap: var(--space-8); } }

.eyebrow {
  display: inline-block; padding: 7px 16px; border: 1px solid var(--gold); border-radius: var(--radius-pill);
  color: var(--gold-text); font-size: var(--fs-eyebrow); font-weight: var(--fw-medium); letter-spacing: 0.01em;
}
.headline {
  font-size: var(--fs-hero); max-width: min(34ch, 100%); line-height: 1.12;
  background-image: var(--gold-gradient); -webkit-background-clip: text; background-clip: text; color: transparent;
  padding-bottom: 0.06em;
}
html[data-variant="b"] .headline { max-width: min(30ch, 100%); }
.sub { max-width: 60ch; color: var(--text); }

@media (min-width: 1440px) { .hero__grid { grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: var(--space-7); } }

/* Signature: the ticket strip. Date, places, price on one gold-ruled line. */
.ticket {
  position: relative; display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-1) var(--space-4);
  padding: var(--space-3) 0; width: 100%; max-width: 640px;
  font-weight: var(--fw-bold); color: var(--gold-text); font-size: var(--fs-body);
}
.ticket::before, .ticket::after { content: ""; position: absolute; left: 0; right: 0; height: 1px; background: var(--gold); transform-origin: center; }
.ticket::before { top: 0; }
.ticket::after { bottom: 0; }
@media (min-width: 800px) { .ticket { justify-content: flex-start; max-width: none; gap: var(--space-1) var(--space-3); font-size: 1rem; } .ticket::before, .ticket::after { transform-origin: left; } }

@media (min-width: 1440px) { .ticket { font-size: 1.0625rem; } }

/* ============ Video (click to play) ============ */
.video { width: 100%; min-width: 0; }
.video__play {
  position: relative; display: block; width: 100%; min-width: 0; padding: 0; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; background: #000; cursor: pointer;
  transition: border-color var(--dur-fast) var(--ease-soft);
}
.video__play:hover, .video__play:focus-visible { border-color: var(--gold); }
.video__play:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }
.video__poster { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.video__icon {
  position: absolute; left: 50%; top: 50%; translate: -50% -50%;
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--gold-metal); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transition: transform var(--dur-fast) var(--ease-soft), box-shadow var(--dur-fast) var(--ease-soft);
}
.video__play:hover .video__icon, .video__play:focus-visible .video__icon { transform: scale(1.06); box-shadow: 0 10px 28px rgba(0, 0, 0, 0.6), 0 0 0 6px rgba(201, 162, 74, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.45); }
.video__icon::after { content: ""; position: absolute; left: 27px; top: 21px; border-left: 20px solid var(--text-on-gold); border-top: 13px solid transparent; border-bottom: 13px solid transparent; }
.video video, .video iframe { width: 100%; aspect-ratio: 16 / 9; border: 0; border-radius: var(--radius); background: #000; animation: fade-in var(--dur) var(--ease-out) both; }
.video__frame { position: relative; width: 100%; border-radius: var(--radius); overflow: hidden; }
.video__frame video { display: block; object-fit: cover; }
.video__sound {
  position: absolute; left: 50%; bottom: 14px; translate: -50% 0; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px; min-height: 48px; padding: 12px 20px 12px 16px;
  border: 0; border-radius: var(--radius-pill); background: var(--gold-metal); color: var(--text-on-gold);
  font-weight: var(--fw-bold); font-size: var(--fs-small); cursor: pointer;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset, 0 8px 24px rgba(0, 0, 0, 0.6);
  animation: rise-in var(--dur) var(--ease-out) 900ms both;
}
.video__sound::before { content: ""; width: 14px; height: 14px; background: currentColor; clip-path: polygon(0 35%, 30% 35%, 60% 5%, 60% 95%, 30% 65%, 0 65%); }
.video__sound:hover { background: var(--gold-metal-hover); }
.video__sound:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }
@keyframes rise-in { from { opacity: 0; translate: -50% 10px; } to { opacity: 1; translate: -50% 0; } }
.video--hero { position: relative; }
.video--hero::before { content: ""; position: absolute; inset: 10% -6% -10% -6%; background: radial-gradient(60% 60% at 50% 55%, rgba(201, 162, 74, 0.28) 0%, rgba(201, 162, 74, 0.06) 45%, transparent 72%); filter: blur(24px); z-index: -1; pointer-events: none; }
.video--hero .video__play { box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7); border: 0; }

/* ============ Countdown ============ */
.countdown { display: flex; gap: var(--space-4); justify-content: center; }
.countdown__unit { display: grid; justify-items: center; min-width: 60px; }
.countdown__num { font-size: var(--fs-countdown); font-weight: var(--fw-extrabold); line-height: 1; font-variant-numeric: tabular-nums; color: var(--text); letter-spacing: -0.02em; }
.countdown__label { font-size: var(--fs-countdown-label); font-weight: var(--fw-medium); color: var(--gold); margin-top: 8px; letter-spacing: 0.08em; text-transform: uppercase; }
.countdown__num.tick { animation: tick var(--dur-fast) var(--ease-out); }
@keyframes tick { from { transform: translateY(-6px); opacity: 0.4; } to { transform: none; opacity: 1; } }
.closed-notice { font-size: var(--fs-h3); font-weight: var(--fw-bold); color: var(--gold-text); max-width: 30ch; }

/* ============ CTA ============ */
.cta { display: grid; justify-items: center; gap: var(--space-3); width: 100%; }
@media (min-width: 800px) { .hero .cta { justify-items: start; } }
.btn {
  position: relative; display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; text-align: center;
  min-height: var(--btn-min-height); padding: 14px var(--btn-pad-x); line-height: 1;
  border: 0; border-radius: var(--radius-pill); cursor: pointer; text-decoration: none; isolation: isolate; overflow: hidden;
  transition: transform var(--dur-fast) var(--ease-soft), box-shadow var(--dur-fast) var(--ease-soft), background var(--dur-fast) var(--ease-soft);
}
.btn--cta {
  width: 100%; max-width: 520px; padding: 15px var(--space-6) 14px;
  background: var(--gold-metal); color: var(--btn-fg);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset, 0 -2px 0 rgba(0, 0, 0, 0.18) inset, 0 6px 14px -4px rgba(0, 0, 0, 0.7), 0 12px 40px -10px rgba(201, 162, 74, 0.45);
}
.btn--cta:hover { background: var(--gold-metal-hover); transform: translateY(-2px); box-shadow: 0 1px 0 rgba(255, 255, 255, 0.55) inset, 0 -2px 0 rgba(0, 0, 0, 0.18) inset, 0 10px 18px -6px rgba(0, 0, 0, 0.7), 0 18px 48px -10px rgba(201, 162, 74, 0.55); }
.btn--cta:active { transform: translateY(1px); box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset, 0 2px 0 rgba(0, 0, 0, 0.25) inset, 0 3px 8px -3px rgba(0, 0, 0, 0.7); }
.btn:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }
.btn__label { display: block; font-size: var(--fs-cta); font-weight: var(--fw-extrabold); line-height: 1.15; letter-spacing: -0.005em; }
.btn__sub { display: block; font-size: 0.875rem; font-weight: var(--fw-bold); line-height: 1.3; color: #2b230f; letter-spacing: 0; text-wrap: balance; }
/* Sheen sweep: the one attention motion, on the hero CTA and the sticky bar only */
.btn--sheen::after {
  content: ""; position: absolute; top: -20%; bottom: -20%; left: -60%; width: 40%; z-index: 1; pointer-events: none;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0) 35%, rgba(255, 255, 255, 0.55) 50%, rgba(255, 255, 255, 0) 65%, transparent 100%);
  transform: skewX(-12deg); animation: sheen 6s var(--ease-soft) 1.6s infinite;
}
@keyframes sheen { 0% { left: -60%; } 18% { left: 130%; } 100% { left: 130%; } }
.scarcity { font-size: var(--fs-small); color: var(--text-muted); }
.btn--ghost { background: transparent; color: var(--gold-text); border: 1px solid var(--gold); padding-inline: var(--space-5); font-weight: var(--fw-bold); font-size: var(--fs-body); }
.btn--ghost:hover { background: rgba(201, 162, 74, 0.12); transform: translateY(-1px); }

/* ============ Ben Knight card ============ */
.section--card { padding-block: var(--space-7); border-top: 1px solid var(--line); }
@media (min-width: 1024px) { .section--card { padding-block: var(--space-8); } .hero { padding-bottom: var(--space-8); } }
.card {
  background: var(--bg-card); color: var(--text-on-card); border-radius: var(--radius-card);
  padding: var(--space-5) var(--space-4); max-width: var(--narrow); margin-inline: auto; text-align: center;
  display: grid; gap: var(--space-3); justify-items: center;
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.9);
}
@media (min-width: 768px) { .card { padding: var(--space-6) var(--space-7); } }
.card__stars { color: var(--gold-deep); font-size: 18px; display: flex; gap: 4px; }
.js .card__stars.reveal span { opacity: 0; transform: translateY(6px) scale(0.8); transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out); transition-delay: calc(var(--i, 0) * 70ms); }
.js .card__stars.reveal.in span { opacity: 1; transform: none; }
.card__quote p { font-size: var(--fs-h3); line-height: 1.45; color: var(--text-on-card); font-weight: var(--fw-medium); }
.card__who { display: grid; justify-items: center; gap: var(--space-2); font-size: var(--fs-small); color: var(--text-on-card-muted); }
.card__face { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.card__name strong { color: var(--text-on-card); }

/* ============ Lists ============ */
.list { list-style: none; padding: 0; display: grid; gap: var(--space-3); }
.list li { position: relative; padding-left: 28px; }
.list li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 10px; height: 10px; background: var(--gold); transform: rotate(45deg); }
.lead { margin-bottom: var(--space-3); color: var(--text); }

/* ============ Offer band: agenda + stack ============ */
.offer { display: grid; gap: var(--space-7); }
@media (min-width: 1024px) { .offer { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: var(--space-8); align-items: start; } }
.offer__stack { border: 1px solid var(--gold); border-radius: var(--radius-card); padding: var(--space-5) var(--space-4); background: var(--bg-panel); display: grid; gap: var(--space-4); }
@media (min-width: 768px) { .offer__stack { padding: var(--space-6); } }
.offer__stack .rule-heading { margin-bottom: 0; }
.offer__stack .cta { justify-items: start; }

/* ============ Proof grid ============ */
.grid--proof { display: grid; gap: var(--space-6) var(--space-5); grid-template-columns: 1fr; }
@media (min-width: 720px) { .grid--proof { grid-template-columns: 1fr 1fr; } }
.grid > * { min-width: 0; }
.caption { margin-top: var(--space-3); display: grid; gap: 4px; }
.caption strong { font-size: var(--fs-h3); line-height: 1.3; color: var(--text); font-weight: var(--fw-bold); }
.caption .who { color: var(--gold); font-size: var(--fs-small); font-weight: var(--fw-medium); }
.cta--cell { border: 1px solid var(--gold); border-radius: var(--radius-card); background: var(--bg-panel); padding: var(--space-6) var(--space-5); align-content: center; align-self: stretch; min-height: 240px; }
.cta--cell .btn--cta { max-width: 100%; }
.cta--cell .scarcity { text-align: center; }

/* ============ Bio ============ */
.bio { display: grid; gap: var(--space-5); align-items: center; }
.bio__photo { width: 200px; height: 200px; border-radius: 50%; object-fit: cover; justify-self: center; border: 2px solid var(--gold); box-shadow: 0 0 0 10px rgba(201, 162, 74, 0.08); }
@media (min-width: 768px) { .bio { grid-template-columns: 260px minmax(0, 1fr); gap: var(--space-7); } .bio__photo { width: 260px; height: 260px; } }

/* ============ Collapsed proof ============ */
.section--more .rule-heading { margin-bottom: var(--space-4); }
.more { margin-top: var(--space-6); display: grid; gap: var(--space-7); }
.grid--wall { display: grid; gap: var(--space-4); grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.shot img { width: 100%; height: auto; border-radius: var(--radius); border: 1px solid var(--line-soft); }
.shot figcaption { margin-top: var(--space-2); font-size: var(--fs-small); color: var(--text-muted); }

/* ============ Guarantee ============ */
.guarantee { display: grid; justify-items: center; text-align: center; gap: var(--space-4); }
.guarantee p { max-width: 46ch; font-size: var(--fs-h3); line-height: 1.45; }
.guarantee__badge { width: 150px; height: auto; filter: drop-shadow(0 12px 30px rgba(201, 162, 74, 0.25)); }

/* ============ Footer ============ */
.footer { padding-block: var(--space-6) calc(var(--space-6) + 80px); border-top: 1px solid var(--line); font-size: var(--fs-small); color: var(--text-muted); text-align: center; }
.footer .container { display: grid; gap: var(--space-3); }
.footer__legal { max-width: 70ch; margin-inline: auto; }
.footer a { color: var(--text-muted); text-underline-offset: 3px; display: inline-block; padding: 14px 8px; }
.footer a:hover, .footer a:focus-visible { color: var(--gold-text); }
@media (min-width: 768px) { .footer { padding-bottom: var(--space-6); } }

/* ============ Sticky CTA (mobile) ============ */
.sticky {
  position: fixed; inset: auto 0 0 0; z-index: var(--z-sticky);
  padding: var(--space-2) var(--gutter) calc(var(--space-2) + env(safe-area-inset-bottom));
  background: rgba(5, 5, 5, 0.92); border-top: 1px solid var(--line);
  animation: rise var(--dur) var(--ease-out) both;
}
@keyframes rise { from { transform: translateY(100%); } to { transform: none; } }
.btn--sticky { max-width: none; min-height: 52px; padding-block: 12px; }
@media (min-width: 1024px) { .sticky { display: none !important; } }

/* ============ Modal ============ */
.modal { padding: 0; width: min(100%, 560px); max-height: 100dvh; background: var(--bg-panel); color: var(--text); border-radius: var(--radius-card); border: 1px solid var(--line); }
.modal::backdrop { background: rgba(0, 0, 0, 0.82); }
.modal[open] { animation: modal-in var(--dur) var(--ease-out) both; }
@keyframes modal-in { from { opacity: 0; transform: translateY(16px) scale(0.98); } to { opacity: 1; transform: none; } }
.modal__bar { display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); padding: var(--space-3) var(--space-4); border-bottom: 1px solid var(--line); }
.modal__title { font-size: var(--fs-h3); color: var(--gold-text); }
.modal__close { width: 48px; height: 48px; border: 0; background: transparent; font-size: 28px; line-height: 1; cursor: pointer; border-radius: 50%; }
.modal__close:hover { background: rgba(255, 255, 255, 0.08); }
.modal__close:focus-visible { outline: 3px solid var(--focus); }
.modal__body { padding: var(--space-4); }
.waitlist { display: grid; gap: var(--space-3); }
.field { display: grid; gap: 6px; font-weight: var(--fw-medium); }
.field input { min-height: 52px; padding: 12px 14px; border-radius: var(--radius); border: 1px solid var(--line); background: #000; color: var(--text); font-size: var(--fs-body); }
.field input:focus-visible { outline: 3px solid var(--focus); outline-offset: 1px; }
.waitlist__note { min-height: 1.5em; color: var(--gold-text); font-size: var(--fs-small); }
.waitlist__privacy { font-size: var(--fs-small); color: var(--text-muted); }
@media (max-width: 599px) { .modal { width: 100%; height: 100dvh; max-width: none; border-radius: 0; margin: 0; border: 0; } }

/* ============ Closed state ============ */
body[data-state="closed"] [data-price] { display: none !important; }
body[data-state="closed"] .countdown { display: none; }

/* ============ Motion ============ */
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes enter { from { opacity: 0; transform: translateY(22px); filter: blur(6px); } to { opacity: 1; transform: none; filter: blur(0); } }
@keyframes draw-x { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* Hero entrance: staggered, runs once on load. Default state is visible; the animation only adds the approach. */
.js .hero__top > *, .js .hero__copy > *, .js .hero__media > * { animation: enter var(--dur-slow) var(--ease-out) both; }
.js .hero__top > :nth-child(1) { animation-delay: 0ms; }
.js .hero__top > :nth-child(2) { animation-delay: 90ms; }
.js .hero__top > :nth-child(3) { animation-delay: 180ms; }
.js .hero__copy > :nth-child(1) { animation-delay: 360ms; }
.js .hero__copy > :nth-child(2) { animation-delay: 460ms; }
.js .hero__copy > :nth-child(3) { animation-delay: 560ms; }
.js .hero__copy > :nth-child(4) { animation-delay: 660ms; }
.js .hero__media > :nth-child(1) { animation-delay: 420ms; }
.js .hero__media > :nth-child(2) { animation-delay: 620ms; }
.js .ticket::before, .js .ticket::after { animation: draw-x var(--dur-slow) var(--ease-out) 520ms both; }

/* Scroll reveals: content is visible by default; JS adds .reveal, then .in when it enters the viewport. */
.js .reveal { opacity: 0; transform: translateY(20px); filter: blur(4px); transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out), filter var(--dur) var(--ease-out); transition-delay: calc(var(--i, 0) * 80ms); }
.js .reveal.in { opacity: 1; transform: none; filter: blur(0); }

@media (prefers-reduced-motion: reduce) {
  .js .hero__top > *, .js .hero__copy > *, .js .hero__media > *, .js .ticket::before, .js .ticket::after, .btn--sheen::after, .countdown__num.tick, .modal[open], .sticky, .video video, .video iframe { animation: none !important; }
  .js .reveal { opacity: 1; transform: none; filter: none; transition: none; }
  .js .rule-heading.reveal::after { transform: none; transition: none; }
  .btn, .video__icon, .video__play { transition: none; }
}
