/* Taste Scatter Hangul — ordered chaos desk · iter+
   Broken mosaic · film grain · ink slash · view-timeline reveal
   Dials: VARIANCE 9 · MOTION 7 · DENSITY 5 */

:root {
  --mist: #dfe6f0;
  --mist-2: #cfd8e6;
  --paper: #fffdf8;
  --ink: #12161f;
  --ink-soft: rgba(18, 22, 31, 0.72);
  --ink-mute: rgba(18, 22, 31, 0.45);
  --line: rgba(18, 22, 31, 0.11);
  --indigo: #1a3568;
  --indigo-soft: rgba(26, 53, 104, 0.12);
  --celadon: #0c6e56;
  --celadon-soft: rgba(12, 110, 86, 0.12);
  --signal: #d6002a;
  --signal-dark: #a80021;
  --night: #10151f;
  --maxw: 1180px;
  --head-h: 58px;
  --disp: "Noto Serif KR", "Pretendard", serif;
  --sans: "Pretendard", "Noto Sans KR", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font: 400 16.5px/1.7 var(--sans);
  color: var(--ink);
  background:
    radial-gradient(ellipse 70% 45% at 110% 8%, rgba(214, 0, 42, 0.08), transparent 50%),
    radial-gradient(ellipse 55% 40% at -10% 60%, rgba(12, 110, 86, 0.09), transparent 48%),
    radial-gradient(ellipse 50% 35% at 50% 100%, rgba(26, 53, 104, 0.07), transparent 55%),
    linear-gradient(165deg, var(--mist) 0%, #e8edf5 40%, var(--mist-2) 100%);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 80;
  opacity: 0.045;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
::selection { background: var(--indigo); color: #fff; }
a { color: var(--indigo); text-decoration: none; }
a:hover { color: var(--signal); }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

.riskbar { display: none; }

/* —— sticky bar —— */
header.site-head {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--head-h);
  background: rgba(255, 253, 248, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-head {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
  height: 100%;
}
.logo {
  font: 800 1.18rem/1 var(--sans);
  letter-spacing: -0.04em;
  color: var(--ink);
  text-decoration: none;
  flex: 0 0 auto;
  transition: transform 0.25s var(--ease-out);
}
.logo:hover { transform: rotate(-2deg) scale(1.02); text-decoration: none; }
.logo em {
  font-style: normal;
  color: var(--signal);
}
.logo .han-mark {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-left: 6px;
  border-radius: 50%;
  background: conic-gradient(from 210deg, var(--signal) 0 45%, var(--indigo) 45% 100%);
  vertical-align: middle;
  animation: spin-slow 14s linear infinite;
}
.mainnav {
  display: flex;
  gap: 2px 12px;
  flex-wrap: wrap;
  margin-left: 8px;
  margin-right: auto;
}
.nav-pill {
  font: 600 13px/1 var(--sans);
  color: var(--ink-mute);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  background: none;
  border-radius: 0;
}
.nav-pill:hover { color: var(--indigo); border-bottom-color: var(--indigo); text-decoration: none; }
.nav-pill.is-active { color: var(--ink); border-bottom-color: var(--signal); font-weight: 700; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: 700 14px/1 var(--sans);
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn .arr { font-family: var(--mono); }
.btn-ink {
  background: var(--ink);
  color: #fff;
  padding: 9px 15px;
  flex: 0 0 auto;
}
.btn-ink:hover {
  background: var(--indigo);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}
.btn-red,
.btn-nav {
  background: var(--signal);
  color: #fff;
  box-shadow: 0 10px 28px rgba(214, 0, 42, 0.32);
  animation: cta-glow 2.8s ease-in-out infinite;
}
.btn-nav {
  padding: 10px 18px;
  flex: 0 0 auto;
  font-size: 14px;
}
.btn-red:hover,
.btn-nav:hover {
  background: var(--signal-dark);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px) scale(1.02);
  animation: none;
  box-shadow: 0 14px 32px rgba(214, 0, 42, 0.42);
}
.btn-big,
.btn-register {
  padding: 16px 28px;
  font-size: 1.05rem;
  min-width: min(100%, 280px);
  justify-content: center;
}
.btn-register {
  width: 100%;
  box-shadow: 0 14px 40px rgba(214, 0, 42, 0.4);
  position: relative;
  overflow: hidden;
}
.btn-register::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.22) 48%, transparent 62%);
  transform: translateX(-120%);
  animation: sheen 3.2s ease-in-out infinite;
}
.ghost {
  font: 700 14px/1 var(--sans);
  color: var(--ink);
  border-bottom: 2px solid var(--celadon);
  padding-bottom: 2px;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, transform 0.2s;
}
.ghost .arr {
  display: inline-block;
  margin-left: 2px;
  animation: nudge 1.6s ease-in-out infinite;
}
.ghost:hover { color: var(--celadon); transform: translateX(3px); }
.ghost:hover .arr { animation: none; transform: translateY(3px); }
.cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin: 0.85rem 0 0; }

.stamp {
  display: inline-block;
  font: 700 10px/1 var(--mono);
  color: var(--indigo);
  border: 1.5px solid var(--indigo);
  padding: 5px 9px;
  border-radius: 2px;
  background: var(--paper);
  transform: rotate(-2deg);
}
.stamp.flat { transform: none; }

