/* ==========================================================================
   bulldogs.zone — Hero B "Signal"
   Design tokens carried over from the Claude Design canvas (Bulldogs Zone.dc.html)
   Motion language modelled on bulkhead.com/games/wardogs
   ========================================================================== */

:root {
  --bg:        #0b0b0a;
  --bg-2:      #080807;
  --panel:     #0e0e0d;
  --panel-2:   #121211;
  --ink:       #e8e4dc;
  --ink-60:    rgba(232, 228, 220, .62);
  --ink-45:    rgba(232, 228, 220, .45);
  --ink-30:    rgba(232, 228, 220, .3);
  --accent:    #c8781f;
  --accent-hot:#f0902c;
  --line:      rgba(232, 228, 220, .14);
  --line-soft: rgba(232, 228, 220, .07);

  --mono: 'IBM Plex Mono', ui-monospace, Menlo, monospace;
  --display: 'Oswald', 'Arial Narrow', sans-serif;
  --body: 'Barlow', system-ui, -apple-system, sans-serif;

  --gutter: clamp(20px, 4vw, 56px);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3 { margin: 0; font-family: var(--display); text-transform: uppercase; font-weight: 700; }
p { margin: 0; text-wrap: pretty; }

::selection { background: var(--accent); color: var(--bg); }

/* --------------------------------------------------------------------------
   Shared atoms
   -------------------------------------------------------------------------- */

.mono {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.shell { padding-inline: var(--gutter); }

.rule {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 0;
}

.section {
  border-top: 1px solid var(--line);
  padding: clamp(48px, 7vw, 84px) var(--gutter);
}

.section--sunk { background: var(--bg-2); }

.section__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: clamp(24px, 3vw, 36px);
}

.section__head h2 {
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: .04em;
  line-height: 1;
}

.section__note { color: var(--ink-45); }

/* Scanline / grid overlays ------------------------------------------------- */

.grid-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(232, 228, 220, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 228, 220, .04) 1px, transparent 1px);
  background-size: 64px 64px;
}

.scanlines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: multiply;
  background: repeating-linear-gradient(180deg, rgba(0, 0, 0, .3) 0 1px, transparent 1px 3px);
  opacity: .55;
}

/* HUD corner brackets ------------------------------------------------------ */

.brackets { position: absolute; inset: 0; pointer-events: none; }
.brackets span {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 1px solid var(--ink-30);
  transition: border-color .5s var(--ease-out);
}
.brackets span:nth-child(1) { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.brackets span:nth-child(2) { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.brackets span:nth-child(3) { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.brackets span:nth-child(4) { bottom: 0; right: 0; border-left: 0; border-top: 0; }

/* Buttons ------------------------------------------------------------------ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .35s var(--ease-out), color .35s var(--ease-out), border-color .35s var(--ease-out);
}

.btn--solid { background: var(--ink); color: var(--bg); }
.btn--solid:hover { background: var(--accent); color: var(--bg); }

.btn--accent { background: var(--accent); color: var(--bg); }
.btn--accent:hover { background: var(--ink); }

.btn--ghost { border-color: rgba(232, 228, 220, .28); color: var(--ink); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn__mark {
  width: 16px;
  height: 16px;
  flex: none;
  fill: currentColor;
}

/* --------------------------------------------------------------------------
   Custom cursor — HUD reticle
   Only mounted for fine pointers; JS adds .has-cursor to <html>.
   -------------------------------------------------------------------------- */

.has-cursor,
.has-cursor * { cursor: none !important; }

.cur {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s var(--ease-out);
  will-change: transform;
}
.cur.is-awake { opacity: 1; }

/* the dot tracks the pointer exactly */
.cur__dot {
  width: 7px;
  height: 7px;
  margin: -3.5px 0 0 -3.5px;
  background: var(--accent);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  transition: transform .2s var(--ease-out), background .2s var(--ease-out);
}
.cur--dot.is-down .cur__dot { transform: scale(2.1); }
.cur--dot.is-link .cur__dot { background: var(--ink); }

/* the reticle lags behind on a spring */
.cur--ring { margin: -26px 0 0 -26px; }

.cur__svg {
  width: 52px;
  height: 52px;
  overflow: visible;
  transition: transform .32s var(--ease-out);
}
.cur--ring.is-link .cur__svg { transform: scale(1.32); }
.cur--ring.is-down .cur__svg { transform: scale(.82); }
.cur--ring.is-drag .cur__svg { transform: scale(1.5); }

.cur__svg circle,
.cur__svg line,
.cur__svg path {
  fill: none;
  stroke: var(--accent);
  vector-effect: non-scaling-stroke;
  transition: opacity .3s var(--ease-out), stroke .3s var(--ease-out);
}

.cur__circle { stroke-width: 1; opacity: .5; }
.cur--ring.is-link .cur__circle { opacity: 0; }

.cur__ticks line { stroke-width: 1; opacity: .85; }
.cur--ring.is-link .cur__ticks line { opacity: 0; }

/* corner brackets — same motif as the section cards */
.cur__corners path { stroke-width: 1.25; opacity: 0; }
.cur--ring.is-link .cur__corners path,
.cur--ring.is-drag .cur__corners path { opacity: 1; }

.cur--ring.is-drag .cur__circle,
.cur--ring.is-drag .cur__ticks line { opacity: 0; }

/* arrows shown over the drag rail */
.cur__arrows path { stroke-width: 1.25; opacity: 0; stroke: var(--ink); }
.cur--ring.is-drag .cur__arrows path { opacity: 1; }

.cur__label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 30px);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
  opacity: 0;
  transition: opacity .25s var(--ease-out);
}
.cur--ring.is-drag .cur__label { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .cur__svg, .cur__dot { transition: none; }
}

/* --------------------------------------------------------------------------
   Preloader — word-by-word reveal (Wardogs intro)
   -------------------------------------------------------------------------- */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: grid;
  place-items: center;
  padding: var(--gutter);
  transition: opacity .7s var(--ease-out), visibility .7s;
}

