/* ============================================================
   Fort Drake - hype site
   Fire / dragon / streamer aesthetic. Dark, heavy, condensed.
   ============================================================ */

:root {
  --bg:        #0a0807;
  --bg-2:      #100b09;
  --panel:     #15100d;
  --ink:       #f6ece1;
  --muted:     #a99a8c;
  --line:      rgba(255, 240, 220, .09);

  --fire-1:    #ffd24a;
  --fire-2:    #ff7a18;
  --fire-3:    #e10600;
  --ember:     #ff5a1f;

  --display:   'Anton', 'Arial Narrow', sans-serif;
  --cond:      'Barlow Semi Condensed', 'Arial Narrow', sans-serif;
  --body:      'Barlow', system-ui, sans-serif;

  --maxw:      1120px;
}

/* --- reset --- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ol, ul { list-style: none; padding: 0; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ============================================================
   Brand wordmark - skewed, fire-filled, glowing
   ============================================================ */
.wordmark {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .005em;
  line-height: .9;
  transform: skewX(-8deg);
  background: linear-gradient(176deg, var(--fire-1) 4%, var(--fire-2) 46%, var(--fire-3) 96%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter:
    drop-shadow(0 1px 0 rgba(0,0,0,.55))
    drop-shadow(0 0 26px rgba(255, 86, 0, .35));
}
.wordmark--sm {
  font-size: 1.18rem;
  letter-spacing: .02em;
  display: inline-block;
}

/* ============================================================
   Atmosphere - grain + embers
   ============================================================ */
.grain {
  position: fixed; inset: 0; z-index: 60; pointer-events: none;
  opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.embers {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; overflow: hidden;
}
.ember {
  position: absolute; bottom: -10px;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 8px 1px rgba(255, 90, 31, .8);
  opacity: 0;
  animation: rise linear infinite;
}
@keyframes rise {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  12%  { opacity: .9; }
  80%  { opacity: .55; }
  100% { transform: translateY(-104vh) translateX(var(--drift, 14px)) scale(.3); opacity: 0; }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  --pad: 14px 22px;
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .96rem;
  padding: var(--pad);
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--fire {
  color: #1a0a02;
  background: linear-gradient(180deg, var(--fire-1), var(--fire-2) 55%, var(--fire-3));
  box-shadow: 0 8px 24px rgba(225, 6, 0, .28), inset 0 1px 0 rgba(255,255,255,.35);
}
.btn--fire:hover {
  box-shadow: 0 10px 34px rgba(255, 90, 0, .5), inset 0 1px 0 rgba(255,255,255,.45);
  transform: translateY(-1px);
}
.btn--ghost {
  color: var(--ink);
  border-color: rgba(255, 130, 60, .35);
  background: rgba(255, 90, 20, .05);
}
.btn--ghost:hover {
  border-color: var(--fire-2);
  background: rgba(255, 90, 20, .12);
}

/* live dot */
.livedot {
  width: 9px; height: 9px; border-radius: 50%;
  background: #ff2d2d;
  box-shadow: 0 0 0 0 rgba(255, 45, 45, .7);
  animation: pulse 1.8s ease-out infinite;
  flex: none;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 45, 45, .65); }
  70%  { box-shadow: 0 0 0 9px rgba(255, 45, 45, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 45, 45, 0); }
}

/* ============================================================
   Header
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 13px 22px;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(10, 8, 7, .82);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--line);
}
.nav__brand { display: inline-flex; align-items: center; gap: 10px; }
.flame {
  width: 16px; height: 20px; flex: none;
  background: linear-gradient(180deg, var(--fire-1), var(--fire-3));
  clip-path: polygon(50% 0, 72% 32%, 88% 22%, 80% 56%, 100% 70%, 64% 76%, 50% 100%, 36% 76%, 0 70%, 20% 56%, 12% 22%, 28% 32%);
  filter: drop-shadow(0 0 8px rgba(255, 90, 0, .6));
}
.nav__cta { --pad: 9px 15px; font-size: .82rem; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding-top: 92px; padding-bottom: 60px;
  overflow: hidden;
}
.hero__glow {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(120% 78% at 50% 118%, rgba(255, 96, 0, .55), rgba(225, 6, 0, .12) 38%, transparent 66%),
    radial-gradient(80% 60% at 80% -10%, rgba(120, 20, 0, .35), transparent 60%),
    linear-gradient(180deg, #1a0d07 0%, var(--bg) 46%, #050302 100%);
}
.hero__inner { position: relative; z-index: 2; }
.eyebrow {
  font-family: var(--cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .26em;
  font-size: .8rem;
  color: var(--fire-2);
  margin-bottom: 18px;
}
.hero__title {
  font-size: clamp(4.6rem, 19vw, 15rem);
  margin-bottom: 8px;
}
.hero__tag {
  font-family: var(--cond);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: .01em;
  font-size: clamp(1.3rem, 4.4vw, 2.6rem);
  color: var(--ink);
  margin-bottom: 22px;
}
.hero__hook {
  max-width: 33ch;
  font-size: clamp(1.05rem, 2.1vw, 1.32rem);
  color: var(--muted);
  margin-bottom: 30px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 13px; }
.hero__fineprint {
  margin-top: 22px;
  font-family: var(--cond);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
  color: #6f655b;
}

/* ============================================================
   Ticker
   ============================================================ */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #160c08, #0c0705);
  overflow: hidden;
  white-space: nowrap;
}
.ticker__track {
  display: flex;
  width: max-content;
}
.ticker__track.is-ready {
  animation: marquee 30s linear infinite;
}
.ticker__group {
  display: flex; align-items: center; gap: 22px;
  flex: none;
  padding: 13px 22px 13px 0;
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 1.05rem;
  letter-spacing: .04em;
  color: rgba(246, 236, 225, .62);
}
.ticker__group .dot { color: var(--fire-2); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   Section shared
   ============================================================ */
.stream, .host, .fishtoys, .cta { padding: clamp(64px, 9vw, 116px) 0; }
.section-head { margin-bottom: 34px; }
.label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .78rem;
  color: var(--fire-2);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  letter-spacing: .01em;
  line-height: .95;
  transform: skewX(-6deg);
}

