/* UNWOUND — hubtown-inspired: one dark world, big type, quiet motion */
:root {
  --bg: #020A19;
  --ink: #e9e6dc;
  --ink-dim: #8a8fa0;
  --hair: rgba(233, 230, 220, 0.08);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Archivo", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--ink); color: var(--bg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}
.lantern {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(420px circle at var(--mx, 50%) var(--my, 40%),
      rgba(212, 162, 78, 0.10), transparent 60%);
  transition: background 0.12s linear;
  pointer-events: none;
}
.hero-inner { text-align: center; z-index: 1; padding: 0 1rem; }
.wordmark {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(3.2rem, 13.5vw, 11.5rem);
  letter-spacing: 0.04em;
  line-height: 0.95;
  user-select: none;
}
.wordmark span {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.35em);
  filter: blur(6px);
  animation: rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.wordmark span:nth-child(1) { animation-delay: 0.10s }
.wordmark span:nth-child(2) { animation-delay: 0.18s }
.wordmark span:nth-child(3) { animation-delay: 0.26s }
.wordmark span:nth-child(4) { animation-delay: 0.34s }
.wordmark span:nth-child(5) { animation-delay: 0.42s }
.wordmark span:nth-child(6) { animation-delay: 0.50s }
.wordmark span:nth-child(7) { animation-delay: 0.58s }
@keyframes rise {
  to { opacity: 1; transform: none; filter: blur(0); }
}
.tagline {
  margin-top: 2.2rem;
  font-size: clamp(1rem, 2.2vw, 1.45rem);
  color: var(--ink-dim);
  letter-spacing: 0.02em;
}
.tagline-sub {
  margin-top: 0.5rem;
  font-size: clamp(1.05rem, 2.4vw, 1.6rem);
  color: var(--ink);
  font-weight: 500;
}
.scroll-cue {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-cue span {
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(var(--ink), transparent);
  animation: drip 2.2s ease-in-out infinite;
}
@keyframes drip {
  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; }
}

/* ---------- shared reveal-on-scroll ---------- */
.reveal, .m-line, .channel, .channels-title {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.in { opacity: 1; transform: none; }

/* hero reveals don't wait for scroll */
.hero .reveal { animation: rise 1s 0.9s cubic-bezier(0.16,1,0.3,1) forwards; }

/* ---------- MANIFESTO ---------- */
.manifesto {
  min-height: 80svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18svh 1.4rem;
}
.manifesto-inner { max-width: 880px; text-align: center; }
.m-line {
  font-size: clamp(1.35rem, 3.4vw, 2.4rem);
  line-height: 1.5;
  margin: 0.65em 0;
  color: var(--ink-dim);
}
.m-strong { color: var(--ink); font-weight: 500; }
.m-quiet { font-size: clamp(1rem, 2.2vw, 1.4rem); letter-spacing: 0.06em; }

/* ---------- CHANNELS ---------- */
.channels { padding: 8svh 0 16svh; }
.channels-title {
  text-align: center;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(1.6rem, 4.5vw, 3.2rem);
  margin-bottom: 9svh;
  color: var(--ink);
}
.channel {
  display: grid;
  grid-template-columns: 5.5rem 1fr auto;
  align-items: center;
  gap: 1.5rem;
  max-width: 1060px;
  margin: 0 auto;
  padding: 2.6rem 2rem;
  text-decoration: none;
  color: inherit;
  border-top: 1px solid var(--hair);
  position: relative;
  overflow: hidden;
}
.channel:last-of-type { border-bottom: 1px solid var(--hair); }
.channel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at 18% 50%, color-mix(in srgb, var(--accent) 14%, transparent), transparent 65%);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.channel:hover::before { opacity: 1; }
.ch-num {
  font-family: "Archivo Black", sans-serif;
  font-size: 1rem;
  color: var(--accent);
  letter-spacing: 0.15em;
}
.ch-body h3 {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(1.7rem, 4.6vw, 3rem);
  letter-spacing: 0.01em;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.ch-body h3 em { font-style: normal; color: var(--accent); }
.channel:hover .ch-body h3 { transform: translateX(10px); }
.ch-line { margin-top: 0.45rem; color: var(--ink-dim); font-size: clamp(0.95rem, 1.9vw, 1.15rem); }
.ch-sign {
  margin-top: 0.55rem;
  color: var(--accent);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  opacity: 0.85;
}
.ch-go {
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: var(--ink-dim);
  white-space: nowrap;
  transition: color 0.3s ease, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.channel:hover .ch-go { color: var(--ink); transform: translateX(-6px); }

/* ---------- CLOSER + FOOTER ---------- */
.closer {
  min-height: 55svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1.4rem;
}
footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  padding: 4rem 1rem 3rem;
  border-top: 1px solid var(--hair);
}
.foot-mark {
  font-family: "Archivo Black", sans-serif;
  letter-spacing: 0.35em;
  font-size: 0.85rem;
  color: var(--ink-dim);
}
.foot-line { color: var(--ink-dim); font-size: 0.8rem; opacity: 0.7; }

@media (max-width: 640px) {
  .channel { grid-template-columns: 1fr; gap: 0.4rem; padding: 2.2rem 1.4rem; }
  .ch-num { margin-bottom: 0.3rem; }
  .ch-go { margin-top: 0.8rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .wordmark span, .reveal, .m-line, .channel, .channels-title { opacity: 1; transform: none; filter: none; }
}