.preloader.is-done { opacity: 0; visibility: hidden; }

.preloader__line {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(30px, 6.4vw, 84px);
  line-height: .95;
  letter-spacing: -.01em;
  max-width: 16ch;
}

.preloader__line b {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  font-weight: inherit;
}

.preloader__line b i {
  display: inline-block;
  font-style: normal;
  transform: translateY(105%);
  transition: transform .7s var(--ease-out);
}

.preloader__line b.is-in i { transform: translateY(0); }
.preloader__line b:last-child i { color: var(--accent); }

.preloader__bar {
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  bottom: var(--gutter);
  height: 1px;
  background: var(--line);
}
.preloader__bar::after {
  content: '';
  position: absolute;
  inset: 0 100% 0 0;
  background: var(--accent);
  animation: loadBar 2.2s var(--ease-out) forwards;
}
@keyframes loadBar { to { inset: 0 0 0 0; } }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px var(--gutter);
  background: linear-gradient(180deg, rgba(11, 11, 10, .92), rgba(11, 11, 10, 0));
  transition: background .4s var(--ease-out), border-color .4s var(--ease-out);
  border-bottom: 1px solid transparent;
}

.header.is-stuck {
  background: rgba(8, 8, 7, .94);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--line);
}

.lockup { display: flex; align-items: center; gap: 12px; }

.lockup__mark {
  width: 26px; height: 26px;
  background: var(--accent);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  flex: none;
}

.lockup__text {
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: .18em;
}
.lockup__text span { color: var(--ink-45); }

.nav { display: flex; gap: 28px; }
.nav a { color: var(--ink-60); transition: color .3s var(--ease-out); }
.nav a:hover { color: var(--ink); }

.header__cta { padding: 11px 18px; font-size: 11px; letter-spacing: .16em; }

.burger {
  display: none;
  width: 42px; height: 34px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.burger span {
  position: absolute;
  left: 11px; right: 11px;
  height: 1px;
  background: var(--ink);
  transition: transform .35s var(--ease-out), opacity .2s;
}
.burger span:nth-child(1) { top: 12px; }
.burger span:nth-child(2) { bottom: 12px; }
.burger.is-open span:nth-child(1) { top: 16px; transform: rotate(45deg); }
.burger.is-open span:nth-child(2) { bottom: 17px; transform: rotate(-45deg); }

/* --------------------------------------------------------------------------
   Hero B — "Signal"
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  isolation: isolate;
}

/* full-bleed footage wall */
.hero__wall { position: absolute; inset: 0; z-index: -3; background: #060605; }

.hero__frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.6s linear;
}
.hero__frame.is-live { opacity: 1; }

.hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  filter: saturate(.62) contrast(1.06) brightness(.78);
}
.hero__frame.is-live img { animation: wallDrift 13s linear forwards; }

@keyframes wallDrift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to   { transform: scale(1.14) translate3d(-1.4%, -1.2%, 0); }
}