/* ========== CHAOS HERO — split + register pod ========== */
.chaos-hero {
  position: relative;
  height: calc(100dvh - var(--head-h));
  max-height: calc(100dvh - var(--head-h));
  min-height: 520px;
  padding: clamp(16px, 3vh, 32px) 0 clamp(36px, 5vh, 52px);
  display: grid;
  align-items: center;
  overflow: hidden;
}
.chaos-hero .wrap,
.hero-split {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
}
.chaos-bg {
  position: absolute;
  top: 4%;
  right: -6%;
  bottom: 6%;
  left: 48%;
  z-index: 0;
  border-radius: 28px 8px 40px 60px;
  overflow: hidden;
  transform: rotate(2deg);
  box-shadow: -18px 24px 50px rgba(18, 22, 31, 0.16);
  animation: drift-in 0.75s var(--ease-out) both;
  opacity: 0.55;
}
.chaos-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.05) saturate(0.95);
  transform: scale(1.06);
  animation: ken 18s ease-in-out infinite alternate;
}
.chaos-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(223, 230, 240, 0.62) 0%, transparent 42%, rgba(16, 21, 31, 0.22) 100%);
  pointer-events: none;
}
.float-tag {
  --rot: 0deg;
  position: absolute;
  z-index: 3;
  font: 700 11px/1 var(--mono);
  letter-spacing: 0.08em;
  padding: 7px 11px;
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid var(--line);
  box-shadow: 4px 6px 0 rgba(18, 22, 31, 0.07);
  backdrop-filter: blur(6px);
  animation: tag-in 0.6s var(--ease-out) both, float-y 4.5s ease-in-out 0.8s infinite;
}
.float-tag.t1 {
  top: clamp(12%, 14vh, 18%);
  right: clamp(4%, 6vw, 8%);
  color: var(--signal);
  --rot: 6deg;
  animation-delay: 0.12s, 0.8s;
}
.float-tag.t2 {
  bottom: clamp(14%, 16vh, 20%);
  left: 46%;
  color: var(--celadon);
  --rot: -4deg;
  animation-delay: 0.24s, 1.1s;
}
.float-tag.t3 {
  top: clamp(26%, 30vh, 36%);
  left: 54%;
  color: var(--indigo);
  --rot: 3deg;
  animation-delay: 0.36s, 1.4s;
}

.hero-stack {
  position: relative;
  z-index: 2;
  max-width: none;
  padding: 0;
}
.path-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: clamp(14px, 2.2vh, 20px);
  animation: rise 0.6s var(--ease-out) 0.28s both;
}
.path-chip {
  font: 600 12px/1 var(--mono);
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.78);
  color: var(--ink-soft);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
a.path-chip:hover {
  border-color: var(--indigo);
  color: var(--indigo);
  transform: translateY(-1px);
  text-decoration: none;
}
.path-chip.is-hot {
  border-color: rgba(214, 0, 42, 0.45);
  background: rgba(214, 0, 42, 0.08);
  color: var(--signal);
}

