/* AC⚡LV Magazine — Main Stylesheet */

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --off-white: #f8f7f5;
  --near-white: #f2f0ec;
  --gray-100: #f0eeea;
  --gray-200: #e5e3de;
  --gray-300: #ccc9c2;
  --gray-500: #8a8780;
  --gray-700: #3d3c39;
  --electric: #F5840A;
  --electric-dark: #d4720a;
  --electric-glow: rgba(245,132,10,0.25);
  --ink: #111111;
  --red: #d0021b;
  --yellow: #FFE600;
  --yellow-dark: #e6cf00;
  --teal: #2DC5B6;
  --teal-dark: #24a99c;
  --hot-pink: #E8286C;
  --hot-pink-dark: #c41e5a;
  --red-orange: #E8330A;

  --font-display: 'Barlow Condensed', 'Impact', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  --radius: 4px;
  --radius-lg: 8px;
  --shadow: 0 2px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);

  --max-w: 1200px;
  --section-gap: 6rem;
  --header-h: 72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.display-1 {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.display-2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; }
h1 { font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.05; text-transform: uppercase; }
h2 { font-size: clamp(1.75rem, 3vw, 2.75rem); line-height: 1.1; text-transform: uppercase; }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); line-height: 1.2; }
h4 { font-size: 1.125rem; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 0.75rem;
}
.section-label.electric { color: var(--electric-dark); }

.lead {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.7;
  color: var(--gray-700);
}

/* ============================================================
   LAYOUT
   ============================================================ */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
.wrap-narrow { max-width: 720px; margin: 0 auto; padding: 0 2rem; }
.wrap-wide { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }

.section { padding: var(--section-gap) 0; }
.section-dark { background: var(--black); color: var(--white); }
.section-off { background: var(--off-white); }
.section-near { background: var(--near-white); }

.section-header { margin-bottom: 3rem; }
.section-header.center { text-align: center; }

/* ============================================================
   LIGHTNING BOLT ACCENT
   ============================================================ */
.bolt { color: var(--electric); }
.bolt-bg {
  display: inline-block;
  background: var(--electric);
  color: var(--black);
  padding: 0 0.25em;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--gray-200);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.2s, box-shadow 0.2s;
}
.site-header.dark {
  background: rgba(10,10,10,0.96);
  border-bottom-color: rgba(255,255,255,0.1);
}
.site-header.scrolled { box-shadow: var(--shadow); }

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 36px; width: auto; }
.logo-mark {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1;
}
.logo-mark .bolt { color: var(--electric); }
.site-header.dark .logo-mark { color: var(--white); }

#main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

#main-nav a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  color: var(--gray-700);
  transition: color 0.15s, background 0.15s;
}
#main-nav a:hover { color: var(--black); background: var(--gray-100); }
.site-header.dark #main-nav a { color: rgba(255,255,255,0.7); }
.site-header.dark #main-nav a:hover { color: var(--white); background: rgba(255,255,255,0.08); }

.nav-cta {
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  background: var(--electric) !important;
  color: var(--black) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: var(--radius) !important;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--electric-dark) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all 0.2s; }

.nav-social { display: flex; align-items: center; gap: 0.5rem; }
.nav-social a { color: var(--gray-500); font-size: 1.1rem; padding: 0.4rem !important; }
.nav-social a:hover { color: var(--black); background: transparent !important; }
.site-header.dark .nav-social a { color: rgba(255,255,255,0.5); }
.site-header.dark .nav-social a:hover { color: var(--white); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { cursor: pointer; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 180px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.15s;
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 0.5rem 0.75rem !important;
  font-size: 0.8rem !important;
  border-radius: var(--radius) !important;
  color: var(--gray-700) !important;
}
.nav-dropdown-menu a:hover { background: var(--gray-100) !important; color: var(--black) !important; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: var(--header-h) 0 0;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(245,132,10,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(45,197,182,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 6rem 2rem 8rem;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}

.hero-content { max-width: 700px; }

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--electric);
  margin-bottom: 2rem;
  border: 1px solid rgba(245,132,10,0.45);
  padding: 0.4rem 0.875rem;
  border-radius: 100px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-title .bolt { color: var(--electric); }
.hero-title .strike {
  display: block;
  color: rgba(255,255,255,0.15);
  font-size: 0.7em;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

.hero-issue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.issue-mockup {
  width: 240px;
  aspect-ratio: 0.72;
  background: var(--gray-700);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}
.issue-mockup::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1a1a1a 0%, #0a0a0a 100%);
}
.issue-mockup-content { position: relative; z-index: 1; }
.issue-badge {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--electric);
  margin-bottom: 0.5rem;
}
.issue-wordmark {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.issue-wordmark span { color: var(--electric); }
.issue-headline {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  line-height: 1.2;
}
.issue-sub {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.25rem;
}
.issue-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--electric);
  color: var(--black);
  border-color: var(--electric);
}
.btn-primary:hover { background: var(--electric-dark); border-color: var(--electric-dark); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }
.btn-outline.dark { color: var(--black); border-color: rgba(0,0,0,0.3); }
.btn-outline.dark:hover { border-color: var(--black); background: rgba(0,0,0,0.04); }

