/* ============ BYULLA v2 — Sequel layout system: blackbox gallery, lit by cinema ============ */
:root {
  --void: #000000;
  --carbon: #1c1c1c;
  --graphite: #333333;
  --smoke: #999999;
  --bone: #c0c0c0;
  --linen: #f5f0e8;
  --chalk: #ffffff;
  --gold: #c9a84c;
  --pink: #f2a7bb;
  --accent: var(--gold);
  --hairline: #2a2a2a;
  --max: 1280px;
  --radius-card: 10px;
  --radius-pill: 9999px;
  --shadow-card: rgba(0, 0, 0, 0.35) 0px 10px 30px 0px, rgba(255, 255, 255, 0.08) 0px 1px 0px 0px inset;
  --sans: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --serif-en: 'Playfair Display', 'Nanum Myeongjo', serif;
  --serif-kr: 'Nanum Myeongjo', serif;
}
html[data-accent="mono"] { --accent: var(--chalk); }

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: var(--void);
  color: var(--chalk);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.8;
  letter-spacing: -0.01em;
  word-break: keep-all;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: rgba(201, 168, 76, 0.35); color: var(--chalk); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ---------- type ---------- */
.meta {
  font-weight: 500;
  white-space: nowrap;
  font-size: 11.5px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--smoke);
}
.meta .star { color: var(--accent); margin-right: 10px; }
.meta .kmark { color: var(--accent); font-weight: 700; }
.display-kr {
  font-family: var(--serif-kr);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.01em;
  color: var(--chalk);
  text-wrap: balance;
}
.display-kr em { font-style: normal; color: var(--accent); }
.copy {
  font-weight: 300;
  font-size: 16.5px;
  color: var(--bone);
  max-width: 560px;
  text-wrap: pretty;
}

/* ---------- pills ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-weight: 500; font-size: 15px; letter-spacing: -0.01em;
  border-radius: var(--radius-pill);
  padding: 15px 28px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}
.pill-primary {
  background: var(--chalk); color: var(--void);
  border: 1px solid var(--chalk);
  box-shadow: rgba(0, 0, 0, 0.15) 0px 4px 20px 0px;
}
.pill-primary:hover { background: var(--linen); border-color: var(--linen); }
.pill-ghost {
  background: transparent; color: var(--chalk);
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.pill-ghost:hover { border-color: var(--chalk); }
.pill-ghost.small { padding: 10px 20px; font-size: 13.5px; }

/* badge */
.badge {
  display: inline-flex; align-items: center;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: rgba(255, 255, 255, 0.08) 0px 1px 0px 0px inset;
  border-radius: var(--radius-pill);
  padding: 6px 13px;
  font-weight: 500; font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--chalk);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.badge.gold { color: var(--accent); }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 30;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  padding: 0 clamp(20px, 4vw, 40px);
  transition: background 0.45s ease, height 0.45s ease;
}
.nav.scrolled {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  height: 60px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 400; font-size: 19px; letter-spacing: 0.02em;
  color: var(--chalk);
}
.nav-logo .star { color: var(--accent); font-size: 13px; }
.nav-logo .kr { font-family: var(--serif-kr); font-size: 12.5px; color: var(--smoke); letter-spacing: 0.3em; white-space: nowrap; margin-left: 2px; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: flex-end;
  overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: saturate(0.7) brightness(0.7) contrast(1.02);
}
.hero-bg {
  position: absolute; inset: -6% 0;
  background-image: url('assets/space-night.jpg');
  background-size: cover;
  background-position: center 38%;
  filter: saturate(0.55) brightness(0.62) contrast(1.04);
  will-change: transform;
}
.hero-scrim {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.30) 0%, rgba(0, 0, 0, 0.20) 40%, rgba(0, 0, 0, 0.55) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.25) 40%, rgba(0, 0, 0, 0.45) 72%, #000000 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  display: flex;
  justify-content: flex-end;
}
.hero-content {
  display: flex; flex-direction: column; align-items: flex-start; gap: 30px;
  text-align: left;
  max-width: 640px;
}
.hero-sub { margin-right: 0; }
.hero-title {
  font-size: clamp(46px, 7.6vw, 104px);
  line-height: 1.24;
  white-space: nowrap;
}
.hero-sub {
  font-weight: 300; font-size: clamp(15px, 1.6vw, 18px);
  color: var(--bone);
  max-width: 560px;
}
.hero-cue {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  font-weight: 500; font-size: 10.5px; letter-spacing: 0.4em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.hero-cue::after {
  content: ""; width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
}

/* ---------- sections ---------- */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(96px, 13vh, 150px) clamp(20px, 4vw, 40px);
}
.centered-block {
  display: flex; flex-direction: column; align-items: center; gap: 28px;
  text-align: center;
}
.centered-block .display-kr { font-size: clamp(34px, 4.6vw, 60px); }
.centered-block .copy { margin: 0 auto; }

