/* ============================================
   THE BLINDSPOT MAGAZINE — DESIGN SYSTEM
   Glassmorphism • Broken Grids • Editorial
   ============================================ */

/* ---- CSS Custom Properties ---- */
:root {
  /* Primary palette — deep editorial darks */
  --bg-primary: #0a0a0f;
  --bg-secondary: #111118;
  --bg-card: #16161f;
  --bg-elevated: #1c1c28;

  /* Accent & brand */
  --accent: #c9a84c;
  --accent-soft: #d4b86a;
  --accent-glow: rgba(201, 168, 76, 0.15);

  /* Text */
  --text-primary: #f0ece4;
  --text-secondary: rgba(240, 236, 228, 0.7);
  --text-muted: rgba(240, 236, 228, 0.45);
  --text-on-accent: #0a0a0f;

  /* Glass */
  --glass-bg: rgba(22, 22, 31, 0.55);
  --glass-border: rgba(240, 236, 228, 0.08);
  --glass-highlight: rgba(255, 255, 255, 0.04);

  /* Borders & Shadows */
  --border-subtle: rgba(240, 236, 228, 0.06);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-lg: 0 16px 64px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 40px rgba(201,168,76,0.1);

  /* Typography */
  --font-headline: 'DM Serif Display', serif;
  --font-body: 'Work Sans', sans-serif;
  --font-serif: 'Noto Serif', serif;

  /* Spacing */
  --section-gap: 6rem;
  --container-width: 1200px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease-out);
}

a:hover {
  color: var(--accent);
}

ul { list-style: none; }

/* ---- Utility Classes ---- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center { text-align: center; }

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
}

.glass-pill {
  background: rgba(22, 22, 31, 0.6);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  overflow: visible;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}

.btn-outline {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  backdrop-filter: blur(12px);
}

.btn-outline:hover {
  background: var(--accent-glow);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-accent {
  background: var(--accent);
  color: var(--text-on-accent);
  font-weight: 600;
}

.btn-accent:hover {
  background: var(--accent-soft);
  color: var(--text-on-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* ---- Marquee Banner ---- */
.marquee-bar {
  background: var(--accent);
  color: var(--text-on-accent);
  padding: 0.5rem 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 100;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 25s linear infinite;
}

.marquee-bar:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0 1rem;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- Site Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  padding: 0.75rem 0;
  transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.site-header.scrolled {
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border-subtle);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 3.5rem;
}

.logo {
  position: absolute;
  left: 1.5rem;
  font-family: var(--font-headline);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.logo:hover { color: var(--accent); }

.main-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
  padding: 0.35rem 0.5rem;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  transition: all 0.2s var(--ease-out);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  line-height: 1.4;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
  background: rgba(255,255,255,0.06);
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease-out);
  z-index: 100;
}

.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.82rem;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  transition: all 0.2s;
}

.dropdown-menu a:hover {
  background: rgba(255,255,255,0.05);
  color: var(--text-primary);
}

/* Mobile menu button */
.mobile-menu-btn {
  position: absolute;
  right: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  z-index: 100;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}

.mobile-menu-btn.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-btn.open span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(20px);
  z-index: 89;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease-out);
}

.mobile-nav-overlay.show {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 2rem;
  width: min(320px, 90%);
}

.mobile-nav-link {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  transition: all 0.2s;
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  color: var(--accent);
  background: rgba(255,255,255,0.03);
}

/* ---- Hero ---- */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 15, 0.5) 0%,
    rgba(10, 10, 15, 0.7) 50%,
    rgba(10, 10, 15, 0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}

.hero-glass {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 3rem 3.5rem;
  animation: fadeInUp 1s var(--ease-out) both;
}

.hero-title {
  font-family: var(--font-headline);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-line {
  display: block;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--text-secondary);
}

.hero-line.accent {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--text-primary);
  margin-top: 0.3rem;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-muted);
  animation: fadeInUp 1.2s var(--ease-out) 0.3s both;
}

.hero-scroll-indicator {
  margin-top: 3rem;
  animation: bounce 2s infinite, fadeInUp 1.5s var(--ease-out) 0.6s both;
  color: var(--text-muted);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
  60% { transform: translateY(-4px); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---- Sections ---- */
.section {
  padding: var(--section-gap) 0;
}

.section-dark {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.section-title {
  font-family: var(--font-headline);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: -1.5rem auto 2rem;
  line-height: 1.8;
}

.section-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

/* ---- Issues Broken Grid ---- */
.issues-broken-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: start;
}

.issue-card-large,
.issue-card-small {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.issue-card-large:hover,
.issue-card-small:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.issue-card-large {
  min-height: 520px;
}

.issue-card-small {
  min-height: 520px;
  margin-top: 3rem; /* Broken grid offset */
}

.issue-card-image {
  position: absolute;
  inset: 0;
}

.issue-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.issue-card-large:hover .issue-card-image img,
.issue-card-small:hover .issue-card-image img {
  transform: scale(1.05);
}

.issue-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,15,0.2) 0%, rgba(10,10,15,0.85) 70%, rgba(10,10,15,0.95) 100%);
}