.hero__scrim { position: absolute; inset: 0; z-index: -2; pointer-events: none; }
.hero__scrim--x { background: linear-gradient(90deg, rgba(11,11,10,.95) 0%, rgba(11,11,10,.74) 46%, rgba(11,11,10,.18) 100%); }
.hero__scrim--y { background: linear-gradient(0deg, rgba(11,11,10,.96) 0%, rgba(11,11,10,.1) 52%, rgba(11,11,10,.55) 100%); }

.hero__body {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 120px var(--gutter) clamp(40px, 6vw, 64px);
  max-width: 980px;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--ink-45);
  padding-bottom: 20px;
}

.hero__tag {
  padding: 5px 9px;
  border: 1px solid rgba(200, 120, 31, .5);
  color: var(--accent);
}

.blink { color: var(--accent); animation: blink 1.7s steps(1) infinite; }
@keyframes blink { 0%, 62% { opacity: 1; } 63%, 100% { opacity: .18; } }

.hero__bar {
  width: 74px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 22px;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform .9s var(--ease-out) .15s;
}
.is-ready .hero__bar { transform: scaleX(1); }

.hero h1 {
  font-size: clamp(58px, 11.6vw, 148px);
  line-height: .82;
  letter-spacing: -.025em;
  margin-bottom: 24px;
}

.hero h1 .word {
  display: block;
  filter: blur(18px);
  opacity: 0;
  transform: translateY(.14em);
  transition: filter 1.1s var(--ease-out), opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out);
}
.is-ready .hero h1 .word { filter: blur(0); opacity: 1; transform: none; }
.is-ready .hero h1 .word:nth-child(2) { transition-delay: .12s; }

.hero__lede {
  max-width: 54ch;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.5;
  color: var(--ink-60);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .9s var(--ease-out) .35s, transform .9s var(--ease-out) .35s;
}
.is-ready .hero__lede { opacity: 1; transform: none; }

.hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 26px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .9s var(--ease-out) .5s, transform .9s var(--ease-out) .5s;
}
.is-ready .hero__actions { opacity: 1; transform: none; }

.hero__status { color: var(--ink-45); }

.hero__scroll {
  position: absolute;
  left: var(--gutter);
  bottom: 14px;
  color: var(--ink-30);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero__scroll i {
  display: block;
  width: 1px; height: 20px;
  background: linear-gradient(180deg, var(--accent), transparent);
  animation: scrollHint 2s var(--ease-out) infinite;
}
@keyframes scrollHint { 0% { transform: scaleY(0); transform-origin: top; } 60% { transform: scaleY(1); transform-origin: top; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* --------------------------------------------------------------------------
   Oversized marquee ticker
   -------------------------------------------------------------------------- */

.ticker {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--bg-2);
  padding: clamp(14px, 2.4vw, 26px) 0;
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: tickerRun 42s linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }

@keyframes tickerRun { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }

.ticker__group { display: flex; align-items: center; gap: 34px; padding-right: 34px; }

.ticker__word {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(34px, 6vw, 76px);
  line-height: 1;
  letter-spacing: .01em;
  white-space: nowrap;
}
.ticker__word--dim { color: transparent; -webkit-text-stroke: 1px var(--ink-30); }

.ticker__mark {
  width: clamp(20px, 3vw, 38px);
  height: clamp(24px, 3.4vw, 44px);
  flex: none;
  background: var(--accent);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}

/* --------------------------------------------------------------------------
   Doctrine
   -------------------------------------------------------------------------- */

.doctrine {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--line);
}

.doctrine__card {
  position: relative;
  background: var(--bg);
  padding: 30px 26px 34px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background .4s var(--ease-out);
  overflow: hidden;
}
.doctrine__card:hover { background: var(--panel-2); }
.doctrine__card:hover .brackets span { border-color: var(--accent); }

.doctrine__icon {
  width: 76px;
  height: 76px;
  object-fit: contain;
  filter: brightness(1.5) contrast(1.05) drop-shadow(0 6px 18px rgba(0,0,0,.6));
  opacity: .9;
  transition: transform .5s var(--ease-out);
}
.doctrine__card:hover .doctrine__icon { transform: translateY(-4px) rotate(-3deg); }

.doctrine__num {
  font-family: var(--display);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: rgba(200, 120, 31, .9);
}

.doctrine__card h3 { font-size: 21px; letter-spacing: .06em; line-height: 1.15; }
.doctrine__card p { font-size: 15px; line-height: 1.55; color: var(--ink-60); }
.doctrine__meta { margin-top: auto; padding-top: 12px; color: var(--ink-30); }

/* --------------------------------------------------------------------------
   Kit — drag-to-explore rail
   -------------------------------------------------------------------------- */

.kit__tabs { display: flex; gap: 8px; flex-wrap: wrap; }

.kit__tab {
  padding: 10px 16px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink-60);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color .3s var(--ease-out), color .3s var(--ease-out), background .3s var(--ease-out);
}
.kit__tab:hover { border-color: var(--accent); color: var(--accent); }
.kit__tab.is-active { background: var(--accent); border-color: var(--accent); color: var(--bg); }