/* ---------- pillars ---------- */
.pillars {
  margin-top: clamp(56px, 8vh, 90px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 64px);
  border-top: 1px solid var(--hairline);
  padding-top: clamp(36px, 5vh, 56px);
}
@media (max-width: 860px) { .pillars { grid-template-columns: 1fr; } }
.pillar { display: flex; flex-direction: column; gap: 16px; }
.pillar .meta { color: var(--accent); letter-spacing: 0.26em; }
.pillar h3 {
  font-family: var(--serif-kr); font-weight: 700;
  font-size: 24px; color: var(--chalk);
}
.pillar h3 .en { font-family: var(--serif-en); font-style: italic; font-weight: 500; color: var(--smoke); font-size: 16px; margin-left: 10px; letter-spacing: 0; }
.pillar p { font-weight: 300; font-size: 15px; color: var(--smoke); text-wrap: pretty; }

/* ---------- editorial image cards ---------- */
.card-pair {
  margin-top: clamp(48px, 7vh, 72px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 860px) { .card-pair { grid-template-columns: 1fr; } }
.ed-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--carbon);
  box-shadow: var(--shadow-card);
  min-height: 460px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.ed-card .photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 42%;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.ed-card:hover .photo { transform: scale(1.04); }
.ed-card .scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.18) 46%, rgba(0, 0, 0, 0.05) 100%);
}
.ed-card .badge { position: absolute; top: 18px; right: 18px; z-index: 3; }
.ed-card .card-meta {
  position: relative; z-index: 2;
  padding: 26px 28px;
  display: flex; flex-direction: column; gap: 8px;
}
.ed-card .card-title {
  font-family: var(--serif-kr); font-weight: 700;
  font-size: 26px; line-height: 1.3; color: var(--chalk);
}
.ed-card .card-title .en { display: block; font-family: var(--serif-en); font-style: italic; font-weight: 500; font-size: 15px; color: var(--bone); margin-top: 6px; letter-spacing: 0.04em; }
.ed-card .card-sub { font-weight: 300; font-size: 14px; color: var(--bone); max-width: 40ch; }
.ed-card .card-addr { font-weight: 300; font-size: 12.5px; color: var(--smoke); letter-spacing: 0.03em; }

/* coming soon teaser */
.ed-card.teaser { align-items: center; justify-content: center; }
.ed-card.teaser .photo {
  filter: blur(28px) brightness(0.4) saturate(0.6);
  transform: scale(1.15);
}
.ed-card.teaser:hover .photo { transform: scale(1.15); }
.teaser-inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  text-align: center; padding: 30px;
}
.teaser-inner .star-row { color: var(--accent); font-size: 16px; letter-spacing: 0.55em; text-indent: 0.55em; }
.teaser-inner .t {
  font-family: var(--serif-en); font-style: italic; font-weight: 500;
  font-size: 30px; color: var(--chalk);
  white-space: nowrap;
}
.teaser-inner p { font-weight: 300; font-size: 14.5px; color: var(--bone); }

/* ---------- lumia mockups ---------- */
.lumia-gallery {
  margin-top: clamp(48px, 7vh, 72px);
  display: grid;
  grid-template-columns: 1.52fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  min-height: 560px;
}
@media (max-width: 860px) {
  .lumia-gallery { grid-template-columns: 1fr; grid-template-rows: auto; min-height: 0; }
  .lumia-gallery .g-cell { height: 320px; }
}
.g-cell {
  position: relative;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  background: var(--carbon);
}
.g-cell.main { grid-row: span 2; }
.g-cell image-slot { width: 100%; height: 100%; display: block; }
.g-cell .badge { position: absolute; top: 16px; left: 16px; z-index: 3; pointer-events: none; }
.lumia-cta { margin-top: clamp(44px, 6vh, 64px); display: flex; justify-content: center; }

/* ---------- philosophy panel (deep gray) ---------- */
.linen-panel {
  background: #242424;
  color: var(--chalk);
  padding: clamp(110px, 18vh, 200px) 24px;
  text-align: center;
}
.linen-panel .star-mark { color: var(--accent); font-size: 20px; display: block; margin-bottom: 34px; }
.linen-panel blockquote {
  font-family: var(--serif-kr);
  font-weight: 700;
  font-size: clamp(28px, 4.2vw, 54px);
  line-height: 1.55;
  max-width: 24ch;
  margin: 0 auto;
  color: var(--chalk);
  text-wrap: balance;
}
.linen-panel blockquote em { font-style: normal; color: var(--accent); }
.linen-panel .attribution {
  margin-top: 36px;
  font-family: var(--serif-en); font-style: italic;
  font-size: 14.5px; letter-spacing: 0.14em;
  color: var(--smoke);
}