.issue-card-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.issue-badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: var(--accent);
  color: var(--text-on-accent);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  width: fit-content;
  margin-bottom: 0.75rem;
}

.issue-badge.upcoming {
  background: rgba(255,255,255,0.15);
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
}

.issue-card-title {
  font-family: var(--font-headline);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.issue-card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.issue-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.read-more-link {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 500;
  transition: all 0.2s;
}

.read-more-link:hover {
  letter-spacing: 0.02em;
}

/* Coming soon overlay */
.coming-soon-card {
  filter: grayscale(0.6);
  opacity: 0.8;
}

.coming-soon-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  background: rgba(10, 10, 15, 0.5);
  backdrop-filter: blur(4px);
}

.coming-soon-overlay span {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  color: var(--text-primary);
  background: rgba(10, 10, 15, 0.7);
  padding: 0.75rem 2rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
}

/* ---- Spotlight Grid (Broken / Asymmetric) ---- */
.spotlight-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

.spotlight-feature {
  grid-row: 1 / 3;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.spotlight-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.spotlight-secondary {
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.spotlight-secondary:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.spotlight-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  opacity: 0.5;
}

.placeholder-content {
  text-align: center;
  color: var(--text-muted);
}

.placeholder-content svg {
  margin: 0 auto 1rem;
}

.placeholder-content h3 {
  font-family: var(--font-headline);
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  color: var(--text-secondary);
}

.placeholder-content p {
  font-size: 0.85rem;
}

.spotlight-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.spotlight-feature .spotlight-image {
  aspect-ratio: 16/12;
}

.spotlight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.spotlight-feature:hover .spotlight-image img,
.spotlight-secondary:hover .spotlight-image img {
  transform: scale(1.05);
}

.spotlight-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(22,22,31,1) 0%, transparent 50%);
  opacity: 0.5;
}

.spotlight-content {
  padding: 1.25rem 1.5rem 1.5rem;
}

.tag-pill {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-full);
  background: var(--accent-glow);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
  border: 1px solid rgba(201,168,76,0.2);
}

.spotlight-title {
  font-family: var(--font-headline);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.spotlight-feature .spotlight-title {
  font-size: 1.6rem;
}

.spotlight-excerpt {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.spotlight-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

/* ---- Drives ---- */
.drives-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.drive-card {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.drive-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-lg);
}

.drive-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.drive-card:hover .drive-bg {
  transform: scale(1.08);
}

.drive-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,15,0.2), rgba(10,10,15,0.75));
  mix-blend-mode: multiply;
}

.drive-content {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  padding: 1.25rem;
  background: rgba(10, 10, 15, 0.6);
  backdrop-filter: blur(16px);
}

.drive-issue {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.drive-title {
  font-family: var(--font-headline);
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.drive-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ---- Timeline ---- */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--accent), transparent);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 1.5rem;
  width: 14px;
  height: 14px;
  background: var(--accent);
  border: 3px solid var(--bg-primary);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 0 12px rgba(201,168,76,0.3);
}

.timeline-date {
  width: calc(50% - 2rem);
  text-align: right;
  padding-right: 2rem;
  font-family: var(--font-headline);
  font-size: 1rem;
  color: var(--accent);
  padding-top: 1.2rem;
}

.timeline-card {
  width: calc(50% - 2rem);
  margin-left: auto;
  padding: 1.5rem;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.timeline-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.timeline-item.right .timeline-date {
  order: 2;
  text-align: left;
  padding-right: 0;
  padding-left: 2rem;
}

.timeline-item.right .timeline-card {
  margin-left: 0;
  margin-right: auto;
  order: 1;
}

.timeline-card-title {
  font-family: var(--font-headline);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.timeline-card p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---- Pullquote ---- */
.pullquote {
  padding: 2.5rem 0;
}

.pullquote span {
  display: block;
  font-family: var(--font-headline);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.4;
}

.pullquote cite {
  display: block;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* ---- Features Row ---- */
.features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 850px;
  margin: 2rem auto 2.5rem;
  text-align: left;
}

.feature-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.feature-icon {
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 700;
}

.feature-item h3 {
  font-family: var(--font-headline);
  font-size: 1rem;
}

.feature-item p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ---- Newsletter ---- */
.newsletter-card {
  max-width: 540px;
  margin: 0 auto;
  padding: 3rem 2.5rem;
  text-align: center;
  border: 1px solid rgba(201,168,76,0.1);
}

.newsletter-title {
  font-family: var(--font-headline);
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.newsletter-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.newsletter-form input {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.03);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all 0.3s;
  outline: none;
}

.newsletter-form input::placeholder {
  color: var(--text-muted);
}

.newsletter-form input:focus {
  border-color: var(--accent);
  background: rgba(201,168,76,0.03);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.08);
}

/* ---- Footer ---- */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-logo {
  font-family: var(--font-headline);
  font-size: 1.3rem;
  display: block;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-links h4 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.footer-links a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0.25rem 0;
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: var(--text-muted);
  transition: color 0.3s, transform 0.3s;
}

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

/* ---- Reveal Animations ---- */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Page Header (for subpages) ---- */
.page-header {
  padding: 4rem 0 3rem;
  text-align: center;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-subtle);
}

