:root {
  --bg: #050505;
  --panel: #0a0a0a;
  --panel-2: #111111;
  --text: #f3eee7;
  --muted: #aaa39d;
  --line: #292929;
  --accent: #e17ab7;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "IBM Plex Mono", monospace;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.shell {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.intro {
  padding-block: 54px 72px;
}

.intro-panel {
  width: min(100%, 790px);
  margin-inline: auto;
  padding: 48px 48px 42px;
  text-align: center;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 18px;
}

.intro-image {
  width: 132px;
  height: 132px;
  margin: 0 auto 24px;
  border-radius: 50%;
  border: 1px solid #4b4b4b;
  overflow: hidden;
  background: #000;
}

.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eyebrow,
.section-kicker,
.card-label {
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.intro h1 {
  margin: 8px 0 0;
  font-family: Inter, sans-serif;
  font-size: clamp(40px, 5.6vw, 58px);
  line-height: .9;
  letter-spacing: -.065em;
}

.intro h1 span {
  margin-left: 10px;
  color: var(--accent);
  font-size: .52em;
  letter-spacing: 0;
  vertical-align: 13%;
}

.profile-role {
  margin: 18px 0 0;
}

.social-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-top: 26px;
}

.social-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: color .18s ease, transform .18s ease;
}

.social-icon:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

.social-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-icon .fill-dot,
.social-icon .play-fill {
  fill: currentColor;
  stroke: none;
}

.facebook-icon {
  font-family: Arial, sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}

.youtube-icon svg {
  width: 34px;
  height: 34px;
}

.content { padding: 18px 0 88px; }
.section-heading { margin-bottom: 26px; }
.section-heading h2,
.simple-panel h2,
.placeholder h2 {
  margin: 4px 0 0;
  font-family: Inter, sans-serif;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -.04em;
}