.btn-black {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-black:hover { background: var(--gray-700); border-color: var(--gray-700); }

.btn-sm { font-size: 0.72rem; padding: 0.625rem 1.25rem; }
.btn-lg { font-size: 0.875rem; padding: 1.125rem 2.25rem; }

/* ============================================================
   ARTIST SPOTLIGHT
   ============================================================ */
.spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 640px;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}
.spotlight-image {
  background: var(--gray-700);
  position: relative;
  min-height: 480px;
  overflow: hidden;
}
.spotlight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(30%) contrast(1.05);
}
.spotlight-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 800;
  color: rgba(255,255,255,0.04);
  text-transform: uppercase;
  letter-spacing: -0.05em;
}
.spotlight-content {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.spotlight-issue { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--electric); margin-bottom: 1.5rem; }
.spotlight-name { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 800; text-transform: uppercase; line-height: 0.9; margin-bottom: 1.5rem; }
.spotlight-type { font-size: 0.875rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 2rem; }
.spotlight-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.35;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2.5rem;
  position: relative;
  padding-left: 1.5rem;
}
.spotlight-quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.15em;
  bottom: 0.15em;
  width: 3px;
  background: var(--electric);
}
.spotlight-cta { align-self: flex-start; }

/* ============================================================
   FUNDING BAND
   ============================================================ */
.funding-band {
  background: var(--electric);
  color: var(--black);
  padding: 4rem 0;
  text-align: center;
}
.funding-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.funding-band p {
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  opacity: 0.75;
}
.funding-band .btn { background: var(--black); color: var(--white); border-color: var(--black); }
.funding-band .btn:hover { background: var(--gray-700); border-color: var(--gray-700); }

/* ============================================================
   MISSION
   ============================================================ */
.mission {
  background: var(--off-white);
  padding: var(--section-gap) 0;
}
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.mission-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.mission-headline em { font-style: italic; color: var(--gray-500); }
.mission-body p { color: var(--gray-700); margin-bottom: 1.25rem; }
.mission-body p:last-child { margin-bottom: 0; }
.mission-body strong { color: var(--black); font-weight: 600; }

/* ============================================================
   LAUNCH EVENT
   ============================================================ */
.event-block {
  background: var(--black);
  color: var(--white);
  padding: var(--section-gap) 0;
  overflow: hidden;
  position: relative;
}
.event-block::before {
  content: '⚡';
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30rem;
  opacity: 0.03;
  pointer-events: none;
  line-height: 1;
}
.event-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.event-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--electric); margin-bottom: 1rem; }
.event-title { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; text-transform: uppercase; line-height: 0.95; margin-bottom: 1.5rem; }
.event-date-display {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
}
.event-day-num { font-family: var(--font-display); font-size: 4rem; font-weight: 800; line-height: 1; color: var(--electric); }
.event-date-info { }
.event-month { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.event-weekday { font-size: 1.1rem; font-weight: 600; color: var(--white); }
.event-year { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.event-details { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2.5rem; }
.event-detail-row { display: flex; align-items: flex-start; gap: 0.75rem; }
.event-detail-icon { font-size: 1rem; margin-top: 0.1rem; flex-shrink: 0; }
.event-detail-text { }
.event-detail-text strong { display: block; font-weight: 600; font-size: 0.95rem; }
.event-detail-text span { font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.event-visual { }
.event-venue-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.event-venue-header {
  padding: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.event-venue-name { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; text-transform: uppercase; margin-bottom: 0.25rem; }
.event-venue-addr { font-size: 0.875rem; color: rgba(255,255,255,0.5); }
.event-venue-body { padding: 2rem; }
.event-venue-desc { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 1.5rem; }
.event-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.event-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
}

/* ============================================================
   EDITOR PROFILE
   ============================================================ */
.editor-section {
  background: var(--white);
  padding: var(--section-gap) 0;
}
.editor-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 5rem;
  align-items: start;
}
.editor-photo-wrap {
  position: relative;
}
.editor-photo {
  width: 100%;
  aspect-ratio: 0.8;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-lg);
  filter: grayscale(20%);
}
.editor-photo-placeholder {
  width: 100%;
  aspect-ratio: 0.8;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--gray-300);
}
.editor-credit {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  background: rgba(255,255,255,0.9);
  padding: 0.25rem 0.5rem;
  border-radius: 2px;
}
.editor-content { padding-top: 0.5rem; }
.editor-role { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray-500); margin-bottom: 0.5rem; }
.editor-name { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 800; text-transform: uppercase; margin-bottom: 2rem; }
.editor-bio p { color: var(--gray-700); margin-bottom: 1.2rem; }
.editor-bio p:last-child { margin-bottom: 0; }
.editor-links { display: flex; gap: 1rem; margin-top: 2rem; }