/* Register podium — hero focus */
.register-pod {
  position: relative;
  z-index: 3;
  background: var(--night);
  color: #e8edf5;
  border-radius: 22px 10px 28px 14px;
  padding: clamp(22px, 3.5vh, 32px) clamp(20px, 2.5vw, 28px);
  box-shadow:
    0 24px 50px rgba(16, 21, 31, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  transform: rotate(1.2deg);
  animation: float-in 0.7s var(--ease-out) 0.12s both;
  overflow: hidden;
}
.pod-glow {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 80% 0%, rgba(214, 0, 42, 0.45), transparent 42%),
    radial-gradient(circle at 10% 100%, rgba(12, 110, 86, 0.28), transparent 45%);
  pointer-events: none;
  animation: glow-shift 5s ease-in-out infinite alternate;
}
.register-pod > *:not(.pod-glow) { position: relative; z-index: 1; }
.pod-kicker {
  font: 700 11px/1 var(--mono);
  letter-spacing: 0.16em;
  color: #ff8a9a;
  margin-bottom: 12px;
}
.pod-title {
  font: 700 clamp(1.45rem, 2.8vw, 1.9rem)/1.2 var(--disp);
  color: #fff;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}
.pod-points {
  list-style: none;
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
}
.pod-points li {
  font-size: 0.9rem;
  color: rgba(232, 237, 245, 0.72);
  padding-left: 0;
}
.pod-points strong { color: #fff; font-family: var(--mono); font-weight: 700; }
.pod-secondary {
  display: inline-block;
  margin-top: 14px;
  font: 600 13px/1.4 var(--sans);
  color: rgba(232, 237, 245, 0.75);
  border-bottom: 1.5px solid rgba(232, 237, 245, 0.35);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
}
.pod-secondary:hover { color: #fff; border-bottom-color: #fff; }
.pod-foot {
  margin-top: 16px;
  font: 500 11px/1.4 var(--mono);
  color: rgba(232, 237, 245, 0.4);
}

/* Shared ink-pod language (matches register-pod) */
.ink-pod {
  position: relative;
  overflow: hidden;
  background: var(--night);
  color: #e8edf5;
  border-radius: 22px 10px 28px 14px;
  box-shadow:
    0 22px 46px rgba(16, 21, 31, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}
.ink-pod > *:not(.pod-glow) { position: relative; z-index: 1; }
.ink-pod.alt {
  background: linear-gradient(160deg, #151c2a 0%, #0f1a1a 100%);
}
.ink-pod.alt .pod-glow {
  background:
    radial-gradient(circle at 20% 0%, rgba(12, 110, 86, 0.4), transparent 45%),
    radial-gradient(circle at 90% 100%, rgba(214, 0, 42, 0.28), transparent 42%);
}
.pod-kicker.soft {
  color: var(--signal);
  margin-bottom: 8px;
}

/* Mid-page CTA break — twin of register-pod */
.cta-break {
  max-width: var(--maxw);
  margin: 28px auto 8px;
  padding: 0 22px;
}
.cta-break-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(26px, 3.5vh, 34px) clamp(22px, 3vw, 32px);
  transform: rotate(-0.6deg);
}
.cta-break-copy h2 {
  font: 700 clamp(1.35rem, 2.6vw, 1.85rem)/1.2 var(--disp);
  margin: 0 0 8px;
  color: #fff;
}
.cta-break-copy p {
  color: rgba(232, 237, 245, 0.68);
  margin: 0;
  max-width: 40ch;
}
.cta-break .btn-register { width: auto; min-width: 240px; }

/* Sticky register dock */
.cta-dock {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px 10px 16px;
  background: rgba(16, 21, 31, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(16, 21, 31, 0.35);
  animation: dock-in 0.55s var(--ease-out) 1.1s both;
}
.cta-dock-meta {
  font: 700 11px/1 var(--mono);
  color: rgba(232, 237, 245, 0.55);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.btn-dock {
  padding: 12px 20px;
  animation: cta-glow 2.4s ease-in-out infinite;
  box-shadow: 0 8px 22px rgba(214, 0, 42, 0.4);
}
.ghost-on-dark {
  color: rgba(232, 237, 245, 0.8) !important;
  border-bottom-color: rgba(232, 237, 245, 0.4) !important;
}
.finale-kicker {
  font: 700 11px/1 var(--mono);
  letter-spacing: 0.14em;
  color: #ff8a9a;
  margin-bottom: 10px;
}
.finale-register .btn-register { width: auto; min-width: 280px; }
.hero-stack .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: 600 12px/1 var(--mono);
  color: var(--ink-mute);
  margin-bottom: clamp(10px, 1.6vh, 16px);
  transform: rotate(-1deg);
  animation: rise 0.55s var(--ease-out) both;
}
.hero-stack .eyebrow .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: conic-gradient(from 210deg, var(--signal) 0 45%, var(--indigo) 45% 100%);
  animation: spin-slow 10s linear infinite;
}
.hero-stack h1 {
  font: 700 clamp(2rem, 5.2vw, 3.55rem)/1.12 var(--disp);
  letter-spacing: -0.035em;
  max-width: 12em;
  animation: rise 0.6s var(--ease-out) 0.06s both;
}
.hero-stack h1 .line2 {
  display: block;
  width: fit-content;
  color: var(--indigo);
  transform: translateX(0.3em) rotate(-1.2deg);
  margin-top: 0.06em;
  animation: rise 0.65s var(--ease-out) 0.14s both;
  position: relative;
}
.hero-stack h1 .line2::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -4%;
  bottom: 0.08em;
  height: 0.28em;
  background: linear-gradient(90deg, transparent, var(--celadon-soft) 12%, var(--celadon-soft) 88%, transparent);
  z-index: -1;
  transform: scaleX(0.2) skewX(-12deg);
  transform-origin: left center;
  animation: brush 0.7s var(--ease-out) 0.45s both;
}
.ink-slash {
  position: absolute;
  z-index: 1;
  width: min(42vw, 460px);
  height: 2px;
  left: 28%;
  bottom: 22%;
  background: linear-gradient(90deg, transparent, var(--signal) 20%, var(--signal) 70%, transparent);
  transform: rotate(-18deg);
  opacity: 0.55;
  animation: slash-in 0.8s var(--ease-out) 0.35s both;
  pointer-events: none;
}
.ink-slash::before {
  content: "";
  position: absolute;
  inset: -1px 10% auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--indigo), transparent);
  transform: translateY(-10px) rotate(3deg);
  opacity: 0.5;
}
.hero-stack .lede {
  margin: clamp(12px, 2.2vh, 20px) 0 clamp(14px, 2.4vh, 22px);
  max-width: 36ch;
  color: var(--ink-soft);
  font-size: clamp(0.92rem, 1.5vh, 1.02rem);
  line-height: 1.55;
  background: rgba(255, 253, 248, 0.78);
  padding: 12px 14px;
  border-left: 3px solid var(--celadon);
  transform: rotate(0.35deg);
  backdrop-filter: blur(4px);
  animation: rise 0.6s var(--ease-out) 0.2s both;
}
.hero-stack .cta-row { animation: rise 0.6s var(--ease-out) 0.28s both; }
.hero-stack .risk-line { display: none; }

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 12px;
  z-index: 4;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font: 600 10px/1 var(--mono);
  letter-spacing: 0.14em;
  color: var(--ink-mute);
  text-decoration: none;
  animation: cue-bob 2s ease-in-out infinite;
}
.scroll-cue span { opacity: 0.8; }
.scroll-cue::after {
  content: "";
  width: 1px;
  height: 20px;
  background: linear-gradient(var(--indigo), transparent);
  animation: cue-line 2s ease-in-out infinite;
}

/* ========== SCATTER MOSAIC — mini pods ========== */
.scatter {
  position: relative;
  padding: 10px 0 50px;
  z-index: 2;
}
.scatter-head {
  max-width: var(--maxw);
  margin: 0 auto 20px;
  padding: 0 22px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}
.scatter-head h2 {
  font: 700 clamp(1.5rem, 3vw, 2.1rem)/1.15 var(--disp);
  transform: rotate(-1deg);
  margin: 0;
}
.scatter-tag {
  font: 600 12px/1 var(--mono);
  color: var(--ink-mute);
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.72);
  transform: rotate(2deg);
}