.drag {
  position: relative;
  margin-inline: calc(var(--gutter) * -1);
  padding-inline: var(--gutter);
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  -webkit-overflow-scrolling: touch;
}
.drag::-webkit-scrollbar { display: none; }
.drag.is-dragging { cursor: grabbing; scroll-behavior: auto; }

.drag__track { display: flex; gap: 14px; padding-block: 4px; width: max-content; }

.kit__card {
  position: relative;
  width: 232px;
  flex: none;
  border: 1px solid var(--line);
  background: var(--panel);
  display: flex;
  flex-direction: column;
  transition: border-color .35s var(--ease-out), background .35s var(--ease-out), transform .45s var(--ease-out);
}
.kit__card:hover { border-color: var(--accent); background: var(--panel-2); transform: translateY(-4px); }

.kit__thumb {
  height: 150px;
  display: grid;
  place-items: center;
  padding: 16px;
  background:
    radial-gradient(120% 90% at 50% 30%, rgba(200, 120, 31, .1), transparent 62%),
    repeating-linear-gradient(115deg, #141412 0 14px, #101010 14px 28px);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.kit__thumb img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: brightness(1.45) contrast(1.02) drop-shadow(0 10px 22px rgba(0, 0, 0, .7));
  transition: transform .5s var(--ease-out);
}
.kit__card:hover .kit__thumb img { transform: scale(1.07); }

.kit__meta { padding: 14px; display: flex; flex-direction: column; gap: 5px; }
.kit__meta b { font-family: var(--display); font-size: 16px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.kit__meta em { font-style: normal; color: var(--accent); font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }

.drag__hint {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-30);
  padding-top: 18px;
}
.drag__hint i {
  width: 30px; height: 1px; background: var(--ink-30); display: block;
  animation: hintSlide 2.4s var(--ease-out) infinite;
}
@keyframes hintSlide { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(8px); } }

/* --------------------------------------------------------------------------
   Trophy wall
   -------------------------------------------------------------------------- */

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: var(--line);
  margin-bottom: 28px;
}

.stats__cell { background: var(--bg-2); padding: 26px 22px; }
.stats__n { font-family: var(--display); font-size: clamp(34px, 4.4vw, 48px); font-weight: 700; line-height: 1; color: var(--accent); }
.stats__cell span { display: block; padding-top: 8px; color: var(--ink-45); }

.log { border: 1px solid var(--line); }

.log__row {
  display: grid;
  grid-template-columns: 92px 1.05fr 1.3fr 118px;
  gap: 16px;
  padding: 15px 20px;
  border-bottom: 1px solid var(--line-soft);
  transition: background .3s var(--ease-out);
}
.log__row:last-child { border-bottom: 0; }
.log__row:not(.log__row--head):hover { background: rgba(200, 120, 31, .08); }

.log__row--head {
  border-bottom: 1px solid var(--line);
  color: var(--ink-45);
}

.log__date { font-family: var(--mono); font-size: 12px; color: var(--ink-45); }
.log__row b { font-weight: 500; font-size: 15px; }
.log__row em { font-style: normal; color: var(--ink-60); font-size: 15px; }
.log__proof { font-family: var(--mono); font-size: 11px; letter-spacing: .06em; color: var(--accent); }

/* --------------------------------------------------------------------------
   Feed
   -------------------------------------------------------------------------- */

.feed {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: 186px;
  gap: 14px;
}

.clip {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  transition: border-color .35s var(--ease-out);
}
.clip:hover { border-color: var(--accent); }
.clip--lead { grid-row: span 2; }

.clip img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.46) saturate(.7);
  transition: transform .9s var(--ease-out), filter .5s var(--ease-out);
  z-index: -2;
}
.clip:hover img { transform: scale(1.06); filter: brightness(.6) saturate(.85); }

