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

  :root {
    --black: #090e0a;
    --white: #e4ede6;
    --red: #6dbd7a;
    --gray: #131e14;
    --mid: #5a7060;
  }

  body {
    background: #000000;
    color: var(--white);
    font-family: 'Space Mono', monospace;
    overflow-x: hidden;
  }

  /* HERO / COVER */
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 90vh;
    border-bottom: 1px solid #222;
  }

  .hero-left {
    padding: 4rem 3rem;
    border-right: 1px solid #222;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .issue-tag {
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 2rem;
  }

  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(5rem, 12vw, 10rem);
    line-height: 0.9;
    letter-spacing: -0.01em;
    color: var(--white);
  }

  .hero-title span {
    display: block;
    color: var(--red);
  }

  .hero-subtitle {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: #6a8070;
    text-transform: uppercase;
    margin-top: 2rem;
    line-height: 2;
    border-top: 1px solid #222;
    padding-top: 1.5rem;
  }

  .hero-cta {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.75rem 2rem;
    border: 1px solid var(--white);
    font-size: 0.76rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    transition: all 0.15s;
    cursor: pointer;
    background: transparent;
    font-family: 'Space Mono', monospace;
  }

  .hero-cta:hover { background: var(--white); color: var(--black); }

  .hero-right {
    position: relative;
    overflow: hidden;
    background: #110d1a;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .noise-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 200px;
    pointer-events: none;
  }

  .cover-art-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 0.85;
    letter-spacing: 0.05em;
    color: var(--white);
    opacity: 0.08;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    white-space: nowrap;
    pointer-events: none;
  }

  .cover-band-info {
    border: 1px solid #1e3020;
    padding: 2rem;
    text-align: left;
    z-index: 2;
    position: relative;
    width: 80%;
    max-width: 320px;
  }

  .cover-band-label {
    font-size: 0.66rem;
    letter-spacing: 0.3em;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 1rem;
  }

  .cover-band-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    line-height: 0.9;
    margin-bottom: 1rem;
  }

  .cover-band-desc {
    font-size: 0.76rem;
    color: #6a8870;
    line-height: 1.8;
    letter-spacing: 0.05em;
  }

  .cover-band-tags {
    margin-top: 1.2rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .tag {
    font-size: 0.66rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid #2a4030;
    padding: 0.25rem 0.6rem;
    color: #6a8070;
  }

  .tag-red { border-color: var(--red); color: var(--red); }

  /* ARTICLE GRID */
  .section-header {
    padding: 2rem 2rem 0;
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
    border-bottom: 1px solid #131e14;
    padding-bottom: 1.2rem;
  }

  .section-label {
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--red);
  }

  .section-rule {
    flex: 1;
    height: 1px;
    background: #1e1828;
  }

  .section-count {
    font-size: 0.72rem;
    color: #4a6050;
    letter-spacing: 0.1em;
  }

  .article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid #131e14;
  }

  .article-card {
    border-right: 1px solid #131e14;
    padding: 2rem;
    cursor: pointer;
    transition: background 0.15s;
    position: relative;
  }

  .article-card:last-child { border-right: none; }
  .article-card:hover { background: #110d1a; }

  .article-card.featured {
    grid-column: span 2;
    border-right: 1px solid #131e14;
  }

  .article-num {
    font-size: 0.66rem;
    letter-spacing: 0.2em;
    color: #2a4030;
    margin-bottom: 1rem;
    font-family: 'Space Mono', monospace;
  }

  .article-genre {
    font-size: 0.66rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.75rem;
  }

  .article-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    line-height: 1;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
    color: var(--white);
  }

  .article-card.featured .article-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
  }

  .article-excerpt {
    font-size: 0.76rem;
    line-height: 1.9;
    color: #6a8070;
    letter-spacing: 0.03em;
  }

  .article-meta {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #131e14;
    display: flex;
    gap: 1rem;
    align-items: center;
  }

  .article-meta span {
    font-size: 0.66rem;
    letter-spacing: 0.15em;
    color: #4a6050;
  }

  .article-meta .dot { color: #1a3020; }

  /* EDITOR PICKS */
  .picks-section {
    border-bottom: 1px solid #131e14;
  }

  .picks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .pick-item {
    padding: 1.75rem 1.5rem;
    border-right: 1px solid #131e14;
    cursor: pointer;
    transition: background 0.15s;
  }

  .pick-item:last-child { border-right: none; }
  .pick-item:hover { background: #110d1a; }

  .pick-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    line-height: 1;
    color: #0e1a10;
    margin-bottom: 0.5rem;
  }

  .pick-genre {
    font-size: 0.66rem;
    letter-spacing: 0.2em;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
  }

  .pick-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    line-height: 1.1;
    margin-bottom: 0.5rem;
  }

  .pick-desc {
    font-size: 0.72rem;
    color: #5a7060;
    line-height: 1.7;
  }

  /* NEWSLETTER */
  .newsletter {
    padding: 4rem 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    border-bottom: 1px solid #131e14;
  }

  .nl-label {
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
  }

  .nl-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 0.95;
    margin-bottom: 1.5rem;
  }

  .nl-body {
    font-size: 0.76rem;
    color: #6a8070;
    line-height: 1.9;
    letter-spacing: 0.03em;
  }

  .nl-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .nl-input {
    background: transparent;
    border: 1px solid #1e3020;
    color: var(--white);
    padding: 0.85rem 1rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.76rem;
    letter-spacing: 0.1em;
    outline: none;
    transition: border-color 0.15s;
    width: 100%;
  }

  .nl-input::placeholder { color: #4a6050; }
  .nl-input:focus { border-color: #5a7060; }

  .nl-submit {
    background: var(--white);
    border: 1px solid var(--white);
    color: var(--black);
    padding: 0.85rem 2rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.76rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.15s;
    align-self: flex-start;
  }

  .nl-submit:hover { background: transparent; color: var(--white); }

  .nl-disclaimer {
    font-size: 0.66rem;
    color: #4a6050;
    letter-spacing: 0.05em;
    line-height: 1.6;
  }

  /* PAGE WRAP */
  .page-wrap {
    max-width: 1280px;
    margin: 0 auto;
    background: var(--black);
    border-left: 1px solid #131e14;
    border-right: 1px solid #131e14;
  }

.top-btn {
  position: fixed;
  right: calc((100vw - 1280px) / 2 - 52px);
  bottom: 2.5rem;
  width: 42px;
  background: transparent;
  border: 1px solid #1e3020;
  color: #4a6050;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s, border-color 0.2s, color 0.2s;
  pointer-events: none;
  z-index: 300;
}
.top-btn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.top-btn:hover {
  border-color: #6dbd7a;
  color: #6dbd7a;
}
.top-btn-line {
  display: block;
  width: 1px;
  height: 28px;
  background: currentColor;
}
.top-btn-text {
  font-family: 'Space Mono', monospace;
  font-size: 0.56rem;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
@media (max-width: 1380px) {
  .top-btn { right: 0.8rem; }
}

@media (max-width: 980px) {
  .page-wrap {
    border-left: none;
    border-right: none;
    overflow-x: hidden;
  }

  .hero,
  .newsletter {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    min-height: auto;
    padding-top: 52px;
  }

  .hero-left {
    padding: 3rem 1.5rem 2rem;
    border-right: none;
    border-bottom: 1px solid #222;
    gap: 2rem;
  }

  .hero-title {
    font-size: clamp(4rem, 18vw, 6rem);
  }

  .hero-right {
    min-height: 420px;
  }

  .cover-band-info {
    width: calc(100% - 3rem);
    padding: 1.5rem;
  }

  .cover-art-title {
    font-size: clamp(3rem, 18vw, 5rem);
  }

  .section-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.5rem;
  }

  .section-rule {
    width: 100%;
  }

  .article-grid,
  .picks-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .article-card,
  .article-card.featured,
  .pick-item {
    grid-column: auto;
    border-right: none;
    border-bottom: 1px solid #131e14;
    padding: 1.6rem 1.5rem;
  }

  .article-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }

  .article-meta .dot {
    display: none;
  }

  .newsletter {
    gap: 2rem;
    padding: 2.5rem 1.5rem;
  }

  .nl-submit {
    width: 100%;
  }
}