.mosaic {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(120px, auto);
  gap: 16px;
}
.tile {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px 10px 28px 14px;
  text-decoration: none;
  color: var(--ink);
  overflow: hidden;
  box-shadow:
    0 14px 32px rgba(18, 22, 31, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.4) inset;
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out);
  min-height: 150px;
  animation: rise 0.55s var(--ease-out) both;
}
.tile > *:not(.pod-glow):not(.n) { position: relative; z-index: 1; }
.tile .pod-glow {
  opacity: 0.35;
  background:
    radial-gradient(circle at 90% 0%, rgba(214, 0, 42, 0.22), transparent 45%),
    radial-gradient(circle at 10% 100%, rgba(26, 53, 104, 0.16), transparent 50%);
}
.tile:nth-child(1) { animation-delay: 0.02s; }
.tile:nth-child(2) { animation-delay: 0.08s; }
.tile:nth-child(3) { animation-delay: 0.14s; }
.tile:nth-child(4) { animation-delay: 0.2s; }
.tile:nth-child(5) { animation-delay: 0.26s; }
.tile:nth-child(6) { animation-delay: 0.32s; }
.tile:hover {
  transform: translateY(-6px) rotate(-0.5deg) scale(1.01);
  box-shadow: 0 22px 48px rgba(18, 22, 31, 0.16);
  text-decoration: none;
  color: var(--ink);
}
.tile .art {
  display: block;
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  transition: transform 0.45s var(--ease-out);
  filter: saturate(0.92) contrast(1.04);
}
.tile:hover .art { transform: scale(1.05); }
.tile .body { padding: 14px 16px 12px; flex: 1; }
.tile .n {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font: 700 11px/1 var(--mono);
  background: var(--night);
  color: #fff;
  padding: 5px 8px;
  border-radius: 2px;
  transform: rotate(-3deg);
  box-shadow: 0 6px 14px rgba(16, 21, 31, 0.25);
  transition: transform 0.28s var(--ease-out), background 0.28s;
}
.tile:hover .n {
  background: var(--signal);
  transform: rotate(-8deg) scale(1.08);
}
.tile .go .arr,
.tile .go span:last-child {
  transition: transform 0.25s var(--ease-out);
}
.tile:hover .go span:last-child { transform: translateX(4px); }
.tile .q {
  font: 700 11px/1.3 var(--mono);
  letter-spacing: 0.08em;
  color: var(--indigo);
  margin-bottom: 8px;
}
.tile .val {
  font: 700 clamp(1.35rem, 2vw, 1.75rem)/1.05 var(--disp);
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.tile .cap {
  font-size: 0.86rem;
  color: var(--ink-soft);
  line-height: 1.45;
}
.tile .go {
  margin: auto 12px 12px;
  padding: 11px 14px;
  font: 700 13px/1 var(--sans);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--signal);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(214, 0, 42, 0.28);
}