.page-header h1 {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--text-primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-header p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ---- Content Cards (for inner pages) ---- */
.content-grid {
  display: grid;
  gap: 2rem;
}

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

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

.content-card {
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.content-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.content-card-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.content-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.content-card:hover .content-card-image img {
  transform: scale(1.05);
}

.content-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.content-card-body h3 {
  font-family: var(--font-headline);
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.content-card-body p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.content-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ---- Page Content Sections ---- */
.page-content {
  padding: 4rem 0;
}

.page-content .container {
  max-width: 900px;
}

.prose {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-secondary);
}

.prose h2 {
  font-family: var(--font-headline);
  font-size: 1.8rem;
  color: var(--text-primary);
  margin: 2.5rem 0 1rem;
}

.prose h3 {
  font-family: var(--font-headline);
  font-size: 1.3rem;
  color: var(--text-primary);
  margin: 2rem 0 0.75rem;
}

.prose p {
  margin-bottom: 1.25rem;
}

.prose strong {
  color: var(--text-primary);
  font-weight: 700;
}

.prose ul, .prose ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.prose li {
  list-style: disc;
  margin-bottom: 0.4rem;
}

.prose ol li { list-style: decimal; }

/* Commitment grid */
.commitment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.commitment-card {
  padding: 1.5rem;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.commitment-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.commitment-card h4 {
  font-family: var(--font-headline);
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.commitment-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Why Blindspot feature sections */
.why-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.why-feature.reverse {
  direction: rtl;
}

.why-feature.reverse > * {
  direction: ltr;
}

.why-feature-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.why-feature h2 {
  font-family: var(--font-headline);
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.why-feature p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.why-feature-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/10;
}

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

/* Contact form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.03);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all 0.3s;
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: rgba(201,168,76,0.03);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.08);
}

.form-group textarea {
  min-height: 140px;
}

/* Submissions cards */
.submissions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.submission-card {
  padding: 2rem;
}

.submission-card h3 {
  font-family: var(--font-headline);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

/* ---- Responsive ---- */
@media (min-width: 768px) {
  .main-nav {
    display: flex;
  }
  .mobile-menu-btn {
    display: none;
  }
}

@media (max-width: 767px) {
  .logo {
    position: static;
    text-align: center;
  }

  .header-inner {
    justify-content: center;
  }

  .issues-broken-grid {
    grid-template-columns: 1fr;
  }

  .issue-card-small {
    margin-top: 0;
  }

  .issue-card-large,
  .issue-card-small {
    min-height: 380px;
  }

  .spotlight-grid {
    grid-template-columns: 1fr;
  }

  .drives-grid {
    grid-template-columns: 1fr;
  }

  .drive-card {
    aspect-ratio: 4/3;
  }

  .timeline-line {
    left: 1rem;
  }

  .timeline-dot {
    left: 1rem;
  }

  .timeline-date {
    display: none;
  }

  .timeline-card {
    width: 100%;
    margin-left: 2.5rem;
  }

  .timeline-item.right .timeline-card {
    margin-left: 2.5rem;
    margin-right: 0;
  }

  .timeline-card-title::before {
    content: attr(data-date);
    display: block;
    font-size: 0.8rem;
    color: var(--accent);
    font-family: var(--font-body);
    margin-bottom: 0.3rem;
  }

  .features-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .commitment-grid {
    grid-template-columns: 1fr;
  }

  .why-feature {
    grid-template-columns: 1fr;
  }

  .why-feature.reverse {
    direction: ltr;
  }

  .submissions-grid {
    grid-template-columns: 1fr;
  }

  .content-grid.cols-2,
  .content-grid.cols-3 {
    grid-template-columns: 1fr;
  }

  .hero-glass {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  :root {
    --section-gap: 4rem;
  }

  .section-title {
    margin-bottom: 2rem;
  }
}
