@charset "UTF-8";
/* =========================================================
   ROGUE CANON — street / graffiti bold theme
   North London noise. Anonymous anthems for The Arsenal.
   ========================================================= */
@import url("https://fonts.bunny.net/css?family=anton:400|oswald:500,600,700|permanent-marker:400|inter:400,500,600,700&display=swap");
:root {
  --red: #ef0107; /* Arsenal red */
  --red-deep: #b00009;
  --amber: #ff7a1a; /* flare */
  --ink: #0a0908; /* near-black */
  --smoke: #161311; /* panel */
  --smoke-2: #211c19;
  --paper: #f4f1ea; /* off-white */
  --paper-dim: #b9b2a7;
  --line: rgba(255,255,255,.12);
  --ff-display: "Anton", Impact, sans-serif;
  --ff-head: "Oswald", sans-serif;
  --ff-mark: "Permanent Marker", cursive;
  --ff-body: "Inter", system-ui, sans-serif;
  --wrap: 1180px;
  --radius: 2px;
}

/* ---------- reset ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff-body);
  background: var(--ink);
  color: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* ---------- film grain overlay ---------- */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- layout helpers ---------- */
.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 22px;
}

.section {
  padding: 90px 0;
  position: relative;
}

.section--smoke {
  background: var(--smoke);
}

.section--red {
  background: var(--red);
  color: var(--ink);
}

.center {
  text-align: center;
}

.stack > * + * {
  margin-top: 18px;
}

/* diagonal slash divider */
.slash {
  height: 0;
  border-bottom: 6px solid var(--red);
  transform: skewY(-2.2deg);
  transform-origin: left;
  margin: 0;
}

/* ---------- type ---------- */
.kicker {
  font-family: var(--ff-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.78rem;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--red);
  display: inline-block;
}

.section--red .kicker, .section--red .kicker::before {
  color: var(--ink);
  background: var(--ink);
}

.section--red .kicker::before {
  background: var(--ink);
}

h1, h2, h3 {
  font-family: var(--ff-display);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.display {
  font-family: var(--ff-display);
  text-transform: uppercase;
  line-height: 0.86;
}

h2.title {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  margin: 14px 0 8px;
}

h3 {
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.lead {
  font-size: 1.12rem;
  color: var(--paper-dim);
  max-width: 62ch;
}

.mark {
  font-family: var(--ff-mark);
  color: var(--red);
  transform: rotate(-3deg);
  display: inline-block;
}

.outline-text {
  color: transparent;
  -webkit-text-stroke: 2px var(--paper);
}

.hl {
  color: var(--red);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  padding: 15px 26px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: transform 0.12s ease, background 0.2s, color 0.2s;
  position: relative;
}

.btn:active {
  transform: translateY(1px);
}

.btn-red {
  background: var(--red);
  color: #fff;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.55);
}

.btn-red:hover {
  background: #fff;
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--red);
}

.btn-ghost {
  border-color: var(--paper);
  color: var(--paper);
}

.btn-ghost:hover {
  background: var(--paper);
  color: var(--ink);
}

.btn-yt {
  background: #ff0000;
  color: #fff;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.55);
}

.btn-yt:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.55);
}

.btn-ig {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-dark:hover {
  background: #fff;
  color: var(--ink);
}

.btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ---------- header / nav ---------- */
.site-head {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 9, 8, 0.86);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-display);
  font-size: 1.5rem;
  letter-spacing: 0.02em;
}

.brand .dot {
  width: 14px;
  height: 14px;
  background: var(--red);
  display: inline-block;
  transform: rotate(45deg);
}

.brand b {
  color: #fff;
}

.brand i {
  font-style: normal;
  color: var(--red);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a {
  font-family: var(--ff-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.84rem;
  color: var(--paper-dim);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active {
  color: #fff;
}

.nav-links a.active::after, .nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--red);
  transform: skewX(-12deg);
}

.nav-cta {
  margin-left: 8px;
}

.nav-cta .btn {
  padding: 10px 18px;
  font-size: 0.8rem;
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  align-items: center;
}

.burger span {
  width: 24px;
  height: 3px;
  background: #fff;
  transition: 0.25s;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.05);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 9, 8, 0.55) 0%, rgba(10, 9, 8, 0.2) 40%, rgba(10, 9, 8, 0.95) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 9vh;
  padding-top: 120px;
}

.hero h1 {
  font-size: clamp(3.5rem, 15vw, 11rem);
  color: #fff;
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.6);
}

.hero h1 .line2 {
  color: var(--red);
  display: block;
}