/* ============================================================
   ADVERTISE
   ============================================================ */
.advertise-section {
  background: var(--near-white);
  padding: var(--section-gap) 0;
}
.advertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.ad-rates { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.ad-rate-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}
.ad-rate-type { font-size: 0.85rem; font-weight: 600; }
.ad-rate-price { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--black); }
.ad-rate-size { font-size: 0.75rem; color: var(--gray-500); }
.advertise-ctas { display: flex; flex-direction: column; gap: 1rem; }
.advertise-perks { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
.advertise-perk { display: flex; gap: 1rem; align-items: flex-start; }
.perk-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 0.1rem; }
.perk-text { font-size: 0.9rem; color: var(--gray-700); line-height: 1.5; }
.perk-text strong { color: var(--black); display: block; margin-bottom: 0.15rem; }

/* ============================================================
   DISTRIBUTION
   ============================================================ */
.distribution-section {
  background: var(--black);
  color: var(--white);
  padding: var(--section-gap) 0;
}
.distribution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.distribution-benefits { margin-top: 2.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.dist-benefit {
  padding: 1.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
}
.dist-benefit-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.dist-benefit-title { font-weight: 700; font-size: 0.9rem; margin-bottom: 0.4rem; }
.dist-benefit-text { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.5; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section {
  background: var(--electric);
  padding: 5rem 0;
}
.newsletter-inner { max-width: 620px; margin: 0 auto; text-align: center; padding: 0 2rem; }
.newsletter-inner .section-label { color: rgba(0,0,0,0.5); }
.newsletter-inner h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 800; text-transform: uppercase; margin-bottom: 0.75rem; color: var(--black); }
.newsletter-inner p { color: rgba(0,0,0,0.65); margin-bottom: 2rem; }
.newsletter-form { display: flex; gap: 0; max-width: 480px; margin: 0 auto; }
.newsletter-form input[type="email"] {
  flex: 1;
  padding: 0.875rem 1.25rem;
  border: 2px solid var(--black);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  font-size: 0.9rem;
  background: var(--white);
  color: var(--black);
  outline: none;
}
.newsletter-form input[type="email"]::placeholder { color: var(--gray-500); }
.newsletter-form button {
  padding: 0.875rem 1.5rem;
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--black);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--gray-700); border-color: var(--gray-700); }
.newsletter-note { margin-top: 1rem; font-size: 0.75rem; color: rgba(0,0,0,0.45); }

/* ============================================================
   LATEST ARTICLES SECTION
   ============================================================ */