/* ============================================================
   Stream
   ============================================================ */
.stream { background: linear-gradient(180deg, var(--bg), var(--bg-2)); }
.stream-frame {
  position: relative;
  padding: 7px;
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(255, 120, 40, .35), rgba(225, 6, 0, .12) 60%, rgba(0,0,0,.4));
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6), 0 0 60px rgba(255, 80, 0, .12);
}
.stream-frame__ratio {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 2px;
  overflow: hidden;
}
.stream-frame__ratio iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}
.stream__foot {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}
.stream__emblem-link {
  flex: none;
  display: inline-block;
  line-height: 0;
  border-radius: 50%;
}
.stream__emblem {
  width: 104px; height: 104px;
  display: block;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255, 120, 40, .35), 0 0 30px rgba(255, 80, 0, .3);
  transition: transform .15s ease, box-shadow .2s ease;
}
.stream__emblem-link:hover .stream__emblem {
  transform: scale(1.05);
  box-shadow: 0 0 0 1px rgba(255, 140, 60, .65), 0 0 44px rgba(255, 90, 0, .5);
}
.stream__caption {
  margin: 0;
  max-width: 48ch;
  color: var(--muted);
  font-size: 1.08rem;
}

/* ============================================================
   Host - the warden
   ============================================================ */
.host { background: var(--bg); }
.host__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}
.host__shot { margin: 0; }
.host__shot img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgba(255, 120, 40, .25);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .6), 0 0 50px rgba(255, 80, 0, .1);
}