.clip::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(11, 11, 10, .92), transparent 68%);
}

.clip__meta { color: var(--ink-45); padding-bottom: 7px; }
.clip h3 { font-size: 16px; line-height: 1.15; }
.clip--lead h3 { font-size: clamp(20px, 2.4vw, 26px); }

.clip__play {
  position: absolute;
  top: 16px; right: 16px;
  width: 30px; height: 30px;
  border: 1px solid var(--ink-30);
  display: grid;
  place-items: center;
  transition: border-color .35s var(--ease-out), background .35s var(--ease-out);
}
.clip:hover .clip__play { border-color: var(--accent); background: var(--accent); }
.clip__play svg { width: 9px; fill: var(--ink); }
.clip:hover .clip__play svg { fill: var(--bg); }

/* --------------------------------------------------------------------------
   Join CTA
   -------------------------------------------------------------------------- */

.join {
  position: relative;
  border-top: 1px solid var(--line);
  padding: clamp(56px, 8vw, 96px) var(--gutter);
  overflow: hidden;
}

.join__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.join__bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.28) saturate(.4); }
.join__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11,11,10,.94), rgba(11,11,10,.55));
}

.join__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

.join h2 { font-size: clamp(38px, 6.2vw, 68px); line-height: .95; }
.join h2 span { color: var(--accent); }
.join p { max-width: 52ch; color: var(--ink-60); padding-top: 16px; }

.join__actions { display: flex; flex-direction: column; gap: 10px; }
.join__actions .btn { justify-content: center; }

/* clan tag plate */
.tagbox {
  position: relative;
  border: 1px solid rgba(200, 120, 31, .45);
  background: rgba(200, 120, 31, .06);
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.tagbox .mono { color: var(--ink-45); }
.tagbox b {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(38px, 4.6vw, 54px);
  line-height: 1;
  letter-spacing: .06em;
  color: var(--accent);
  text-shadow: 0 0 34px rgba(200, 120, 31, .35);
}

.tagbox__copy {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink-60);
  padding: 9px 16px;
  cursor: pointer;
  transition: border-color .3s var(--ease-out), color .3s var(--ease-out), background .3s var(--ease-out);
}
.tagbox__copy:hover { border-color: var(--accent); color: var(--accent); }
.tagbox__copy.is-copied { background: var(--accent); border-color: var(--accent); color: var(--bg); }