.release-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.feature-card {
  min-height: 380px;
  border: 1px solid var(--line);
  background: var(--panel);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  overflow: hidden;
}
.feature-image {
  min-height: 100%;
  background: #050505;
  overflow: hidden;
}
.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.square-image img { object-fit: contain; padding: 22px; }
.feature-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 30px;
}
.feature-copy h3 {
  margin: 5px 0 12px;
  font-family: Inter, sans-serif;
  font-size: 26px;
  letter-spacing: -.03em;
}
.feature-copy p:not(.card-label) { margin: 0 0 22px; color: var(--muted); font-size: 13px; }
.small-link { margin-top: auto; color: var(--accent); font-size: 12px; text-transform: uppercase; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.simple-panel,
.visual-panel { min-height: 340px; padding: clamp(34px, 5vw, 70px); }
.simple-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border-right: 1px solid var(--line);
}
.simple-panel p:not(.section-kicker) { max-width: 540px; color: var(--muted); }
.visual-panel { display: flex; align-items: center; justify-content: center; }
.visual-panel img { width: min(70%, 290px); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid #4a4a4a;
  color: var(--text);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.button span { color: var(--accent); }

.placeholder { padding-block: 86px; }
.placeholder p:not(.section-kicker) { color: var(--muted); max-width: 620px; }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 16px 0 20px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.footer-links a { color: #77716c; }
.footer-links a:hover { color: var(--accent); }
.footer-inner p { margin: 0; color: #5c5753; font-size: 9px; }

@media (max-width: 760px) {
  .shell { width: min(calc(100% - 28px), var(--max)); }
  .intro { padding-block: 24px 50px; }
  .intro-panel { padding: 38px 18px 24px; border-radius: 14px; }
  .intro-image { width: 112px; height: 112px; }
  .social-strip { gap: 20px; }
  .release-grid { grid-template-columns: 1fr; }
  .feature-card { grid-template-columns: 1fr; }
  .feature-image { aspect-ratio: 1 / 1; }
  .feature-copy { min-height: 220px; }
  .split { grid-template-columns: 1fr; }
  .simple-panel { border-right: 0; border-bottom: 1px solid var(--line); }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
}

.eyebrow span { color: #77716c; padding-inline: .35em; }
.inline-links { display: flex; flex-wrap: wrap; gap: 16px; margin-top: auto; }
.inline-links .small-link { margin-top: 0; }
.muted-link { opacity: .72; cursor: default; }

/* Latest releases — 2x2 cover mosaic */
.releases-heading {
  text-align: center;
  margin-bottom: 28px;
}

.releases-heading h2 {
  font-size: clamp(30px, 3.2vw, 44px);
}

.release-mosaic {
  width: min(100%, 760px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 18px;
}

.release-tile {
  display: block;
  min-width: 0;
}

.release-cover {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  transition: border-color .18s ease;
}

.release-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.release-tile:hover .release-cover {
  border-color: var(--accent);
}

.release-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding-top: 11px;
}

.release-meta h3 {
  margin: 0;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.015em;
}

.release-meta span {
  flex: 0 0 auto;
  color: var(--accent);
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .release-mosaic {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .release-meta h3 {
    font-size: 14px;
  }
}

/* V8 — Farseers Collective */
.farseers-section {
  padding: 76px 24px 82px;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.farseers-section h2 {
  margin: 5px 0 24px;
  font-family: Inter, sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -.04em;
}

.farseers-logo-link {
  width: min(100%, 590px);
  min-height: 154px;
  margin: 0 auto;
  padding: 18px 34px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #513044;
  border-radius: 14px;
  background: #080808;
  transition: border-color .18s ease, transform .18s ease, background .18s ease;
}

.farseers-logo-link img {
  width: min(100%, 470px);
  height: 92px;
  object-fit: contain;
}

.farseers-logo-link span {
  margin-top: -4px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.farseers-logo-link:hover {
  border-color: var(--accent);
  background: #0c090b;
  transform: translateY(-2px);
}

.farseers-copy {
  max-width: 610px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 760px) {
  .farseers-section { padding: 56px 14px 60px; }
  .farseers-logo-link { min-height: 126px; padding: 14px 18px 10px; }
  .farseers-logo-link img { height: 74px; }
}

/* V9 — expanded artist links */
.music-note-icon { font-family: Arial, sans-serif; font-size: 30px; font-weight: 700; }
.tidal-icon { font-size: 24px; }
.deezer-icon { width: 42px; font-family: Arial, sans-serif; font-size: 15px; font-weight: 700; letter-spacing: -2px; }
@media (max-width: 520px) {
  .social-strip { gap: 12px; flex-wrap: wrap; }
  .social-icon { width: 32px; height: 32px; }
  .deezer-icon { width: 38px; }
}


/* V10 — clean Steknika-inspired social/stream links */
.social-strip-v10 {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 28px;
}

.social-strip-v10 .social-link-v10 {
  width: 74px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  color: var(--paper);
  text-decoration: none;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: color .18s ease, transform .18s ease;
}

.social-strip-v10 .social-link-v10:hover {
  color: var(--pink);
  transform: translateY(-2px);
}

.social-mark-v10 {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: currentColor;
}

.social-mark-v10 svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-mark-v10 svg .fill-dot {
  fill: currentColor;
  stroke: none;
}

.social-letter-v10 {
  font-family: Arial, sans-serif;
  font-size: 31px;
  font-weight: 800;
}

.social-note-v10 {
  font-family: Arial, sans-serif;
  font-size: 31px;
  font-weight: 700;
}

.tidal-grid-v10 {
  grid-template-columns: repeat(2, 8px);
  grid-template-rows: repeat(2, 8px);
  gap: 2px;
  transform: rotate(45deg) scale(.85);
}

.tidal-grid-v10 i {
  width: 8px;
  height: 8px;
  background: currentColor;
}

.deezer-bars-v10 {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
}

.deezer-bars-v10 i {
  width: 5px;
  background: currentColor;
}

.deezer-bars-v10 i:nth-child(1) { height: 9px; }
.deezer-bars-v10 i:nth-child(2) { height: 14px; }
.deezer-bars-v10 i:nth-child(3) { height: 20px; }
.deezer-bars-v10 i:nth-child(4) { height: 26px; }

@media (max-width: 620px) {
  .social-strip-v10 {
    gap: 22px 14px;
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
  }
  .social-strip-v10 .social-link-v10 {
    width: 82px;
  }
}


/* V12 — smaller footer artwork + illustrator credit */
.footer-art {
  padding-top: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  overflow: visible;
}

.footer-art-image-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
}

.footer-art-image-wrap img {
  /* V11 max width was 760px. V12 is ~20% smaller. */
  width: min(80%, 608px);
  height: auto;
  display: block;

  /* Hide only a very small strip at the bottom so the figure feels grounded. */
  transform: translateY(7px);
}

.artwork-credit {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 7px 0 12px;
  color: #77716c;
  font-size: 9px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .18s ease, transform .18s ease;
}

.artwork-credit:hover {
  color: var(--accent);
  transform: translateY(-1px);
}

.artwork-instagram {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  color: var(--accent);
}

.artwork-instagram svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.artwork-instagram .fill-dot {
  fill: currentColor;
  stroke: none;
}

.site-footer {
  position: relative;
  z-index: 4;
  background: var(--bg);
}

@media (max-width: 760px) {
  .footer-art {
    padding-top: 22px;
  }

  .footer-art-image-wrap img {
    width: min(92%, 490px);
    transform: translateY(6px);
  }

  .artwork-credit {
    margin: 6px 0 10px;
    font-size: 8px;
  }

  .artwork-instagram {
    width: 21px;
    height: 21px;
  }

  .artwork-instagram svg {
    width: 20px;
    height: 20px;
  }
}


/* V14 — Fangs comic coming soon */
.comic-coming {
  padding: 78px 0 84px;
  text-align: center;
}

.comic-coming-heading {
  margin-bottom: 0;
}

.comic-coming-heading h2 {
  margin: 4px 0 0;
  font-family: Inter, sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -.04em;
}

.comic-coming-heading > p:last-child {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 760px) {
  .comic-coming {
    padding: 58px 0 64px;
  }
}

/* V13 — simple continuous Fangs comic strip */
.comic-slider {
  width: min(100%, 980px);
  margin: 30px auto 0;
  overflow: hidden;
  position: relative;

  /* soft fade at the left/right edges */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 6%,
    #000 94%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 6%,
    #000 94%,
    transparent 100%
  );
}

.comic-slider-track {
  display: flex;
  width: max-content;
  animation: comicSlideRight 34s linear infinite;
  will-change: transform;
}

.comic-slider-set {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 12px;
}

.comic-slider img {
  width: 184px;
  height: 184px;
  flex: 0 0 auto;
  object-fit: cover;
  display: block;
  border: 1px solid var(--line);
}

/* Start one full set to the left and move smoothly to the right. */
@keyframes comicSlideRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

@media (max-width: 760px) {
  .comic-slider {
    width: min(100%, 680px);
    margin-top: 24px;
  }

  .comic-slider-track {
    animation-duration: 30s;
  }

  .comic-slider-set {
    gap: 9px;
    padding-right: 9px;
  }

  .comic-slider img {
    width: 134px;
    height: 134px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .comic-slider-track {
    animation: none;
    transform: none;
  }
}



/* V17 — comic copy refinement */
.comic-coming-heading > p:last-child {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* V19 — Fangs video showcase */
.farseers-section {
  padding: 78px 0 82px;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.farseers-video-heading {
  width: min(100%, 700px);
  margin: 0 auto 30px;
}

.farseers-video-heading h2 {
  margin: 5px 0 12px;
  font-family: Inter, sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -.04em;
}

.farseers-video-heading > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.fangs-video-grid {
  width: min(100%, 980px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.fangs-video-card {
  min-width: 0;
  border: 1px solid var(--line);
  background: #080808;
  overflow: hidden;
  transition: border-color .18s ease, transform .18s ease;
}

.fangs-video-card:hover {
  border-color: #513044;
  transform: translateY(-2px);
}

.fangs-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

.fangs-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.farseers-channel-link {
  width: fit-content;
  margin: 26px auto 0;
  min-height: 54px;
  padding: 10px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid #3f3139;
  border-radius: 10px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .10em;
  text-transform: uppercase;
  transition: border-color .18s ease, transform .18s ease, background .18s ease;
}

.farseers-channel-link img {
  width: 145px;
  height: auto;
  object-fit: contain;
}

.farseers-channel-link:hover {
  border-color: var(--accent);
  background: #0c090b;
  transform: translateY(-2px);
}

@media (max-width: 760px) {
  .farseers-section {
    padding: 58px 0 64px;
  }

  .farseers-video-heading {
    margin-bottom: 24px;
  }

  .fangs-video-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .farseers-channel-link {
    margin-top: 22px;
    min-height: 50px;
    padding: 9px 18px;
  }
}