.host__bio p {
  color: var(--ink);
  font-size: 1.12rem;
  margin-bottom: 16px;
}
.rap {
  display: grid;
  gap: 9px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.rap li {
  position: relative;
  padding-left: 26px;
  font-family: var(--cond);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 1rem;
  color: var(--muted);
}
.rap li::before {
  content: "";
  position: absolute; left: 0; top: .3em;
  width: 12px; height: 14px;
  background: linear-gradient(180deg, var(--fire-1), var(--fire-3));
  clip-path: polygon(50% 0, 72% 32%, 88% 22%, 80% 56%, 100% 70%, 64% 76%, 50% 100%, 36% 76%, 0 70%, 20% 56%, 12% 22%, 28% 32%);
}

/* ============================================================
   Fishtoys - the parody catalog
   ============================================================ */
.fishtoys { background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
.fishtoys__intro {
  max-width: 54ch;
  margin-top: -14px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.08rem;
}
.toys {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
  gap: 14px;
}
.toy {
  position: relative;
  padding: 22px 20px 24px;
  background: rgba(255, 255, 255, .015);
  border: 1px solid var(--line);
  border-top: 2px solid rgba(255, 120, 40, .5);
  border-radius: 3px;
  transition: border-color .2s ease, transform .12s ease, box-shadow .2s ease;
}
.toy:hover {
  border-top-color: var(--fire-2);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .5), 0 0 40px rgba(255, 90, 0, .08);
}
.toy__price {
  display: inline-block;
  font-family: var(--display);
  font-size: 1.6rem;
  transform: skewX(-8deg);
  background: linear-gradient(180deg, var(--fire-1), var(--fire-3));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.toy h3 {
  font-family: var(--cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: 1.22rem;
  margin: 4px 0 8px;
}
.toy p { color: var(--muted); font-size: .98rem; }
.fishtoys__fine {
  margin-top: 26px;
  font-family: var(--cond);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .82rem;
  color: #6f655b;
}

/* ============================================================
   Notify / CTA
   ============================================================ */
.cta {
  position: relative;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-2), #0c0604);
  overflow: hidden;
}
.cta__glow {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(70% 60% at 50% 120%, rgba(255, 96, 0, .4), transparent 62%);
}
.cta__inner { position: relative; z-index: 2; max-width: 640px; }
.cta__title { font-size: clamp(2.6rem, 9vw, 5.4rem); margin-bottom: 16px; }
.cta__copy { color: var(--muted); font-size: 1.12rem; margin: 0 auto 26px; max-width: 42ch; }

.cta .btn { margin-top: 4px; }

/* ============================================================
   Footer
   ============================================================ */
.foot {
  border-top: 1px solid var(--line);
  background: #070504;
  padding: 46px 0;
}
.foot__inner { display: grid; gap: 10px; }
.foot__brand { font-size: 1.5rem; }
.foot__tag {
  font-family: var(--cond); font-style: italic; font-weight: 600;
  text-transform: uppercase; letter-spacing: .04em;
  color: var(--muted);
}
.foot__disclaim {
  max-width: 62ch;
  color: #7a6f64;
  font-size: .9rem;
  margin-top: 4px;
}
.foot__meta {
  display: flex; flex-wrap: wrap; gap: 6px 18px; align-items: center;
  font-family: var(--cond);
  text-transform: uppercase; letter-spacing: .08em;
  font-size: .82rem;
  color: var(--muted);
  margin-top: 8px;
}
.foot__meta a:hover { color: var(--fire-2); }
.foot__addr { color: #6f655b; }
.foot__copy { color: #5a514a; font-size: .82rem; margin-top: 6px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 780px) {
  .host__grid { grid-template-columns: 1fr; gap: 24px; }
  .host__shot { max-width: 540px; }
}
@media (max-width: 620px) {
  .hero { min-height: 92svh; }
  .stamp { top: 12px; }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .embers, .grain { display: none; }
  .livedot { animation: none; }
  .btn { transition: none; }
}