.join__terms { padding-top: 22px; display: grid; gap: 0; }
.join__term {
  display: flex;
  gap: 14px;
  padding: 11px 0;
  border-top: 1px solid var(--line-soft);
}
.join__term i { font-style: normal; font-family: var(--mono); font-size: 11px; color: var(--accent); }
.join__term span { font-size: 14px; color: var(--ink-60); line-height: 1.45; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.footer {
  border-top: 1px solid var(--line);
  padding: 28px var(--gutter);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  justify-content: space-between;
  color: var(--ink-30);
  background: var(--bg-2);
}
.footer a { color: var(--ink-45); transition: color .3s; }
.footer a:hover { color: var(--accent); }
.footer__credits { flex-basis: 100%; line-height: 1.9; }

/* --------------------------------------------------------------------------
   Scroll reveal
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(6px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out), filter .9s var(--ease-out);
}
.reveal.is-in { opacity: 1; transform: none; filter: blur(0); }

.reveal-stagger > * { transition-delay: calc(var(--i, 0) * 70ms); }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1080px) {
  .feed { grid-template-columns: 1fr 1fr; }
  .join__grid { grid-template-columns: 1fr; }
  .log__row { grid-template-columns: 80px 1fr; }
  .log__row em, .log__row .log__proof { grid-column: 2; }
  .log__row--head span:nth-child(3), .log__row--head span:nth-child(4) { display: none; }
}

@media (max-width: 860px) {
  .nav { display: none; }
  .burger { display: block; }

  .nav.is-open {
    display: flex;
    position: fixed;
    inset: 66px 0 auto 0;
    flex-direction: column;
    gap: 0;
    background: rgba(8, 8, 7, .98);
    border-block: 1px solid var(--line);
    padding: 8px 0;
  }
  .nav.is-open a { padding: 15px var(--gutter); border-bottom: 1px solid var(--line-soft); }

  .header__cta { display: none; }

  .hero__scroll { display: none; }
  .hero { min-height: 92svh; }
  .hero__body { max-width: none; padding-top: 100px; }
  .hero__scrim--x { background: linear-gradient(90deg, rgba(11,11,10,.9), rgba(11,11,10,.55)); }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .feed { grid-template-columns: 1fr; }
  .clip--lead { grid-row: span 1; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
}

/* --------------------------------------------------------------------------
   Reduced motion
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  html { scroll-behavior: auto; }
  .hero__frame.is-live img { animation: none; transform: scale(1.04); }
  .reveal { opacity: 1; transform: none; filter: none; }
  .hero h1 .word { filter: none; opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   Hub layout — three pillars under the hero
   -------------------------------------------------------------------------- */

/* the hero copy has to clear the pillar strip that sits over its foot */
.hero__body { padding-bottom: clamp(152px, 17vh, 192px); }

.pillars {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
}

.pillar {
  background: var(--bg);
  padding: 20px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  transition: background .35s var(--ease-out);
}
.pillar:hover { background: var(--panel-2); }

.pillar__n { color: var(--accent); }
.pillar--soon .pillar__n { color: var(--ink-30); }

.pillar b {
  font-family: var(--display);
  font-size: clamp(17px, 1.7vw, 23px);
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  line-height: 1;
}
.pillar--soon b { color: var(--ink-45); }

.pillar__go { font-size: 14px; color: var(--ink-45); }
.pillar--soon .pillar__go { color: var(--ink-30); }

/* --------------------------------------------------------------------------
   The arsenal
   -------------------------------------------------------------------------- */

.section__lede {
  max-width: 60ch;
  padding-top: 12px;
  font-size: 16px;
  color: var(--ink-60);
}

.arsenal {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.tool {
  position: relative;
  background: var(--bg);
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 196px;
  overflow: hidden;
  transition: background .35s var(--ease-out);
}
.tool:not(.is-inert):hover { background: var(--panel-2); }
.tool:not(.is-inert):hover .brackets span { border-color: var(--accent); }

.tool__head { display: flex; justify-content: space-between; align-items: center; }
.tool__head span { color: var(--ink-30); }
.tool__head em { font-style: normal; }

.tool--live .tool__head em { color: var(--accent); }
.tool--soon .tool__head em { color: var(--ink-60); }
.tool--planned .tool__head em { color: var(--ink-30); }

.tool b {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.1;
  transition: color .3s var(--ease-out);
}
.tool:not(.is-inert):hover b { color: var(--accent); }

.tool p { font-size: 14px; line-height: 1.5; color: var(--ink-45); }
.tool__go { margin-top: auto; padding-top: 12px; color: var(--ink-30); }
.tool--live .tool__go { color: var(--accent); }

.tool.is-inert { background: var(--bg-2); }
.tool.is-inert b { color: var(--ink-45); }
.tool.is-inert p { color: var(--ink-30); }

/* --------------------------------------------------------------------------
   Flagship band
   -------------------------------------------------------------------------- */

.flagship {
  position: relative;
  border-top: 1px solid var(--line);
  padding: clamp(52px, 7vw, 84px) var(--gutter);
  overflow: hidden;
}
.flagship__bg { position: absolute; inset: 0; z-index: -2; }
.flagship__bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.24) saturate(.4); }
.flagship__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11,11,10,.95), rgba(11,11,10,.5));
}

.flagship__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(30px, 5vw, 56px);
  align-items: center;
}

.flagship h2 {
  font-size: clamp(32px, 4.6vw, 50px);
  line-height: .98;
  padding: 14px 0 16px;
}
.flagship p { max-width: 50ch; color: var(--ink-60); padding-bottom: 24px; }

.flagship__readout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
/* :not(.brackets) — the bracket overlay is inset:0 and would paint over the tiles */
.flagship__readout > div:not(.brackets) { background: var(--bg); padding: 22px 20px; }
.flagship__readout span { display: block; color: var(--ink-45); padding-bottom: 10px; }
.flagship__readout b {
  font-family: var(--display);
  font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.flagship__readout b i { font-style: normal; font-size: .45em; color: var(--ink-45); }
.flagship__readout > div:nth-child(n+4) b { color: var(--ink); }

@media (max-width: 900px) {
  /* the hero is a flex row on desktop; stack it so the pillars fall underneath
     instead of becoming a second column */
  .hero { min-height: 0; flex-direction: column; }
  .pillars { position: static; grid-template-columns: 1fr; }
  .hero__body { padding-bottom: 40px; }
  .flagship__grid { grid-template-columns: 1fr; }
}