.articles-section { padding: var(--section-gap) 0; background: var(--white); }
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.article-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: box-shadow 0.2s, transform 0.2s;
  background: var(--white);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.article-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.article-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--gray-200);
  overflow: hidden;
}
.article-card-img img { width: 100%; height: 100%; object-fit: cover; }
.article-card-img-placeholder { width: 100%; height: 100%; background: var(--gray-100); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }
.article-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.article-card-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray-500); margin-bottom: 0.5rem; }
.article-card-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; text-transform: uppercase; line-height: 1.15; margin-bottom: 0.75rem; }
.article-card-excerpt { font-size: 0.875rem; color: var(--gray-700); line-height: 1.55; flex: 1; margin-bottom: 1rem; }
.article-card-meta { display: flex; gap: 1rem; font-size: 0.72rem; color: var(--gray-500); margin-top: auto; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 5rem 0 2.5rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2.5rem;
}
.footer-brand { }
.footer-wordmark {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1;
}
.footer-wordmark span { color: var(--electric); }
.footer-tagline { font-size: 0.875rem; color: rgba(255,255,255,0.45); line-height: 1.6; max-width: 280px; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: all 0.15s;
}
.footer-social a:hover { border-color: var(--electric); color: var(--electric); }
.footer-col h4 { font-family: var(--font-body); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 1.25rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-col ul a { font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: color 0.15s; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.78rem; color: rgba(255,255,255,0.3); transition: color 0.15s; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ============================================================
   UTILITY
   ============================================================ */
.divider { border: none; border-top: 1px solid var(--gray-200); }
.divider-dark { border-color: rgba(255,255,255,0.08); }
.text-center { text-align: center; }
.text-electric { color: var(--electric); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.hidden { display: none !important; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  border-radius: 100px;
}
.badge-electric { background: var(--electric); color: var(--black); }
.badge-dark { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }
.badge-outline { border: 1px solid var(--gray-300); color: var(--gray-700); }

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-header {
  background: var(--black);
  color: var(--white);
  padding: calc(var(--header-h) + 4rem) 0 4rem;
}
.page-header .section-label { color: var(--electric); }
.page-header h1 { font-family: var(--font-display); font-size: clamp(3rem, 6vw, 6rem); font-weight: 800; text-transform: uppercase; letter-spacing: -0.02em; }
.page-header p { margin-top: 1rem; font-size: 1.05rem; color: rgba(255,255,255,0.6); max-width: 560px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-issue { display: none; }
  .spotlight { grid-template-columns: 1fr; }
  .spotlight-content { padding: 3rem 2.5rem; }
  .spotlight-image { min-height: 400px; }
  .mission-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .event-inner { grid-template-columns: 1fr; gap: 3rem; }
  .editor-grid { grid-template-columns: 240px 1fr; gap: 3rem; }
  .advertise-grid { grid-template-columns: 1fr; gap: 3rem; }
  .distribution-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-gap: 4rem; }
  .wrap { padding: 0 1.25rem; }

  #main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 2rem 1.5rem;
    gap: 0.25rem;
    display: none;
    overflow-y: auto;
    z-index: 999;
  }
  #main-nav.open { display: flex; }
  #main-nav a { font-size: 1rem; padding: 0.75rem 1rem; text-align: left; }
  .nav-cta { text-align: center !important; }
  .nav-social { justify-content: center; padding: 1rem 0; }
  .nav-toggle { display: flex; }
  .hero-content { text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .spotlight-name { font-size: 3rem; }
  .spotlight-quote { font-size: 1.3rem; }
  .editor-grid { grid-template-columns: 1fr; }
  .editor-photo-wrap { max-width: 280px; }
  .articles-grid { grid-template-columns: 1fr; }
  .distribution-benefits { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input[type="email"],
  .newsletter-form button { border-radius: var(--radius); border: 2px solid var(--black); }
  .newsletter-form button { border-top: none; border-radius: 0 0 var(--radius) var(--radius); }
  .newsletter-form input[type="email"] { border-radius: var(--radius) var(--radius) 0 0; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.6s ease-out forwards; }
.fade-in-up-delay-1 { animation-delay: 0.1s; }
.fade-in-up-delay-2 { animation-delay: 0.2s; }
.fade-in-up-delay-3 { animation-delay: 0.3s; }

/* ============================================================
   BOLD COLOR SECTIONS — Vegas Arts District Palette
   ============================================================ */
.section-yellow { background: var(--yellow); color: var(--black); }
.section-teal { background: var(--teal); color: var(--black); }
.section-pink { background: var(--hot-pink); color: var(--white); }
.section-red-orange { background: var(--red-orange); color: var(--white); }

/* ============================================================
   MISSION SPLIT LAYOUT
   ============================================================ */
.mission-split {
  display: grid;
  grid-template-columns: 38% 62%;
  min-height: 560px;
}
.mission-split-left {
  background: var(--yellow);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 5rem 3.5rem;
}
.mission-split-left .mission-big-head {
  font-family: var(--font-display);
  font-size: clamp(5rem, 9vw, 9rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.82;
  letter-spacing: -0.03em;
  color: var(--black);
}
.mission-split-left .section-label { color: rgba(0,0,0,0.45); margin-bottom: 1.5rem; }
.mission-split-right {
  background: var(--white);
  padding: 5rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 900px) {
  .mission-split { grid-template-columns: 1fr; }
  .mission-split-left { padding: 4rem 2rem 3rem; }
  .mission-split-right { padding: 3rem 2rem 4rem; }
}

/* ============================================================
   ISSUE CONTRIBUTORS
   ============================================================ */
.contributors-section {
  background: var(--teal);
  padding: var(--section-gap) 0;
}
.contributor-list {
  display: flex;
  flex-direction: column;
  margin-top: 2.5rem;
}
.contributor-item {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1.75rem;
  align-items: start;
  padding: 2rem 0;
  border-top: 1px solid rgba(0,0,0,0.12);
}
.contributor-item:last-child { border-bottom: 1px solid rgba(0,0,0,0.12); }
.contributor-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: rgba(0,0,0,0.18);
  line-height: 1.1;
  padding-top: 0.25rem;
  text-align: right;
}
.contributor-badge {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.2rem 0.625rem;
  border-radius: 100px;
  display: inline-flex;
  margin-bottom: 0.5rem;
}
.contributor-badge.cover { background: var(--black); color: var(--white); }
.contributor-badge.feature { background: rgba(0,0,0,0.12); color: rgba(0,0,0,0.6); }
.contributor-name {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--black);
  margin-bottom: 0.4rem;
}
.contributor-role {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.45);
  margin-bottom: 0.5rem;
}
.contributor-desc {
  font-size: 0.875rem;
  color: rgba(0,0,0,0.65);
  line-height: 1.6;
  max-width: 620px;
}
@media (max-width: 640px) {
  .contributor-item { grid-template-columns: 2.5rem 1fr; gap: 1rem; }
  .contributor-num { font-size: 1.5rem; }
}

/* ============================================================
   COVER MOCKUP — vibrant collage-style
   ============================================================ */
.issue-mockup {
  background: linear-gradient(
    155deg,
    #2DC5B6 0%,
    #2DC5B6 20%,
    #F5840A 20%,
    #F5840A 45%,
    #FFE600 45%,
    #FFE600 65%,
    #E8286C 65%,
    #E8286C 82%,
    #E8330A 82%,
    #E8330A 100%
  );
}
.issue-mockup::before { display: none; }

/* ============================================================
   ROBIN BIO SECTION
   ============================================================ */
.robin-section {
  background: var(--off-white);
  padding: var(--section-gap) 0;
}
.robin-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 5rem;
  align-items: start;
}
.robin-photo-wrap { position: relative; }
.robin-photo {
  width: 100%;
  aspect-ratio: 0.75;
  background: linear-gradient(145deg, #E8286C, #F5840A);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.robin-photo-placeholder-text {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
}
.robin-credit {
  position: absolute;
  bottom: 0.875rem;
  left: 0.875rem;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.35);
  padding: 0.25rem 0.5rem;
  border-radius: 2px;
}
.robin-content { padding-top: 0.5rem; }
.robin-role { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray-500); margin-bottom: 0.5rem; }
.robin-name { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 800; text-transform: uppercase; margin-bottom: 2rem; }
.robin-bio p { color: var(--gray-700); margin-bottom: 1.2rem; }
.robin-bio p:last-child { margin-bottom: 0; }
.robin-bio strong { color: var(--black); font-weight: 600; }
.robin-bio em { font-style: italic; }
@media (max-width: 900px) {
  .robin-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .robin-photo-wrap { max-width: 260px; }
}

/* ============================================================
   AD RATE ROWS — updated
   ============================================================ */
.ad-rate-row .ad-rate-price { color: var(--black); }
.ad-rate-prepay {
  background: var(--teal);
  border-radius: var(--radius-lg);
  padding: 0.75rem 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.ad-rate-prepay-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(0,0,0,0.5); }
.ad-rate-prepay-price { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--black); }

/* ============================================================
   DISTRIBUTION PRICING TABLE
   ============================================================ */
.pricing-table {
  background: var(--yellow);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-top: 2rem;
}
.pricing-table h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 1.25rem;
}
.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.pricing-row:last-of-type { border-bottom: none; }
.pricing-label { font-weight: 600; font-size: 0.9rem; }
.pricing-value { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--black); }
.pricing-note { font-size: 0.78rem; color: rgba(0,0,0,0.55); margin-top: 0.75rem; }