/* memory mosaic gallery */
.memory-grid {
  max-width: var(--max);
  margin: clamp(64px, 10vh, 110px) auto 0;
  padding: 0 clamp(20px, 4vw, 40px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(120px, 13vw, 180px);
  grid-auto-flow: dense;
  gap: 4px;
}
.memory-grid image-slot {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 4px 20px 0px;
  filter: saturate(0.6) brightness(0.78) contrast(1.04);
}
.memory-grid .m-sq   { grid-column: span 1; grid-row: span 1; }
.memory-grid .m-wide { grid-column: span 2; grid-row: span 1; }
.memory-grid .m-tall { grid-column: span 1; grid-row: span 2; }
@media (max-width: 860px) {
  .memory-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: clamp(130px, 30vw, 200px); gap: 4px; }
  .memory-grid .m-wide { grid-column: span 2; }
  .memory-grid .m-tall { grid-column: span 1; grid-row: span 2; }
}

/* ---------- lumi mascot section ---------- */
.lumi-hero .hanja {
  font-family: var(--serif-kr);
  font-weight: 400;
  font-size: 0.42em;
  color: var(--smoke);
  margin-left: 12px;
  vertical-align: middle;
  letter-spacing: 0.04em;
}
.lumi-name { font-size: clamp(40px, 5.4vw, 74px); white-space: nowrap; }
.lumi-role {
  font-family: var(--serif-kr); font-weight: 700;
  font-size: clamp(17px, 2vw, 22px);
  color: var(--chalk);
  text-wrap: balance;
}
.lumi-tag {
  font-family: var(--serif-en); font-style: italic; font-weight: 500;
  font-size: clamp(15px, 1.7vw, 19px);
  letter-spacing: 0.08em;
  color: var(--accent);
}
.lumi-media {
  margin-top: clamp(48px, 7vh, 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 760px) { .lumi-media { grid-template-columns: 1fr; } }
.video-slot {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.video-slot {
  background:
    radial-gradient(ellipse 70% 60% at 50% 38%, rgba(201, 168, 76, 0.16), transparent 70%),
    linear-gradient(165deg, #20283f, #12121a);
  cursor: pointer;
}
.video-slot .poster {
  position: absolute; inset: 0;
  background-image: var(--poster);
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.video-slot:hover .poster { transform: scale(1.03); }
.video-slot video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  background: #000;
}
.video-slot .play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  z-index: 3;
  width: 72px; height: 72px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  color: var(--chalk);
  cursor: pointer;
  padding-left: 4px;
  transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
.video-slot:hover .play { background: var(--chalk); color: var(--void); border-color: var(--chalk); transform: translate(-50%, -50%) scale(1.06); }
.video-slot .vhint {
  position: absolute; bottom: 18px; left: 0; right: 0;
  z-index: 3; text-align: center;
  font-weight: 500; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.video-slot.playing .poster, .video-slot.playing .play, .video-slot.playing .vhint { display: none; }
.video-slot .vlabel, .lumi-stills .vlabel { position: absolute; top: 16px; left: 16px; z-index: 4; pointer-events: none; }

/* lumi stills: 1 hero image on top + 2x2 grid below, matched to video height */
.lumi-stills { display: flex; flex-direction: column; gap: 12px; }
.ls-top {
  position: relative;
  flex: 1.45;
  min-height: 0;
}
.ls-top image-slot {
  display: block; width: 100%; height: 100%;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}
.ls-grid {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
}
.ls-grid image-slot {
  display: block; width: 100%; height: 100%;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}
@media (max-width: 760px) {
  .lumi-stills { gap: 12px; }
  .ls-top { aspect-ratio: 16 / 10; flex: none; }
  .ls-grid { grid-auto-rows: 140px; }
}

.lumi-intro {
  margin: clamp(48px, 7vh, 80px) auto 0;
  text-align: center;
}
.lumi-features {
  margin-top: clamp(44px, 6vh, 64px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px);
  border-top: 1px solid var(--hairline);
  padding-top: clamp(36px, 5vh, 52px);
}
@media (max-width: 860px) { .lumi-features { grid-template-columns: 1fr; } }
.lumi-feat { display: flex; flex-direction: column; gap: 14px; }
.lumi-feat .meta { color: var(--accent); }
.lumi-feat h3 {
  font-family: var(--serif-kr); font-weight: 700;
  font-size: 21px; color: var(--chalk);
  text-wrap: balance;
}
.lumi-feat p { font-weight: 300; font-size: 15px; color: var(--smoke); text-wrap: pretty; }

/* ---------- contact ---------- */
.contact-block { display: flex; flex-direction: column; align-items: center; gap: 28px; text-align: center; }
.contact-mail {
  font-family: var(--serif-en); font-style: italic; font-weight: 500;
  font-size: clamp(26px, 3.4vw, 44px);
  color: var(--chalk);
  border-bottom: 1px solid var(--graphite);
  padding-bottom: 8px;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.contact-mail:hover { color: var(--accent); border-color: var(--accent); }
.form {
  margin-top: clamp(36px, 5vh, 56px);
  width: 100%; max-width: 640px;
  margin-left: auto; margin-right: auto;
  display: flex; flex-direction: column; gap: 26px;
  text-align: left;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-weight: 500; font-size: 10.5px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--smoke);
}
.field input, .field select, .field textarea {
  font-family: var(--sans); font-weight: 300; font-size: 15.5px;
  color: var(--chalk);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--graphite);
  padding: 10px 2px;
  outline: none;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.3s ease;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999999' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
}
.field select option { background: var(--carbon); color: var(--chalk); }
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: var(--chalk); }
.field input::placeholder, .field textarea::placeholder { color: rgba(255, 255, 255, 0.28); }
.form .pill-primary { align-self: center; margin-top: 10px; border: none; }
.form-success {
  margin-top: clamp(36px, 5vh, 56px);
  width: 100%; max-width: 640px;
  margin-left: auto; margin-right: auto;
  border: 1px solid var(--graphite);
  border-radius: var(--radius-card);
  padding: 44px 36px;
  display: flex; flex-direction: column; gap: 10px; align-items: center;
  text-align: center;
}
.form-success .t { font-family: var(--serif-kr); font-weight: 700; font-size: 20px; color: var(--accent); }
.form-success p { font-weight: 300; font-size: 14.5px; color: var(--bone); }

/* ---------- footer ---------- */
.footer {
  border-top: 1px solid var(--hairline);
  padding: 48px clamp(20px, 4vw, 40px) 60px;
  max-width: var(--max);
  margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 24px;
  align-items: flex-start; justify-content: space-between;
  font-weight: 300; font-size: 12.5px; line-height: 2.1;
  color: var(--smoke);
}
.footer .f-logo {
  display: flex; align-items: center; gap: 8px;
  font-weight: 400; font-size: 16px; color: var(--bone);
}
.footer .f-logo .star { color: var(--accent); font-size: 11px; }
.footer address { font-style: normal; }
.footer .sep { opacity: 0.45; margin: 0 9px; }

/* ---------- mascot (Lumi) ---------- */
.mascot {
  position: fixed; right: clamp(12px, 2vw, 30px); bottom: 0;
  z-index: 20;
  display: flex; flex-direction: column; align-items: center;
  pointer-events: none;
}
html[data-mascot="off"] .mascot { display: none; }
.mascot img {
  height: clamp(86px, 9.5vw, 120px);
  width: auto;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.6));
  animation: lumi-bob 5.2s ease-in-out infinite;
  pointer-events: auto;
  cursor: pointer;
}
.mascot .pool {
  width: 84%; height: 12px;
  margin-top: -6px;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.18), transparent 70%);
}
.mascot .bubble {
  pointer-events: none;
  margin-bottom: 10px;
  background: var(--linen);
  color: #141414;
  font-size: 12px; font-weight: 500; letter-spacing: 0;
  padding: 8px 14px;
  border-radius: 14px 14px 14px 3px;
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  white-space: nowrap;
}
.mascot:hover .bubble, .mascot.talk .bubble { opacity: 1; transform: translateY(0); }
@keyframes lumi-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
html[data-motion="off"] .mascot img { animation: none; }

/* keep authored headline lines unbroken on desktop; mobile wraps naturally */
@media (min-width: 700px) {
  .nw { white-space: nowrap; }
}

/* ---------- reveal motion (armed only when frames are painting) ---------- */
.rv { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  html.fx[data-motion="on"] .rv {
    opacity: 0; transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--d, 0s);
  }
  html.fx[data-motion="on"] .rv.in { opacity: 1; transform: translateY(0); }
  html[data-motion="on"] .hero-cue::after { animation: cue-drop 2.6s ease-in-out infinite; }
  @keyframes cue-drop {
    0% { transform: scaleY(0); transform-origin: top; }
    45% { transform: scaleY(1); transform-origin: top; }
    55% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
  }
}