.hero-tag {
  font-family: var(--ff-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  color: var(--paper);
  margin: 18px 0 26px;
  max-width: 48ch;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.sticker {
  position: absolute;
  z-index: 3;
  font-family: var(--ff-mark);
  background: var(--red);
  color: #fff;
  padding: 10px 16px;
  transform: rotate(-8deg);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.5);
  font-size: 1rem;
}

.hero .sticker {
  top: 120px;
  right: 6%;
}

/* ---------- ticker ---------- */
.ticker {
  background: var(--red);
  color: var(--ink);
  overflow: hidden;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  padding: 12px 0;
}

.ticker-track {
  display: flex;
  gap: 42px;
  white-space: nowrap;
  width: max-content;
  animation: scroll 28s linear infinite;
  font-family: var(--ff-display);
  font-size: 1.5rem;
  text-transform: uppercase;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 42px;
}

.ticker-track span::after {
  content: "●";
  color: var(--ink);
}

@keyframes scroll {
  to {
    transform: translateX(-50%);
  }
}
/* ---------- featured / cards ---------- */
.grid {
  display: grid;
  gap: 26px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.feature .art {
  position: relative;
}

.feature .art img {
  border: 3px solid #fff;
  box-shadow: 12px 12px 0 var(--red);
}

.tape {
  position: absolute;
  top: -16px;
  left: 30px;
  background: rgba(244, 241, 234, 0.85);
  color: #111;
  font-family: var(--ff-mark);
  padding: 6px 22px;
  transform: rotate(-4deg);
  font-size: 0.9rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.card {
  background: var(--smoke);
  border: 1px solid var(--line);
  padding: 26px;
  position: relative;
  overflow: hidden;
  transition: transform 0.15s, border-color 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
}

.card .num {
  font-family: var(--ff-display);
  font-size: 3.2rem;
  color: var(--red);
  line-height: 1;
  opacity: 0.9;
}

.card h3 {
  margin: 8px 0 6px;
  color: #fff;
}

.card p {
  color: var(--paper-dim);
  font-size: 0.98rem;
}

/* ---------- MUSIC PLAYER ---------- */
.player {
  background: var(--smoke);
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  position: relative;
}

.player-now {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 22px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.player-now .np-art {
  width: 120px;
  height: 120px;
  object-fit: cover;
  background: var(--ink);
  border: 2px solid var(--line);
}

.np-meta .np-kicker {
  font-family: var(--ff-head);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--red);
}

.np-meta .np-title {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  color: #fff;
  line-height: 1;
  margin: 6px 0;
}

.np-meta .np-artist {
  color: var(--paper-dim);
  font-size: 0.92rem;
}

.controls {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

.controls button {
  display: grid;
  place-items: center;
  transition: transform 0.12s, color 0.2s;
}

.controls button:hover {
  color: var(--red);
}

.controls button:active {
  transform: scale(0.9);
}

.controls .ctrl svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.controls .play {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
}

.controls .play:hover {
  background: #fff;
  color: var(--ink);
}

.controls .play svg {
  width: 24px;
  height: 24px;
}

.seek {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 160px;
}

.time {
  font-family: var(--ff-head);
  font-size: 0.78rem;
  color: var(--paper-dim);
  min-width: 38px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.bar {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.14);
  position: relative;
  cursor: pointer;
  border-radius: 6px;
}

.bar .fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--red);
  border-radius: 6px;
}

.bar .knob {
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  left: 0;
  box-shadow: 0 0 0 3px var(--red);
}

/* playlist */
.track {
  display: grid;
  grid-template-columns: 40px 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding: 14px 22px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: background 0.15s;
}

.track:last-child {
  border-bottom: none;
}

.track:hover {
  background: var(--smoke-2);
}

.track .t-num {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  color: var(--paper-dim);
}

.track .t-eq {
  display: none;
  gap: 2px;
  align-items: flex-end;
  height: 18px;
}

.track .t-eq i {
  width: 3px;
  background: var(--red);
  animation: eq 1s ease-in-out infinite;
}

.track .t-eq i:nth-child(2) {
  animation-delay: 0.2s;
}

.track .t-eq i:nth-child(3) {
  animation-delay: 0.4s;
}

.track .t-eq i:nth-child(4) {
  animation-delay: 0.1s;
}

@keyframes eq {
  0%, 100% {
    height: 4px;
  }
  50% {
    height: 18px;
  }
}
.track.playing {
  background: var(--smoke-2);
}

.track.playing .t-num {
  display: none;
}

.track.playing .t-eq {
  display: flex;
}

.track.playing .t-title {
  color: var(--red);
}

.track .t-title {
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 1.05rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.track .t-sub {
  color: var(--paper-dim);
  font-size: 0.82rem;
  font-family: var(--ff-body);
  text-transform: none;
  letter-spacing: 0;
}

.track .t-tag {
  font-size: 0.68rem;
  font-family: var(--ff-head);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink);
  background: var(--amber);
  padding: 3px 8px;
  border-radius: 2px;
}

.track .t-dur {
  font-family: var(--ff-head);
  color: var(--paper-dim);
  font-variant-numeric: tabular-nums;
  font-size: 0.86rem;
}

/* ---------- videos ---------- */
.video-wall {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 26px;
  align-items: start;
}

.vid {
  position: relative;
  background: #000;
  border: 3px solid #fff;
  box-shadow: 10px 10px 0 var(--red);
  overflow: hidden;
}

.vid video {
  width: 100%;
  display: block;
  background: #000;
}

.vid--portrait {
  max-width: 360px;
}

.yt-cta {
  background: var(--smoke);
  border: 1px solid var(--line);
  padding: 40px;
  text-align: center;
}

.yt-cta .yt-logo {
  width: 70px;
  height: auto;
  margin: 0 auto 16px;
}

/* ---------- about ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.crew {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.crew figure {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}

.crew img {
  aspect-ratio: 1/1;
  object-fit: cover;
  filter: grayscale(0.3) contrast(1.05);
  transition: 0.3s;
}

.crew figure:hover img {
  filter: none;
  transform: scale(1.05);
}

.crew figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 10px;
  font-family: var(--ff-display);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  font-size: 1rem;
  text-transform: uppercase;
}

.stat {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.stat .n {
  font-family: var(--ff-display);
  font-size: 2.6rem;
  color: var(--red);
  line-height: 1;
}

.stat .l {
  font-family: var(--ff-head);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  color: var(--paper-dim);
}

/* quote / pull */
.pull {
  font-family: var(--ff-display);
  text-transform: uppercase;
  font-size: clamp(1.8rem, 5vw, 3.4rem);
  line-height: 1;
  max-width: 18ch;
  margin: 0 auto;
}

.pull .hl {
  color: var(--red);
}

/* ---------- sighthound section ---------- */
.collab-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.collab-hero .txt {
  padding: 70px clamp(22px, 5vw, 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.collab-hero .pic {
  background-size: cover;
  background-position: center;
  min-height: 340px;
}

.paw {
  color: var(--amber);
}

/* ---------- footer ---------- */
.site-foot {
  background: #000;
  border-top: 4px solid var(--red);
  padding: 60px 0 30px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.foot-brand .display {
  font-size: 2.4rem;
  color: #fff;
}

.foot-brand p {
  color: var(--paper-dim);
  max-width: 36ch;
  margin-top: 10px;
}

.foot-col h4 {
  font-family: var(--ff-head);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  color: var(--red);
  margin-bottom: 14px;
}

.foot-col a {
  display: block;
  color: var(--paper-dim);
  padding: 5px 0;
  transition: 0.2s;
  font-size: 0.95rem;
}

.foot-col a:hover {
  color: #fff;
  transform: translateX(4px);
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--paper-dim);
  font-size: 0.82rem;
}

.foot-bottom .mark {
  font-size: 1rem;
}

.social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.social a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--smoke);
  border: 1px solid var(--line);
  transition: 0.2s;
}

.social a:hover {
  background: var(--red);
  transform: translateY(-3px);
}

.social svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

/* ---------- page hero (interior) ---------- */
.page-hero {
  padding: 140px 0 60px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(239, 1, 7, 0.22), transparent 55%);
}

.page-hero .wrap {
  position: relative;
}

.page-hero h1 {
  font-size: clamp(3rem, 9vw, 7rem);
  color: #fff;
}

.page-hero h1 .hl {
  color: var(--red);
}

/* ---------- utility ---------- */
.muted {
  color: var(--paper-dim);
}

.mt-0 {
  margin-top: 0;
}

.mt-l {
  margin-top: 34px;
}

.divider-tag {
  font-family: var(--ff-mark);
  color: var(--red);
  font-size: 1.3rem;
  transform: rotate(-2deg);
  display: inline-block;
}

/* progressive enhancement: only hide if JS is active (.js on ) */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .ticker-track {
    animation: none;
  }
  .track .t-eq i {
    animation: none;
    height: 12px;
  }
}
/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .feature, .about-grid, .video-wall, .collab-hero {
    grid-template-columns: 1fr;
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
  .collab-hero .pic {
    min-height: 260px;
    order: -1;
  }
}
@media (max-width: 680px) {
  .nav-links {
    position: fixed;
    inset: 68px 0 auto 0;
    background: var(--ink);
    flex-direction: column;
    gap: 0;
    padding: 10px 22px 24px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    transition: transform 0.3s;
    height: auto;
  }
  .nav-links.open {
    transform: none;
  }
  .nav-links a {
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }
  .nav-cta {
    display: none;
  }
  .burger {
    display: flex;
  }
  .nav-links.open + .nav-cta {
    display: block;
  }
  .section {
    padding: 64px 0;
  }
  .player-now {
    grid-template-columns: 84px 1fr;
    gap: 14px;
  }
  .player-now .np-art {
    width: 84px;
    height: 84px;
  }
  .grid-3, .grid-2, .crew {
    grid-template-columns: 1fr;
  }
  .foot-grid {
    grid-template-columns: 1fr;
  }
  .track {
    grid-template-columns: 30px 1fr auto;
    gap: 10px;
    padding: 14px;
  }
  .track .t-tag {
    display: none;
  }
  .feature .art img {
    box-shadow: 8px 8px 0 var(--red);
  }
}