/* ink tiles — same night language as register-pod */
.tile.ink {
  background: var(--night);
  color: #e8edf5;
  border-color: transparent;
  box-shadow:
    0 22px 46px rgba(16, 21, 31, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}
.tile.ink .pod-glow { opacity: 1; }
.tile.ink .art {
  border-bottom-color: rgba(255, 255, 255, 0.08);
  opacity: 0.92;
}
.tile.ink .q { color: #ff8a9a; }
.tile.ink .val { color: #fff; }
.tile.ink .cap { color: rgba(232, 237, 245, 0.65); }
.tile.ink .n {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
}
.tile.ink:hover { color: #e8edf5; }
.tile.ink .go {
  background: var(--signal);
  color: #fff;
}

/* irregular spans — the ordered chaos */
.tile.t-a { grid-column: 1 / span 5; grid-row: span 2; transform: rotate(-1deg); }
.tile.t-a .art { height: 160px; }
.tile.t-b { grid-column: 6 / span 4; transform: rotate(1.2deg); margin-top: 20px; }
.tile.t-c { grid-column: 10 / span 3; transform: rotate(-1.6deg); }
.tile.t-d { grid-column: 6 / span 3; transform: rotate(0.6deg); }
.tile.t-e { grid-column: 9 / span 4; transform: rotate(-0.8deg); margin-top: -8px; }
.tile.t-f { grid-column: 1 / span 4; transform: rotate(1.2deg); margin-top: -14px; }
.tile.t-a:hover,
.tile.t-b:hover,
.tile.t-c:hover,
.tile.t-d:hover,
.tile.t-e:hover,
.tile.t-f:hover { transform: translateY(-6px) rotate(0deg) scale(1.015); }

/* ========== ZIG BANDS — pod copy ========== */
.band {
  max-width: var(--maxw);
  margin: 36px auto;
  padding: 0 22px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}
.band.reverse { direction: rtl; }
.band.reverse > * { direction: ltr; }
.band-copy {
  padding: 32px 30px;
  transform: rotate(-0.8deg);
}
.band.reverse .band-copy {
  transform: rotate(1deg);
  border-radius: 10px 22px 14px 28px;
}
.band-copy h2 {
  font: 700 clamp(1.45rem, 2.8vw, 2rem)/1.2 var(--disp);
  margin: 0 0 12px;
  color: #fff;
}
.band-copy p {
  color: rgba(232, 237, 245, 0.68);
  max-width: 42ch;
}
.band-copy a { color: #ff8a9a; }
.band-copy a:hover { color: #fff; }
.band-copy .pod-points {
  margin: 16px 0 18px;
}
.band-copy .pod-points li {
  font-size: 0.95rem;
  color: rgba(232, 237, 245, 0.72);
  padding-left: 14px;
  position: relative;
}
.band-copy .pod-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 3px rgba(214, 0, 42, 0.18);
}
.band-media {
  position: relative;
  border-radius: 14px 28px 12px 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  transform: rotate(1.8deg);
  box-shadow:
    0 24px 48px rgba(18, 22, 31, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}
.band.reverse .band-media { transform: rotate(-2.2deg); }
.band-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.band-media .caption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  font: 700 11px/1 var(--mono);
  letter-spacing: 0.08em;
  background: rgba(16, 21, 31, 0.88);
  color: #fff;
  padding: 9px 12px;
  border-radius: 999px;
  transform: rotate(-2deg);
  box-shadow: 0 8px 18px rgba(16, 21, 31, 0.3);
}

/* ========== SLANT — fact pods ========== */
.slant {
  position: relative;
  margin: 40px 0 28px;
  padding: 8px 0;
  background: transparent;
  color: #e8edf5;
  transform: none;
  overflow: visible;
}
.slant-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.slant .fact {
  padding: 22px 18px 20px;
  margin: 0;
  transform: rotate(-0.8deg);
  transition: transform 0.25s var(--ease-out);
}
.slant .fact:nth-child(2) { transform: rotate(1.1deg); margin-top: 14px; }
.slant .fact:nth-child(3) { transform: rotate(-1.4deg); }
.slant .fact:nth-child(4) { transform: rotate(0.7deg); margin-top: 10px; }
.slant .fact:hover { transform: rotate(0deg) translateY(-4px); }
.fact-kicker {
  font: 700 10px/1.2 var(--mono);
  letter-spacing: 0.06em;
  color: #ff8a9a;
  margin: 0 0 12px;
}
.slant .fv {
  font: 700 clamp(1.7rem, 2.6vw, 2.1rem)/1 var(--mono);
  letter-spacing: -0.04em;
  color: #fff;
}
.slant .fact:nth-child(2) .fv { color: #ff8a9a; }
.slant .fact:nth-child(3) .fv { color: #7dceb8; }
.slant .fact:nth-child(4) .fv { color: #9eb6e8; }
.slant .fk {
  margin-top: 10px;
  font-size: 0.82rem;
  color: rgba(232, 237, 245, 0.55);
  line-height: 1.35;
}

/* ========== NOTE CLUSTER — twin pods ========== */
.cluster {
  max-width: var(--maxw);
  margin: 40px auto 20px;
  padding: 0 22px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: start;
}
.note-main {
  padding: 30px 28px;
  transform: rotate(-0.7deg);
}
.note-main h2 {
  font: 700 1.55rem/1.2 var(--disp);
  margin: 0 0 10px;
  color: #fff;
}
.note-main p {
  color: rgba(232, 237, 245, 0.68);
  margin: 0 0 18px;
}
.note-main .btn-register {
  width: auto;
  min-width: 220px;
}
.note-side {
  display: grid;
  gap: 12px;
}
.note-card {
  display: block;
  padding: 16px 18px 18px;
  text-decoration: none;
  color: #e8edf5;
  transform: rotate(1.2deg);
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s;
}
.note-card:nth-child(2) { transform: rotate(-1.5deg); margin-left: 14px; }
.note-card:nth-child(3) { transform: rotate(0.8deg); }
.note-card:hover {
  transform: rotate(0deg) translateY(-3px);
  text-decoration: none;
  color: #fff;
  box-shadow:
    0 26px 50px rgba(16, 21, 31, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}
.note-card strong {
  display: block;
  font: 700 1.1rem/1.2 var(--disp);
  color: #fff;
  margin-bottom: 4px;
}
.note-card span:not(.pod-glow):not(.fact-kicker) {
  font-size: 0.88rem;
  color: rgba(232, 237, 245, 0.58);
}

/* ========== FINALE ========== */
.finale {
  max-width: var(--maxw);
  margin: 40px auto 10px;
  padding: 0 22px;
}
.finale-box {
  position: relative;
  background: var(--night);
  color: #e8edf5;
  border-radius: 28px 8px 32px 12px;
  padding: 48px 40px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 24px;
  align-items: end;
}
.finale-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px 220px at 100% 0%, rgba(214, 0, 42, 0.4), transparent 55%),
    radial-gradient(400px 200px at 0% 100%, rgba(12, 110, 86, 0.3), transparent 50%);
  pointer-events: none;
}
.finale-box > * { position: relative; z-index: 1; }
.finale-box h2 {
  font: 700 clamp(1.7rem, 3.4vw, 2.6rem)/1.15 var(--disp);
  color: #fff;
  max-width: 11em;
  transform: rotate(-0.8deg);
}
.finale-box p {
  margin: 14px 0 24px;
  color: rgba(232, 237, 245, 0.7);
  max-width: 40ch;
}
.finale-mark {
  justify-self: end;
  align-self: start;
  font: 700 12px/1.7 var(--mono);
  letter-spacing: 0.1em;
  border: 1.5px dashed rgba(232, 237, 245, 0.4);
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(12deg);
  color: rgba(232, 237, 245, 0.55);
}

/* ========== INNER SHEETS ========== */
/* Sheet top = homepage chaos-hero language (image plane + register pod) */
.sheet-hero {
  height: auto;
  min-height: min(68vh, 620px);
  max-height: none;
  padding-bottom: clamp(28px, 4vh, 44px);
}
.sheet-hero .hero-stack h1 {
  font-size: clamp(1.65rem, 4.2vw, 2.65rem);
  max-width: 15em;
}
.sheet-hero .hero-stack .lede {
  max-width: 44ch;
}
.sheet-hero .hero-stack .lede strong {
  color: var(--ink);
  font-weight: 700;
}
.crumb-on-hero {
  margin: 0 0 10px;
  font-size: 0.8rem;
  color: var(--ink-mute);
  animation: rise 0.5s var(--ease-out) both;
}
.crumb-on-hero a { color: var(--ink-mute); }
.sheet-hero .chaos-bg {
  opacity: 0.62;
}
.layout-register > .sheet {
  margin-top: 4px;
}

.sheet {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px 26px 16px 6px;
  margin: 32px auto;
  width: min(var(--maxw), calc(100% - 28px));
  padding: 40px 44px 36px;
  box-shadow: 10px 12px 0 rgba(26, 53, 104, 0.05);
  transform: rotate(-0.25deg);
}
.sheet::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(225deg, var(--mist-2) 50%, transparent 51%);
  border-radius: 0 26px 0 0;
}
.sheet-head { display: flex; gap: 12px; margin-bottom: 10px; flex-wrap: wrap; }
.sheet h1, .sheet h2 {
  font: 700 clamp(1.55rem, 3vw, 2.2rem)/1.2 var(--disp);
  letter-spacing: -0.025em;
  margin: 0 0 0.5em;
}
.sheet .intro,
.answer-first {
  max-width: 60ch;
  color: var(--ink-soft);
  background: var(--indigo-soft);
  border-left: 3px solid var(--indigo);
  border-radius: 0 12px 12px 0;
  padding: 14px 16px;
  margin: 0 0 1.2rem;
}
.answer-first strong { color: var(--ink); }

.related {
  margin-top: 2rem;
  padding: 1.2rem 1.35rem;
  background: rgba(16, 21, 31, 0.04);
  border-left: 3px solid var(--signal);
  border-radius: 0 14px 14px 0;
}
.related h2 {
  font: 700 1.05rem/1.25 var(--disp);
  margin: 0 0 0.7rem;
}
.related ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}
.related a {
  font-weight: 600;
  color: var(--indigo);
  text-decoration: none;
  border-bottom: 1px solid rgba(26, 53, 104, 0.25);
}
.related a:hover { color: var(--signal); border-bottom-color: var(--signal); }
.note-callout {
  margin: 1.15rem 0;
  padding: 0.95rem 1.1rem;
  background: rgba(12, 110, 86, 0.08);
  border-radius: 12px;
  font-size: 0.94rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.fineprint {
  margin-top: 1.25rem;
  font-size: 0.82rem;
  color: var(--ink-mute);
  line-height: 1.45;
}
.sheet h2 { margin-top: 1.75rem; }
.sheet p { max-width: 62ch; }
.breadcrumb { font-size: 0.85rem; color: var(--ink-mute); margin: 0 0 0.7rem; }
.breadcrumb a { color: var(--ink-mute); }
.kicker { font: 700 11px/1 var(--mono); color: var(--indigo); margin: 0 0 8px; }

h1, h2, h3 { font-family: var(--disp); color: var(--ink); line-height: 1.2; }
h3 { font-family: var(--sans); font-size: 1.05rem; }

.ticks { list-style: none; display: grid; gap: 8px; }
.ticks li {
  padding: 11px 14px 11px 36px;
  position: relative;
  background: rgba(223, 230, 240, 0.55);
  border-radius: 10px;
  color: var(--ink-soft);
}
.ticks li::before {
  content: "✓";
  position: absolute;
  left: 12px;
  color: var(--celadon);
  font-weight: 800;
}

ol.steps { list-style: none; counter-reset: st; display: grid; gap: 10px; }
ol.steps li {
  counter-increment: st;
  position: relative;
  padding: 15px 16px 15px 56px;
  background: rgba(223, 230, 240, 0.45);
  border: 1px solid var(--line);
  border-radius: 12px 4px 14px 8px;
  transform: rotate(-0.3deg);
}
ol.steps li:nth-child(even) { transform: rotate(0.4deg); }
ol.steps li::before {
  content: counter(st, decimal-leading-zero);
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%) rotate(-6deg);
  font: 700 13px/1 var(--mono);
  color: #fff;
  background: var(--indigo);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ledger { width: 100%; max-width: 700px; border-collapse: collapse; font-size: 0.94rem; }
.ledger th {
  font: 700 11px/1 var(--mono);
  color: var(--ink-mute);
  text-align: left;
  padding: 0 10px 10px 0;
  border-bottom: 2px solid var(--ink);
  background: none;
}
.ledger td {
  padding: 11px 10px 11px 0;
  border-bottom: 1px dashed var(--line);
}
.ledger td.mono { font-family: var(--mono); }
.ledger tbody tr:nth-child(even) { background: transparent; }

.facts-row, .facts, .stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.facts .fact,
.facts-row .fact,
.stat-card {
  background: rgba(223, 230, 240, 0.5);
  border: 1px solid var(--line);
  border-radius: 14px 4px;
  padding: 16px;
  margin: 0;
}
.facts .fact .fv,
.facts-row .fact .fv,
.fact b,
.stat-card strong {
  display: block;
  font: 700 1.55rem/1.1 var(--mono);
  letter-spacing: -0.03em;
}
.facts .fact .fk,
.facts-row .fact .fk,
.stat-card span {
  display: block;
  margin-top: 5px;
  font-size: 0.8rem;
  color: var(--ink-mute);
}

/* keep homepage fact pods on night ink (beat sheet .fact leftovers) */
.slant .fact.ink-pod {
  background: var(--night);
  border: none;
  border-radius: 22px 10px 28px 14px;
  box-shadow:
    0 22px 46px rgba(16, 21, 31, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  color: #e8edf5;
}
.slant .fact.ink-pod .fk {
  color: rgba(232, 237, 245, 0.55);
}

.plat-grid, .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}
.plat, .card {
  background: rgba(223, 230, 240, 0.4);
  border: 1px solid var(--line);
  border-radius: 14px 6px;
  padding: 16px;
}
a.card.cardlink {
  display: block;
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
  transition: transform 0.18s;
}
a.card.cardlink:hover { transform: translateY(-3px) rotate(-0.5deg); text-decoration: none; }
a.card.cardlink h3 { color: var(--indigo); margin-top: 0; font-family: var(--sans); }
.card-thumb {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 10px;
  margin: 0 0 10px;
  border: 1px solid var(--line);
}
.plat .tag {
  display: inline-block;
  font: 700 10px/1 var(--mono);
  color: var(--celadon);
  margin-bottom: 8px;
}
.plat .pn { font: 700 1.05rem/1.2 var(--sans); margin-bottom: 6px; }
.plat p { font-size: 0.85rem; color: var(--ink-soft); }

.price-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.price-card {
  border: 1px solid var(--line);
  border-radius: 16px 6px;
  padding: 20px;
  background: var(--paper);
  transform: rotate(-0.4deg);
}
.price-card:nth-child(2) { transform: rotate(0.6deg); }
.price-card .an { font: 700 12px/1 var(--mono); color: var(--indigo); margin-bottom: 10px; }
.price-card .big { font: 700 1.8rem/1.05 var(--mono); }
.price-card ul { list-style: none; margin-top: 12px; }
.price-card li {
  padding: 8px 0;
  border-top: 1px dashed var(--line);
  font-size: 0.9rem;
  color: var(--ink-soft);
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.price-card li b { color: var(--ink); font-family: var(--mono); }

.verdict, .margin-note {
  background: linear-gradient(135deg, var(--indigo-soft), var(--celadon-soft));
  border-left: 3px solid var(--celadon);
  border-radius: 0 16px 14px 0;
  padding: 18px 20px;
  margin: 1.1rem 0;
  transform: rotate(-0.3deg);
}
.margin-note .nt {
  display: block;
  font: 700 11px/1 var(--mono);
  color: var(--celadon);
  margin-bottom: 8px;
}

.ph { margin: 14px 0 18px; }
.ph img {
  display: block;
  width: 100%;
  max-width: 620px;
  height: auto;
  border-radius: 8px 22px 10px 18px;
  border: 1px solid var(--line);
  transform: rotate(1deg);
}

details.faq, .faq-block details {
  border: 1px solid var(--line);
  border-radius: 12px 4px;
  margin: 8px 0;
  background: var(--paper);
}
details.faq summary, .faq-block details summary {
  cursor: pointer;
  padding: 14px 16px;
  font-weight: 700;
  list-style: none;
  font-family: var(--sans);
}
details.faq summary::-webkit-details-marker,
.faq-block details summary::-webkit-details-marker { display: none; }
details.faq summary::after, .faq-block details summary::after {
  content: "+";
  float: right;
  color: var(--signal);
  font-family: var(--mono);
}
details.faq[open] summary::after,
.faq-block details[open] summary::after { content: "–"; }
details.faq p, .faq-block details p {
  padding: 0 16px 14px;
  margin: 0;
  color: var(--ink-soft);
}

.about-strip, .about-fxpro {
  padding: 36px 22px 10px;
  background: transparent;
  border: none;
}
.about-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
}
.about-fxpro h2 {
  font: 700 11px/1 var(--mono);
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  margin: 0 0 8px;
}
.about-fxpro p { color: var(--ink-soft); max-width: 64ch; font-size: 0.94rem; }

.checkout, .cta-band { /* legacy aliases → finale styles if used */
  max-width: var(--maxw);
  margin: 30px auto;
  width: min(var(--maxw), calc(100% - 28px));
  background: var(--night);
  color: #e8edf5;
  border-radius: 28px 8px 32px 12px;
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
}
.checkout h2, .cta-band h2 {
  font: 700 clamp(1.6rem, 3vw, 2.4rem)/1.15 var(--disp);
  color: #fff;
  max-width: 12em;
}
.checkout p, .cta-band p {
  margin: 12px 0 22px;
  color: rgba(232, 237, 245, 0.7);
  max-width: 44ch;
}
.checkout .mono-mark, .cta-band .btn-hollow, .checkout .alt {
  color: rgba(232, 237, 245, 0.75);
}
.checkout .alt, .cta-band .btn-hollow {
  border-bottom: 1.5px solid rgba(232, 237, 245, 0.35);
  text-decoration: none;
  font: 600 14px/1.4 var(--sans);
}
.checkout .mono-mark { display: none; }

footer.site-foot {
  margin-top: 40px;
  padding: 32px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.84rem;
}
.site-foot .inner { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.site-foot strong { color: var(--ink); }
.foot-locale {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font: 700 12px/1 var(--mono);
  color: var(--indigo);
  transform: rotate(-1deg);
}
.foot-locale .taegeuk {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: conic-gradient(from 210deg, var(--signal) 0 45%, var(--indigo) 45% 100%);
}
.foot-meta {
  margin-top: 14px;
  font: 500 12px/1 var(--mono);
  color: var(--ink-mute);
}

@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
@keyframes drift-in {
  from { opacity: 0; transform: rotate(4deg) translateX(28px) scale(0.98); }
  to { opacity: 1; transform: rotate(2deg) scale(1); }
}
@keyframes ken {
  from { transform: scale(1.06) translate(0, 0); }
  to { transform: scale(1.12) translate(-1.5%, 1%); }
}
@keyframes tag-in {
  from { opacity: 0; transform: translateY(10px) scale(0.96) rotate(var(--rot)); }
  to { opacity: 1; transform: translateY(0) scale(1) rotate(var(--rot)); }
}
@keyframes float-y {
  0%, 100% { transform: translateY(0) rotate(var(--rot)); }
  50% { transform: translateY(-6px) rotate(var(--rot)); }
}
@keyframes spin-slow {
  to { transform: rotate(360deg); }
}
@keyframes cta-glow {
  0%, 100% { box-shadow: 0 10px 28px rgba(214, 0, 42, 0.28); }
  50% { box-shadow: 0 12px 34px rgba(214, 0, 42, 0.42); }
}
@keyframes cue-bob {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.55; }
  50% { transform: translateX(-50%) translateY(5px); opacity: 1; }
}
@keyframes cue-line {
  0%, 100% { transform: scaleY(0.7); opacity: 0.35; }
  50% { transform: scaleY(1); opacity: 1; }
}
@keyframes brush {
  from { transform: scaleX(0.15) skewX(-12deg); opacity: 0; }
  to { transform: scaleX(1) skewX(-12deg); opacity: 1; }
}
@keyframes slash-in {
  from { opacity: 0; transform: rotate(-18deg) scaleX(0.2); }
  to { opacity: 0.55; transform: rotate(-18deg) scaleX(1); }
}
@keyframes nudge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}
@keyframes reveal-up {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}
@keyframes float-in {
  from { opacity: 0; transform: rotate(3deg) translateY(24px) scale(0.96); }
  to { opacity: 1; transform: rotate(1.2deg) scale(1); }
}
@keyframes dock-in {
  from { opacity: 0; transform: translateY(24px) scale(0.92); }
  to { opacity: 1; transform: none; }
}
@keyframes sheen {
  0%, 55% { transform: translateX(-120%); }
  75%, 100% { transform: translateX(120%); }
}
@keyframes glow-shift {
  from { opacity: 0.75; transform: translate(0, 0) scale(1); }
  to { opacity: 1; transform: translate(-4%, 3%) scale(1.05); }
}

/* scroll-driven reveal when supported */
@supports (animation-timeline: view()) {
  .reveal {
    animation: reveal-up 0.7s var(--ease-out) both;
    animation-timeline: view();
    animation-range: entry 0% entry 35%;
  }
  .slant.reveal .fact {
    animation: reveal-up 0.55s var(--ease-out) both;
    animation-timeline: view();
    animation-range: entry 5% entry 40%;
  }
  .slant.reveal .fact:nth-child(2) { animation-delay: 0.05s; }
  .slant.reveal .fact:nth-child(3) { animation-delay: 0.1s; }
  .slant.reveal .fact:nth-child(4) { animation-delay: 0.15s; }
}

.finale-box::after {
  content: "";
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--signal), var(--celadon), transparent);
  opacity: 0.55;
  transform: scaleX(0.3);
  animation: brush 1.1s var(--ease-out) 0.2s both;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .chaos-bg img { transform: none; }
  .scroll-cue { display: none; }
  .ink-slash { opacity: 0.4; }
  body::before { display: none; }
  .btn-register::after { display: none; }
}

@media (max-width: 1100px) {
  .chaos-hero .wrap,
  .hero-split {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.9fr);
    gap: 18px;
  }
  .float-tag { display: none; }
}
@media (max-width: 980px) {
  .chaos-hero {
    height: auto;
    max-height: none;
    min-height: auto;
    padding: 24px 0 48px;
    align-items: start;
  }
  .chaos-hero .wrap,
  .hero-split {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .register-pod {
    order: -1;
    transform: rotate(-0.6deg);
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }
  .chaos-bg {
    top: auto;
    left: 8%;
    right: -4%;
    bottom: auto;
    height: 180px;
    opacity: 0.28;
    border-radius: 20px;
    transform: rotate(-1.5deg);
  }
  .hero-stack { max-width: 100%; padding-bottom: 0; text-align: center; }
  .path-chips { justify-content: center; }
  .scroll-cue { display: none; }
  .cta-break-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    transform: none;
  }
  .cta-break-copy p { margin-inline: auto; }
  .cta-break .btn-register { width: 100%; min-width: 0; }
  .slant-inner { grid-template-columns: 1fr 1fr; }
  .slant .fact,
  .slant .fact:nth-child(2),
  .slant .fact:nth-child(3),
  .slant .fact:nth-child(4) {
    transform: none;
    margin-top: 0;
  }
  .note-card:nth-child(2) { margin-left: 0; }
  .band-copy,
  .band.reverse .band-copy,
  .note-main { transform: none; }
  .cta-dock {
    left: 12px;
    right: 12px;
    bottom: 12px;
    justify-content: space-between;
  }
  .mosaic { grid-template-columns: repeat(6, 1fr); }
  .tile.t-a { grid-column: 1 / span 6; transform: none; }
  .tile.t-b, .tile.t-d { grid-column: 1 / span 3; margin: 0; transform: none; }
  .tile.t-c, .tile.t-e { grid-column: 4 / span 3; margin: 0; transform: none; }
  .tile.t-f { grid-column: 1 / span 6; margin: 0; transform: none; }
  .band, .band.reverse, .cluster, .finale-box, .about-inner {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .band-copy, .band.reverse .band-copy, .band-media, .band.reverse .band-media {
    transform: none;
    box-shadow: 0 10px 28px rgba(18, 22, 31, 0.08);
  }
  .facts-row, .facts, .stat-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .mainnav { display: none; }
  .site-head > .btn { margin-left: auto; }
  :root { --head-h: 54px; }
  .cta-dock-meta { display: none; }
  .btn-dock { flex: 1; justify-content: center; }
}
@media (max-width: 560px) {
  .mosaic { grid-template-columns: 1fr; }
  .tile.t-a, .tile.t-b, .tile.t-c, .tile.t-d, .tile.t-e, .tile.t-f {
    grid-column: 1;
  }
  .slant-inner { grid-template-columns: 1fr; }
  .price-pair, .facts-row, .facts, .stat-grid { grid-template-columns: 1fr; }
  .note-main .btn-register { width: 100%; min-width: 0; }
  .tile .go { border-radius: 12px; }
  .sheet { padding: 28px 20px; width: calc(100% - 18px); }
  .finale-box { padding: 32px 22px; }
  .finale-mark { display: none; }
  .finale-register .btn-register { width: 100%; min-width: 0; }
  .hero-stack h1 { font-size: 2rem; }
  .chaos-hero { padding: 18px 0 36px; }
  .chaos-bg { display: none; }
  /* Keep page art visible on inner sheets (homepage may hide hero plane) */
  .sheet-hero {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 0;
    padding: 14px 0 28px;
  }
  .sheet-hero .chaos-bg {
    display: block;
    position: relative;
    inset: auto;
    width: min(100%, calc(100% - 28px));
    height: 150px;
    margin: 0 auto;
    opacity: 0.9;
    transform: rotate(-1deg);
    border-radius: 16px 8px 20px 12px;
    box-shadow: 0 12px 28px rgba(18, 22, 31, 0.12);
  }
  .sheet-hero .ink-slash { display: none; }
  .sheet-hero .wrap.hero-split { width: min(100%, calc(100% - 28px)); margin: 0 auto; }
  .register-pod { border-radius: 18px; }
  body { padding-bottom: 72px; }
}
